id
int64
0
45.1k
file_name
stringlengths
4
68
file_path
stringlengths
14
193
content
stringlengths
32
9.62M
size
int64
32
9.62M
language
stringclasses
1 value
extension
stringclasses
6 values
total_lines
int64
1
136k
avg_line_length
float64
3
903k
max_line_length
int64
3
4.51M
alphanum_fraction
float64
0
1
repo_name
stringclasses
779 values
repo_stars
int64
0
882
repo_forks
int64
0
108
repo_open_issues
int64
0
90
repo_license
stringclasses
8 values
repo_extraction_date
stringclasses
146 values
sha
stringlengths
64
64
__index_level_0__
int64
0
45.1k
exdup_ids_cmlisp_stkv2
sequencelengths
1
47
20,799
end.lisp
borodust_post-man/src/state/end.lisp
(cl:in-package :post-man) (defclass endgame-state (input-handling-state) ((boxes-collected :initform (error ":boxes-collected missing") :initarg :boxes-collected) (seconds-spent :initform (error ":seconds-spent missing") :initarg :seconds-spent) (level :initform (error ":level missing") :initarg :level) (stat-font :initform (gamekit:make-font :retro 36)) (continue-font :initform (gamekit:make-font :retro 42)))) (defmethod gamekit:post-initialize ((this endgame-state))) (defmethod gamekit:draw ((this endgame-state)) (with-slots (boxes-collected seconds-spent level stat-font continue-font) this (bodge-canvas:clear-buffers *background*) (draw-splash) (gamekit:with-pushed-canvas () (gamekit:translate-canvas (- (/ (gamekit:viewport-width) 2) 190) 180) (gamekit:draw-text (format nil "Level:~27T~D" level) *origin* :font stat-font :fill-color *foreground*) (gamekit:translate-canvas 0 40) (gamekit:draw-text (format nil "Time spent:~23T~D:~2,'0d" (truncate (/ seconds-spent 60)) (mod (truncate seconds-spent) 60)) *origin* :font stat-font :fill-color *foreground*) (gamekit:translate-canvas 0 40) (gamekit:draw-text (format nil "Boxes placed:~20T~D" boxes-collected) *origin* :font stat-font :fill-color *foreground*)) (gamekit:with-pushed-canvas () (gamekit:translate-canvas (- (/ (gamekit:viewport-width) 2) 230) 80) (gamekit:draw-text "PRESS ENTER OR START" *origin* :font continue-font :fill-color *foreground*)))) (defun go-to-menu () (gamekit.fistmachine:transition-to 'main-menu-state)) (defmethod gamekit.input-handler:button-pressed ((this endgame-state) (button (eql :enter))) (go-to-menu)) (defmethod gamekit.input-handler:button-pressed ((this endgame-state) (button (eql :gamepad-start))) (go-to-menu))
2,333
Common Lisp
.lisp
48
34.833333
84
0.560933
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0f3d706de05dc35d82e69675876f1eb3994a85d021b583033074bd3da98e4933
20,799
[ -1 ]
20,800
init.lisp
borodust_post-man/src/state/init.lisp
(cl:in-package :post-man) (defclass init-state () ()) (defmethod gamekit:post-initialize ((this init-state)) (gamekit:prepare-resources :retro :splash :rob-o-man-front :rob-o-man-back :rob-o-man-right :rob-o-man-left :bogdan-front :bogdan-back :bogdan-right :bogdan-left :box :floor :horizontal-rack :horizontal-rack-active :vertical-rack :vertical-rack-active :menu-tune :gameplay-tune :capture-tune :user-action :box-pick-up :box-drop)) (defmethod gamekit:draw ((this init-state)) (with-slots (ui-font) this (bodge-canvas:clear-buffers *background*) (gamekit:translate-canvas (- (/ (gamekit:viewport-width) 2) 120) 120) (gamekit:scale-canvas 3 3) (let ((alpha (+ 0.2 (abs (* 0.8 (cos (bodge-util:real-time-seconds))))))) (bodge-canvas:with-alpha (alpha) (gamekit:draw-text "LOADING..." *origin* :fill-color *foreground*))))) (defmethod gamekit:notice-resources ((this init-state) &rest resources) (declare (ignore this resources)) (gamekit.fistmachine:transition-to 'main-menu-state))
1,351
Common Lisp
.lisp
26
36.961538
80
0.548975
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c45cd4633b4698895ff81b0da7858aaea5df6e8400055e6fa097c8aae77a296f
20,800
[ -1 ]
20,801
box.lisp
borodust_post-man/src/object/box.lisp
(cl:in-package :post-man) (defclass box (positionable renderable) ()) (defmethod render ((this box)) (gamekit:with-pushed-canvas () (translate-position (position-of this)) (gamekit:scale-canvas 0.5 0.5) (gamekit:draw-image *origin* :box))) (defun play-box-pick-up-sound () (gamekit:play-sound :box-pick-up)) (defun play-box-drop-sound () (gamekit:play-sound :box-drop))
396
Common Lisp
.lisp
11
32.636364
43
0.70557
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
54760d4af04c8a5ca999c833151caed224f9ed477ce4a59833ae2bcfa0cd5414
20,801
[ -1 ]
20,802
level.lisp
borodust_post-man/src/object/level.lisp
(cl:in-package :post-man) (defparameter *floor-color* (gamekit:vec4 0.3 0.3 0.3 1)) (defparameter *obstacle-count* (truncate (* *grid-size* 1.5))) (defclass level (positionable renderable) ((obstacle-map :initform (make-hash-table :test 'equal)) (object-map :initform (make-hash-table)) (objectives :initform (make-array 0 :adjustable t :fill-pointer t))) (:default-initargs :position (gamekit:vec2 (1+ *grid-size*) (1+ *grid-size*)))) (defun cell->position (cell) (gamekit:vec2 (car cell) (cdr cell))) (defun position->cell (position) (cons (truncate (gamekit:x position)) (truncate (gamekit:y position)))) (defun %level-obstacle-exists (level cell) (with-slots (obstacle-map) level (let ((x (car cell)) (y (cdr cell))) (or (< x 0) (>= x *grid-size*) (< y 0) (>= y *grid-size*) (gethash cell obstacle-map))))) (defun %find-adjacent-cells (level node) (with-slots (obstacle-map) level (destructuring-bind (grid-x . grid-y) node (flet ((%get (x y) (let ((cell (cons x y))) (unless (%level-obstacle-exists level cell) cell)))) (remove-if #'null (list (%get (1+ grid-x) grid-y) (%get grid-x (1+ grid-y)) (%get (1- grid-x) grid-y) (%get grid-x (1- grid-y)))))))) (defun %find-adjacent-obstacles (level node) (with-slots (obstacle-map) level (destructuring-bind (grid-x . grid-y) node (flet ((%get (x y) (%level-obstacle-exists level (cons x y)))) (remove-duplicates (list (%get (1+ grid-x) grid-y) (%get grid-x (1+ grid-y)) (%get (1- grid-x) grid-y) (%get grid-x (1- grid-y)))))))) (defun find-adjacent-obstacles (level position) (with-slots (obstacle-map) level (let* ((x (truncate (gamekit:x position))) (y (truncate (gamekit:y position))) (cell (cons x y))) (%find-adjacent-obstacles level cell)))) (defun level-obstacle-exists (level position) (with-slots (obstacle-map) level (let* ((x (truncate (gamekit:x position))) (y (truncate (gamekit:y position))) (cell (cons x y))) (%level-obstacle-exists level cell)))) (defun level-renderable-objects (level) (with-slots (object-map) level (loop for object being the hash-key of object-map collect object))) (defun find-level-path (level start goal) (let ((start-x (truncate (gamekit:x start))) (start-y (truncate (gamekit:y start))) (goal-x (truncate (gamekit:x goal))) (goal-y (truncate (gamekit:y goal)))) (flet ((%path-cost (node goal) (bodge-math:vector-length (bodge-math:subt (bodge-math:vec2 (car node) (cdr node)) (bodge-math:vec2 (car goal) (cdr goal))))) (%node-children (node) (%find-adjacent-cells level node)) (%to-vec2 (cell) (gamekit:vec2 (car cell) (cdr cell)))) (mapcar #'%to-vec2 (find-node-path (cons start-x start-y) (cons goal-x goal-y) :heuristic-cost #'%path-cost :path-cost #'%path-cost :node-children #'%node-children :node-equal #'equal))))) (defun %obstacle-fits-p (level cell &optional (configuration '((0 . 0)))) (not (loop with (cell-x . cell-y) = cell for (relative-x . relative-y) in configuration for x = (+ relative-x cell-x) for y = (+ relative-y cell-y) thereis (%level-obstacle-exists level (cons x y))))) (defun %find-level-random-cell (level &optional (configuration '((0 . 0)))) (with-slots (obstacle-map) level (flet ((%gen () (cons (random-integer *grid-size*) (random-integer *grid-size*))) (%collides (cell) (not (%obstacle-fits-p level cell configuration)))) (loop for cell = (%gen) while (%collides cell) finally (return cell))))) (defun find-level-random-position (level &optional (configuration '((0 . 0)))) (let ((cell (%find-level-random-cell level configuration))) (gamekit:vec2 (car cell) (cdr cell)))) (defun find-level-random-path (level position) (find-level-path level position (find-level-random-position level))) (defun %add-object (level object cell) (with-slots (obstacle-map object-map objectives) level (let ((configuration (obstacle-of object))) (when (%obstacle-fits-p level cell configuration) (loop with (cell-x . cell-y) = cell for (x-offset . y-offset) in configuration for obstacle-cell = (cons (+ cell-x x-offset) (+ cell-y y-offset)) do (setf (gethash obstacle-cell obstacle-map) object)) (setf (gethash object object-map) configuration) (when (typep object 'objective) (vector-push-extend object objectives)) (update-position object (cell->position cell)) object)))) (defun add-object (level object position) (%add-object level object (position->cell position))) (defun spawn-object (level object) (let ((cell (%find-level-random-cell level (obstacle-of object)))) (%add-object level object cell))) (defun remove-object (level object) (with-slots (object-map obstacle-map objectives) level (when-let ((configuration (gethash object object-map))) (remhash object object-map) (loop with object-x = (truncate (gamekit:x (position-of object))) and object-y = (truncate (gamekit:y (position-of object))) for (offset-x . offset-y) in configuration for cell = (cons (+ object-x offset-x) (+ object-y offset-y)) do (remhash cell obstacle-map)) (when (typep object 'objective) (deletef objectives object)))) object) (defun spawn-vertical-rack (level) (spawn-object level (make-instance 'vertical-rack))) (defun spawn-horizontal-rack (level) (spawn-object level (make-instance 'horizontal-rack))) (defun fill-level (level) (loop repeat *obstacle-count* if (oddp (random-integer 2)) do (spawn-vertical-rack level) else do (spawn-horizontal-rack level))) (defmethod initialize-instance :after ((this level) &key) (fill-level this)) (defun pick-objective (level) (with-slots (objectives) level (let ((objective (aref objectives (random-integer (length objectives))))) (activate objective)))) (defmethod render ((this level)) (let ((side (* *grid-size* *grid-cell-width*))) (gamekit:draw-rect *origin* side side :fill-paint *floor-color*)))
6,848
Common Lisp
.lisp
144
38.201389
82
0.597084
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
b70c3f9e72bc2e69ca4cde19c16911177f0aa73f1b47d9c24f5cc7205fa7c22a
20,802
[ -1 ]
20,803
rob-o-man.lisp
borodust_post-man/src/object/rob-o-man.lisp
(cl:in-package :post-man) (defparameter *rob-o-man-free-speed* 3) (defparameter *rob-o-man-carry-speed* 2) (defclass rob-o-man (being) ((inventory :initform nil)) (:default-initargs :speed *rob-o-man-free-speed* :color (gamekit:vec4 0.1 0.4 0.1 1))) (defmethod update ((this rob-o-man)) (call-next-method) (with-slots (inventory) this (let ((next-direction (select-direction *gameplay*))) (if (or (not next-direction) (level-obstacle-exists *level* (gamekit:add (next-position-of this) (direction->vector next-direction)))) (move-being this nil) (move-being this next-direction))) (when inventory (update-position inventory (position-of this))))) (defmethod render ((this rob-o-man)) (with-slots (inventory) this (gamekit:with-pushed-canvas () (when inventory (when-let ((direction (direction-of this))) (case direction (:up (gamekit:translate-canvas 0 10) (render inventory)))))) (gamekit:with-pushed-canvas () (translate-position (position-of this)) (gamekit:translate-canvas -9 0) (gamekit:scale-canvas 0.5 0.5) (if-let ((direction (direction-of this))) (case direction (:up (gamekit:draw-image *origin* :rob-o-man-back)) (:down (gamekit:draw-image *origin* :rob-o-man-front)) (:left (gamekit:draw-image *origin* :rob-o-man-left)) (:right (gamekit:draw-image *origin* :rob-o-man-right))) (gamekit:draw-image *origin* :rob-o-man-front))) (when inventory (if-let ((direction (direction-of this))) (case direction (:down (gamekit:translate-canvas 0 -2) (render inventory)) (:left (gamekit:translate-canvas -4 0) (render inventory)) (:right (gamekit:translate-canvas 4 0) (render inventory))) (render inventory))))) (defmethod interact ((this rob-o-man) (object box)) (with-slots (inventory) this (play-box-pick-up-sound) (setf inventory (remove-object *level* object)) (update-speed this *rob-o-man-carry-speed*) (remove-renderable *gameplay* inventory) (pick-objective *level*))) (defmethod interact ((this rob-o-man) (object rack)) (with-slots (inventory) this (when (activatedp object) (play-box-drop-sound) (destroy inventory) (setf inventory nil) (update-speed this *rob-o-man-free-speed*) (deactivate object))))
2,539
Common Lisp
.lisp
59
34.898305
87
0.621709
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
bc5c577df1c734a232fb1492b37c081ad6f8a192d9640ee7359a2f8cf5dd1671
20,803
[ -1 ]
20,804
being.lisp
borodust_post-man/src/object/being.lisp
(cl:in-package :post-man) (defvar *directions* '((:up . :down) (:down . :up) (:left . :right) (:right . :left))) (defclass being (updatable positionable bounded renderable) ((direction :initform nil :reader direction-of) (next-position :reader next-position-of) (color :initform (gamekit:vec4 0.5 0.5 0.5 1) :initarg :color) (speed :initform 1 :initarg :speed)) (:default-initargs :bound (gamekit:vec2 1 1))) (defmethod initialize-instance :after ((this being) &key) (with-slots (next-position) this (setf next-position (position-of this)))) (defun direction->vector (direction) (ecase direction (:up (gamekit:vec2 0 1)) (:down (gamekit:vec2 0 -1)) (:left (gamekit:vec2 -1 0)) (:right (gamekit:vec2 1 0)))) (defun move-being (being next-direction) (with-slots (direction next-position) being (when (and next-direction (or (eq direction (alexandria:assoc-value *directions* next-direction)) (not direction))) (setf direction next-direction next-position (gamekit:add next-position (direction->vector next-direction)))))) (defun update-speed (being new-speed) (with-slots (speed) being (setf speed new-speed))) (defmethod render ((this being)) (with-slots (direction color) this (gamekit:with-pushed-canvas () (translate-position (position-of this)) (gamekit:draw-rect *origin* *grid-cell-width* *grid-cell-width* :fill-paint color) (case direction (:up (gamekit:translate-canvas 0 10)) (:down (gamekit:translate-canvas 0 -10)) (:left (gamekit:translate-canvas -10 0)) (:right (gamekit:translate-canvas 10 0))) (gamekit:draw-circle (gamekit:vec2 12 22) 3 :fill-paint *foreground*) (gamekit:draw-circle (gamekit:vec2 20 22) 3 :fill-paint *foreground*) (gamekit:draw-rect (gamekit:vec2 7 6) 18 8 :fill-paint *foreground*)))) (defmethod update ((this being)) (with-slots (direction next-position speed) this (call-next-method) (when direction (let ((vector (gamekit:subt next-position (position-of this)))) (if (>= 0 (bodge-math:dot (direction->vector direction) vector)) (progn (setf direction nil) (update-position this next-position)) (let ((path-delta (ge.ng:mult (ge.ng:normalize vector) (* *update-delta-time* speed)))) (update-position this (gamekit:add (position-of this) path-delta))))))))
2,753
Common Lisp
.lisp
61
34.967213
86
0.595069
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
931dd5221e3c7c6bf615449caae668715248e1223f47da3b3d7460cbe8cf9163
20,804
[ -1 ]
20,805
rack.lisp
borodust_post-man/src/object/rack.lisp
(cl:in-package :post-man) (defclass rack (positionable objective renderable) ()) (defgeneric %render-rack (rack)) (defgeneric %render-active-rack (rack)) (defmethod render ((this rack)) (translate-position (position-of this)) (gamekit:scale-canvas 0.5 0.5) (if (activatedp this) (%render-active-rack this) (%render-rack this))) (defclass vertical-rack (rack) ()) (defmethod obstacle-of ((this vertical-rack)) '((0 . 0) (0 . 1))) (defmethod %render-active-rack ((this vertical-rack)) (gamekit:draw-image *origin* :vertical-rack-active)) (defmethod %render-rack ((this vertical-rack)) (gamekit:draw-image *origin* :vertical-rack)) (defclass horizontal-rack (rack) ()) (defmethod obstacle-of ((this horizontal-rack)) '((0 . 0) (1 . 0))) (defmethod %render-active-rack ((this horizontal-rack)) (gamekit:draw-image *origin* :horizontal-rack-active)) (defmethod %render-rack ((this horizontal-rack)) (gamekit:draw-image *origin* :horizontal-rack))
997
Common Lisp
.lisp
24
38.25
56
0.716245
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
337997d1eff3fab001bb7b5e60f08350013e9d7d0762cab72b6241ab6b0a84a2
20,805
[ -1 ]
20,806
object.lisp
borodust_post-man/src/object/object.lisp
(cl:in-package :post-man) (declaim (special *update-delta-time*)) (defgeneric destroy (object) (:method (object) (declare (ignore object)))) ;;; ;;; RENDERABLE ;;; (defgeneric render (object)) (defgeneric register-renderable (state renderable)) (defgeneric remove-renderable (state renderable)) (defclass renderable () ()) (defmethod initialize-instance :after ((this renderable) &key) (register-renderable *gameplay* this)) (defmethod destroy :before ((this renderable)) (remove-renderable *gameplay* this)) (defmethod render :around (object) (declare (ignore object)) (gamekit:with-pushed-canvas () (call-next-method))) ;;; ;;; UPDATABLE ;;; (defclass updatable () ((last-update-time :initform nil))) (defgeneric update (updatable) (:method (updatable))) (defun delta-time (updatable) (with-slots (last-update-time) updatable (if last-update-time (- (bodge-util:real-time-seconds) last-update-time) 0))) (defmethod update :around ((this updatable)) (with-slots (last-update-time) this (let* ((now (bodge-util:real-time-seconds)) (*update-delta-time* (if last-update-time (- now last-update-time) 0))) (unwind-protect (call-next-method) (setf last-update-time now))))) ;;; ;;; POSITIONABLE ;;; (defclass positionable () ((position :initform (gamekit:vec2 0 0) :initarg :position :reader position-of))) (defun update-position (positionable position) (with-slots ((this-position position)) positionable (setf (gamekit:x this-position) (gamekit:x position) (gamekit:y this-position) (gamekit:y position)))) ;;; ;;; MOVABLE ;;; (defclass movable (updatable positionable) ((speed :initform 0 :initarg :speed) (direction :initform nil))) (defun move-object (object direction) (with-slots ((this-direction direction)) object (setf (gamekit:x this-direction) (gamekit:x direction) (gamekit:y this-direction) (gamekit:y direction)))) (defun next-position (movable) (with-slots (speed direction position) movable (gamekit:add position (gamekit:mult (bodge-math:normalize direction) speed (delta-time movable))))) ;;; ;;; BOUNDED ;;; (defclass bounded () ((bound :initarg :bound :initform (error ":bound missing") :reader bound-of))) (defun collidingp (this that) (let ((this-position (position-of this)) (that-position (position-of that)) (this-bound (bound-of this)) (that-bound (bound-of that))) (and (< (gamekit:x this-position) (+ (gamekit:x that-position) (gamekit:x that-bound))) (> (+ (gamekit:x this-position) (gamekit:x this-bound)) (gamekit:x that-position)) (< (gamekit:y this-position) (+ (gamekit:y that-position) (gamekit:y that-bound))) (> (+ (gamekit:y this-position) (gamekit:y this-bound)) (gamekit:y that-position))))) ;;; ;;; INTERACTABLE ;;; (defgeneric interact (this that) (:method (this that) (declare (ignore this that)))) ;;; ;;; OBSTACLE ;;; (defgeneric obstacle-of (object) (:method (object) (declare (ignore object)) '((0 . 0)))) ;;; ;;; OBJECTIVE ;;; (defclass objective () ((activated :initform nil :reader activatedp))) (defgeneric activatedp (objective) (:method ((this objective)) (slot-value this 'activated))) (defgeneric activate (objective) (:method ((this objective)) (with-slots (activated) this (setf activated t)))) (defgeneric deactivate (objective) (:method ((this objective)) (with-slots (activated) this (setf activated nil)))) (defgeneric objective-reached (state)) (defgeneric player-captured (state)) (defmethod deactivate :around (object) (let ((was-active (activatedp object))) (prog1 (call-next-method) (when (and was-active (not (activatedp object))) (objective-reached *gameplay*))))) (defun play-user-action-sound () (gamekit:play-sound :user-action))
4,159
Common Lisp
.lisp
123
28.252033
83
0.648608
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
7ab501d88f441bc32fe2eed2759432afdd46d394123aa21b3c0aad8129dd2dab
20,806
[ -1 ]
20,807
bogdan.lisp
borodust_post-man/src/object/bogdan.lisp
(cl:in-package :post-man) (defclass bogdan (being) ((path :initform nil) (pause :initform 0)) (:default-initargs :speed 1 :color (gamekit:vec4 0.4 0.1 0.1 1))) (defmethod render ((this bogdan)) (gamekit:with-pushed-canvas () (translate-position (position-of this)) (gamekit:translate-canvas -5 0) (gamekit:scale-canvas 0.5 0.5) (if-let ((direction (direction-of this))) (case direction (:up (gamekit:draw-image *origin* :bogdan-back)) (:down (gamekit:draw-image *origin* :bogdan-front)) (:left (gamekit:draw-image *origin* :bogdan-left)) (:right (gamekit:draw-image *origin* :bogdan-right))) (gamekit:draw-image *origin* :bogdan-front)))) (defmethod update ((this bogdan)) (call-next-method) (with-slots (path pause) this (decf pause *update-delta-time*) (if path (unless (direction-of this) (let* ((next-cell (pop path)) (vector (gamekit:subt next-cell (position-of this)))) (move-being this (cond ((> (gamekit:x vector) 0.5) :right) ((< (gamekit:x vector) -0.5) :left) ((> (gamekit:y vector) 0.5) :up) ((< (gamekit:y vector) -0.5) :down))))) (when (< pause 0) (setf path (find-level-random-path *level* (position-of this))) (setf pause (+ (random-float 10.0) 1.0))))) (when (collidingp this *player*) (player-captured *gameplay*)))
1,526
Common Lisp
.lisp
35
34.257143
73
0.57037
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
7a0cc11e91aee34ed92d01c0ffadcbae38e99c39f0e6050bc384bbba0f4d1249
20,807
[ -1 ]
20,808
post-man.asd
borodust_post-man/post-man.asd
(pushnew :bodge-gl2 *features*) (asdf:defsystem :post-man :description "Autumn Lisp Game Jam 2019 entry" :author "" :license "GPLv3" :depends-on (:alexandria :trivial-gamekit :trivial-gamekit-fistmachine :trivial-gamekit-input-handler :bodge-heap :random-state :babel) :pathname "src/" :serial t :components ((:file "packages") (:file "util") (:file "resources") (:file "main") (:module :object :serial t :components ((:file "object") (:file "being") (:file "box") (:file "rack") (:file "bogdan") (:file "level") (:file "rob-o-man"))) (:module :state :serial t :components ((:file "state") (:file "init") (:file "pause-menu") (:file "gameplay") (:file "end") (:file "main-menu") (:file "credits")))))
1,293
Common Lisp
.asd
36
18.472222
50
0.373408
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ea6bc1f58acda200b91c29020952868659db38f26ce09913058d79b6f14d4372
20,808
[ -1 ]
20,810
.travis.yml
borodust_post-man/.travis.yml
language: common-lisp sudo: false addons: apt: packages: - zip env: global: - GAMEKIT_SYSTEM_NAME: post-man - GAMEKIT_APPLICATION_PACKAGE: post-man - GAMEKIT_APPLICATION_MAIN_CLASS: post-man - PATH: ~/.bodge/bin/:$PATH - GAMEKIT_TARGET_PACKAGE: $GAMEKIT_SYSTEM_NAME-x86-64-$TRAVIS_OS_NAME-$TRAVIS_BRANCH.zip - GAMEKIT_BUILD_DIR: /tmp/$GAMEKIT_SYSTEM_NAME - secure: "kFHYnZN0WK3jd5Am+dimOLoaQ3TnUC/bbQC8s1sH5gvB/N09XtfJHyUS8zNhfxBdWSCjQqSBrXqJiRnGIIA46TWjqYMfxkCYTiWgCMpxuWZnaW3EDMUvYrXnzXKhREQH9bFNOdQXGyz3JHwGXovxwfjG9/SaSIIKSTNv9F3TK2faKd/SXd8xUGvCc+Sx2LaFOx3Q7ETAaCujDpmmycfqZ6/8dhWikVpT8e2gN57cSBbKiIBObJMDbLqhaCjcY8VwsTjmSHD5p+LpzJXhXvrQdbdDiyPsndu4tzJ5Afzzk596utQS7Jhv7dF4GIa6zSjKeYVDcHQY1hkGDFXbE8Y0x2lEzpTqGJvzVn8dOFG67NIw4IG8uvNNpPuMBs+1WuAGL7219eQQpnBbWvbHnduNT41izoYFtBTLCOL2OEd2punSFZyrGr6LAZyasSTs/+NnVlx/qPMnTDRJJTep8TVvj/wo51JkRTGbHaYPMRnUU6oi+UrHGjbinSJP3rUkI645mAfp31ab4mEPFZJRQuWZ6JyFpLTUjd5SVrID6Zni35x6lw5+UK/9YW+mM99b0EM3T+UNUNdEYMKTB4XzAXCgcuuz/O+6uWOtX86jsLN4DJPa5FvLQuA1ymOSt26HD2c+P9ICJCvny6jFuOhqflZp5K3c8+/fQ6Rtu0O+ivPj+ok=" branches: only: - "/^v\\d+(\\.\\d+)+$/" cache: directories: - $HOME/Library/Caches/Homebrew os: - linux - osx before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install git-lfs; fi - curl -L http://bodge.borodust.org/files/install.sh | sh - git lfs install && git lfs pull - lisp install-testing-dist script: - > lisp build-gamekit-system $GAMEKIT_SYSTEM_NAME $GAMEKIT_APPLICATION_PACKAGE $GAMEKIT_APPLICATION_MAIN_CLASS $TRAVIS_BUILD_DIR $GAMEKIT_BUILD_DIR before_deploy: - mv "$GAMEKIT_BUILD_DIR/$GAMEKIT_SYSTEM_NAME.zip" $GAMEKIT_TARGET_PACKAGE deploy: provider: releases api-key: $GITHUB_TOKEN file: $GAMEKIT_TARGET_PACKAGE skip_cleanup: true overwrite: true on: tags: true
1,921
Common Lisp
.l
47
37.787234
698
0.789163
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
6589f9267614f36c70e8ceb75c76b673172a85f8dc442831b31188bab13566d5
20,810
[ -1 ]
20,811
.appveyor.yml
borodust_post-man/.appveyor.yml
image: - Visual Studio 2013 platform: - x64 environment: global: GAMEKIT_SYSTEM_NAME: post-man GAMEKIT_APPLICATION_PACKAGE: post-man GAMEKIT_APPLICATION_MAIN_CLASS: post-man GAMEKIT_ARTIFACT: $(GAMEKIT_SYSTEM_NAME)-x86-64-windows-$(APPVEYOR_REPO_TAG_NAME).zip GAMEKIT_BUILD_DIR: $(TMP)\$(GAMEKIT_SYSTEM_NAME) skip_non_tags: true branches: only: - master - "/^v\\d+(\\.\\d+)+$/" install: - set PATH=C:\msys64\usr\bin\;%PATH% - pacman --noconfirm -Syu - pacman --noconfirm -S zip mingw-w64-x86_64-git-lfs - git lfs install - git lfs pull - curl -L http://bodge.borodust.org/files/install.sh | sh -s ccl - sh -c "$HOME/.bodge/bin/lisp install-testing-dist" build_script: - > sh -c "$HOME/.bodge/bin/lisp build-gamekit-system %GAMEKIT_SYSTEM_NAME% %GAMEKIT_APPLICATION_PACKAGE% %GAMEKIT_APPLICATION_MAIN_CLASS% $(cygpath -m '%APPVEYOR_BUILD_FOLDER%') $(cygpath -m '%GAMEKIT_BUILD_DIR%')" - mv %GAMEKIT_BUILD_DIR%\%GAMEKIT_SYSTEM_NAME%.zip %GAMEKIT_ARTIFACT% artifacts: - path: "%GAMEKIT_ARTIFACT%" name: release_archive deploy: provider: GitHub release: $(APPVEYOR_REPO_TAG_NAME) tag: $(APPVEYOR_REPO_TAG_NAME) description: $(APPVEYOR_REPO_COMMIT_MESSAGE) auth_token: secure: Z5XWjDOBlCrmfz3SQAjnLKtdgI5B2b/owJhRPNWYGrI+qwVNbBc4cZiroBZReWP7 artifact: release_archive force_update: true draft: false prerelease: false on: appveyor_repo_tag: true
1,454
Common Lisp
.l
47
27.531915
89
0.713162
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
88c875cef598705677e84d72dd6d5e380ec706ddc88c16f6b0ebf74c8ec0be87
20,811
[ -1 ]
20,841
package.lisp
ahungry_sdl-blub/package.lisp
;;;; package.lisp (defpackage #:sdl-blub (:use #:cl #:sdl #:glyphs)) ;;(:use #:cl #:lispbuilder-sdl-gfx #:sdl #:glyphs))
124
Common Lisp
.lisp
4
29.25
51
0.613445
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
856a7078459a621cc88338dd067b4bde214a937854b4eaf70a69d9d789a52090
20,841
[ -1 ]
20,842
sdl-blub.lisp
ahungry_sdl-blub/sdl-blub.lisp
;;;; sdl-blub.lisp (in-package #:sdl-blub) ;;; "sdl-blub" goes here. Hacks and glory await! ;; Tutorials/docs here: http://code.google.com/p/lispbuilder/wiki/UsingLispbuilderSDL#The_Game_Loop ;; Standalone (eventually) here: http://code.google.com/p/lispbuilder/wiki/StandAloneExecutables (in-readtable glyphs:syntax) (ƒ get-animation "down" → #(7 6 7 8) "right" → #(4 3 4 5) "left" → #(10 9 10 11) "up" → #(1 0 1 2) α → #(7)) (defparameter *frame-index* 0) (defparameter *x* 0) (defparameter *y* 0) (defparameter *px* 0) (defparameter *py* 0) (defparameter *sprites* '()) (defun clear-and-set-global-assets () (defparameter *cells* nil) (defparameter *img-player* nil) (defparameter *img-bg* nil) (defparameter *bg-layers* (make-array 7 :initial-element nil)) ;; 7 layer mmmm (defparameter *img-bg-layer-0* nil) (defparameter *img-bg-layer-1* nil) (defparameter *img-bg-layer-2* nil) (defparameter *img-bg-layer-3* nil) (defparameter *img-bg-foreground* nil) (defparameter *img-bg-foreground-1* nil) (defparameter *img-bg-frame* 0) (defparameter *asset-path* (format nil "~a~a" (user-homedir-pathname) "src/lisp/sdl-blub/assets")) (defparameter *old-sprite-scale* 3) (defparameter *sprite-scale* 3) (defparameter *bg-color* (color :r #x53 :g #x4e :b #x15)) ) (clear-and-set-global-assets) (defun draw-interior-room () (let* ((base-color '(90 90 90)) (wall-color (mapcar (λ α → (round (* α 1.5))) base-color)) (base-color (color :r (car base-color) :g (cadr base-color) :b (caddr base-color))) (wall-color (color :r (car wall-color) :g (cadr wall-color) :b (caddr wall-color))) (floor-color (color :r 90 :g 50 :b 50))) (clear-display floor-color) ;; Draw the back wall (sdl:draw-filled-polygon '(#(130 0) #(480 0) #(480 250) #(0 250)) :color base-color) ;; Draw a side wall (sdl:draw-filled-polygon '(#(0 0) #(130 0) #(130 250) #(0 400)) :color wall-color) ;; Draw another side wall (sdl:draw-filled-polygon '(#(480 0) #(480 250) #(600 400) #(600 0)) :color wall-color) ;; Draw lines to make it appear thicker (let ((line-color (color :r 0 :g 0 :b 0))) (sdl:draw-shape '(#(130 0) #(130 250) #(480 250) #(480 0)) :color line-color) (sdl:draw-line #(130 250) #(0 400) :color line-color :aa t) (sdl:draw-line #(480 250) #(600 400) :color line-color :aa t) (sdl:draw-line #(130 251) #(0 401) :color line-color :aa t) (sdl:draw-line #(480 251) #(600 401) :color line-color :aa t)) )) (defclass BG-Layer () ((Source-image :accessor Source-image :initarg :Source-image :initform "some.png") (Scale :accessor Scale :initarg :Scale :initform 1) (GL-Texture :accessor GL-Texture :initarg :GL-Texture :initform nil) (X-size :accessor X-size :initarg :X-size :initform 1000) (Y-size :accessor Y-size :initarg :Y-size :initform 1000) (Y-offset :accessor Y-offset :initarg :Y-offset :initform 0)) (:documentation "A background layer for parallax scrolling")) (defmethod bg-scaled-width (BG-Layer) "Get the scaled width of the object" (round (* (x-size BG-Layer) (scale BG-Layer)))) (defun set-global-img (index file-path scale y-offset) "Load up an image unless it is already set" (unless (aref *bg-layers* index) (let* ((image (lispbuilder-sdl-image:load-image (format nil "~a/~a" *asset-path* file-path))) ;;(image (sdl:convert-to-display-format ;; :surface (lispbuilder-sdl-gfx:zoom-surface scale scale ;; :surface image))) (bg-layer (make-instance 'BG-Layer :source-image image :scale scale :gl-texture (load-a-texture (format nil "~a/~a" *asset-path* file-path)) :x-size (sdl:width image) :y-size (sdl:height image) :y-offset y-offset))) (setf (aref *bg-layers* index) bg-layer)))) (defclass Sprite () ((Source-image :accessor Source-image :initarg :Source-image :initform "some.png") (Surface-image :accessor Surface-image :initarg :Surface-image :initform nil) (GL-Texture :accessor GL-Texture :initarg :GL-Texture :initform nil) (Scale :accessor Scale :initarg :Scale :initform 1) (Old-scale :accessor Old-scale :initarg :Old-scale :initform 1) (X-loc :accessor X-loc :initarg :X-loc :initform 0) (Y-loc :accessor Y-loc :initarg :Y-loc :initform 400) (X-dir :accessor X-dir :initarg :X-dir :initform 0) (Y-dir :accessor Y-dir :initarg :Y-dir :initform 0) (Animation-cell :accessor Animation-cell :initarg :Animation-cell :initform 7) (Frame-index :accessor Frame-index :initarg :Frame-index :initform 0)) (:documentation "A sprite image")) (defmethod animation ((sprite Sprite)) "Cycle through the cells for the sprites" (with-accessors ((scale Scale) (old-scale Old-scale) (x X-loc) (y Y-loc) (x-dir X-dir) (y-dir Y-dir) (frame-index Frame-index) (animation-cell Animation-cell) (surface-image Surface-image)) sprite (incf frame-index) (setf scale (max .01 (float (/ (round (* 10 (/ y 100))) 10)))) ;; Randomly walk around a small percent of the time (let* ((walk? (random 100)) (px (if (> walk? 90) (1- (random 3)) x-dir)) (py (if (> walk? 90) (1- (random 3)) y-dir))) ;; Additional chance to not go up/down (when (> (random 100) 90) (setf py 0)) (setf x-dir px y-dir py) (setf x (+ x (* 4 px))) (setf y (+ y (* 2 py))) (when (< y (* 270 (/ *resolution-height* 700))) (setf y (* 270 (/ *resolution-height* 700)))) (when (> y (* .9 *resolution-height*)) (setf y (* .9 *resolution-height*))) (when (< x -1600) (setf x -1600)) (when (> x 2600) (setf x 2600)) (let* ((direction (apply (λ -1 → "left" 1 → "right" α → (apply (λ -1 → "up" 1 → "down") (list py))) (list px))) (animation (get-animation direction))) (when (> frame-index (1- (length animation))) (setf frame-index 0)) (setf animation-cell (aref animation frame-index)) )))) (defmethod sprite-layer ((sprite Sprite)) "Get the appropriate index layer for a sprite" (forest-layer (y-loc Sprite))) (defmethod get-sprite-img ((sprite Sprite)) "Return the surface image, unless it is not set, then set it and return." (if (Surface-image Sprite) (Surface-image Sprite) (let* ((image (lispbuilder-sdl-image:load-image (format nil "~a/~a" *asset-path* (Source-image Sprite)))) (image (sdl:convert-to-display-format :surface (lispbuilder-sdl-gfx:zoom-surface (Scale Sprite) (Scale Sprite) :surface image)))) (setf (Surface-image Sprite) image)))) (defmethod get-sprite-gl-texture ((sprite Sprite)) "Return the gl texture, unless it is not set, then set it and return." (if (GL-Texture Sprite) (GL-Texture Sprite) (let* ((image (load-a-texture (format nil "~a/~a" *asset-path* (Source-image Sprite))))) (setf (GL-Texture Sprite) image)))) (defun forest-sprites () "Fill out the forest sprites" (setf *sprites* (loop for file in (ψ (mapcar #'namestring (directory (format nil "~a/~a" *asset-path* "24x32-sprites-by-svet/all/*.*"))) ~".*assets/(.\*)"~ → |"\\1"|) collect (make-instance 'Sprite :source-image file)))) (forest-sprites) (ƒ in-range (and (> α αb) (< α αc)) → t α → nil) (ƒ forest-layer (in-range α 0 (* (/ *resolution-height* 600) 230)) → 0 (in-range α (* (/ *resolution-height* 600) 230) (* (/ *resolution-height* 600) 280)) → 1 (in-range α (* (/ *resolution-height* 600) 280) (* (/ *resolution-height* 600) 380)) → 2 α → 3) (defun draw-bg () (set-global-img 0 "bg/glitch-sampler/forest/sky_p.png" .1 -400 2900) (set-global-img 1 "bg/glitch-sampler/forest/bg_2_p.png" .4 -50 3100) (set-global-img 2 "bg/glitch-sampler/forest/bg_1_p.png" .5 -280 2600) (set-global-img 3 "bg/glitch-sampler/forest/middleground_p.png" 1 -950 2900) (set-global-img 4 "bg/glitch-sampler/forest/middleplus_p.png" .8 500 2200) (set-global-img 5 "bg/glitch-sampler/forest/foreground_p.png" 1.2 -220 2400) (let ((x (* *x* -2)) (sprites-p nil) (x-divisor 8) (player-layer (forest-layer *y*)) (layers (remove nil *bg-layers*))) (loop for layer across layers for lc from 0 do (progn (sdl:draw-surface-at (source-image layer) (vector (round (/ x x-divisor)) (y-offset layer))) (sdl:draw-surface-at (source-image layer) (vector (round (/ (- x (bg-scaled-width layer)) (max 1 x-divisor))) (y-offset layer))) (sdl:draw-surface-at (source-image layer) (vector (round (/ (+ x (bg-scaled-width layer)) (max 1 x-divisor))) (y-offset layer))) ;; Add a transparent fill to simulate darkness (when (< lc 4) (lispbuilder-sdl-gfx:draw-filled-polygon '(#(0 0) #(800 0) #(800 600) #(0 600)) :color (color :r 0 :g 0 :b 0 :a 75))) (setf x-divisor (/ x-divisor 2)) (loop for sprite in *sprites* when (eq lc (sprite-layer sprite)) do (progn (animation sprite) (sdl:draw-surface-at (get-sprite-img sprite) (vector (round (/ (+ x (x-loc sprite)) (max 1 x-divisor))) (y-loc sprite)) :cell (animation-cell sprite)))) (when (and (not sprites-p) ;; Draw the player sprite in the appropriate z axis (eq player-layer lc)) (setf sprites-p t) (sdl-animation)))) (unless sprites-p (sdl-animation)) )) (defun sdl-animation () (setf *sprite-scale* (max .01 (float (/ (round (* 10 (/ *y* 100))) 10)))) (let* ((spw (max 1 (floor (* *sprite-scale* 24)))) (sph (max 1 (ceiling (* *sprite-scale* 32)))) (rows 4) (cols 3)) (unless (eq *sprite-scale* *old-sprite-scale*) (setf *old-sprite-scale* *sprite-scale* *img-player* nil)) (unless *img-player* (setf *img-player* (lispbuilder-sdl-image:load-image (format nil "~a/24x32-sprites-by-svet/Heroes/Fighter-F-01.png" *asset-path*) :color-key-at #(0 0))) (setf *img-player* (sdl:convert-to-display-format :surface (lispbuilder-sdl-gfx:zoom-surface *sprite-scale* *sprite-scale* :surface *img-player*))) (setf *cells* (loop for y from 0 to (* sph (1- rows)) by sph append (loop for x from 0 to (* spw (1- cols)) by spw collect (list x y spw sph)))) (setf (sdl:cells *img-player*) *cells*)) (setf *x* (+ *x* (* 10 *px*))) (setf *y* (+ *y* (* 5 *py*))) (when (< *y* 100) (setf *y* 100)) (when (> *y* 520) (setf *y* 520)) (when (< *x* -1600) (setf *x* -1600)) (when (> *x* 2600) (setf *x* 2600)) (let* ((direction (apply (λ -1 → "left" 1 → "right" α → (apply (λ -1 → "up" 1 → "down") (list *py*))) (list *px*))) (animation (get-animation direction))) (when (> *frame-index* (1- (length animation))) (setf *frame-index* 0)) (lispbuilder-sdl:draw-surface-at *img-player* `#(388 ,*y*) :cell (aref animation *frame-index*)) (incf *frame-index*)))) (defun sdl-main () (sdl:with-init () (sdl:window 800 600 :title-caption "Blub" :fps (make-instance 'sdl:fps-fixed :target-frame-rate 20)) (sdl-mixer:OPEN-AUDIO) (let ((music (sdl-mixer:load-music (format nil "~a/~a" *asset-path* "sample.mp3")))) (sdl-mixer:play-music music :loop t) ;;(setf (frame-rate) 15) (sdl:update-display) (sdl:with-events () (:quit-event () (sdl-mixer:halt-music) (sdl-mixer:free music) (sdl-mixer:close-audio) (clear-and-set-global-assets) t) (:key-down-event () (when (key-down-p :sdl-key-escape) (push-quit-event)) (when (or (key-down-p :sdl-key-down) (key-down-p :sdl-key-s)) (setf *py* 1)) (when (or (key-down-p :sdl-key-up) (key-down-p :sdl-key-w)) (setf *py* -1)) (when (or (key-down-p :sdl-key-right) (key-down-p :sdl-key-d)) (setf *px* 1)) (when (or (key-down-p :sdl-key-a) (key-down-p :sdl-key-left)) (setf *px* -1)) t) (:key-up-event () (unless (or (key-down-p :sdl-key-down) (key-down-p :sdl-key-s) (key-down-p :sdl-key-w) (key-down-p :sdl-key-up)) (setf *py* 0)) (unless (or (key-down-p :sdl-key-left) (key-down-p :sdl-key-a) (key-down-p :sdl-key-d) (key-down-p :sdl-key-right)) (setf *px* 0)) t) (:mouse-motion-event (:X mouse-x :Y mouse-y) (clear-display *bg-color*) (draw-box-* (- mouse-x (/ 50 2)) (- mouse-y (/ 50 2)) 50 50 :color *bg-color*)) (:idle () (clear-display *bg-color*) (draw-bg) (sdl:update-display)) (:video-expose-event () (sdl:update-display)))))) (defmacro restartable (&body body) "Helper macro since we use continue restarts a lot [remember to hit C in slime or pick the restart so errors don't kill the app]" `(restart-case (progn ,@body) (continue () :report "Continue"))) (defun load-a-texture (filename) "Read a texture (image file) and load it as an OpenGL texture" (let* ((texture (car (gl:gen-textures 1))) (image (sdl-image:load-image filename))) (gl:bind-texture :texture-2d texture) (gl:tex-parameter :texture-2d :generate-mipmap t) (gl:tex-parameter :texture-2d :texture-min-filter :linear-mipmap-linear) (sdl-base::with-pixel (pix (sdl:fp image)) ;; Only 24 or 32 bit images work, if this errors out convert it (let ((texture-format (ecase (sdl-base::pixel-bpp pix) (1 :luminance) (2 :luminance-alpha) (3 :rgb) (4 :rgba)))) (assert (and (= (sdl-base::pixel-pitch pix) (* (sdl:width image) (sdl-base::pixel-bpp pix))) (zerop (rem (sdl-base::pixel-pitch pix) 4)))) (gl:tex-image-2d :texture-2d 0 :rgba (sdl:width image) (sdl:height image) 0 texture-format :unsigned-byte (sdl-base::pixel-data pix)))) texture)) (defun my-rectangle (&key (texcoords '(0 0 1 1))) (gl:with-primitive :quads (gl:tex-coord (elt texcoords 0) (elt texcoords 3)) (gl:vertex -1 -1 0) (gl:tex-coord (elt texcoords 2) (elt texcoords 3)) (gl:vertex 1 -1 0) (gl:tex-coord (elt texcoords 2) (elt texcoords 1)) (gl:vertex 1 1 0) (gl:tex-coord (elt texcoords 0) (elt texcoords 1)) (gl:vertex -1 1 0))) (defparameter *gl-sprite-cells* nil) (defun set-sprite-gl-coords () "Create a cell based sprite sheet off sprites and return cropped result" (let ((width 153) (height 128) (w 24) (h 32) (rows 4) (cols 3)) (loop for y from 0 to (1- (* rows h)) by h append (loop for x from 0 to (1- (* cols w)) by w collect (mapcar #'float (list (+ .01 (/ x width)) ;; Start Left (/ y height) ;; Start Top (- (+ (/ x width) (/ w width)) .01) ;; Width (+ (/ y height) (/ h height)))))))) ;; Height (defun get-sprite-gl-coords (cell) "Pull out the appropriate sprite area" (if *gl-sprite-cells* (nth cell *gl-sprite-cells*) (progn (setf *gl-sprite-cells* (set-sprite-gl-coords)) (get-sprite-gl-coords cell)))) (defun get-sprite-gl-coords-portrait () "Pull out the appropriate sprite area for the portrait" (list .5 .02 .95 .55)) (defun get-nearest-sprite (x y range) "Loop across and pull nearest sprite" (loop for sprite in *sprites* when (and (in-range (x-loc sprite) (- x range) (+ x range)) (in-range (y-loc sprite) (- y range) (+ y range))) collect sprite)) (defun gl-walk () (setf *sprite-scale* (max .01 (float (/ (round (* 10 (/ *y* 100))) 10)))) (setf *x* (+ *x* (* 20 *px*))) (setf *y* (+ *y* (* 10 *py*))) (when (< *y* (* 270 (/ *resolution-height* 700))) (setf *y* (* 270 (/ *resolution-height* 700)))) (when (> *y* (* .9 *resolution-height*)) (setf *y* (* .9 *resolution-height*))) (when (< *x* -1600) (setf *x* -1600)) (when (> *x* 2600) (setf *x* 2600)) (let* ((direction (apply (λ -1 → "left" 1 → "right" α → (apply (λ -1 → "up" 1 → "down") (list *py*))) (list *px*))) (animation (get-animation direction))) (when (> *frame-index* (1- (length animation))) (setf *frame-index* 0)) (setf *active-cell* (aref animation *frame-index*)) (incf *frame-index*))) (defparameter *resolution-width* 1000) (defparameter *resolution-height* 700) (defun set-forest-layers () "Set up the 7 parallax scroll layers" (setf *bg-layers* (make-array 7 :initial-element nil)) (set-global-img 0 "bg/glitch-sampler/forest/sky.png" .8 -680) (set-global-img 1 "bg/glitch-sampler/forest/bg_2.png" .8 -480) (set-global-img 2 "bg/glitch-sampler/forest/bg_1.png" 1.2 -950) (set-global-img 3 "bg/glitch-sampler/forest/middleground.png" 2 -1200) (set-global-img 4 "bg/glitch-sampler/forest/middleplus.png" 1.6 800) (set-global-img 5 "bg/glitch-sampler/forest/foreground.png" 2.4 0)) (defun set-abbey-layers () "Set up the 7 parallax scroll layers" (setf *bg-layers* (make-array 7 :initial-element nil)) (set-global-img 0 "bg/glitch-sampler/abbey/sky.png" 1 0) (set-global-img 1 "bg/glitch-sampler/abbey/bg_2.png" 1 0) (set-global-img 2 "bg/glitch-sampler/abbey/bg_1.png" 1 0) (set-global-img 3 "bg/glitch-sampler/abbey/middleground.png" 1 0) (set-global-img 4 "bg/glitch-sampler/abbey/middleplus.png" 1 0) ;(set-global-img 5 "bg/glitch-sampler/abbey/foreground.png" 2.4 0)) ) (defparameter *vecto-star* nil) (defparameter *left-portrait* nil) (defparameter *right-portrait* nil) (defun set-large-portrait () "Set the portrait for player chats" (setf *left-portrait* (load-a-texture "~/src/lisp/sdl-blub/assets/portraits/Fighter-M-01-l.png")) (setf *right-portrait* (load-a-texture "~/src/lisp/sdl-blub/assets/portraits/Fighter-M-01-r.png"))) ;; Macro courtesy of http://3bb.cc/tutorials/cl-opengl/textures-part-4.html (defmacro with-vecto-canvas-as-texture ((width height) &body body) (let ((texture (gensym "TEXTURE-"))) `(vecto:with-canvas (:width ,width :height ,height) ;; run some vecto code ,@body ;; and load the result into a texture (let ((,texture (car (gl:gen-textures 1)))) (gl:bind-texture :texture-2d ,texture) (gl:tex-parameter :texture-2d :texture-min-filter :linear) (gl:tex-parameter :texture-2d :generate-mipmap t) (gl:tex-parameter :texture-2d :texture-min-filter :linear-mipmap-linear) (gl:tex-image-2d :texture-2d 0 :rgba 300 300 0 :rgba :unsigned-byte (vecto::image-data vecto::*graphics-state*)) ,texture)))) (defun vecto-star () (setf *vecto-star* (with-vecto-canvas-as-texture (300 300) (let ((size 100) (angle 0) (step (* 2 (/ (* pi 2) 5)))) (vecto:translate size size) (vecto:move-to 0 size) (dotimes (i 5) (setf angle (+ angle step)) (vecto:line-to (* (sin angle) size) (* (cos angle) size))) (vecto:even-odd-clip-path) (vecto:end-path-no-op) (flet ((circle (distance) (vecto:set-rgba-fill distance 0 0 (- 1.0 distance)) (vecto:centered-circle-path 0 0 (* size distance)) (vecto:fill-path))) (loop for i downfrom 1.0 by 0.05 repeat 20 do (circle i))))))) (defparameter *words-texture* nil) (defparameter *words* nil) (defparameter *words-time* 0) (defun say (words) "Say something, but don't do this more than once a second" (unless (or (equal *words* words) (> 1 (- (get-universal-time) *words-time*))) (setf *words-texture* (with-vecto-canvas-as-texture (300 300) (let ((font (vecto:get-font (format nil "~a/~a" *asset-path* "fonts/kenpixel.ttf")))) (vecto:set-rgba-fill 1 1 1 .9) (vecto:set-font font 8) (vecto:draw-string 0 0 words)))) (setf *words* words *words-time* (get-universal-time)))) (defun draw () "Draw a frame" (gl:clear :color-buffer-bit) (gl:color 1 1 1) (let ((x-divisor 8)) (loop for layer across (remove nil *bg-layers*) for lc from 0 do (progn (gl:with-pushed-matrix ;; The backgrounds (with-accessors ((gl-texture GL-Texture) (scale Scale) (x-size X-size) (y-size Y-size) (y-offset Y-offset)) layer (gl:translate (* -2 (/ *x* *resolution-width* .5 x-divisor)) (- (/ y-offset *resolution-height*)) 0) (gl:scale (* scale (/ x-size *resolution-width*)) (* scale (/ y-size *resolution-height*)) 0) (gl:bind-texture :texture-2d gl-texture) (gl:tex-parameter :texture-2d :texture-min-filter :nearest) (gl:tex-parameter :texture-2d :texture-mag-filter :nearest) (setf x-divisor (/ x-divisor 2)) (my-rectangle))) (loop for sprite in *sprites* when (eq lc (sprite-layer sprite)) do (progn (animation sprite) (gl:with-pushed-matrix ;; The sprite guys (with-accessors ((x-loc X-loc) (y-loc Y-loc) (animation-cell Animation-cell) (scale Scale) (gl-texture GL-Texture)) sprite (let ((x-coord (round (/ (+ (* -2 *x*) (* 2 x-loc)) (max 1 x-divisor) .5))) (y-coord y-loc)) (gl:translate (/ x-coord *resolution-width*) (- 1 (/ y-coord *resolution-height* .5)) 0) (gl:scale (* scale (/ 20 *resolution-width*)) (* scale (/ 32 *resolution-height*)) 0) (gl:bind-texture :texture-2d (get-sprite-gl-texture sprite)) (gl:tex-parameter :texture-2d :texture-min-filter :nearest) (gl:tex-parameter :texture-2d :texture-mag-filter :nearest) (my-rectangle :texcoords (get-sprite-gl-coords animation-cell))))))) (when (eq lc (forest-layer *y*)) (gl:with-pushed-matrix ;; The player sprite (gl:translate 0 (- 1 (/ *y* *resolution-height* .5)) 0) (gl:scale (* *sprite-scale* (/ 20 *resolution-width*)) (* *sprite-scale* (/ 32 *resolution-height*)) 0) ;; How large it is ;; Spin in a circle (flet ((little-star () (gl:with-pushed-matrix (gl:scale .51 .51 0) (gl:translate .3 -.5 0) (gl:translate (* 2.0 (sin (/ (sdl:sdl-get-ticks) 500.0))) (* .2 (cos (/ (sdl:sdl-get-ticks) 500.0))) 0) ;; Draw a little star (gl:bind-texture :texture-2d *vecto-star*) (my-rectangle) (gl:with-pushed-matrix (gl:rotate (/ (sdl:sdl-get-ticks) 5.0) 0 0 1) (my-rectangle) (gl:rotate (/ (sdl:sdl-get-ticks) 5.0) 0 0 1) (my-rectangle) )))) ;; Star in back (when (> (cos (/ (sdl:sdl-get-ticks) 500.0)) 0) (little-star)) (gl:bind-texture :texture-2d *player-texture*) (gl:tex-parameter :texture-2d :texture-min-filter :nearest) (gl:tex-parameter :texture-2d :texture-mag-filter :nearest) (my-rectangle :texcoords (get-sprite-gl-coords *active-cell*)) ;; Star in front (when (< (cos (/ (sdl:sdl-get-ticks) 500.0)) 0) (little-star)) ) ) )))) (let ((speaker (car (get-nearest-sprite *x* *y* 100)))) (when speaker (say (format nil "I'm at x: ~a y: ~a, you are at x: ~a y: ~a" (x-loc speaker) (y-loc speaker) *x* *y*)) (gl:with-pushed-matrix ;; Display the text being said (gl:translate .35 .2 0) (gl:bind-texture :texture-2d *words-texture*) (gl:tex-parameter :texture-2d :texture-min-filter :nearest) (gl:tex-parameter :texture-2d :texture-mag-filter :nearest) (my-rectangle)) (gl:with-pushed-matrix ;; Draw the speaker portrait (gl:translate -.80 -.75 0) (gl:scale .1 .15 0) (gl:bind-texture :texture-2d (gl-texture speaker)) (gl:tex-parameter :texture-2d :texture-min-filter :nearest) (gl:tex-parameter :texture-2d :texture-mag-filter :nearest) (my-rectangle :texcoords (get-sprite-gl-coords-portrait))) (gl:with-pushed-matrix ;; Draw the big avatar (gl:translate -.7 -.55 0) (gl:scale .5 1 0) (gl:bind-texture :texture-2d *left-portrait*) (my-rectangle)) (gl:with-pushed-matrix ;; Draw the other big avatar (gl:translate .7 -.55 0) (gl:scale .5 1 0) (gl:bind-texture :texture-2d *right-portrait*) (my-rectangle)) )) (gl:flush) (sdl:update-display)) (defun init () (ψ *sprites* α → (setf (GL-Texture α) nil)) ;; Clear sprite textures (gl:enable :blend) (gl:blend-func :src-alpha :one-minus-src-alpha) (gl:enable :texture-2d) (vecto-star) (set-large-portrait) (say "Welcome...") (set-forest-layers)) (defparameter *active-cell* 7) (defparameter *player-texture* nil) (defun opengl-main () "Test drawing with opengl" ;; Tutorial found at http://3bb.cc/tutorials/cl-opengl/ (sdl:with-init () (sdl:window *resolution-width* *resolution-height* :title-caption "Blub Game!" :flags sdl:sdl-opengl :opengl t :fps (make-instance 'sdl:fps-fixed :target-frame-rate 20)) (sdl-mixer:OPEN-AUDIO) (setf cl-opengl-bindings:*gl-get-proc-address* #'sdl-cffi::sdl-gl-get-proc-address) ;; Texture fails beyond 2000 resolution on laptop for some reason (may need to resize) (let ((*player-texture* (load-a-texture "~/src/lisp/sdl-blub/assets/24x32-sprites-by-svet/all/Mage-F-01.png")) (music (sdl-mixer:load-music (format nil "~a/~a" *asset-path* "sample.mp3")))) (init) (sdl-mixer:play-music music :loop t) (sdl:with-events () (:quit-event () ;; Moved this to end outside function loop ;(sdl-mixer:halt-music) ;(sdl-mixer:free music) ;(sdl-mixer:close-audio) t) (:key-down-event () (when (key-down-p :sdl-key-escape) (push-quit-event)) (when (or (key-down-p :sdl-key-down) (key-down-p :sdl-key-s)) (setf *py* 1)) (when (or (key-down-p :sdl-key-up) (key-down-p :sdl-key-w)) (setf *py* -1)) (when (or (key-down-p :sdl-key-right) (key-down-p :sdl-key-d)) (setf *px* 1)) (when (or (key-down-p :sdl-key-a) (key-down-p :sdl-key-left)) (setf *px* -1)) t) (:key-up-event () (unless (or (key-down-p :sdl-key-down) (key-down-p :sdl-key-s) (key-down-p :sdl-key-w) (key-down-p :sdl-key-up)) (setf *py* 0)) (unless (or (key-down-p :sdl-key-left) (key-down-p :sdl-key-a) (key-down-p :sdl-key-d) (key-down-p :sdl-key-right)) (setf *px* 0)) t) (:idle () ;; this lets slime keep working while the main loop is running ;; in sbcl using the :fd-handler swank:*communication-style* ;; [something similar might help in other lisps] (gl-walk) #+(and sbcl (not sb-thread)) (restartable (sb-sys:serve-all-events 0)) (restartable (draw)))) ;; Release textures (gl:delete-textures (append (list *player-texture* *words-texture* *vecto-star*) (mapcar (λ α → (GL-Texture α)) *sprites*) (loop for l across (remove nil *bg-layers*) collect (GL-Texture l)))) ;; Release audio if it was missed in quit event (sdl-mixer:halt-music) (sdl-mixer:free music) (sdl-mixer:close-audio) ;; Clear out sprites to make sure they reload textures (ψ *sprites* α → (setf (GL-Texture α) nil)) )))
32,093
Common Lisp
.lisp
696
33.778736
114
0.520271
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ee703fd5662be93a0d50af19925842f77933033877a6f5d096d70c9323138b30
20,842
[ -1 ]
20,843
sdl-blub.asd
ahungry_sdl-blub/sdl-blub.asd
;;;; sdl-blub.asd (asdf:defsystem #:sdl-blub :description "Describe sdl-blub here" :author "Your Name <[email protected]>" :license "Specify license here" :depends-on (#:lispbuilder-sdl #:lispbuilder-sdl-gfx #:lispbuilder-sdl-image #:lispbuilder-sdl-mixer #:cl-opengl #:vecto #:glyphs) :serial t :components ((:file "package") (:file "sdl-blub")))
470
Common Lisp
.asd
15
22.466667
45
0.557269
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
7faeea7122617a6556fd3ebe4e59aa9f276abd18cb5e993207117294dd82cc5d
20,843
[ -1 ]
20,848
Glitch All 1362 Public Location Preview images.html
ahungry_sdl-blub/assets/bg/glitch-sampler/Glitch All 1362 Public Location Preview images.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head><meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"><title>Glitch 1362 Locations</title>< </head> <body> <body style="color: rgb(204, 204, 204); background-color: black;" alink="#ccccff" link="#ccccff" vlink="#ff99ff"> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-01-17/LTJ1013E97K17P1_main_1295314951.png"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-01-17/LLI57FTH2HI17PN_main_1295314617.png"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5101HF7F429V5_main_1317078375.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA510IHD1F426DS_main_1346287852.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-29/LA510OD56BH2CBJ_main_1327889982.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA512CSG4H42RKG_main_1346350217.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA512IH5226256P_main_1346286874.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA512SK50J52F8M_main_1317086546.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA512T760J52JMS_main_1317082990.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA512UR70J52M1G_main_1346349637.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA512V480J52NMN_main_1317067840.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5130090J525IQ_main_1317081585.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5131390J52DJR_main_1317067567.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA5132LA0J526JJ_main_1346349461.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5133PB0J522JA_main_1317086366.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5134PC0J52VC3_main_1317084206.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LA5134UPLRU29OH_main_1338427291.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA5135VC0J52RGQ_main_1346288225.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5136CE0J52562_main_1317085158.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA5137QE0J52UB8_main_1346349409.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA5138OK0J526HB_main_1346287256.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5139FL0J52SP5_main_1317068016.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LA513A7M0J521F2_main_1344370090.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA513ALBNM623UJ_main_1343778072.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA513CDN0J52ND9_main_1317075237.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA513I7O0J52MO0_main_1317085516.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA513JAO0J5220P_main_1317083971.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA513KEP0J52N21_main_1346288038.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA513LMP0J52V1C_main_1346287622.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA513MGQ0J52Q8S_main_1343781034.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA513NJQ0J523F2_main_1317084116.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA513OVR0J52BMT_main_1346287883.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA513PFS0J52F45_main_1343778456.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA513QET0J523AD_main_1317084991.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA513RIT0J52F6P_main_1346349172.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA513S9U0J52SKD_main_1317075327.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA513TDU0J524CU_main_1317084487.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5140E01J52TLO_main_1317086452.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5142521J52DH8_main_1317084575.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5143921J52F9U_main_1317083650.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5144431J524TC_main_1317079095.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA51450HIC42Q4I_main_1343781258.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5145S31J52BA2_main_1317078870.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5146P2JC42B1Q_main_1317078449.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA5146Q41J528U9_main_1346349534.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA5147561J525G7_main_1346288325.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5147JHJC424OI_main_1317075552.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA51488SJC424V7_main_1317077267.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5148N71J5237C_main_1317080664.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA514988KC42014_main_1317077462.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA514BBVLC423BJ_main_1317076449.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA514DNTMC42534_main_1317076183.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA514GCJNC42I6G_main_1346287731.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA514HDC2J52TOU_main_1317085279.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA514JHG3J52E88_main_1317086047.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA514K0J3J52ID0_main_1317086710.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA514TDJOC42JUA_main_1317077726.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5157TDPC42IGK_main_1317077197.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA515E0PQC4214G_main_1346287916.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA515GCSSC42QGF_main_1346350389.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA515H6TSC424T9_main_1317078798.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA515KVOUC42I7T_main_1317078931.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LA51701PF262LC8_main_1335317887.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA517JJML262LT0_main_1343778331.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA517KBQL262H3U_main_1336603482.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA517L6UL262RHT_main_1346286791.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA517MT2M262D0F_main_1343778590.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA517OTP8K42NN9_main_1317077886.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LA519RU9M462NJ1_main_1335316440.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA51A5VM3K62P49_main_1317063738.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-22/LA51AB6PCBH2A2V_main_1321984974.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA51B2OQAK623EF_main_1317063634.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-25/LA51BMHT2562Q3D_main_1335374326.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA51BNNOEK629KG_main_1343775911.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-19/LA51CAQQ55629QM_main_1316479929.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA51CGIGKK62NV8_main_1336603266.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA51CP6NAF42G0N_main_1317078598.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA51DET7GF42FKO_main_1317078936.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA51DOIHSK626VM_main_1336603625.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA51IOM1PC62SPF_main_1346287258.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA51IVI7PC62L64_main_1346287183.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-21/LA51UU6VQAH21BE_main_1321916780.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-18/LA5215DAMMR2G95_main_1334786148.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-27/LA524M0OMOE2OGT_main_1330399977.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA52G8H9PJ420LQ_main_1317078525.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-24/LA52JSKF6BH2BPA_main_1322160242.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-29/LA52VVB0LDH23N7_main_1327886667.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA536V4QPH429H8_main_1317075466.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-28/LA5371G9AH421NO_main_1348891733.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LA53D0DJQMB2B4S_main_1316113601.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA53N05IG9S2BLR_main_1335828058.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-12-01/LA53SMVHGD13MA5_main_1354434163.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-23/LA54AT4AK613NBL_main_1340490882.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LA54EE8QNMR2G7C_main_1343847553.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-18/LA54GMM2OL13C81_main_1340082852.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LA54O13ELKR29I9_main_1343851740.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-26/LA54VETILKR26N1_main_1335490705.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA55645B8O528MI_main_1346349493.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA556IE55JS245H_main_1335827982.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LA55B5RDL7T2F00_main_1343851635.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA55S7P5RJ42VTG_main_1317078872.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA578O7KNJS2BNI_main_1335828520.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-18/LA57AV78DL13O51_main_1340070145.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-23/LA57CE3KTN13I7Q_main_1340503989.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LA57DQKFHPB2EIS_main_1316114187.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA57FADCBN62PR0_main_1346286840.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA57JSVQRH423HV_main_1317078005.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA57LTPQBK42SLV_main_1317077901.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LA57S02C1BH2TP4_main_1347564465.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5809MJM7T2N18_main_1334972076.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-15/LA582EG1QLS20BF_main_1334548039.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA58KK7B9O522PC_main_1317062735.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-21/LA58P18ELAH2ERI_main_1321904660.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-15/LA5945LJ7JS2GFK_main_1334546879.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA59DJ1KSH42F4L_main_1317076945.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-08/LA5AAB0VNKR2VRN_main_1352424671.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5AS7POI5T24IG_main_1334967128.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA5ASS2OEH42TSV_main_1343780797.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-14/LA5ATR2SUMB2FKP_main_1316052788.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-23/LA5BLHFU8913RQ7_main_1340509049.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5BTSQAJ5T2KNL_main_1334969537.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-01/LA5BVMNOTH42T8L_main_1349110823.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LA5C1CH8TDH277B_main_1347564318.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA5C39VNDK420LG_main_1343780597.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-21/LA5CSD7ERL13G16_main_1340343170.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA5CTEP5UH42CQC_main_1346350517.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5CUF0978T2L64_main_1334972609.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA5D24IIRL13IIC_main_1343782293.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-21/LA5D59PVEL13KNQ_main_1340333557.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LA5DGUEJ3PB2UE3_main_1316111381.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5DNE9DVJ429P8_main_1317075862.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LA5DVVGJQQ5237U_main_1316217087.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-24/LA5EK4L9B613VB1_main_1340585072.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5ELMKFP7T2Q4H_main_1334970891.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA5EPQG0FN62PCS_main_1343776235.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-15/LA5FBH56QKR29RK_main_1334545433.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-19/LA5FIJ2LMPB2FVN_main_1327025191.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-24/LA5FMLBNS31300N_main_1340606821.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-29/LA5FR0B3BUG27S7_main_1327895343.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5FUB7R0N627KI_main_1317064599.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LA5G15O4BUG2CVB_main_1347564734.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5G8MQD45T2UMH_main_1334970051.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-14/LA5GB0PVS313DBO_main_1339703950.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-22/LA5GBQ27BUG2FF9_main_1322014114.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-19/LA5GILERBSB25H2_main_1327030672.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-08/LA5GNCQ4T3137M7_main_1352425016.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-28/LA5GR516F3H2GUL_main_1327804181.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LA5GRQJINPB2HS1_main_1316804056.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-16/LA5GTNUABUG2BP7_main_1321494499.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-13/LA5GVGHRQKR2V5U_main_1334352511.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LA5H2M7G7UB24FO_main_1351380243.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LA5H2SQS45T2EIU_main_1343848736.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-29/LA5H8G00NUG2CRH_main_1327894499.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-17/LA5HHSJRL5T24RB_main_1334683665.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-16/LA5HQ0QUL5T2KGP_main_1334619284.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-03/LA5I10NJDL52TKD_main_1317668630.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-23/LA5I6EGFG813HL5_main_1340504997.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LA5I9D23ODH22M8_main_1347564411.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-29/LA5ICL7V9BH2LCA_main_1327891135.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA5IUQRKIMB2SGF_main_1336605972.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA5IVDTK1O13F5I_main_1343781949.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-19/LA5J0NEMIMB2OQ0_main_1327028685.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-12/LA5J5DGOIMB24LP_main_1347471692.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA5J7IB1HK42N3D_main_1343780285.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-19/LA5JAMFQIMB227E_main_1324322604.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-14/LA5JDUKSIMB207U_main_1316053394.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LA5JGH5UIMB28BP_main_1316113042.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-19/LA5JI29VIMB2SDT_main_1327031533.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-29/LA5JN50RNAH27R9_main_1327892239.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5KC1SHA8T2AL7_main_1334962395.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LA5KKVRDKAT2EA2_main_1343872415.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA5KUKA22I42CI9_main_1346288182.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-18/LA5LBN35B8T288J_main_1334783565.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5M6H0P2I42BQJ_main_1317076519.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-24/LA5M93LAV313EBJ_main_1340602817.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA5N5E10CM42HJ4_main_1346287502.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5N7KV0CM42DKT_main_1317076371.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-29/LA5NACEOCUG283E_main_1327895121.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA5NV05NFJS2NIF_main_1335828219.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5O4SAUO5T2GEB_main_1334970697.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-21/LA5OD66T5B13RKN_main_1340336159.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5OO9PJC8T26KE_main_1334960422.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-14/LA5OSVV5LRB23BT_main_1316051439.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LA5OUBP2SPB2MK2_main_1316110631.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-14/LA5P7O926NB2CFB_main_1316055616.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA5P9MNTJK42IJS_main_1346287334.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-01/LA5PPFP86NF2FOS_main_1320171887.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-23/LA5PRVG8G613GKF_main_1340499691.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5PU7I1A5T2GKQ_main_1334966650.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5PV4JH5K42CIV_main_1317078473.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-27/LA5PV4T79OE2AOA_main_1330368254.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-26/LA5Q57C99OE2GNU_main_1346030799.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-15/LA5QAHLTB9S2C0F_main_1334537066.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA5QBAL9SL52I02_main_1336603335.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-22/LA5QLASKPD13NEM_main_1340423164.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-15/LA5R11F6C9S2HA9_main_1334540063.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-26/LA5REO5I9OE2KLS_main_1346031873.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-23/LA5RFFFCK813Q99_main_1340485890.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA5RJRSOHJS2C95_main_1335828121.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-26/LA5RPAFK9OE28GN_main_1346027122.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5RV551E8T2K2F_main_1334965400.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-22/LA5S22147DH2QGH_main_1322002791.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-26/LA5S44RM9OE2416_main_1346026733.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA5T6PDF7K42SNM_main_1346350273.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LA5T7SLLO3H2ERO_main_1347564634.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5TBM8BIL5219R_main_1317080427.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LA5THPDOLK42GRD_main_1317075783.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-21/LA5TIHLV6E13IRP_main_1340326277.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5U9449F8T2DPR_main_1334969014.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA5UDRLCE9S20ER_main_1335828258.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5UIVQD18T21M0_main_1334961342.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-09/LA5VDIGU3G525F9_main_1320868552.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-15/LA5VEL0SJJS2KVU_main_1334544350.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-23/LA5VFMEIT8S2PPV_main_1351018748.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LA5VJDNKS5T2EFM_main_1334966121.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA5VOHQCROB2NSG_main_1336606069.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-28/LIF11TMDKL51U3N_main_1304029949.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-05-22/LA910DULG012JIE_main_1306096120.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-12/LA9111H84492V1K_main_1313180036.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9111M11LA2VAT_main_1346289298.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA91120N5LA249C_main_1346290018.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LA9114MS8B32FB2_main_1352934929.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-18/LA91161VALA21D4_main_1316382016.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA9117J18492SRS_main_1346350810.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA9118S28492QCL_main_1343783693.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA91195E8492R4B_main_1343783452.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-18/LA911I05ILA2CQ5_main_1316383002.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-18/LA911J5DKLA20MS_main_1337377118.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-13/LA911QQIDI32J6R_main_1315947843.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-11/LA912LITC492EU2_main_1313111663.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-17/LA912MO0D49290D_main_1313607402.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA912PJ5D492UIL_main_1336604267.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-27/LA912TJ0KF328Q3_main_1354059286.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA912UEGE492F2G_main_1346286841.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-11/LA9143HLH4929K7_main_1313114485.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA9154LI9R22R7A_main_1335831129.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-31/LA918AIN63127HB_main_1346470414.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LA91JU4QQ712DJN_main_1343867900.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-08/LA91JUQT2G82GUL_main_1323406986.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-12/LA91O38QQ192K8J_main_1313183364.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA91PK4T4292B0V_main_1336604457.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA91SD0IEQA24L5_main_1346289203.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA92VDUR8D82E3F_main_1346290438.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-09/LA931BPTNLD3E35_main_1352511616.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-09/LA931JPPT8A2LPU_main_1320892375.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-19/LA934IQQT8A26SV_main_1350694438.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LA93B4PV0I82IH7_main_1316220762.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LA93EC9GHI824JT_main_1317427919.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-29/LUVFC099RAB3FSG_main_1351554570.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-08/LA948QFPNDO2I94_main_1339216939.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-02/LA94AEO5H3D35LP_main_1351882773.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-02/LA94GCF7H3D30IM_main_1351907933.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA94KO5CFQA2V4Q_main_1336603685.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-02/LA94O989H3D3RN7_main_1351905507.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-05/LA94UK1BH3D3FJL_main_1352158038.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-02/LA952QGCH3D31E2_main_1351904161.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-29/LA957DNLVGN2F0S_main_1354227883.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-15/LA95G0P137927B4_main_1313432793.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-10/LA95U14319524O9_main_1334093524.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA960EK0JI82065_main_1346290114.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-30/LA961CLV4G8252G_main_1343700342.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-12/LA96CLEAK692K72_main_1313184653.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA96OS42D6F3M9P_main_1354139983.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-10/LA97L62229522GS_main_1334093906.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA97Q5LV0F92PU6_main_1343782837.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-10/LA97VMVOOG92JGT_main_1336670098.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LA983PEN5DT21G9_main_1335233510.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-08/LA98LV0U3BO2FA0_main_1339206498.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-07/LA98V53GRQA2VTO_main_1339118120.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-03/LA996D5KMF82E41_main_1312411134.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA99CL11LSA2M35_main_1336599879.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-08/LA99N0I68NM2O7F_main_1339204406.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA99NEQK1F92ICE_main_1336604334.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-10/LA99U5PI39524GN_main_1334092745.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-26/LA99VU1246A2VND_main_1330322081.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-24/LA9A9CGB9F824PK_main_1340592130.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-02/LA9AD3L90KN2KA3_main_1338692758.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-08/LA9ASHK0V1N2ACG_main_1339217943.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-13/LA9B6PJ3NM22M0D_main_1315949332.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-12/LA9BRBV8Q492K6R_main_1313185086.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-08/LA9BSVRN5I82JIQ_main_1312821105.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-08/LA9BT2I0ILD340S_main_1352417716.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LA9CO2B02OA2BG0_main_1351384735.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-03/LA9DEDE2N9N2MCS_main_1338765327.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LA9DNG6KMHP2AKF_main_1347570019.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-06-28/LA9DNT3I2U22RS7_main_1309320019.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9DURMSIAA2S1T_main_1346290087.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA9EAH3R8DT2R18_main_1335827757.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LA9EBPF8M2031HB_main_1338428009.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-03/LA9EJ02SANM2BT7_main_1338774043.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-15/LA9ELDLMNE92JHO_main_1313455073.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-09/LA9ENT2CRE22NFB_main_1320886038.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-03/LA9FAG24PI828J7_main_1344041021.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-12/LA9FD1O7S492CCD_main_1313172979.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LA9FDN44SG92SDQ_main_1343783124.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-02/LA9FV0T3I1N2USG_main_1338687641.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-15/LA9G6MA4P6923PH_main_1313432488.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-11/LA9GA91EN6N2OHB_main_1339466787.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA9GLRKMQF82961_main_1336606254.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9GT0J87H92MPR_main_1346286815.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LA9H1V6OGRU2FSB_main_1338427574.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-02/LA9H82Q59BO2EEE_main_1338686297.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA9HJCHM18A21B4_main_1336603198.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-02/LA9HU5KR4MN235O_main_1338688287.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-08/LA9I1LLF36O2P50_main_1339214842.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-10/LA9I4JIPBE92B8M_main_1336674425.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-30/LA9I8CS028A2O5F_main_1354308764.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-10/LA9I92MRBE92S8Q_main_1336670560.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-03/LA9IHQQSCF820VN_main_1312411223.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-02/LA9IROT9NAO2D0T_main_1338696203.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LA9IUTR8JJN28MF_main_1348526284.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9JJL6KCE924IK_main_1346286877.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-03/LA9JRIVO9HP2O8I_main_1338771700.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-02/LA9K85JOK1N2PO9_main_1338667271.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-03/LA9KKVJDTC829U8_main_1312396280.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA9KL58B1D82CDV_main_1336606534.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9KL68C1D825IA_main_1346290318.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA9KL77D1D829Q3_main_1336606333.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LA9KL81E1D82ABT_main_1317427563.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-16/LA9KL9UE1D82RFO_main_1324083487.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-03/LA9KLA8H1D82JM3_main_1344041345.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-19/LA9KLB7I1D822OL_main_1353374271.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-03/LA9KLCKK1D82V3B_main_1312408542.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA9L02KJ2D829LS_main_1336606033.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9L777SRI82T5F_main_1346289923.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA9LU1276F92KDP_main_1336604594.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-02/LA9M05J386A296V_main_1314991742.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA9MJQRNCDT23BP_main_1335827522.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-16/LA9MU59GB792T80_main_1337155083.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA9N5MTRTF828OT_main_1336606086.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-15/LA9NRNJSB792OG4_main_1313432557.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LA9NT2E8FF8243N_main_1343844627.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9P334396A2GHP_main_1346289944.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-18/LA9PIEHVQ8A2H4S_main_1316384740.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LA9Q4AL8DI82H2M_main_1346351218.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9Q9EQ5V4F33RE_main_1354148875.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-09/LA9QKFSST732VNK_main_1320884632.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9QMIMHV4F3RHN_main_1354156202.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9QNMSIV4F3143_main_1354155309.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9QOQAL96A2L2K_main_1346289552.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9QQQ8LV4F3TJ2_main_1354147886.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-06-02/LA9QR2STO832N8E_main_1307068237.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LA9QR9R40DT2A1D_main_1335827846.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9QTSIOV4F31QH_main_1354142478.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9R3FG405F3B9P_main_1354135066.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9R4OR505F3PSL_main_1354134686.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9R6BM705F3L3N_main_1354151223.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9R9KCC05F3VOU_main_1354153964.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9RFQBJ05F33D7_main_1354139134.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9RKS1O05F33Q1_main_1354142775.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9RM4IT05F3B4M_main_1354153466.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-29/LA9RMUNU05F3EI8_main_1354226030.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9RPI1P1QA2IMQ_main_1346289415.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9S04AB15F3H53_main_1354150589.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-28/LA9S09UB15F34AE_main_1354150935.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LA9S5T1LA0D27NG_main_1317258045.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-16/LA9S90EJ0G8241N_main_1350439450.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-12/LA9S9DGPV692IU2_main_1313197405.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-05/LA9T11KPMD82B1S_main_1312592222.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-08/LA9T7IFRDIA2N0K_main_1352425867.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-01/LIF8NEEEJCC3S7S_main_1351807045.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LA9TDS1HSIA2RCO_main_1336603441.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-18/LA9TDT2BUIA2GMA_main_1316386988.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LA9TEC6GB0D2B2M_main_1317258553.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9TEL683JA2JU0_main_1346290136.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9TIJ7S4JA2CNF_main_1346289841.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-09/LA9TKSRJ7LD3SGK_main_1352512190.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9U04T3OAA2R2L_main_1346289670.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LA9U0VLRB0D2JES_main_1317259082.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-09/LA9U27HN7LD3FVE_main_1352511647.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LA9U90TVB0D2EAH_main_1317259015.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-09/LA9UCEFP7LD3523_main_1352511698.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-09/LA9UIKNQ7LD3SN0_main_1352511731.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-12-09/LA9UQB74CHN2DCL_main_1355095831.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LA9V2T5DH8A23JD_main_1346289468.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCR10157DMK1L0G_main_1311272520.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-04/LCR10199TPJ1DA3_main_1320451502.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-13/LCR101NQ4BU1SKS_main_1323820795.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LCR101Q98A12EHH_main_1317440663.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCR101SU5VL1P09_main_1311272444.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-14/LCR101UN0NJ1QPQ_main_1323904577.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR103T98QJ1SC9_main_1336607090.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR103UREMK11MT_main_1336606447.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LCR105E77812AEF_main_1343773303.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LCR10B6U5NJ1VMA_main_1317080994.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-29/LCR10H9E3QJ1E2P_main_1354222011.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCR10K0NLRK1GKE_main_1311271998.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LCR10K3BPJK1U6F_main_1339298804.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LCR10K63BQL14PE_main_1317254869.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LCR10M2FUJK177P_main_1346289343.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-27/LCR10NQRPKJ16H6_main_1317166366.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-29/LCR10S7GVKJ1ABI_main_1348973246.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LCR10U5VHMK112O_main_1339298938.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LCR10UJQ1922K16_main_1343773221.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LCR111KI08O1HLB_main_1339298006.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LCR113VN08O1116_main_1339300087.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LCR117DK18O11FF_main_1339299887.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCR11CD34KK1AN1_main_1311272241.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LCR11DNA3EL10TD_main_1351299525.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-31/LCR11EIB3EL15ID_main_1338526942.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCR11JA67NJ15N3_main_1311272624.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LCR11SBEGQL13D9_main_1316819999.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR12D911T12E57_main_1336601018.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-02/LCR12NU45AM12BB_main_1314990255.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LCR12SD8J4K1PCV_main_1343865745.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR1303AT622I0Q_main_1336601436.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-10/LCR131F8U1K1PF9_main_1344635742.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LCR1356LOEM1NUI_main_1316820353.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR137T2HK123RR_main_1336601330.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR13974F4220EH_main_1336602502.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LCR13CE52PK1L81_main_1316816071.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR13JCI5MK1EF4_main_1336606784.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCR13KDF9MK1QJK_main_1311272662.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LCR13L1JQEM1OSG_main_1346288905.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LCR13M5UQEM15TA_main_1343864194.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCR13NMUQEM1A2R_main_1311271949.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-12-07/LCR13O9VQEM1M3P_main_1354867300.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-16/LCR13R31REM1A4S_main_1347820620.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LCR13VM1REM1GHI_main_1339300724.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LCR14062REM1QIR_main_1316232534.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-29/LCR143M18PK1774_main_1348966718.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LCR144H8APK1OJS_main_1339300790.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LCR1460502K1790_main_1317254959.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-31/LCR146VPNK12CTU_main_1346468702.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LCR14HPKPBK1U25_main_1343865013.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LCR14K7RQBK119B_main_1343865865.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LCR15ST40FM1M1I_main_1346288646.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCR1664750O1D23_main_1311272055.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR167RSRSL1VPP_main_1336606711.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR168ITRSL1498_main_1336606569.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LCR169AURSL1G9O_main_1346288553.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCR169OSLQL13JR_main_1311272160.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LCR16AUURSL1KTM_main_1346288405.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LCR16BA1SSL1P7K_main_1346288011.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LCR16VUKOQL18DU_main_1346288782.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-31/LCR17BAC6OL11L8_main_1325350625.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-06-07/LCR18H2DTFS17FB_main_1307491491.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LCR195Q63RK143M_main_1346288777.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LCR1985LIRK12N4_main_1317003591.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR199KIJRK1I2B_main_1336606976.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LCR1H8R9J62257C_main_1317070959.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-04/LCR1IDDEB2M17RC_main_1320451321.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LCR1OU9H34K19OE_main_1343865222.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-29/LCR1UERKPIN1G7N_main_1317318108.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LCR1UJAMSIN1D0G_main_1339300513.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LCR202JSVIN1STL_main_1339298354.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-08/LCR241CP4Q129I1_main_1323411168.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LCR29V8S4Q12IF4_main_1317074876.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LCR3M699PP12F4A_main_1317075818.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-16/LCR3MQK9NPJ191K_main_1326759959.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR4R7OEDS123M7_main_1336601132.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-05/LCR7C1EG6LL1197_main_1328477530.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-03/LCR7KJGL6LL1SSO_main_1317670752.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCR8F1FLBI12F2H_main_1336601835.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LCRCDPP5AN12EK8_main_1317075591.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LCRGEU0PUP12CLS_main_1346290327.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCRHITPKONL1T7J_main_1311273781.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-11/LCRHJHOFQNL1PHP_main_1339437844.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCRHSGTEION115H_main_1311272112.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCRL3F8I3L12O0J_main_1336601639.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LCRMCBQCRN12OFL_main_1317074426.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCRO4M7LH5L1QOO_main_1336607596.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LCRPA1RV1N12J4H_main_1343773084.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LCRR4REARA12CM5_main_1336601941.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LCRTAJK5UN124GG_main_1317075286.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCRTTKP69DO1MG0_main_1311271755.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LCRVT5V0BDO1HLF_main_1311272378.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-07/LDO1OPGDSCD29NF_main_1320709483.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LDO20OO2ETQ2EAG_main_1346288319.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LDO2NCNJUR038S7_main_1346350311.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-01/LDO2QRVKUR03S35_main_1338594381.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-13/LDO2TP0MUR03PJP_main_1339655417.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-01/LDO34N1OUR03H4O_main_1338594799.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LDO38FFPUR035D6_main_1344361775.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LDO3CO0RUR0307B_main_1346289615.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-11/LDO3GP3SUR034JD_main_1339473736.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-13/LDO3JFLC5TQ2NOR_main_1336957685.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-13/LDO3KC3TUR03MUH_main_1339633533.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-16/LDO3QTOUUR03ELC_main_1339894749.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-13/LDO42D61VR03PM6_main_1339651124.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-12-04/LDO4KOD692R2GQB_main_1354612278.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-19/LDO5CC4R1FD2SQG_main_1353374223.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDO5D2B1Q2R2M9S_main_1335320454.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-15/LDO6NJEE1AE3MKL_main_1353017070.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-04/LDO8HM0S8DD240C_main_1317762914.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDO8NGHIFTQ21CQ_main_1335320196.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-03/LDO8SVSPPCD22ED_main_1317678260.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDO97PV01MQ236V_main_1335320066.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LDOACFHG1DD26A5_main_1343783263.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDOAVTFUNTQ2EVU_main_1335320218.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-05/LDOB5HTH1ID2MTL_main_1317853622.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-14/LDOBUP8IR8E2IPH_main_1318632967.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-25/LDOC74759ST2IG1_main_1335379220.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-04/LDOE4V402DD2S3O_main_1317765755.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-14/LDOE67MFL6E2FBR_main_1318622908.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-12/LDOEDH6P6GC2R2T_main_1347471546.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LDOEMNGFQCD2KI2_main_1343846562.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LDOEP1822S03350_main_1343782104.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-13/LDOESR432S03SK7_main_1339654511.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-16/LDOF15642S031VN_main_1339903436.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-29/LDOF2V2INVQ2M9D_main_1354227258.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-17/LDOF4NU42S03R63_main_1339975575.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-01/LDOF6PP52S03H66_main_1338597715.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-15/LDOFACJ62S03LLK_main_1339803143.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-03/LDOFAE74UCD29PD_main_1317683532.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-13/LDOFE9L72S03U5T_main_1339644123.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-01/LDOFHEF82S03AE7_main_1338599094.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LDOFQEEIHDT2QNS_main_1335242400.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-13/LDOG0IIC2S03H1R_main_1339643241.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-25/LDOGBH4BG1E2BM0_main_1322250878.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LDOGKA16T4R2NP1_main_1346377572.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-14/LDOGNQICG1E2PNI_main_1318618988.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDOGVQ4M32R2COS_main_1335320346.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-25/LDOHDJ84BST2UI2_main_1335380874.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDOIGN9B60R2LI4_main_1335320324.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-22/LDOIJ31100R2CQG_main_1350930975.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LDOISPPQICD27RQ_main_1346288144.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LDOJ3MELL2R23Q6_main_1343862930.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-14/LDOK0A8OG1E2C7O_main_1318617498.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LDOKTFQ22DT2OEL_main_1335243330.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDOKUS4M0TQ263H_main_1335320090.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-04/LDOM6B78RCD26TA_main_1317763165.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-08/LDONE5453DD2DHS_main_1318115158.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-23/LDONEDVHC4030KF_main_1337795574.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-04/LDOOD6S77DD228S_main_1317757639.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-04/LDOOF07GRCD2MAP_main_1317762790.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-21/LDOOS17UPNJ2HT7_main_1324495243.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-11/LDOOSA8V29J24I3_main_1344722068.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDOPA4JQBTQ2AA9_main_1335320155.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-03/LDOQRJELVCD285H_main_1317691350.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDORIA62TLQ2HOH_main_1335320048.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LDORJMMHCDT2J08_main_1335241731.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-16/LDORU6QC6S035VQ_main_1339887785.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-12/LDOS7IQJDEC2KHP_main_1347472275.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-13/LDOSBNUH6S03CBT_main_1339638862.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDOT3LP63TQ204B_main_1335320112.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-22/LDOTEUFUIVQ2F0S_main_1350930755.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LDOTQ8JCOCD20TU_main_1346351156.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-09/LUVCHER0L9U2ABN_main_1341870056.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-04/LDOU5PQU0FD21PF_main_1317763063.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LDOU6HOAO2R21Q1_main_1346288141.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDOUIB18JVQ2O16_main_1335320260.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LDOVCSE5H2R2L24_main_1335320385.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-04/LDOVRMU9SCD2ASN_main_1317766676.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LDOVUDD84DD2U4U_main_1346287524.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LHF2KOKDR2D2EIU_main_1317412678.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LHF2R7NJE0D2JOC_main_1317261997.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHF468KKJGD3IMD_main_1353309625.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHF48S34D1J2F31_main_1335319275.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHF4QVGL7NI269C_main_1335319091.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-19/LHF583RFVLD3IUE_main_1353365124.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-17/LHF6E6PK0UC34J5_main_1353211647.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-25/LHF6MVO2G6J2F1F_main_1337971619.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHF6UMCMHOD387H_main_1353307750.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHF70EIUS0D3RDM_main_1353300549.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-16/LHF7DU3N0UC3DRA_main_1353112854.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHF893IMS2D2AKU_main_1346290829.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LHF8B3B0S4D2L5U_main_1343846691.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-05-20/LCR8MP0IJI1299U_main_1305935229.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHF8LE0Q0UC3QEF_main_1353295292.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHFA15VS0UC3ITS_main_1353301172.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHFATC8M4RD3E61_main_1353299756.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-01-10/LIF10RQLPLBYV7_main_1294708355.png</str> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFC3I4EKMI20JD_main_1335318997.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFC6RU2F3J26ME_main_1335319365.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-22/LHFD3EU3SH2307J_main_1340405205.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LHFD24US63D2QO6_main_1317402891.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHFD81QMKMI2SSL_main_1346289032.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFEKBJFP0J2J9Q_main_1335319205.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LHFER9HGE3D2UPP_main_1317412764.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LHFET4I773D2OUU_main_1344360703.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-18/LHFF2N2M36J2MG3_main_1334799174.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LHFFH3GKN2D2BTS_main_1317413304.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFFQ4KN29J2O0U_main_1335319601.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-11/LHV2H026E492IAF_main_1313127978.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-25/LHFG6KGMV3J2OU9_main_1337971731.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFGU9HJ81J2GGT_main_1335319253.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHFH7LJRA8D3QAR_main_1353309218.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-01-10/LIF10RQLPLBYV7_main_1294708355.png</str> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-16/LHFHNQ3RFUC3JMI_main_1353136152.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-03/LHFHR6S923D2RL9_main_1344041128.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFHTR4FSMI2MA2_main_1335319019.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFHUF5304J2F70_main_1335319439.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-16/LHFIEG6R1JD30UH_main_1353135412.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-15/LHFIV4V8J6J2I7U_main_1323988941.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFJ78CBJ6J2MLM_main_1335319556.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-18/LHFJGR1KH3J29IT_main_1334800204.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LHFJR7H9R8J2SHM_main_1346349924.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHFK965MT8D3G9E_main_1353298411.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHFKT1LK83D2BAF_main_1346291023.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-02/LHFL23QTC2D21SF_main_1351884032.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFL2SL1R0J2655_main_1335319227.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LHFL7HBQO2D2B4H_main_1317403658.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFL8M1IIPI2L46_main_1335319157.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFM9ORBM1J2BS4_main_1335319299.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHFN5KCGS5D3IFC_main_1353303398.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LHFNBKJMP4D2S9M_main_1317430318.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHFNDP1TKQD3V3O_main_1353291437.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHFNIVJNP4D2IM6_main_1346290933.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFO1IFRP3J28EU_main_1335319389.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-16/LHFODV4KNLD3L8L_main_1353134019.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-18/LHFOE9L06OD3JR6_main_1353297149.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFP8P54GMI2UCH_main_1335318926.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LHFPD9KBT5J2D8M_main_1344361969.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-09/LHFR8BRSVT33AE0_main_1341881040.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFR1N2PUMI2C7A_main_1335319050.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-03/LHFR6PV2Q2D24KJ_main_1344029317.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-21/LHFRAQFOGMI2QAI_main_1337635817.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LHFRC7NQL4D2C59_main_1317413138.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHFRISNV5NI2580_main_1335319071.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LHFS76JAU5J2P90_main_1346350173.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-17/LHFS89VFIID3EB6_main_1353212584.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-29/LHFSH881K2D2GP9_main_1317343952.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LHFSLPE6A3J2CFJ_main_1343778172.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-10/LHFTBK54M4D2JQA_main_1347333529.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-03/LHFTJK6IQ4D2R6M_main_1328337342.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LHFTQ7GLV2D2GG1_main_1317413227.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LHFU61GVLKI2ATQ_main_1343863043.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-30/LHFUE6UMQ4D2K42_main_1317419596.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-25/LHH1011JSO11ORS_main_1335392655.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LHH101L162117H2_main_1343868123.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LHH110KCF411NK6_main_1317060552.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-09/LHH112FHF411BUI_main_1320881852.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LHH12E1QP611OPA_main_1343868323.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LHV12AQNBB32CJ2_main_1311275209.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LHV12H937T32BDS_main_1316124118.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LHV140E5N352BGF_main_1346351401.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHV144684H42FI4_main_1346290101.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV14CBAO352I1I_main_1336602779.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-08/LHV15B8HEQ32SN0_main_1320802062.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-09/LHV15C8IEQ322UG_main_1320867437.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LHV15D5LEQ325BE_main_1317080720.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LHV15EUNEQ32FCI_main_1346351557.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LHV15KA8NE42GSP_main_1343774398.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-25/LHV17CFO5V327AJ_main_1335373514.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LHV17T973F42GEP_main_1316120360.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV1AMP8TL02B40_main_1336602032.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LHV1BIOIL142P25_main_1343778682.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV1CIQLVL02C6H_main_1336602292.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV1E645M21278O_main_1336602398.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-02/LHV1EUUNP142EDF_main_1335983715.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-07/LHV1F2U5M212P9C_main_1349649986.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHV1FQN29442T03_main_1346290510.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LHV1FUFU9442AKR_main_1335314949.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LHV1H1EHOF32UJM_main_1343843601.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-08/LHV1H71LPKA2P7G_main_1315512604.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHV1HKHRSKA2CR9_main_1346287882.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-13/LHV1HLGUT212JNT_main_1336939365.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-08/LHV1HO45PQA2QJS_main_1315518215.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHV1HT5F4D32GNM_main_1346291212.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV1IHMG1312A0S_main_1336601520.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-24/LHV1IM9C23124HD_main_1345869054.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV1KT9J0LA2IIA_main_1336604155.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-20/LHV1L41MCD32O4A_main_1324431756.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV1OOC40U42TKA_main_1336602364.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-12-06/LHV1PHOQH442RKT_main_1354845403.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHV1U1OJ7DB3RGF_main_1351327247.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LHV1VI5GPD32VAN_main_1343843900.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LHV21H2S5DT2VF8_main_1335238507.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-07/LHV23IAU9LA2E7A_main_1349673587.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LHV245SVALA2ST5_main_1346350115.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHV253Q5BLA2TTI_main_1346287272.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LHV2547JP9B2AG0_main_1346350055.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-22/LHV254FHBLA2F5N_main_1324595763.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LHV27JP91G321HQ_main_1311275759.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV2CGP55U22T4Q_main_1336604780.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-09/LHV2JBHA9152QAS_main_1352527473.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHV2SQS7ENA25BL_main_1346287529.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-08/LHV2SR7FENA29JQ_main_1315528975.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-10/LHV36AG0LO2208L_main_1336674630.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV3ISF18352QIP_main_1336602445.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-12/LHV43I0BI352TG6_main_1326428758.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-12/LHV4AC2C3C42172_main_1344807953.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-02/LHV4U1QMFC42NBP_main_1335984261.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHV4U509S9B2MRV_main_1346286924.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LHV51JE5JC42VP2_main_1311275126.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LHV5B9093K42J9S_main_1343781360.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV5TFKNF0320GQ_main_1336604997.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-22/LHV6HOCAH203RMF_main_1337735751.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LHV73IC58DT2RO7_main_1335827378.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LHV7EKEL4MA3L56_main_1351311991.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-27/LHV7LLAAIDB35G2_main_1354059093.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHV7RGKN4MA33RT_main_1351322607.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHV7VE7O4MA35H6_main_1351322070.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHV88RQU60B3Q0G_main_1351329576.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LHV894HP4MA3ME7_main_1351313556.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHV8E39Q4MA3CMV_main_1351324733.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHV8H4NQ4MA316V_main_1351325733.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHV8KV9R4MA3JLS_main_1351327763.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHV8NMVAGE228A2_main_1336605557.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHV9BF0AUJ42CLQ_main_1346290327.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVAKM1MR032IGJ_main_1336604691.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-29/LHVAP821MDT2L85_main_1335764848.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVB16RSG652GJ4_main_1336602621.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LHVB9CAE6032G6S_main_1311271453.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LHVBSCOFMDT2VE0_main_1335245669.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LHVC6LAT70D23MG_main_1317255687.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LHVC7554ADT2VA1_main_1335237694.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LHVCJB2OMDT2VD8_main_1335244500.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LHVCKEPHO403BN5_main_1338412968.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LHVCUKA1I0B3UE8_main_1351303674.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVD0VVK8U2262J_main_1336605248.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LHVDGF0JMQ7299V_main_1343773011.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHVDH0710RA3812_main_1351328685.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LHVDIELDQQ7228K_main_1316197394.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-26/LHVDKQ2O6S23LVJ_main_1340741286.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LHVDQMOA80D245R_main_1317255659.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-03-18/LHVE9CULH652BV2_main_1332101296.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-02/LHF6IS64NR53L7B_main_1343948875.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LHVEI9NVJ203LRO_main_1338428421.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LHVFCFD8FRA37T6_main_1351302813.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-08/LHVFUCU92TA26BJ_main_1315517817.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-08/LHVGSE15MQA2OGE_main_1315515555.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVH2BF13132CUF_main_1336605484.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LHVHDUF7PVC2D3E_main_1317254058.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-19/LHVHMCSV0QA2JET_main_1353374055.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVHP2BJI652O9S_main_1336601669.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-08/LHVII3H61QA2C21_main_1315515412.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LHVLC8CI3Q62P8T_main_1316208165.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-30/LHVK0T750DT2D3K_main_1335827460.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LHVL2NDFT732BK3_main_1311273091.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVLCNLR783251B_main_1336605177.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-02/LHVLG51LV6B22AO_main_1322886300.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LHVLJEBAJ832SJA_main_1311275950.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVM1R8OA7B2IRT_main_1336603891.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-06/LHVM50PPD7B2EEU_main_1315360236.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVMCDF3LA32K2R_main_1336605690.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LHVMF8SSJ7B2DV2_main_1316206587.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LHVMHDIBNA32QPF_main_1311273036.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LHVMK86NP7B26E6_main_1346287039.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LHVN4R7V7OA3MFN_main_1351319527.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LHVNJNP4MAB3JI5_main_1351311399.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHVO8GQFVAB33C9_main_1351321664.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LHVOD0F3T403694_main_1338419159.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LHVP6H0KT403N8A_main_1338405229.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-21/LHVP7QOKT403F5Q_main_1340328933.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-23/LHVP8TCLT40336S_main_1337814009.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-06/LHVPJPLE4TA27LD_main_1315347746.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-27/LHVPOOR1LTA3NJ2_main_1351323796.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LHVQ1AS19UA3O3T_main_1351308846.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LHVQ48MA5GB39HE_main_1351317399.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LHVQM0MUB032B5S_main_1311273210.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-07/LHVQMS17V813FN7_main_1339110168.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-29/LHVQU18N3O021A5_main_1322613622.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LHVRJLV2UOA3EMR_main_1351320212.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LHVSP6MKGDT2VUK_main_1335244007.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-01/LHVSU0QSQIA2TIM_main_1322799534.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVT0JVHRIA2IE9_main_1336603772.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LHVT10TNRIA23L2_main_1343779761.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-21/LHVT4C9KSIA2UMG_main_1316638038.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LHVT7SA9QT221J2_main_1311271969.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVTUCELRV02V9I_main_1336600959.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LHVUFJ6HGRU2V0E_main_1338427641.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LHVUR3UKGRU2SD2_main_1338427157.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LHVVLBM1VL22A6Q_main_1336605409.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LIF101NCNU112O2_main_1343863525.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-09/LIF102FDNU11314_main_1347226496.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-02/LIF102S56SV16TJ_main_1346637014.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF103GH4C72BHJ_main_1336604743.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-01/LIF1077T5TU16I9_main_1346553215.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-01/LIF10HE4JTU1S7P_main_1346554185.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIF10O20NQU1B2P_main_1346727696.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LIF10P7CR622E3R_main_1311273246.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-01/LIF10RP1DBU11NU_main_1346551263.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-01/LIF113PVOQU1UE5_main_1346547015.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIF11LLL5KV1CUG_main_1346719621.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-27/LIF126GSMBU1V2Q_main_1346114610.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIF12EQUGVU1RPI_main_1346718658.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-29/LIF12PMQ5121D68_main_1354232752.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-02/LIF12UPTEUV14ON_main_1346635709.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIF12VEKFAV1D67_main_1346716536.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIF13FGQHKV1E72_main_1346719105.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LIF13QL5IG02UAI_main_1311271762.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF14KB3T872MAH_main_1336604561.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LIF14N6MU872GGI_main_1316126891.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LIF14OKTU8722CQ_main_1343780390.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIF14PFVU872CSG_main_1346288551.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIF14QE5V872L2E_main_1342391524.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIF14RQ7V872TPR_main_1346288629.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LIF14S69V872E2N_main_1316214848.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LIF14TS9V872U9I_main_1316835461.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LIF14ULAV8720HD_main_1316835219.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF14VBBV872N2I_main_1336602049.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF1502CV8729RP_main_1336602291.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LIF152TCV8720Q6_main_1344360595.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-08/LIF153KDV872SE5_main_1352427362.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-22/LIF154IEV872JTD_main_1324597513.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIF15OTSM102353_main_1346726623.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-02/LIF15S7VPRV1DIP_main_1346640853.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LIF160988972VND_main_1343843720.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-02/LIF1609JRKV151E_main_1346641752.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIF163TJHQU191C_main_1346723085.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-03/LIF1662B8972C00_main_1341356781.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF1687ILK12R66_main_1336605619.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-03/LIF16CPE89723EI_main_1344041435.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-15/LIF16GDJ89724E3_main_1337100452.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-07/LIF16IHL8972EAC_main_1315446546.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LIF16PJS9972LC8_main_1316215216.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF16SBFB972GLK_main_1336604877.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LIF16TPLB972GKV_main_1311276573.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-26/LIF16U5HC972SNC_main_1311726783.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-02/LIF17GAI3VV1C1F_main_1346636093.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF18TO5NB72AMR_main_1336603700.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIF18V95I972R96_main_1346288858.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LIF19BFUG922N84_main_1343774587.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LIF19MQDQB725HT_main_1343774167.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF1AJ58K972JHJ_main_1336602385.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF1AQ6CK972734_main_1336603837.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-02/LIF1AUQNSDU1UFL_main_1346642495.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LIF1CI1RSB72BCA_main_1316128186.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF1DI4GH4E2JB7_main_1336605049.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIF1F3IM11020RB_main_1346723687.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LIF1FHVC1C72HEJ_main_1311283776.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIF1GTHPO9V14NG_main_1346287254.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF1LG3FA9E23A6_main_1336605570.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-17/LIF1NMGHH4E2OA1_main_1321571070.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-05-19/LIF1Q3IQM7122SP_main_1305850520.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-05-20/LIF1Q48RM712F87_main_1305914148.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-05-23/LIF1QBNPP7123J0_main_1306186483.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-18/LIF1SGGD7EU12T5_main_1316330386.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF1TOD6F8C21NS_main_1336605873.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-24/LIF209RIH4E2JCP_main_1337913084.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-02/LIF25C8OJSV19UJ_main_1346633907.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF26IOMR8C2GBF_main_1336605775.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LIF26JLSR8C261S_main_1348510956.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-15/LIF28GT9KE72QQG_main_1321409182.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-11/LIF28P8KH4E2U7M_main_1349993586.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-18/LIF2AUKEAT72DU9_main_1316392172.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIF2GT4E9FI2D2Q_main_1353918070.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LIF2I10MEOE2CRA_main_1347563240.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LIF2IUQJQ571TFL_main_1343867495.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIF2K0TOOK434L9_main_1342999277.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF2KRHMH4E24QU_main_1336605284.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-12/LIF2T8VNH4E2DRK_main_1318480956.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-19/LIF308SGODC2TRS_main_1348099597.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIF33FDK0K3371H_main_1342400064.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-12/LIF35OFPH4E21T2_main_1318482205.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-16/LIF38KRD8S12HAR_main_1350439557.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-13/LIF3I4MK96E26KF_main_1318532474.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-19/LIF3IFLRH4E2D6G_main_1327041329.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-14/LIF3NBOHV8E20DR_main_1318632640.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIF3T0ACGI43H7O_main_1342997008.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-05/LIF3VMSMT0H2NKE_main_1328499905.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIF41TONM7I21IC_main_1353918376.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIF44E96U4I2OQK_main_1353917665.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIF455U7PK43M1N_main_1342998080.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIF47THTV6I2D29_main_1353917962.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LIF48OQC9DH2014_main_1348515010.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-18/LIF4CVKKD082IRH_main_1316389928.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-06-24/LIF4SAD3FGU1NJ4_main_1308936004.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIF54MLFFJ33G7G_main_1342406457.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-19/LIF57HKSG9E2FSO_main_1327041610.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-12/LIF5JTDA5EC2A02_main_1347471935.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIF5TTUG9H33TNH_main_1342407013.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-18/LIF5UU8FO3029OK_main_1316332989.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIF69TV8AFI2NM4_main_1353918292.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-12/LIF6APMFJUG2AK5_main_1350094142.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIF6BOGS0I43INV_main_1342997586.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-21/LIF6RTBE48435HF_main_1342919641.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIF72A3F7J33VAI_main_1342407578.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-19/LIF77JBCJF43LC2_main_1342731473.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIF7CEAQOJ339P2_main_1342399086.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF7SHGS3E72T8L_main_1336601253.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIF7T3QJAFI2BKP_main_1353918583.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-23/LIF84CCRN203N7P_main_1337793625.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-16/LIF85V4ON6E2UVV_main_1321471401.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIF8I91P8J02A85_main_1336604866.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIF8TG1FV4I2M3B_main_1353917852.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-06-01/LIF8TUJ3HGU1G3J_main_1306957837.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIF94J49PJ332NQ_main_1342405989.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIF992JCSAH29T1_main_1329112608.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIF9JS2DPJ3327C_main_1342401871.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LIF9N8QU1PG2CN8_main_1348515598.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIF9O9SDPJ3318J_main_1342404927.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIF9UI391Q62CIC_main_1346289777.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFA3ULUOEI2208_main_1353917436.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFA735EG7I2QEN_main_1353919468.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-17/LIFAGDB0IGU1BCK_main_1316319789.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIFBD8FM0UG2QCR_main_1329103570.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIFBHR9M3L43FET_main_1343006841.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIFBLG555G434J3_main_1343000955.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LIFBSQJTGME2KRH_main_1347562817.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-16/LIFC768I7UG2F88_main_1321491080.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFCLLMITT727LH_main_1336604294.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIFCNFNEJRG2ON4_main_1329112221.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-25/LIFD6RETO7I2AHB_main_1353916589.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFD6TMU2952RMJ_main_1346289362.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIFD7QU2DF432MC_main_1343012010.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFD854FO6E2UO7_main_1336605432.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-04/LIFD8KDI3BH2UAF_main_1328414609.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFDAMF03952OEO_main_1346288918.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFDB8NGF282H0Q_main_1346289714.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-06-06/LIFDIDJT0GU1CR8_main_1307394762.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIFDQ6HSHJ33QQB_main_1342397305.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-12/LIFDS8H7KBC2B2U_main_1347471494.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LIFDTKVOMQE2SPB_main_1347563170.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFDVRTI27I2578_main_1353918991.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LIFE0QTCG3H2QU2_main_1346378146.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFE9GRB8S62L1H_main_1336604199.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LIFEL8CPH08259V_main_1346350433.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFEMMLM17E2540_main_1336605209.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LIFF11B2RE72HMI_main_1316213051.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIFF6BQE33H26JC_main_1329109742.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-18/LIFF72DU3O727EA_main_1316388452.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF7O3E9O72HNI_main_1316994827.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF7PKF9O72UKC_main_1316994847.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF7Q3H9O7222R_main_1317067234.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF7RSJ9O725F1_main_1316994899.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFF7T7N9O72TP2_main_1346289041.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF7UIP9O724RP_main_1317075023.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF7V2R9O72MUP_main_1317075636.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF808S9O724UJ_main_1316994987.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF81JT9O72F60_main_1316995011.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFF829V9O7221M_main_1346288440.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF83D0AO72SUG_main_1316995056.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF84K2AO72945_main_1316995078.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF85Q3AO72TIV_main_1317074146.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF86N5AO72UVT_main_1317074467.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF87R8AO72P6D_main_1317074718.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF88AAAO72MQ9_main_1317073896.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF892CAO72FUN_main_1317073771.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-08/LIFF8A7EAO72NPH_main_1352425138.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF8B1GAO72GIC_main_1316995235.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF8C3IAO7210R_main_1317074820.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF8D0JAO72UM0_main_1316995280.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFF8EOJAO72U8U_main_1346289146.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFF8FOKAO722CT_main_1346289261.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF8GBMAO72KNI_main_1316995347.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF8H8NAO729GM_main_1316995369.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF8ITNAO72C6N_main_1317074268.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF8JAQAO72U81_main_1317074368.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF8K9RAO72LP5_main_1317075332.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFF8LVSAO72S3C_main_1346288708.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFF8NE0BO72CNQ_main_1346288776.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFF8OI1BO72KC1_main_1317074603.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF8P93BO72VKV_main_1316995527.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF8R57BO72VDS_main_1316995548.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFF8TQ8BO72L8G_main_1346288531.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF8VNBBO72B2C_main_1316995594.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LIFF91EEBO723DF_main_1344369925.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF92MGBO72DPK_main_1316995638.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LIFF949JBO728GK_main_1343851286.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF95RKBO72R2Q_main_1316995683.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-25/LIFF96TLBO72CS3_main_1316995706.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-04/LIFFBC4MNO72556_main_1320451028.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LIFFGUFIABH2D6F_main_1346377728.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LIFFHFT5UO72FC2_main_1343776048.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFFIRQ00P729BS_main_1346289564.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIFG0VETDF43E95_main_1343016742.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFG1L8GLGE2HIA_main_1336604909.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFG7L7VG4I21HR_main_1353917089.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-18/LIFGECSJLGE25UP_main_1318985787.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LIFGKHHCIE33LTF_main_1352924639.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-13/LIFGR46M8RE2RC7_main_1323829336.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-01/LIFGR4QG5IV1QPI_main_1346546253.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFHB52DMHI2FQ6_main_1353919177.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LIFHEL95TME269I_main_1347562928.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFHGPDRLLE275R_main_1336605493.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFHJJEV95I2HV8_main_1353919263.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-16/LIFHNVD4SG33SKK_main_1342476932.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFHR02K9S62Q72_main_1336604087.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-16/LIFI1K1IRJE2VTS_main_1321471311.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-30/LIFI4FP9GRU2CC8_main_1338427414.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-04/LIFI9G70SV72H3C_main_1320450248.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LIFID13EDG725C2_main_1316130796.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-11/LIFIDIQ4NGC2U1Q_main_1349993631.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LIFIECSPJ082A49_main_1344361558.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-14/LIFIEGBN9E72ILT_main_1337048516.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFIGIANP4I22P2_main_1353916969.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFIGKANP4I2H84_main_1353916815.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIFJ48A6O743F2G_main_1343014553.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-05/LIFJ5ECMA3H2OIV_main_1328501600.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-25/LIFJ6D4447I208E_main_1353916517.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-16/LIFJ8NC9JE33O53_main_1342476702.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-25/LIFJ9M178082JAO_main_1335397601.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-04/LIFJBNJ589E2BNK_main_1328411798.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFJD8Q925I2658_main_1353917340.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIFJISNAO743CK0_main_1343013281.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-17/LIFJJRJ23PE224C_main_1321571328.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-21/LIFJKLT8VF43JTF_main_1342925193.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIFJLIMKKI438SK_main_1343016024.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-02/LIFJP2UC80820D3_main_1312329123.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIFJPVPCO743LKE_main_1343008652.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-22/LIFJUKUDO743LES_main_1343003481.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFJVV332JC2M0S_main_1336601787.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-16/LIFK06CR2JC2K51_main_1321493483.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIFK0P9Q6JC2MEF_main_1329102762.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-15/LIFKPQEDFG722M5_main_1316127115.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-09/LIFKRLE5NL334A8_main_1341859180.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFL52J67952Q3L_main_1317074173.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-16/LIFL56303J33S8H_main_1342476829.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIFL5KM3KE333GJ_main_1342394330.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFLAJU87952TDU_main_1317074092.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFLFDAA79522M2_main_1346288789.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFLKU9C7952Q8N_main_1317068028.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-25/LIFLN0JD7952TH6_main_1322249342.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFLPDTE7952BT3_main_1317067352.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LIFLPK2J9UG2AV1_main_1348519847.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFLRSGG7952SBS_main_1346289246.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIFM36BDKE33VO3_main_1342385579.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-22/LIFMMN6E7A73R0T_main_1345685275.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFM4LUEREI2A6E_main_1353918185.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFME5D0K0H2EGC_main_1336601676.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIFMGTCIQGU13TS_main_1346717220.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFMJ2KQ7952UFB_main_1317074322.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFMJN4D6II2D79_main_1353917552.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFMLT2S7952HAQ_main_1346289309.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LIFMNSVS7952M4T_main_1343783788.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFMOLVTLHV1RAR_main_1346287400.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LIFMR8JU7952PH5_main_1346351555.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFMTLQV79528FE_main_1317067381.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-25/LIFMVP96ONU12CO_main_1345943673.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LIFN23NRGG72NRR_main_1343783584.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-15/LIFN3FI0TNU10PS_main_1310754399.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIFN5CQH1OU1P61_main_1346718027.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LIFNEU3LGUG2BMK_main_1348519658.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-26/LIFNG7GD8OU17BO_main_1327617465.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-17/LIFNG8EK8OU1A8D_main_1316313489.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-21/LIFNGN0F5I438EQ_main_1342926163.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIFNH08K9OU1SAB_main_1346722141.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-03/LIFNIC9JFOU1B2S_main_1346720837.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNKR2C2G522MG_main_1317072822.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFNL5554G52MHJ_main_1346288379.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNL7F74G52BUD_main_1317074537.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFNL8294G52U4M_main_1346288495.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFNMSQ5GG528AK_main_1346288422.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNMTBAGG52OON_main_1317073483.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNN016HG5246T_main_1317067559.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNNAK4JG5273T_main_1317072171.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNNB46JG527E6_main_1317073288.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNNC57JG52PDR_main_1317074988.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFNNDV7JG52198_main_1346289128.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNNEA8JG52VL8_main_1317067322.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNNFA9JG5222H_main_1317067258.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFNNGNAJG52LIH_main_1346288550.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFNNHRBJG52QS0_main_1346288706.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNNI8JJG52EA8_main_1317067856.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LIFNNL3OJG52OKJ_main_1343851117.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNNMMQJG52764_main_1317072416.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNOHGBMG523LQ_main_1317067176.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LIFNRF3P0E02J90_main_1343845530.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFNTBMONG520FD_main_1346288635.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNTFRSNG52DMO_main_1317072656.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNTLPJPG52ONQ_main_1317072240.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNTM0NPG52JB5_main_1317067922.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFNTN8PPG52DTG_main_1317074641.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LIFNTO2RPG52AH8_main_1343780680.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LIFNU7T73U722U5_main_1346289493.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFO6K4DEFI22MQ_main_1353919352.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LIFOEFNL89529MS_main_1317073395.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-06/LIFP24DTLI43SM4_main_1346978137.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIFP35VRDTC2JVA_main_1329110721.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFP6UNEK7I248O_main_1353917213.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-25/LIFPD818SEI26JR_main_1353916646.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2013-01-30/LIFPV9EMLT72DP4_main_1359574007.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFQK1MTEFI2I28_main_1353918684.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFQMHF4MT72V9Q_main_1336604447.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-16/LIFQRA323ME2GCO_main_1321471507.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LIFQS2GE6BH21V9_main_1348515919.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-08/LIFR1RLV0G43647_main_1352424828.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LIFR3G1FFE72K0S_main_1317260121.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-21/LIFRS9CDPF43UKR_main_1342924597.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIFSC0G9FG33LCT_main_1342383843.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFSJB0MAHI2EN9_main_1353919077.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-04/LIFSLDITPAH2CHG_main_1328408112.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIFTFC6OCE33DO7_main_1342386154.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIFTGHSRLDH2LDE_main_1329104130.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-26/LIFTO2T9TEI2LFB_main_1353917765.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-04/LIFTPARUOOG2TEB_main_1328412663.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIFTQPDA7H335UQ_main_1342408920.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-15/LIFU2T6EMJ33NI6_main_1342397709.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LIFU3VBO31H28F0_main_1348515333.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LIFU7EN0HN12ETM_main_1336605836.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LIFU9C04IE72O8K_main_1316835942.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIFUKF4FNRG2JT0_main_1329111835.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-20/LIFUNGIBHQ1243A_main_1324431602.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIFV6DIGKVC21D0_main_1329111404.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-25/LIFVCIJ6BHI2DR4_main_1353916740.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-12/LIFVST7DH4E2CCO_main_1318482522.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LIFVTRAAJE72GHD_main_1311299558.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-12/LIFVV1VA9RG2ISF_main_1329105293.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-14/LLI101QQRA211SM_main_1347690516.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-09/LLI107JLRU11EM2_main_1352526029.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-11/LLI14TT8T921J21_main_1329021323.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LLI17P0T8J029N7_main_1336602578.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LLI17VIKLJ02BSV_main_1336600726.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-04/LLI1BQA9PUH16A0_main_1320451413.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LLI1C5DJ2Q12O21_main_1317075113.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-19/LLI1D2QFT571VQT_main_1316478589.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-12/LLI1D3B2U5715LL_main_1302628473.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LLI1D5DO1671QPA_main_1343867269.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LLI23D3LDHD1FQA_main_1316818121.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-27/LLI23FELDHD1O3C_main_1327700778.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-26/LLI23Q4NDHD11EK_main_1351298046.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-28/LLI23TBNDHD19F2_main_1348890653.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-10/LLI23UJNDHD1A4V_main_1344635834.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LLI2HHRC84F1TJ6_main_1316818541.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LLI2HVHUM4F16B0_main_1336606374.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LLI2V0UN7RD1T2J_main_1316813746.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-10/LLI2V30ECRD1GAU_main_1344635831.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-09/LLI2VDR4JRD1AEG_main_1347243339.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LLI3272LOTD1B1F_main_1343863311.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-10/LLI32G3NUTD100I_main_1336673390.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LLI32HBOUTD1GQV_main_1336607505.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-26/LLI32IDPUTD1F2R_main_1317075937.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LLI32J0SVTD114U_main_1343866407.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-10/LLI32KHF0UD1AOK_main_1344635722.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LLI32N0F1UD114O_main_1316233363.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-14/LLI334UG2UD1IKQ_main_1316056618.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-10/LLI33CQJ3UD1G5J_main_1344635677.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-22/LLI3ABTPR2J1SH9_main_1324595670.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LLI4HC7IO2E1U31_main_1316818825.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-25/LLI4HJ9GRLI1C4E_main_1345931586.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-26/LLI57DI72HI153U_main_1322353782.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-10/LLI57EKC2HI1EH8_main_1326184166.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-12/LLI57FTH2HI17PN_main_1302628299.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-12/LLI57G8I2HI1CSO_main_1310518404.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-02/LLI599R12JI1216_main_1351886762.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LLICF642CTI16R1_main_1336601561.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LLICFILAMTI11QV_main_1311272822.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-06/LLID3PL336E1RN1_main_1346959097.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LLIE7307LTG11T2_main_1343864783.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LLIERMJ93DE1H25_main_1336607432.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LLIF37ASJFE1AVQ_main_1336606521.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-05/LLIF3AQTOFE19OR_main_1352166931.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-23/LLIF6R3R9GE1GQB_main_1316816409.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LLIFIG7BP8G1MU9_main_1343866665.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-21/LLIFINFQT8G13OU_main_1311273121.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LM112V6OCA126K1_main_1343868610.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-20/LM113FUK5422FVO_main_1316549003.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-13/LM113VSD6922MRJ_main_1315950647.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-16/LM11E7ODKHO1QJE_main_1324064058.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-06-03/LM11HIDASHO1THR_main_1307128013.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-13/LM169I1E0C226G1_main_1315945008.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-05-25/LM1TS65LBN12EIV_main_1306366601.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-26/LM4103L52ID23_main_1303844116.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LM4109NI2R640_main_1343870659.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LM410QQ0CHARO_main_1339301422.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-05/LM410TMR0S2S1_main_1328476474.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LM4115NJ46G8M_main_1343864598.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-06-24/LM4118MEHFDMM_main_1308954627.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-02/LM413RQ6LRG9N_main_1346614074.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LM413SQ6LRN58_main_1346289751.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-09/LM416LNIKVLM1_main_1339301618.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LNV19KE3NSH2JG3_main_1348524549.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-11/LNV1QGBR9TH256G_main_1349994129.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-20/LNVUCOIA1MJ2M54_main_1324428408.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-27/LNV37JHLS1I2BF2_main_1330409110.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LNV4R9D5ADT2NP1_main_1335226970.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LNV4VAJQKLH20N1_main_1347563495.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LNV57FNCD0D2059_main_1317260097.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-27/LNV5HIJMOGH28CJ_main_1330407971.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-19/LNV5MEDQOSH2DGS_main_1329706897.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LNV5RCDE1GH2PCQ_main_1336604461.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LNV67JM1JTH271R_main_1347563938.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LNV6FEDKD0D2J3O_main_1317261231.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-11/LNV81HAK2TH20GG_main_1349993959.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-28/LNV8377MPSH2PCU_main_1322533130.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LNV8DCHH72I2222_main_1347563878.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LNV8MSAUQVH2TFL_main_1348523627.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LNV9O6NVFCD2SFS_main_1346351265.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LNV9QIRBELH2BS0_main_1348524139.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LNVAMBDDQSH2OFD_main_1347563697.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LNVB0R0UVKH2OKJ_main_1336604548.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-29/LNVCD62GKTH2FSM_main_1322615624.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-10-03/LNVCJKCAHCD2660_main_1317675575.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-23/LNVKEU5TKG33K7L_main_1345750131.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-01/LNVEA19502I2S8M_main_1322766433.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LNVEALS492I20KD_main_1347563352.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LNVEC8L1DDT2F20_main_1335226005.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-28/LNVH5V5D5TH2SJP_main_1322535451.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-28/LNVIK9H78JH2UKU_main_1322532189.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LNVKFBM3PVC2GDD_main_1317258066.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-18/LNVLGNPAHLH2SRJ_main_1329615247.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LNVN7S3VBVH24N3_main_1336604352.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LNVNNC9SFTH241J_main_1336604249.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-30/LNVQ2LE50JH29HU_main_1322707688.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LNVQLF5B0JH2KP7_main_1336604028.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-28/LNVRJVDNB0D2GJ9_main_1317258349.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-01/LNVSNG1S00I2FLE_main_1322763041.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-13/LNVT1M8U00I2GAD_main_1347563779.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-27/LNVUI1969TH2JE4_main_1330404873.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-06-12/LNVIH6NU3M13MJJ_main_1339522405.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-20/LNVVEB4M8DT2JUB_main_1334946237.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-05-12/LTJ1013E97K17P1_main_1305186176.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-12/LTJ101FB0SO17JK_main_1302628739.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LTJ101I3KSO1JQS_main_1346287015.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LTJ101PRVCQ1RN0_main_1346286940.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-12/LTJ1024R2DQ1B5S_main_1302627535.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LTJ102C4FFQ1Q6O_main_1343871947.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-16/LTJ102GGGJK1VDO_main_1347841655.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LTJ102LVLDQ1NGH_main_1343872153.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-03/LTJ103NK29K1TNJ_main_1341357641.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LTJ103U2KJK1BLG_main_1343864346.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-26/LTJ1057EEQU17G1_main_1346012108.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-12-01/LTJ105NEFDQ1H97_main_1354406761.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-12/LTJ108JAODQ11KH_main_1302628465.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-12/LTJ10B0UHQQ172V_main_1302628531.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-19/LTJ10HO3FAV1HDD_main_1313791225.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-05-10/LTJ10K7P3812R8F_main_1305068487.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LTJ10KOCHTU1N89_main_1343849447.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-05-20/LTJ10M515812V0C_main_1305914361.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-11/LTJ110817812KO4_main_1310429596.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LTJ112E9DIO1BPE_main_1336603485.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-06-30/LTJ11BUJ57K1VUV_main_1309471071.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LTJ11HQLJUV1R15_main_1336599094.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-25/LTJ11KEKAKO196V_main_1345933227.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LTJ11TPQUMO197U_main_1336603339.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LTJ12E6VSFQ1V4E_main_1346286820.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LTJ12G0H5KV10GH_main_1336606427.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-01/LTJ12O0H7AO1IBS_main_1346535078.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-17/LTJ12PGU9KV1MGI_main_1316322178.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LTJ12SJ2RUV1N6R_main_1346350668.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-04/LTJ135JKNQU113D_main_1344112331.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-25/LTJ13ELOLPQ1DP3_main_1345932229.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LTJ13T0J2VV1A4N_main_1346288882.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-08-19/LTJ13TRDHKV1970_main_1313790871.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LTJ13VTR2RU14QO_main_1343849804.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LTJ1539P8102B2F_main_1346350834.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LTJ154SP8102KIG_main_1346288972.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-18/LTJ168OVQRV1TQA_main_1345313494.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LTJ16T2SURV19NT_main_1346350511.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-12/LTJ17MOFE6P1NJ3_main_1302628132.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-21/LTJ18J9ASDU1UPS_main_1316628199.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-04/LTJ1F3AER9V139B_main_1344112495.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-17/LTJ1FR102AV17DP_main_1316323102.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-22/LTJ1KL16N2O13T2_main_1316743043.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-27/LTJ1KOM8N2O1EFS_main_1327698076.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LTJ1PV6RLCV1L08_main_1336598963.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LTJ2S0EVDSV1HQ0_main_1336599522.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LTJ34OO4UHV1NLQ_main_1343849277.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-09-16/LTJ3PGOAMIQ1QDS_main_1316199981.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LTJ7GRG1VCV1VJD_main_1336598691.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LTJ8GSQV1IV1FBE_main_1336599223.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-07-12/LTJ9IM9AFAO1C44_main_1310517676.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-04-12/LTJLTCN21IQ1URB_main_1302627505.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LTJOCVQUMHV1K83_main_1336606228.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-15/LUV10AGQOOA3MOE_main_1350338545.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUV13UHOH3D3V3S_main_1352923725.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-19/LUV174V0QUB3JT4_main_1350685323.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUV1BKIJU8A3VL1_main_1350194199.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-09/LUV1D5ROINF2MDO_main_1320865252.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-12/LUV1JGGKU8A3NHG_main_1350084361.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUV1RBFLU8A3LR9_main_1350165980.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-21/LUV1RMOG91L2F6G_main_1348291982.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-06/LUV1V6AR27G26QO_main_1323197031.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LUV22FOR7AF2TIE_main_1346350399.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-17/LUV270LMU8A3UCB_main_1350523201.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUV2ERENU8A30JC_main_1350196339.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUV2LJJO5UC30B2_main_1352932375.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUV2M7GCJ8D3878_main_1352940081.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUV2M85OU8A39GS_main_1350191684.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LUV2SS9BHDT2I85_main_1335232049.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-17/LUV2SSTOU8A30RS_main_1350522563.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUV2UE4DCMA3RLS_main_1350177331.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LUV3BOQ5GKR2V7N_main_1343848598.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-14/LUV3HOATQOS2HNO_main_1334454196.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-08/LUV3TN6CIDF2DL5_main_1320800405.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUV483AL8JL28J2_main_1348534295.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUV4RLT53QK2GUF_main_1348512779.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-23/LUV528DLLJL23MB_main_1348452334.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-13/LUV5DRKRFNF2BNO_main_1326524407.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUV5I1CTIEA3DT0_main_1350181323.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-22/LUV681KDSQL2PST_main_1350954060.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-07-31/LUV7MEQ2P5F2LOG_main_1343776355.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-08/LUV81B4FPCF2QOL_main_1320799010.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-22/LUV8H510J7K2DQS_main_1348353541.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-14/LUV8KDPNIKR2U39_main_1334455045.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LUV8KVC0JDT2N8E_main_1335231551.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUV8TSS9Q5D308S_main_1352922564.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUV9CALK9MC3MGA_main_1352944496.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVA5LSLC0D3VCR_main_1352946173.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVAPJARHHC3H1I_main_1352936916.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUVBP2STKQJ24PT_main_1348511152.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUVBQFC4NJL2093_main_1348537508.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUVC8S7H3AK2JPD_main_1348515536.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-23/LUVCFATLK1L21R1_main_1348456901.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUVCHLO06EA3VBC_main_1350192359.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-25/LUVCIGHLKKR2J0V_main_1335382618.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-13/LUVCIHEQCAF28NR_main_1326518203.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-09/LUVCLS8RV5D3VGT_main_1352515548.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LUVCMP7BM7F2JET_main_1336605267.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-14/LUVDU3H5COS2S4O_main_1334451819.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVE3K14D3D314I_main_1352949160.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-14/LUVE5KV0TOS2N87_main_1334456521.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-28/LUVEAFOJ4LF23HV_main_1338251121.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-14/LUVEAT1BCOS25QL_main_1334452968.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-14/LUVED7UI07S2FLJ_main_1334452120.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVEDNPVFJC3UIQ_main_1352927434.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-01-10/LIF10RQLPLBYV7_main_1294708355.png</str> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-04/LUVEJ2PKGAF2771_main_1320431973.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LUVFGT16B7G240H_main_1336605006.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUVG9L7NOLA3CEB_main_1350190001.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVGG7RFV2D3L0U_main_1352942694.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUVGL5C7BJL2V4U_main_1348535360.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUVGS4ELCPK2EJI_main_1348513333.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-30/LUVGTE14OSF23D5_main_1346351006.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVH137RPTC3IJ6_main_1352946955.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-12/LUVHBDR6DOS2UED_main_1334256960.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUVIAI9LFBL2TRO_main_1348530555.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUVIEBL289L21A2_main_1348513954.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LUVIIL1P65F22NC_main_1346290794.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-08/LUVINN2QDSF265I_main_1320795018.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-22/LUVIOOG33CL26FM_main_1348364547.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-14/LUVIP8FLKOS2USV_main_1334455251.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-15/LUVITGLVQOA3H34_main_1350326083.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-09/LUVK3V3GUKF2K88_main_1320889146.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-30/LUVKHENRO0D3MJ8_main_1351639078.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-02-01/LUVKM04MB9G2I53_main_1328156054.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-04/LUVL2G4TQ7F2L1T_main_1320443742.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LUVL8CLKD5F2TNB_main_1336605367.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-13/LUVLGC15RKF2L68_main_1326516733.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-23/LUVLL5M2V9G24MD_main_1351017805.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUVLLA752MA3R76_main_1350187625.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-21/LUVLN7FNEJJ2NOQ_main_1348293085.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUVM9R39TBA362T_main_1350175929.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-12-22/LUVMBSKJQ5F289H_main_1324596501.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUVMF06N99A3U2B_main_1350170594.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-23/LUVN6H8QIJL250Q_main_1348449179.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-20/LUVNGTHAGP93U34_main_1348166977.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LUVNH88P9KR2B8L_main_1343847427.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUVNHLCRGEA3VAS_main_1350188720.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-01/LUVNIF7Q9KR2382_main_1343847346.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-19/LUVNNQQ9AOJ253J_main_1350684791.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-09/LUVNUGNGN5F2BOT_main_1336605115.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-14/LUVO1ABIQQS2QIF_main_1334459219.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-22/LUVO4MCSNPK2P6J_main_1348355187.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LUVO82HBAKR2A9G_main_1346288247.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUVP2B2ITBL2DIF_main_1348532543.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-24/LUVP6OB76JL27S1_main_1348536502.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-14/LUVPAQS5B9S2E00_main_1334450367.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-24/LUVPMRNUQQS2GF3_main_1335312919.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-13/LUVPO8VCBKR2NF8_main_1334352594.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-13/LUVPOEQCV9G2JEL_main_1326523365.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LUVQ4HDKLSF274K_main_1344361892.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-22/LUVQ7T6QICK2S0Q_main_1348353347.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-25/LUVQCRVPBKR2T5H_main_1335392599.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-22/LUVQD7K50HL25GG_main_1348368704.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LUVQMVII88F2O29_main_1346290264.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-23/LUVS3QBDOBL2HMO_main_1348458193.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-05/LUVSBGGQCHC386B_main_1352154172.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LUVSCDSTRAF2EOF_main_1344361465.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-07/LUVSMJ94HKF2V3J_main_1344361673.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUVST31K7MA369P_main_1350169631.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-01-13/LUVT92Q1PNF23GR_main_1326516075.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-02/LUVTEIMAL2F2UMM_main_1320262682.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-08-29/LUVTHO9HPSF2GJA_main_1346290551.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUVTKP64DEA3D31_main_1350193715.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-09/LUVTKR868NF27QG_main_1320879777.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-22/LUVTLIP0SIJ2DQG_main_1348344939.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-04/LUVTV2TR28F23GO_main_1320445378.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-20/LUVU11R1HP9341R_main_1348167596.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2011-11-07/LUVUETG9K6G2HAO_main_1320704806.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-09-21/LUVUKCOSE793PHI_main_1348270483.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVUMTSQ2FC34ES_main_1352938690.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-05-03/LUVUVJBM5DF2UR6_main_1336087592.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVV0NRR2FC3D3D_main_1352931520.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-04-23/LUVV8SDGGDT2QOH_main_1335230805.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVVASOS2FC3J3Q_main_1352931089.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-08/LUVVL8J088D3QVT_main_1352421018.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-14/LUVVMMKT2FC3V5B_main_1352935846.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-10-13/LUVVSU5NCBA3KOS_main_1350171822.jpg"><br> <img style="width: 720px;" src="http://c2.glitch.bz/streets/2012-11-08/LUVVV3FU2FC38SK_main_1352418416.jpg"><br> </body></html>
154,355
Common Lisp
.l
1,370
111.667883
121
0.749871
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c9b78b4706a7d11ca6052a6b360f1c105d9f70b520f722a5c936ac6215d6b5e2
20,848
[ -1 ]
20,849
LDOF15642S031VN.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GDOF15642S031VN treetop_03-trees at sunset/LDOF15642S031VN.xml
<game_object tsid="LDOF15642S031VN" ts="1364242993746" label="Sabelli Ochre" class_tsid="town" hubid="126" moteid="9" letime="3g8ef11e" rbtime="30s24620" upd_gs="gs6" load_time="2013-03-25 13:12:42.000"> <object id="dynamic"> <bool id="jobs_is_locked">false</bool> <null id="events"/> <object id="edit_history"> <str id="1339648090">PHVBRQR0A192RSM:MrConkin:locodeco-replace</str> <str id="1339648131">PHVBRQR0A192RSM:MrConkin:locodeco-replace</str> <str id="1339648283">PHVBRQR0A192RSM:MrConkin:locodeco-replace</str> <str id="1339648365">PHVBRQR0A192RSM:MrConkin:locodeco-replace</str> <str id="1339648619">PHVBRQR0A192RSM:MrConkin:locodeco-replace</str> <str id="1339648855">PHVBRQR0A192RSM:MrConkin:locodeco-replace</str> <str id="1339648873">PHVBRQR0A192RSM:MrConkin:locodeco-replace</str> <str id="1339648962">PHVBRQR0A192RSM:MrConkin:locodeco-replace</str> <str id="1339808009">tsauth-gyoza:edit_street_meta</str> <str id="1339896173">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339896393">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339896648">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339896774">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339898367">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339898780">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339900471">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339902266">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339902660">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339903346">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339983690">tsauth-mackenzie:modify_street_obj-signposts-signpost_1</str> </object> <object id="loading_image"> <str id="url">streets/2012-06-16/LDOF15642S031VN_loading_1339903432.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <object id="image"> <str id="url">streets/2012-06-16/LDOF15642S031VN_main_1339903436.jpg</str> <int id="w">720</int> <int id="h">216</int> </object> <object id="qurazy"> </object> <bool id="jobs_auto_unlock">false</bool> <bool id="no_teleportation">false</bool> <bool id="disallow_animals">true</bool> <bool id="no_rook">false</bool> <object id="delayed_sounds"> </object> <object id="incantations"> <object id="PUVH4JOK59G2BM3"> <int id="step">1</int> <int id="ts">1350438173</int> </object> <object id="PUVMKOE91A83I21"> <int id="step">1</int> <int id="ts">1350439394</int> </object> <object id="PUVRM21FD983JNO"> <int id="step">2</int> <int id="ts">1350439395</int> </object> <object id="PUVUCJ1BR4A3NOC"> <int id="step">3</int> <int id="ts">1350439396</int> </object> <object id="PUVB2IMODM93SQE"> <int id="step">1</int> <int id="ts">1350439633</int> </object> <object id="PUVKF3S6U5A3PC4"> <int id="step">2</int> <int id="ts">1350439642</int> </object> <object id="PHVT7Q4O4O0236A"> <int id="step">1</int> <int id="ts">1350439768</int> </object> <object id="PHF15LT8QTC294Q"> <int id="step">1</int> <int id="ts">1350440976</int> </object> <object id="PUVRD9TTKNH2D3K"> <int id="step">2</int> <int id="ts">1350440989</int> </object> <object id="PHFB49NBS4D2KSK"> <int id="step">3</int> <int id="ts">1350440997</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">1</int> <int id="ts">1350441555</int> </object> <object id="PHF20O01HRC21FP"> <int id="step">2</int> <int id="ts">1350441557</int> </object> <object id="PA9QA8RBRPD22NK"> <int id="step">3</int> <int id="ts">1350441558</int> </object> <object id="PHVI9O7ARR623NK"> <int id="step">1</int> <int id="ts">1350444041</int> </object> <object id="PHV3J76JGS62RF5"> <int id="step">2</int> <int id="ts">1350444043</int> </object> <object id="PUVCAJTDPFH203K"> <int id="step">3</int> <int id="ts">1350444055</int> </object> <object id="PA9252IP5UD21NG"> <int id="step">1</int> <int id="ts">1350445295</int> </object> <object id="PHV129UF5G32V98"> <int id="step">1</int> <int id="ts">1350448356</int> </object> <object id="PUVT0ELSEMJ2UHR"> <int id="step">2</int> <int id="ts">1350448544</int> </object> <object id="PUVS0VLJ9G93E96"> <int id="step">1</int> <int id="ts">1350449428</int> </object> <object id="PUVR4MQSVE8394R"> <int id="step">2</int> <int id="ts">1350449430</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">3</int> <int id="ts">1350449431</int> </object> <object id="PUV97O41DPI28GS"> <int id="step">1</int> <int id="ts">1350449794</int> </object> <object id="PHF1F9L003D2HLF"> <int id="step">1</int> <int id="ts">1350450086</int> </object> <object id="PUVSVKNTM7B3H4G"> <int id="step">2</int> <int id="ts">1350450092</int> </object> <object id="PM120IAKPK123LN"> <int id="step">1</int> <int id="ts">1350452237</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1350452239</int> </object> <object id="PHF6EM6551D2OGQ"> <int id="step">3</int> <int id="ts">1350452240</int> </object> <object id="PUVPMQG5849388A"> <int id="step">1</int> <int id="ts">1350455523</int> </object> <object id="PIF8QJI7RF01K91"> <int id="step">1</int> <int id="ts">1350457727</int> </object> <object id="PM1GBN2Q1H12041"> <int id="step">1</int> <int id="ts">1350458893</int> </object> <object id="PA9UP7RCAUD2PD6"> <int id="step">2</int> <int id="ts">1350458894</int> </object> <object id="PUVRESL85SE2FP5"> <int id="step">1</int> <int id="ts">1350462159</int> </object> <object id="PHVO3NBD2N522CI"> <int id="step">2</int> <int id="ts">1350462160</int> </object> <object id="PIF1AB3PVG63M4B"> <int id="step">3</int> <int id="ts">1350466294</int> </object> <object id="PHVSCM4AFS627EF"> <int id="step">1</int> <int id="ts">1350470661</int> </object> <object id="PUV82ERU1HG2V7D"> <int id="step">2</int> <int id="ts">1350470857</int> </object> <object id="PUVJMEF10BB3SHV"> <int id="step">1</int> <int id="ts">1350474626</int> </object> <object id="PIFB4T727T534N8"> <int id="step">2</int> <int id="ts">1350475718</int> </object> <object id="PUVBTTFKSVE2QNB"> <int id="step">1</int> <int id="ts">1350475795</int> </object> <object id="PUVOUB9V65D2IT0"> <int id="step">1</int> <int id="ts">1350479631</int> </object> <object id="PUV71H8A57B3S15"> <int id="step">2</int> <int id="ts">1350479632</int> </object> <object id="PUVI8F427GF2E9J"> <int id="step">3</int> <int id="ts">1350479637</int> </object> <object id="PHVF60VGU952KIM"> <int id="step">1</int> <int id="ts">1350479793</int> </object> <object id="PUVQMCK0GOI2CE3"> <int id="step">2</int> <int id="ts">1350481940</int> </object> <object id="PUV2JU76I9D2LI5"> <int id="step">1</int> <int id="ts">1350481956</int> </object> <object id="PHF2VPV503D26FE"> <int id="step">2</int> <int id="ts">1350485033</int> </object> <object id="PUVEQ7MDMGJ2JKD"> <int id="step">1</int> <int id="ts">1350485075</int> </object> <object id="PHFV299PGAD2OB9"> <int id="step">1</int> <int id="ts">1350489386</int> </object> <object id="PUVFUGQFQ9D2JV0"> <int id="step">2</int> <int id="ts">1350489390</int> </object> <object id="PUV6HKMGTNB3VOJ"> <int id="step">1</int> <int id="ts">1350495882</int> </object> <object id="PIF101U0QF7SM"> <int id="step">2</int> <int id="ts">1350499913</int> </object> <object id="PUVS00IIIJ932CP"> <int id="step">1</int> <int id="ts">1350503545</int> </object> <object id="PHV6C84JR2821C3"> <int id="step">1</int> <int id="ts">1350505721</int> </object> <object id="PHF7GOMJS1D24NC"> <int id="step">2</int> <int id="ts">1350505722</int> </object> <object id="PUVFUD1UJRE26GD"> <int id="step">3</int> <int id="ts">1350505723</int> </object> <object id="PHVK2FSFOT22C3I"> <int id="step">1</int> <int id="ts">1350505898</int> </object> <object id="PCR14AIGQJO1V4O"> <int id="step">1</int> <int id="ts">1350505998</int> </object> <object id="PIFSMKNBOG63N0R"> <int id="step">1</int> <int id="ts">1350506043</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">2</int> <int id="ts">1350506275</int> </object> <object id="PUVT8691EI93FIR"> <int id="step">1</int> <int id="ts">1350506691</int> </object> <object id="PUV70B01CBG27J4"> <int id="step">2</int> <int id="ts">1350508743</int> </object> <object id="PHVB44TB7992134"> <int id="step">1</int> <int id="ts">1350509872</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">2</int> <int id="ts">1350510607</int> </object> <object id="PHFAPDJUQQC23Q6"> <int id="step">3</int> <int id="ts">1350511493</int> </object> <object id="PHFBJB377AD29TL"> <int id="step">1</int> <int id="ts">1350512580</int> </object> <object id="PUV6LGDLQ5B36J3"> <int id="step">1</int> <int id="ts">1350513948</int> </object> <object id="PIFIPU7QSO53BHU"> <int id="step">2</int> <int id="ts">1350514257</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">1</int> <int id="ts">1350514964</int> </object> <object id="PUVTARTIND830E8"> <int id="step">2</int> <int id="ts">1350515878</int> </object> <object id="PUVPOBK0AB83DS9"> <int id="step">1</int> <int id="ts">1350516022</int> </object> <object id="PHVIBHO8RN02DFH"> <int id="step">1</int> <int id="ts">1350518353</int> </object> <object id="PCRE15VHINS1RJI"> <int id="step">2</int> <int id="ts">1350518356</int> </object> <object id="PUVBS7F720G25LP"> <int id="step">1</int> <int id="ts">1350518404</int> </object> <object id="PUVGUSBSUSF297H"> <int id="step">2</int> <int id="ts">1350518405</int> </object> <object id="PUVFH6OPFTF2LF6"> <int id="step">3</int> <int id="ts">1350518407</int> </object> <object id="PUV19GCAVGE2KI9"> <int id="step">1</int> <int id="ts">1350518502</int> </object> <object id="PUVI9K99OSF2GOV"> <int id="step">2</int> <int id="ts">1350518505</int> </object> <object id="PUVGPGR6I6J2QDT"> <int id="step">3</int> <int id="ts">1350518507</int> </object> <object id="PUV3ICHODBM2GKL"> <int id="step">1</int> <int id="ts">1350520251</int> </object> <object id="PUVHPAD7L5N292B"> <int id="step">2</int> <int id="ts">1350520254</int> </object> <object id="PUVEGG4T2FG2UCD"> <int id="step">1</int> <int id="ts">1350520856</int> </object> <object id="PM1B73SDG602CVK"> <int id="step">1</int> <int id="ts">1350521441</int> </object> <object id="PUV79AKJQ8E28K4"> <int id="step">1</int> <int id="ts">1350521922</int> </object> <object id="PIF9R57T8P53I85"> <int id="step">2</int> <int id="ts">1350521924</int> </object> <object id="PUV7VJDLN8D2E6S"> <int id="step">3</int> <int id="ts">1350521925</int> </object> <object id="PUVUCMK66OE2S7S"> <int id="step">1</int> <int id="ts">1354915093</int> </object> <object id="PUV42LEOBAF2MKD"> <int id="step">2</int> <int id="ts">1354915097</int> </object> </object> <object id="emotes"> <object id="25-05-26"> <int id="PUV8BML177K28HU">1351283348</int> </object> <object id="25-05-27"> <int id="PUVC9ICJR6C3Q8M">1351298133</int> <int id="PUVUU7MCM6833H2">1351298172</int> </object> <object id="25-05-28"> <int id="PUV1D4ULDP93KON">1351306134</int> <int id="PUVHV1J9EJ833AL">1351306137</int> </object> <object id="25-05-32"> </object> <object id="25-05-33"> </object> <object id="25-05-34"> </object> <object id="25-05-38"> </object> <object id="25-05-39"> </object> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PHFG6RUSF1D2GQU">1352337933</int> <int id="PUVP2EOLH583U8I">1352338088</int> <int id="PA9F3EHI36E2JIG">1352338451</int> <int id="PUVK4347KHE2JL8">1352338847</int> <int id="PUVEQ7MDMGJ2JKD">1352339184</int> <int id="PUVMGK6V6D732VR">1352339427</int> <int id="PNV32HKO7SD26UH">1352339439</int> <int id="PHVERH6QNU621I8">1352339953</int> <int id="PHV1RMA6M512IRQ">1352340162</int> <int id="PUVHN5UJ40B33BV">1352340178</int> <int id="PCRH9GALMUT1VSB">1352340178</int> <int id="PA9SFRR0AHD272S">1352340390</int> <int id="PUV74JAUJAD3283">1352340442</int> <int id="PHFAQB5VH4D2OSK">1352341214</int> <int id="PHFQ8BJAR0D28JI">1352341260</int> <int id="PUVO3ML08IB38DL">1352341322</int> <int id="PUV4UO1A0FB3VQ1">1352341792</int> <int id="PUVBJQLIQLB38JN">1352341870</int> <int id="PUV6AN3ENFD36C7">1352343510</int> <int id="PUV3VPC59MC3DLK">1352343567</int> <int id="PUVLFPT60BB3COT">1352344474</int> <int id="PUV597GK3RC3SCU">1352344686</int> <int id="PUV377T8M9C32F3">1352346116</int> <int id="PCRDURAIHUM1915">1352346467</int> <int id="PHVSGKDV7SA2FK8">1352347384</int> <int id="PUV8NS4TK9E2AOC">1352347745</int> <int id="PUVGPNV7OUC3IGQ">1352347846</int> <int id="PIF5NT2POK53OQ3">1352348186</int> <int id="PIFLC6T4UK63AKI">1352350644</int> </object> <object id="25-07-09"> <int id="PUV94S89Q8D3ECC">1352351137</int> <int id="PUV1QK9Q61C3SF8">1352351773</int> <int id="PUVVE7C5HV93LDE">1352351991</int> <int id="PIFCK7G7SH63VO2">1352352191</int> <int id="PUVFM30SUAD3SCK">1352352377</int> <int id="PHFCUUMNT2D2O0A">1352353370</int> <int id="PUV12F0B8QB3L9I">1352353903</int> <int id="PUV72P84RQC35AF">1352354009</int> <int id="PUVP35P228C3BHL">1352354033</int> <int id="PUV2BIBPKHG27EA">1352354128</int> <int id="PHFOAB4LPDD2P36">1352355320</int> <int id="PHF624MH10D2RFE">1352355526</int> <int id="PHVQRJ67Q742FCG">1352355526</int> <int id="PUVDML8BPK93CKI">1352355897</int> <int id="PCRD62JRHNS185D">1352356247</int> <int id="PHV3SOHNMB52ELG">1352357312</int> <int id="PUV1CKELDTF2QHB">1352357428</int> <int id="PUV50NR5NV93OO1">1352357840</int> <int id="PHFTTPBQ52D2EAM">1352359166</int> <int id="PUVFQFKLETB3V67">1352359219</int> <int id="PUVD1R35GNC3PP0">1352362320</int> <int id="PCRF91L4KNS1SSI">1352363861</int> <int id="PHF31BRLV4D27G0">1352364244</int> </object> <object id="25-07-10"> <int id="PA97KGQJJ7E2G6P">1352365754</int> <int id="PHF9QO09H2D2A9L">1352365941</int> <int id="PHF8PVSS03D2DRQ">1352366271</int> <int id="PHVO2VL5MP02ONH">1352366465</int> <int id="PUVH7H58HMC3MF3">1352366599</int> <int id="PUV7ABN059B3ATB">1352368866</int> <int id="PUVTHU6747D2T1K">1352368871</int> <int id="PUV85FBN2DD31B7">1352369235</int> <int id="PUV3S0D8N6F2VAH">1352373313</int> <int id="PA9G8I2SEJD27U9">1352376264</int> <int id="PHFRJ945A3D2FMO">1352376486</int> <int id="PUVHPAD7L5N292B">1352377182</int> <int id="PHFN8I5UBCD2C6Q">1352377182</int> <int id="PUVLC2BEDDE2MGD">1352377695</int> </object> <object id="25-07-11"> <int id="PUV750ROV3C3V32">1352379754</int> <int id="PHVBQSO3LG22530">1352382052</int> <int id="PCR1EB543VS1GVO">1352382159</int> <int id="PHFINSK9JCD29H5">1352383149</int> <int id="PUV8SJUV3FE2NFN">1352383170</int> <int id="PUV22S2QJIF2GFM">1352384871</int> <int id="PIF14GJO15D1P84">1352385162</int> <int id="PUVHOFNNILC3SMC">1352386767</int> <int id="PUVM7T4MH6D3I97">1352387749</int> <int id="PHVVO7CASCB21O5">1352389731</int> <int id="PHFSL9FTTBD2JQM">1352390154</int> <int id="PUVBHQ89NBM2HAR">1352391619</int> <int id="PA9TS1I877E2TF3">1352391736</int> <int id="PUV7EHQA6SC3P1N">1352391777</int> <int id="PHV19SAUGH72GB8">1352392417</int> <int id="PHFCANBCI4D289E">1352393324</int> <int id="PUVLQGI8HRA3O57">1352393940</int> </object> <object id="25-07-12"> <int id="PHFCANBCI4D289E">1352394426</int> <int id="PHFVB7UGK2D283T">1352394841</int> <int id="PUVSJA5RBIB3N23">1352395255</int> <int id="PUVAMQBU51D3DR7">1352396819</int> <int id="PUVAQP010NG2DA4">1352397813</int> <int id="PUVARJUIHLC324D">1352398531</int> <int id="PHFSE0A9D4D2NDB">1352398652</int> <int id="PCRD007C83N19S4">1352398859</int> <int id="PHVNHAJEDK42187">1352398877</int> <int id="PUVUTSGV5JB37FB">1352399859</int> <int id="PUVFHVAN48B3FQ4">1352400928</int> <int id="PM1DHDD57702U68">1352401296</int> <int id="PUVTFJUHH9E22QH">1352402029</int> <int id="PUVC50UP84C39AK">1352402541</int> <int id="PUV7J6LKDUF2NS8">1352403474</int> <int id="PUVS76IBB0S2R71">1352403722</int> <int id="PUVKR1NNJ893GSE">1352403777</int> <int id="PUV473G116D2GUS">1352405773</int> <int id="PUVHFLDEJ7F2LPV">1352405810</int> <int id="PA9GRIVLPRD2662">1352406432</int> <int id="PUVGK8HBCJB36GN">1352407781</int> </object> <object id="25-07-13"> <int id="PHVF1FRMV9929LG">1352408543</int> <int id="PUV6DHOV77C347U">1352410474</int> <int id="PUVNRUQH83D3N7S">1352410839</int> <int id="PUVARN7AG3C3M4T">1352410888</int> <int id="PUVJNEJQ6EE2C1E">1352410997</int> <int id="PCRP78AI7FV117T">1352411223</int> <int id="PHVERH6QNU621I8">1352411249</int> <int id="PCR14AIGQJO1V4O">1352411384</int> <int id="PHFPIMCPFFD28GR">1352412132</int> <int id="PUVSVDEIMTG26B0">1352412422</int> <int id="PUV3L1O4G7G2ISS">1352414683</int> <int id="PUV3S0D8N6F2VAH">1352415020</int> <int id="PA9VHKNCKQD2LUN">1352415831</int> <int id="PHFAQB5VH4D2OSK">1352415831</int> <int id="PHV3SOHNMB52ELG">1352416016</int> <int id="PUV9BBKR19G2T3T">1352416590</int> <int id="PUV4DE6TGQB3AE8">1352417031</int> <int id="PUVKPDRN60D3H9S">1352417475</int> <int id="PHFFAI36B2D228O">1352417830</int> <int id="PHFBEJTLUTC22GE">1352418843</int> <int id="PHVKVH6RCK42C3J">1352418989</int> <int id="PUVD3SLJ12A361Q">1352419073</int> <int id="PHFFIBQRICD28H9">1352419201</int> <int id="PHV7FR190MB2I9S">1352419886</int> <int id="PUVIJ9L2QDE23GC">1352420867</int> <int id="PUVJOTQN4DA3PM0">1352421899</int> <int id="PUV5FLF16L935CN">1352421954</int> <int id="PUV7U3V812C3S7H">1352422243</int> </object> <object id="25-08-01"> <int id="PUV9E4JDSTA3253">1352424628</int> <int id="PHVEJ3PNVJ8255P">1352424733</int> <int id="PUV9JMO5CVB3G24">1352425311</int> <int id="PUV9HHGK4G93DRT">1352432662</int> <int id="PUVCBVTSC3B3H2M">1352436349</int> </object> <object id="25-08-03"> <int id="PUVAK0UTOD8384B">1352457255</int> </object> <object id="25-08-10"> <int id="PCRPVFMF8FV1TD1">1352558603</int> </object> <object id="25-08-16"> <int id="PHVL1LRBAD92ENO">1352642728</int> </object> <object id="25-08-20"> <int id="PUVCBVTSC3B3H2M">1352696525</int> </object> <object id="25-08-22"> <int id="PUV8BML177K28HU">1352737066</int> </object> <object id="25-08-23"> <int id="PUV8BML177K28HU">1352753157</int> </object> <object id="25-08-35"> <int id="PCR2CQ0NIOS1BSK">1352914526</int> </object> <object id="25-08-36"> <int id="PUV719FK49G2H7I">1352932870</int> <int id="PUVH4JOK59G2BM3">1352936660</int> </object> <object id="25-08-37"> <int id="PCR2CQ0NIOS1BSK">1352952928</int> </object> <object id="25-10-01"> <int id="PCR2CQ0NIOS1BSK">1353038311</int> </object> <object id="25-10-11"> <int id="PCR2CQ0NIOS1BSK">1353177561</int> </object> <object id="25-10-29"> <int id="PUV24HS1UHC3H00">1353432677</int> </object> <object id="25-10-47"> <int id="PUVB5F5VDPB3AKP">1353697059</int> </object> <object id="26-03-16"> <int id="PUV27HCU39B3HUV">1354566423</int> </object> <object id="26-03-41"> <int id="PUVJHQIDICJ263U">1354921988</int> </object> <object id="26-03-46"> <int id="PUVFEHU904J2T3U">1354991899</int> </object> <object id="26-03-47"> <int id="PUVJHQIDICJ263U">1355008687</int> </object> <object id="26-03-49"> <int id="PUVJHQIDICJ263U">1355037368</int> </object> <object id="26-04-01"> <int id="PIF5NT2POK53OQ3">1355104512</int> </object> </object> <object id="hi_sign_evasion_record"> <str id="pc_tsid">PHFGMBJBA4D21EG</str> <str id="pc_label">Gwyn</str> <int id="secs">13</int> <int id="when">1353262691</int> <int id="version">10</int> <str id="day_key">25-10-17</str> </object> <object id="hi_sign_daily_evasion_record"> <str id="pc_tsid">PHFGMBJBA4D21EG</str> <str id="pc_label">Gwyn</str> <int id="secs">13</int> <int id="when">1353262691</int> <int id="version">10</int> <str id="day_key">25-10-17</str> </object> <object id="incantations_redux"> <object id="PCR6L4VMU3N1H72"> <int id="step">1</int> <int id="ts">1354918607</int> </object> <object id="PM1A3P8FSA0242M"> <int id="step">2</int> <int id="ts">1354918608</int> </object> <object id="PCR4R99KAUT1JQ7"> <int id="step">3</int> <int id="ts">1354918610</int> </object> <object id="PCRAFRDJFUT1PGB"> <int id="step">1</int> <int id="ts">1354918769</int> </object> <object id="PUVNCT5TL5D2BB4"> <int id="step">2</int> <int id="ts">1354918785</int> </object> <object id="PHF6RRQFSTC2DA8"> <int id="step">1</int> <int id="ts">1354919396</int> </object> <object id="PUVLDBAAO673ORE"> <int id="step">1</int> <int id="ts">1354920647</int> </object> <object id="PUVTTIURKLC3B30"> <int id="step">2</int> <int id="ts">1354920720</int> </object> <object id="PHF43603F4D2I2C"> <int id="step">1</int> <int id="ts">1354920816</int> </object> <object id="PUVPPE5CM583388"> <int id="step">2</int> <int id="ts">1354920832</int> </object> <object id="PCR31L66BAO1BOV"> <int id="step">1</int> <int id="ts">1354921727</int> </object> <object id="PUVJHQIDICJ263U"> <int id="step">1</int> <int id="ts">1354921916</int> </object> <object id="PUV2HGN6GFF2BCL"> <int id="step">1</int> <int id="ts">1354924549</int> </object> <object id="PUVDU0VDQ0K27IN"> <int id="step">2</int> <int id="ts">1354924556</int> </object> <object id="PUVR7DBV7JG2E14"> <int id="step">1</int> <int id="ts">1354926127</int> </object> <object id="PCRE15VHINS1RJI"> <int id="step">2</int> <int id="ts">1354927083</int> </object> <object id="PA9SGIV1AUD2PNL"> <int id="step">1</int> <int id="ts">1354927121</int> </object> <object id="PUVTNI1FJH93NPE"> <int id="step">1</int> <int id="ts">1354927509</int> </object> <object id="PHFINSK9JCD29H5"> <int id="step">2</int> <int id="ts">1354929949</int> </object> <object id="PUV771P9IME25MS"> <int id="step">1</int> <int id="ts">1354936015</int> </object> <object id="PUV42LEOBAF2MKD"> <int id="step">2</int> <int id="ts">1354937881</int> </object> <object id="PUVDP005IKG2P8J"> <int id="step">1</int> <int id="ts">1354943431</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1354949389</int> </object> <object id="PIFLC6T4UK63AKI"> <int id="step">2</int> <int id="ts">1354949390</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">3</int> <int id="ts">1354949392</int> </object> <object id="PUVUT9BTUF73Q21"> <int id="step">1</int> <int id="ts">1354952295</int> </object> <object id="PUVF19AM5H73GDF"> <int id="step">2</int> <int id="ts">1354952297</int> </object> <object id="PUVLFPVQPP734S4"> <int id="step">3</int> <int id="ts">1354952300</int> </object> <object id="PUV4TQTEMAH2OIS"> <int id="step">1</int> <int id="ts">1354962957</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">1</int> <int id="ts">1354970302</int> </object> <object id="PHV19OKESO62P13"> <int id="step">2</int> <int id="ts">1354976032</int> </object> <object id="PUVONSK33OB3H64"> <int id="step">1</int> <int id="ts">1354982939</int> </object> <object id="PUVVH9UE34837KI"> <int id="step">2</int> <int id="ts">1354982940</int> </object> <object id="PUVAJKHV28G2BQR"> <int id="step">3</int> <int id="ts">1354982941</int> </object> <object id="PUVFEHU904J2T3U"> <int id="step">1</int> <int id="ts">1354991831</int> </object> <object id="PUVFNR598OD3VBH"> <int id="step">2</int> <int id="ts">1354991835</int> </object> <object id="PUVGMTKO1UC3N7S"> <int id="step">3</int> <int id="ts">1354991838</int> </object> <object id="PUVJ86DSLSM2BDC"> <int id="step">1</int> <int id="ts">1354995685</int> </object> <object id="PUVU4M0CBQL20P9"> <int id="step">2</int> <int id="ts">1354995690</int> </object> <object id="PDOQHB9V1AR2F84"> <int id="step">3</int> <int id="ts">1354995691</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">1</int> <int id="ts">1354996207</int> </object> <object id="PIFG988P1S53EGC"> <int id="step">2</int> <int id="ts">1354996256</int> </object> <object id="PUVUBPJHDUC3HI1"> <int id="step">3</int> <int id="ts">1354996682</int> </object> <object id="PUV9A16GNTC32U6"> <int id="step">1</int> <int id="ts">1354996686</int> </object> <object id="PUV7ABN059B3ATB"> <int id="step">2</int> <int id="ts">1354997462</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1354998587</int> </object> <object id="PIF16S80DT53O2K"> <int id="step">2</int> <int id="ts">1354998589</int> </object> <object id="PA95UHHMLID28OO"> <int id="step">3</int> <int id="ts">1354998590</int> </object> <object id="PHVP4B1U0H22UNL"> <int id="step">1</int> <int id="ts">1354999308</int> </object> <object id="PHFK48ANI2D2F12"> <int id="step">1</int> <int id="ts">1355000341</int> </object> </object> <int id="incantations_redux_step">1</int> </object> <objrefs id="items"> <objref tsid="IDO5UEPFF31341O" label="Coin"/> <objref tsid="IHV38F2HEO83S6P" label="Coin"/> <objref tsid="IHV367EGEO83B66" label="Coin"/> <objref tsid="IDO5B999F313HL5" label="Coin"/> <objref tsid="IHV33HVFEO836R4" label="Coin"/> <objref tsid="IHVCA385T723H3L" label="Coin"/> <objref tsid="IDO5JRACF3131LJ" label="Coin"/> <objref tsid="IHVC7BD4T723GDI" label="Coin"/> <objref tsid="IHVC44F3T723SJO" label="Coin"/> <objref tsid="IDO5LASCF313J6S" label="Coin"/> <objref tsid="IHV31SJFEO83LA0" label="Coin"/> <objref tsid="IHV32BMFEO83OL8" label="Coin"/> <objref tsid="IDO54CC6F313H36" label="Coin"/> <objref tsid="IHV371KGEO83KTN" label="Coin"/> <objref tsid="IHV3422GEO831RF" label="Coin"/> <objref tsid="IDO5A8N8F3131ES" label="Coin"/> <objref tsid="IHV3918HEO832IC" label="Coin"/> <objref tsid="IDO59278F3133G7" label="Coin"/> <objref tsid="IDO521M5F313C1D" label="Qurazy marker"/> <objref tsid="IDO59QF8F313T2T" label="Coin"/> <objref tsid="IDO5BOG9F313IS9" label="Coin"/> <objref tsid="IHV34J5GEO83FR0" label="Coin"/> <objref tsid="IDO57LN7F3133A2" label="Coin"/> <objref tsid="IDO56L47F313KPQ" label="Coin"/> <objref tsid="IDO5ILSBF313QUH" label="Coin"/> <objref tsid="IHV37GOGEO83AIK" label="Coin"/> <objref tsid="IHV32VRFEO83K9E" label="Coin"/> <objref tsid="IDO5HNDBF313M6P" label="Coin"/> <objref tsid="IDO5EJBAF3134LO" label="Coin"/> <objref tsid="IDO5F5EAF313N0N" label="Coin"/> <objref tsid="IDO586T7F3135C1" label="Coin"/> <objref tsid="IDO5N2FDF31345F" label="Coin"/> <objref tsid="IHV382VGEO83EQC" label="Coin"/> <objref tsid="IDO5ALT8F3131KR" label="Coin"/> <objref tsid="IHV36IHGEO83AUU" label="Coin"/> <objref tsid="IHV3598GEO83N0N" label="Coin"/> <objref tsid="IDO5DDV9F313V1L" label="Coin"/> <objref tsid="IHV39TGHEO83FE1" label="Coin"/> <objref tsid="IHVC5QV3T723E7O" label="Coin"/> <objref tsid="IDO573B7F313U1S" label="Coin"/> </objrefs> <objrefs id="players"> <objref tsid="PUVLDBAAO673ORE" label="The Mog"/> <objref tsid="PUVU0QOL8MC3LOP" label="sky ninja"/> <objref tsid="PDOBV1L0R4U2BF3" label="Fluffy Orange"/> </objrefs> </game_object>
28,930
Common Lisp
.l
900
27.757778
203
0.651124
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0a3c2aa52f904cf8e9e1a02e4b233bcf674f6f2f4647089f1c99e9090c99cacf
20,849
[ -1 ]
20,850
GDOF15642S031VN.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GDOF15642S031VN treetop_03-trees at sunset/GDOF15642S031VN.xml
<game_object tsid="GDOF15642S031VN" ts="1339983840258" label="treetop_03" class_tsid="" lastUpdateTime="1339983830139" upd_gs="gs7" load_time="2012-06-17 16:43:24.247" upd_time="2012-06-17 18:39:17.634"> <object id="dynamic"> <int id="l">-2500</int> <int id="r">2500</int> <int id="t">-1500</int> <int id="b">0</int> <str id="label">treetop_03</str> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="T_1337374503442"> <int id="w">4300</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">16746496</int> </object> <object id="contrast"> <int id="value">0</int> </object> <object id="tintAmount"> <int id="value">37</int> </object> <object id="brightness"> <int id="value">-34</int> </object> </object> <str id="name">bg1</str> <int id="h">1440</int> <object id="decos"> <object id="wallpaper_tree_short_1_1337374503478"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1702</int> <int id="x">143</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">0</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="wallpaper_tree_short_1_1337707374813"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1800</int> <int id="x">2897</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">30</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="pinecluster_2_1337729294764"> <str id="name">pinecluster_2_1337729294764</str> <int id="y">1403</int> <int id="x">4377</int> <str id="sprite_class">pinecluster_2</str> <int id="z">36</int> <int id="w">506</int> <int id="h">295</int> </object> <object id="pinecluster_2_1337374503501"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1987</int> <int id="x">1452</int> <str id="sprite_class">pinecluster_2</str> <int id="z">21</int> <int id="w">863</int> <int id="h">503</int> </object> <object id="mound_dirt_4_1337374503685"> <str id="name">mound_dirt_4_1337374503681</str> <int id="y">2044</int> <int id="x">984</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">28</int> <int id="w">498</int> <int id="h">189</int> </object> <object id="pinecluster_2_1337374503502"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1981</int> <int id="x">2073</int> <str id="sprite_class">pinecluster_2</str> <int id="z">22</int> <int id="w">863</int> <int id="h">503</int> </object> <object id="floating_platform_dirt_01_1337374503518"> <str id="name">floating_platform_dirt_01_1337374503517</str> <int id="y">2218</int> <int id="x">1045</int> <str id="sprite_class">floating_platform_dirt_01</str> <int id="z">25</int> <int id="w">361</int> <int id="h">95</int> </object> <object id="pinecluster_2_1337707375266"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1547</int> <int id="x">2985</int> <str id="sprite_class">pinecluster_2</str> <int id="z">35</int> <int id="w">722</int> <int id="h">421</int> </object> <object id="wallpaper_tree_short_1_1337374503479"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1642</int> <int id="x">853</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">1</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="floating_platform_dirt_01_1337374503517"> <str id="name">floating_platform_dirt_01_1337374503517</str> <int id="y">2112</int> <int id="x">72</int> <str id="sprite_class">floating_platform_dirt_01</str> <int id="z">24</int> <int id="w">361</int> <int id="h">95</int> </object> <object id="pinecluster_2_1337707375265"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1612</int> <int id="x">1451</int> <str id="sprite_class">pinecluster_2</str> <int id="z">34</int> <int id="w">722</int> <int id="h">421</int> </object> <object id="tree_group_bg2_1_1337374503490"> <str id="name">tree_group_bg2_1_1337374503489</str> <int id="y">2150</int> <int id="x">1171</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="z">16</int> <int id="w">688</int> <int id="h">900</int> </object> <object id="pinecluster_2_1337707375264"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1569</int> <int id="x">2320</int> <str id="sprite_class">pinecluster_2</str> <int id="z">33</int> <int id="w">722</int> <int id="h">421</int> </object> <object id="wallpaper_tree_short_1_1337707374762"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1447</int> <int id="x">3140</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">5</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="tree_group_bg2_1_1337374503492"> <str id="name">tree_group_bg2_1_1337374503489</str> <int id="y">2260</int> <int id="x">2357</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="z">19</int> <int id="w">688</int> <int id="h">900</int> </object> <object id="wallpaper_tree_short_1_1337374503487"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">2311</int> <int id="x">64</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">12</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="wallpaper_tree_short_1_1337374503486"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">2315</int> <int id="x">1391</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">11</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="wallpaper_tree_short_1_1337707374764"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1457</int> <int id="x">4552</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">7</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="tree_group_bg2_1_1337374503489"> <str id="name">tree_group_bg2_1_1337374503489</str> <int id="y">2148</int> <int id="x">638</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="z">14</int> <int id="w">688</int> <int id="h">900</int> </object> <object id="mound_dirt_4_1337374503686"> <str id="name">mound_dirt_4_1337374503681</str> <int id="y">2015</int> <int id="x">1678</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">29</int> <int id="w">498</int> <int id="h">189</int> </object> <object id="mound_dirt_4_1337374503684"> <str id="name">mound_dirt_4_1337374503681</str> <int id="y">2010</int> <int id="x">661</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">27</int> <int id="w">498</int> <int id="h">189</int> </object> <object id="mound_dirt_4_1337374503683"> <str id="name">mound_dirt_4_1337374503681</str> <int id="y">2066</int> <int id="x">1304</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">26</int> <int id="w">498</int> <int id="h">189</int> </object> <object id="wallpaper_tree_short_1_1337374503482"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1964</int> <int id="x">139</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">2</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="pinecluster_2_1337374503499"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">2196</int> <int id="x">195</int> <str id="sprite_class">pinecluster_2</str> <int id="z">15</int> <int id="w">863</int> <int id="h">503</int> </object> <object id="wallpaper_tree_short_1_1337374503485"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">2310</int> <int id="x">2235</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">10</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="wallpaper_tree_short_1_1337374503481"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1568</int> <int id="x">2228</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">4</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="pinecluster_2_1337374503500"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1976</int> <int id="x">837</int> <str id="sprite_class">pinecluster_2</str> <int id="z">20</int> <int id="w">863</int> <int id="h">503</int> </object> <object id="wallpaper_tree_short_1_1337374503480"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1664</int> <int id="x">1539</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">3</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="wallpaper_tree_short_1_1337374503488"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">2343</int> <int id="x">654</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">13</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="wallpaper_tree_short_1_1337707374763"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1522</int> <int id="x">3849</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">6</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="tree_group_bg2_1_1337707375267"> <str id="name">tree_group_bg2_1_1337374503489</str> <int id="y">1648</int> <int id="x">2654</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="z">18</int> <int id="w">688</int> <int id="h">900</int> </object> <object id="wallpaper_tree_short_1_1337707374814"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1727</int> <int id="x">3830</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">31</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="tree_group_bg2_1_1337374503491"> <str id="name">tree_group_bg2_1_1337374503489</str> <int id="y">1648</int> <int id="x">1923</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="z">17</int> <int id="w">688</int> <int id="h">900</int> </object> <object id="wallpaper_tree_short_1_1337707374815"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1680</int> <int id="x">4542</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">32</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="heights_bush_4_1337374503516"> <str id="name">heights_bush_4_1337374503516</str> <int id="y">2146</int> <int id="x">269</int> <str id="sprite_class">heights_bush_4</str> <int id="z">23</int> <int id="w">524</int> <int id="h">124</int> </object> <object id="wallpaper_tree_short_1_1337374503484"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1862</int> <int id="x">1853</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">9</int> <int id="w">1055</int> <int id="h">686</int> </object> <object id="pinecluster_2_1337729294765"> <str id="name">pinecluster_2_1337729294764</str> <int id="y">1406</int> <int id="x">3989</int> <str id="sprite_class">pinecluster_2</str> <int id="z">37</int> <int id="w">506</int> <int id="h">295</int> </object> <object id="wallpaper_tree_short_1_1337374503483"> <str id="name">wallpaper_tree_short_1_1337374503478</str> <int id="y">1959</int> <int id="x">1026</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">8</int> <int id="w">1055</int> <int id="h">686</int> </object> </object> <int id="z">-2</int> </object> <object id="T_1337374503445"> <int id="w">3750</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">13725696</int> </object> <object id="contrast"> <int id="value">50</int> </object> <object id="tintAmount"> <int id="value">79</int> </object> <object id="brightness"> <int id="value">-79</int> </object> </object> <str id="name">sky</str> <int id="h">1380</int> <object id="decos"> <object id="stalagmite_base_2_1337707374779"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">784</int> <int id="x">2654</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">48</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="light_spot_1337374503709"> <str id="name">light_spot_1337374503452</str> <int id="y">309</int> <int id="x">136</int> <str id="sprite_class">light_spot</str> <int id="z">35</int> <int id="w">1678</int> <int id="h">196</int> </object> <object id="pinehills_2_1337374503448"> <str id="name">pinehills_2_1337374503446</str> <int id="y">776</int> <int id="x">41</int> <str id="sprite_class">pinehills_2</str> <int id="z">43</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="cloud_fluffy_2_1337374503627"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">450</int> <int id="x">607</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">61</int> <int id="w">577</int> <int id="h">125</int> </object> <object id="cloud_fluffy_2_1337374503626"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">466</int> <int id="x">1304</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">60</int> <int id="w">500</int> <int id="h">58</int> </object> <object id="stalagmite_base_2_1337374503698"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">806</int> <int id="x">380</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">26</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="pinecluster_2_1337707374790"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">743</int> <int id="x">2438</int> <str id="sprite_class">pinecluster_2</str> <int id="z">56</int> <int id="w">94</int> <int id="h">55</int> </object> <object id="cloud_fluffy_2_1337707374804"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">321</int> <int id="x">3634</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">74</int> <int id="w">914</int> <int id="h">106</int> <int id="r">2</int> </object> <object id="light_spot_1337374503986"> <str id="name">light_spot_1337374503452</str> <int id="y">864</int> <int id="x">651</int> <str id="sprite_class">light_spot</str> <int id="z">70</int> <int id="w">637</int> <int id="h">53</int> </object> <object id="stalagmite_base_2_1337707374785"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">781</int> <int id="x">2540</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">84</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="groddle_shadow_spot_1_1337374503984"> <str id="name">groddle_shadow_spot_1_1337374503712</str> <int id="y">785</int> <int id="x">1204</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="z">16</int> <int id="w">999</int> <int id="h">68</int> </object> <object id="pinehills_2_1337707374759"> <str id="name">pinehills_2_1337374503446</str> <int id="y">758</int> <int id="x">2705</int> <str id="sprite_class">pinehills_2</str> <int id="z">46</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="light_spot_1337729294926"> <str id="name">light_spot_1337374503452</str> <int id="y">957</int> <int id="x">3716</int> <str id="sprite_class">light_spot</str> <int id="z">7</int> <int id="w">756</int> <int id="h">91</int> </object> <object id="cloud_fluffy_2_1337374503703"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">-137</int> <int id="x">1108</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">62</int> <int id="w">914</int> <int id="h">106</int> <int id="r">5</int> </object> <object id="pinehills_2_1337374503447"> <str id="name">pinehills_2_1337374503446</str> <int id="y">794</int> <int id="x">437</int> <str id="sprite_class">pinehills_2</str> <int id="z">51</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="light_spot_1337729294921"> <str id="name">light_spot_1337374503452</str> <int id="y">844</int> <int id="x">2654</int> <str id="sprite_class">light_spot</str> <int id="z">3</int> <int id="w">756</int> <int id="h">91</int> </object> <object id="light_spot_1337729294924"> <str id="name">light_spot_1337374503452</str> <int id="y">880</int> <int id="x">3246</int> <str id="sprite_class">light_spot</str> <int id="z">6</int> <int id="w">756</int> <int id="h">91</int> </object> <object id="light_spot_1337729294922"> <str id="name">light_spot_1337374503452</str> <int id="y">822</int> <int id="x">2601</int> <str id="sprite_class">light_spot</str> <int id="z">4</int> <int id="w">756</int> <int id="h">91</int> </object> <object id="stalagmite_base_2_1337707374780"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">807</int> <int id="x">2806</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">79</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="pinehills_2_1337374503450"> <str id="name">pinehills_2_1337374503446</str> <int id="y">753</int> <int id="x">1775</int> <str id="sprite_class">pinehills_2</str> <int id="z">45</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="stalagmite_base_2_1337707374786"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">822</int> <int id="x">3100</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">85</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="pinehills_2_1337707374760"> <str id="name">pinehills_2_1337374503446</str> <int id="y">710</int> <int id="x">3122</int> <str id="sprite_class">pinehills_2</str> <int id="z">49</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="stalagmite_base_2_1337374503700"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">800</int> <int id="x">1249</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">28</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="pinehills_2_1337707374772"> <str id="name">pinehills_2_1337374503446</str> <int id="y">778</int> <int id="x">3708</int> <str id="sprite_class">pinehills_2</str> <int id="z">78</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="light_spot_1337374503466"> <str id="name">light_spot_1337374503452</str> <int id="y">938</int> <int id="x">1442</int> <str id="sprite_class">light_spot</str> <int id="z">41</int> <int id="w">851</int> <int id="h">144</int> </object> <object id="stalagmite_base_2_1337374503701"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">809</int> <int id="x">1433</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">18</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="stalagmite_base_2_1337374503699"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">798</int> <int id="x">1265</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">27</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="stalagmite_base_2_1337707374781"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">813</int> <int id="x">3023</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">80</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="pinecluster_2_1337707374789"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">757</int> <int id="x">2406</int> <str id="sprite_class">pinecluster_2</str> <int id="z">55</int> <int id="w">94</int> <int id="h">55</int> </object> <object id="pinehills_distant_1_1337374503459"> <str id="name">pinehills_distant_1_1337374503459</str> <int id="y">717</int> <int id="x">892</int> <str id="sprite_class">pinehills_distant_1</str> <int id="z">30</int> <int id="w">941</int> <int id="h">88</int> </object> <object id="cloud_fluffy_2_1337374503991"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">265</int> <int id="x">309</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">15</int> <int id="w">1317</int> <int id="h">211</int> <int id="r">-3</int> </object> <object id="stalagmite_base_2_1337707374782"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">804</int> <int id="x">3672</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">81</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="light_spot_1337374503708"> <str id="name">light_spot_1337374503452</str> <int id="y">137</int> <int id="x">800</int> <str id="sprite_class">light_spot</str> <int id="z">40</int> <int id="w">1678</int> <int id="h">196</int> </object> <object id="cloud_fluffy_2_1337374503977"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">241</int> <int id="x">1605</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">72</int> <int id="w">914</int> <int id="h">106</int> <int id="r">5</int> </object> <object id="pinehills_distant_1_1337707374757"> <str id="name">pinehills_distant_1_1337374503459</str> <int id="y">686</int> <int id="x">2259</int> <str id="sprite_class">pinehills_distant_1</str> <int id="z">31</int> <int id="w">941</int> <int id="h">88</int> </object> <object id="cloud_fluffy_2_1337374503974"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">-52</int> <int id="x">1255</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">66</int> <int id="w">914</int> <int id="h">106</int> <int id="r">5</int> </object> <object id="pinehills_2_1337707374771"> <str id="name">pinehills_2_1337374503446</str> <int id="y">796</int> <int id="x">3378</int> <str id="sprite_class">pinehills_2</str> <int id="z">77</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="light_spot_1337374503694"> <str id="name">light_spot_1337374503452</str> <int id="y">789</int> <int id="x">640</int> <str id="sprite_class">light_spot</str> <int id="z">29</int> <int id="w">349</int> <int id="h">70</int> </object> <object id="pinecluster_2_1337374503498"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">806</int> <int id="x">661</int> <str id="sprite_class">pinecluster_2</str> <int id="z">52</int> <int id="w">200</int> <int id="h">116</int> </object> <object id="stalagmite_base_2_1337707374777"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">693</int> <int id="x">2304</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">24</int> <int id="w">438</int> <int id="h">35</int> </object> <object id="stalagmite_base_2_1337707374778"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">765</int> <int id="x">2480</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">47</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="cloud_fluffy_2_1337374503971"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">-92</int> <int id="x">1588</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">63</int> <int id="w">914</int> <int id="h">106</int> <int id="r">5</int> </object> <object id="cloud_fluffy_2_1337374503990"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">222</int> <int id="x">961</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">14</int> <int id="w">1185</int> <int id="h">136</int> <int id="r">-1</int> </object> <object id="light_spot_1337729294927"> <str id="name">light_spot_1337374503452</str> <int id="y">960</int> <int id="x">3210</int> <str id="sprite_class">light_spot</str> <int id="z">8</int> <int id="w">756</int> <int id="h">91</int> </object> <object id="cloud_fluffy_2_1337707374805"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">496</int> <int id="x">2303</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">75</int> <int id="w">914</int> <int id="h">106</int> <int id="r">2</int> </object> <object id="pinecluster_2_1337707374788"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">750</int> <int id="x">2057</int> <str id="sprite_class">pinecluster_2</str> <int id="z">54</int> <int id="w">122</int> <int id="h">71</int> </object> <object id="stalagmite_base_2_1337707374775"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">764</int> <int id="x">2010</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">22</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="stalagmite_base_2_1337707374784"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">812</int> <int id="x">3423</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">83</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="cloud_fluffy_2_1337374503972"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">-50</int> <int id="x">1871</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">64</int> <int id="w">914</int> <int id="h">106</int> <int id="r">5</int> </object> <object id="cloud_fluffy_2_1337374503625"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">542</int> <int id="x">616</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">58</int> <int id="w">500</int> <int id="h">58</int> </object> <object id="stalagmite_base_2_1337707374783"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">816</int> <int id="x">3203</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">82</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="cloud_fluffy_2_1337374503976"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">195</int> <int id="x">1332</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">71</int> <int id="w">699</int> <int id="h">81</int> <int id="r">5</int> </object> <object id="cloud_fluffy_2_1337374503989"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">447</int> <int id="x">1646</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">13</int> <int id="w">986</int> <int id="h">90</int> </object> <object id="light_spot_1337729294920"> <str id="name">light_spot_1337374503452</str> <int id="y">812</int> <int id="x">1833</int> <str id="sprite_class">light_spot</str> <int id="z">2</int> <int id="w">756</int> <int id="h">91</int> </object> <object id="cloud_fluffy_2_1337374503975"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">58</int> <int id="x">1752</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">67</int> <int id="w">1053</int> <int id="h">122</int> <int id="r">10</int> </object> <object id="pinehills_2_1337374503449"> <str id="name">pinehills_2_1337374503446</str> <int id="y">691</int> <int id="x">1768</int> <str id="sprite_class">pinehills_2</str> <int id="z">44</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="pinehills_distant_1_1337707374758"> <str id="name">pinehills_distant_1_1337374503459</str> <int id="y">688</int> <int id="x">3054</int> <str id="sprite_class">pinehills_distant_1</str> <int id="z">32</int> <int id="w">941</int> <int id="h">88</int> </object> <object id="cloud_fluffy_2_1337707374803"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">201</int> <int id="x">3070</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">73</int> <int id="w">914</int> <int id="h">106</int> <int id="r">2</int> </object> <object id="light_spot_1337374503706"> <str id="name">light_spot_1337374503452</str> <int id="y">-3</int> <int id="x">219</int> <str id="sprite_class">light_spot</str> <int id="z">34</int> <int id="w">1678</int> <int id="h">196</int> </object> <object id="light_spot_1337707374801"> <str id="name">light_spot_1337374503452</str> <int id="y">326</int> <int id="x">2775</int> <str id="sprite_class">light_spot</str> <int id="z">38</int> <int id="w">1678</int> <int id="h">196</int> <int id="r">5</int> </object> <object id="light_spot_1337374503985"> <str id="name">light_spot_1337374503452</str> <int id="y">862</int> <int id="x">1166</int> <str id="sprite_class">light_spot</str> <int id="z">69</int> <int id="w">637</int> <int id="h">53</int> </object> <object id="stalagmite_base_2_1337707374773"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">795</int> <int id="x">1687</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">20</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="cloud_fluffy_2_1337707374806"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">565</int> <int id="x">3360</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">11</int> <int id="w">914</int> <int id="h">106</int> <int id="r">2</int> </object> <object id="pinehills_2_1337374503451"> <str id="name">pinehills_2_1337374503446</str> <int id="y">790</int> <int id="x">1458</int> <str id="sprite_class">pinehills_2</str> <int id="z">50</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="stalagmite_base_2_1337374503696"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">800</int> <int id="x">675</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">19</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="stalagmite_base_2_1337707374774"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">768</int> <int id="x">1779</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">21</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="light_spot_1337729294928"> <str id="name">light_spot_1337374503452</str> <int id="y">919</int> <int id="x">2290</int> <str id="sprite_class">light_spot</str> <int id="z">9</int> <int id="w">756</int> <int id="h">91</int> </object> <object id="groddle_shadow_spot_1_1337374503713"> <str id="name">groddle_shadow_spot_1_1337374503712</str> <int id="y">746</int> <int id="x">997</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="z">17</int> <int id="w">999</int> <int id="h">48</int> </object> <object id="light_spot_1337374503710"> <str id="name">light_spot_1337374503452</str> <int id="y">314</int> <int id="x">124</int> <str id="sprite_class">light_spot</str> <int id="z">36</int> <int id="w">1678</int> <int id="h">196</int> </object> <object id="light_spot_1337729294929"> <str id="name">light_spot_1337374503452</str> <int id="y">738</int> <int id="x">2368</int> <str id="sprite_class">light_spot</str> <int id="z">10</int> <int id="w">503</int> <int id="h">36</int> </object> <object id="light_spot_1337729294925"> <str id="name">light_spot_1337374503452</str> <int id="y">711</int> <int id="x">2185</int> <str id="sprite_class">light_spot</str> <int id="z">0</int> <int id="w">491</int> <int id="h">42</int> </object> <object id="pinehills_2_1337707374761"> <str id="name">pinehills_2_1337374503446</str> <int id="y">795</int> <int id="x">3048</int> <str id="sprite_class">pinehills_2</str> <int id="z">76</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="stalagmite_base_2_1337707374776"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">710</int> <int id="x">2002</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">23</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="light_spot_1337707374802"> <str id="name">light_spot_1337374503452</str> <int id="y">281</int> <int id="x">3586</int> <str id="sprite_class">light_spot</str> <int id="z">39</int> <int id="w">1678</int> <int id="h">196</int> <int id="r">-3</int> </object> <object id="cloud_fluffy_2_1337374503992"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">389</int> <int id="x">753</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">12</int> <int id="w">591</int> <int id="h">134</int> </object> <object id="pinehills_2_1337374503446"> <str id="name">pinehills_2_1337374503446</str> <int id="y">702</int> <int id="x">20</int> <str id="sprite_class">pinehills_2</str> <int id="z">42</int> <int id="w">627</int> <int id="h">189</int> </object> <object id="cloud_fluffy_2_1337374503988"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">450</int> <int id="x">130</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">59</int> <int id="w">591</int> <int id="h">134</int> </object> <object id="light_spot_1337374503707"> <str id="name">light_spot_1337374503452</str> <int id="y">234</int> <int id="x">1652</int> <str id="sprite_class">light_spot</str> <int id="z">37</int> <int id="w">1678</int> <int id="h">196</int> <int id="r">5</int> </object> <object id="stalagmite_base_2_1337374503697"> <str id="name">stalagmite_base_2_1337374503696</str> <int id="y">810</int> <int id="x">584</int> <str id="sprite_class">stalagmite_base_2</str> <int id="z">25</int> <int id="w">311</int> <int id="h">36</int> </object> <object id="light_spot_1337729294930"> <str id="name">light_spot_1337374503452</str> <int id="y">848</int> <int id="x">78</int> <str id="sprite_class">light_spot</str> <int id="z">86</int> <int id="w">756</int> <int id="h">91</int> </object> <object id="cloud_fluffy_2_1337374503973"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">-125</int> <int id="x">604</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">65</int> <int id="w">914</int> <int id="h">106</int> <int id="r">5</int> </object> <object id="pinecluster_2_1337374503695"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">794</int> <int id="x">1221</int> <str id="sprite_class">pinecluster_2</str> <int id="z">53</int> <int id="w">155</int> <int id="h">90</int> </object> <object id="pinecluster_2_1337707374791"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">784</int> <int id="x">1768</int> <str id="sprite_class">pinecluster_2</str> <int id="z">57</int> <int id="w">94</int> <int id="h">55</int> </object> <object id="light_spot_1337374503465"> <str id="name">light_spot_1337374503452</str> <int id="y">834</int> <int id="x">929</int> <str id="sprite_class">light_spot</str> <int id="z">68</int> <int id="w">637</int> <int id="h">53</int> </object> <object id="light_spot_1337729294919"> <str id="name">light_spot_1337374503452</str> <int id="y">865</int> <int id="x">1881</int> <str id="sprite_class">light_spot</str> <int id="z">1</int> <int id="w">851</int> <int id="h">144</int> </object> <object id="light_spot_1337729294923"> <str id="name">light_spot_1337374503452</str> <int id="y">879</int> <int id="x">2825</int> <str id="sprite_class">light_spot</str> <int id="z">5</int> <int id="w">756</int> <int id="h">91</int> </object> <object id="light_spot_1337374503705"> <str id="name">light_spot_1337374503452</str> <int id="y">58</int> <int id="x">410</int> <str id="sprite_class">light_spot</str> <int id="z">33</int> <int id="w">1678</int> <int id="h">196</int> </object> </object> <int id="z">-4</int> </object> <object id="T_1337374503586"> <int id="w">4600</int> <object id="filtersNEW"> <object id="brightness"> <int id="value">-32</int> </object> <object id="tintColor"> <int id="value">16746496</int> </object> <object id="saturation"> <int id="value">-9</int> </object> <object id="contrast"> <int id="value">0</int> </object> <object id="tintAmount"> <int id="value">32</int> </object> </object> <str id="name">bg0</str> <int id="h">1470</int> <object id="decos"> <object id="tree_coniferous_fg_3_1337374503644"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">2409</int> <int id="x">459</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">15</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="groddle_plant_1_1337374503678"> <str id="name">groddle_plant_1_1337374503674</str> <int id="y">1940</int> <int id="x">2318</int> <str id="sprite_class">groddle_plant_1</str> <int id="z">35</int> <int id="w">119</int> <int id="h">126</int> </object> <object id="tree_coniferous_fg_3_1337707375262"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">2409</int> <int id="x">3083</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">21</int> <int id="w">630</int> <int id="h">1435</int> <int id="r">10</int> </object> <object id="pinecluster_1_1337374503649"> <str id="name">pinecluster_1_1337374503646</str> <int id="y">2149</int> <int id="x">1696</int> <str id="sprite_class">pinecluster_1</str> <int id="z">26</int> <int id="w">694</int> <int id="h">506</int> </object> <object id="tree_coniferous_fg_1_1337374503587"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">2476</int> <int id="x">613</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">1</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="groddle_plant_1_1337374503674"> <str id="name">groddle_plant_1_1337374503674</str> <int id="y">2041</int> <int id="x">1701</int> <str id="sprite_class">groddle_plant_1</str> <int id="z">31</int> <int id="w">119</int> <int id="h">126</int> </object> <object id="tree_coniferous_fg_3_1337707374808"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">2132</int> <int id="x">3491</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">17</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="tree_coniferous_fg_1_1337374503588"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">2397</int> <int id="x">2308</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">2</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="alakol_grass_top_2_1337374503714"> <str id="name">alakol_grass_top_2_1337374503714</str> <int id="y">2175</int> <int id="x">1088</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="z">40</int> <int id="w">277</int> <int id="h">38</int> </object> <object id="groddle_plant_1_1337374503677"> <str id="name">groddle_plant_1_1337374503674</str> <int id="y">1961</int> <int id="x">2236</int> <str id="sprite_class">groddle_plant_1</str> <int id="z">34</int> <int id="w">119</int> <int id="h">126</int> </object> <object id="groddle_plant_1_1337374503679"> <str id="name">groddle_plant_1_1337374503674</str> <int id="y">1992</int> <int id="x">2161</int> <str id="sprite_class">groddle_plant_1</str> <int id="z">36</int> <int id="w">119</int> <int id="h">126</int> </object> <object id="tree_coniferous_fg_3_1337374503642"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">1363</int> <int id="x">11</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">11</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="tree_coniferous_bare_1_1337374503635"> <str id="name">tree_coniferous_bare_1_1337374503635</str> <int id="y">2077</int> <int id="x">1396</int> <str id="sprite_class">tree_coniferous_bare_1</str> <int id="z">9</int> <int id="w">289</int> <int id="h">593</int> </object> <object id="heights_tree_bare_1_1337729294763"> <str id="name">heights_tree_bare_1_1337729294763</str> <int id="y">1889</int> <int id="x">4708</int> <str id="sprite_class">heights_tree_bare_1</str> <int id="z">46</int> <int id="w">376</int> <int id="h">1069</int> </object> <object id="tree_coniferous_fg_3_1337707374811"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">2155</int> <int id="x">3017</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">20</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="tree_coniferous_fg_3_1337707374810"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">1909</int> <int id="x">3556</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">19</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="tree_coniferous_fg_3_1337707374809"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">1929</int> <int id="x">3763</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">18</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="tree_coniferous_fg_1_1337374503643"> <str id="name">tree_coniferous_fg_1_1337374503643</str> <int id="y">2214</int> <int id="x">1404</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">14</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="bush_3_1337374503673"> <str id="name">bush_3_1337374503660</str> <int id="y">2190</int> <int id="x">1005</int> <str id="sprite_class">bush_3</str> <int id="z">30</int> <int id="w">283</int> <int id="h">100</int> <int id="r">-5</int> </object> <object id="pinecluster_2_1337729294762"> <str id="name">pinecluster_2_1337729294761</str> <int id="y">1644</int> <int id="x">4181</int> <str id="sprite_class">pinecluster_2</str> <int id="z">0</int> <int id="w">653</int> <int id="h">381</int> </object> <object id="tree_coniferous_fg_3_1337374503645"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">2687</int> <int id="x">1183</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">22</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="groddle_shadow_spot_1_1337707374752"> <str id="name">groddle_shadow_spot_1_1337707374751</str> <int id="y">2225</int> <int id="x">1045</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="z">42</int> <int id="w">1229</int> <int id="h">864</int> </object> <object id="tree_coniferous_fg_3_1337374503631"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">2270</int> <int id="x">994</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">3</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="pinecluster_1_1337374503647"> <str id="name">pinecluster_1_1337374503646</str> <int id="y">2256</int> <int id="x">810</int> <str id="sprite_class">pinecluster_1</str> <int id="z">24</int> <int id="w">694</int> <int id="h">506</int> </object> <object id="pinecluster_2_1337729294761"> <str id="name">pinecluster_2_1337729294761</str> <int id="y">1575</int> <int id="x">4700</int> <str id="sprite_class">pinecluster_2</str> <int id="z">45</int> <int id="w">653</int> <int id="h">381</int> </object> <object id="tree_coniferous_fg_3_1337707374807"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">2089</int> <int id="x">4228</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">16</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="bush_3_1337374503671"> <str id="name">bush_3_1337374503660</str> <int id="y">2102</int> <int id="x">1455</int> <str id="sprite_class">bush_3</str> <int id="z">28</int> <int id="w">283</int> <int id="h">100</int> <int id="r">-5</int> </object> <object id="pinecluster_1_1337374503646"> <str id="name">pinecluster_1_1337374503646</str> <int id="y">2171</int> <int id="x">241</int> <str id="sprite_class">pinecluster_1</str> <int id="z">23</int> <int id="w">694</int> <int id="h">506</int> </object> <object id="tree_coniferous_fg_3_1337707374838"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">1670</int> <int id="x">1058</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">12</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="groddle_shadow_spot_1_1337707374753"> <str id="name">groddle_shadow_spot_1_1337707374751</str> <int id="y">2225</int> <int id="x">1045</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="z">43</int> <int id="w">1229</int> <int id="h">864</int> </object> <object id="tree_coniferous_fg_3_1337374503639"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">2119</int> <int id="x">2144</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">5</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="groddle_shadow_spot_1_1337707374754"> <str id="name">groddle_shadow_spot_1_1337707374751</str> <int id="y">2168</int> <int id="x">549</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="z">44</int> <int id="w">1726</int> <int id="h">416</int> </object> <object id="bush_3_1337374503672"> <str id="name">bush_3_1337374503660</str> <int id="y">2144</int> <int id="x">1212</int> <str id="sprite_class">bush_3</str> <int id="z">29</int> <int id="w">283</int> <int id="h">100</int> <int id="r">-5</int> </object> <object id="pinecluster_1_1337374503650"> <str id="name">pinecluster_1_1337374503646</str> <int id="y">2135</int> <int id="x">2113</int> <str id="sprite_class">pinecluster_1</str> <int id="z">27</int> <int id="w">804</int> <int id="h">586</int> </object> <object id="tree_dark_1_1337374503633"> <str id="name">tree_dark_1_1337374503633</str> <int id="y">2191</int> <int id="x">888</int> <str id="sprite_class">tree_dark_1</str> <int id="z">7</int> <int id="w">181</int> <int id="h">583</int> </object> <object id="tree_coniferous_fg_2_1337374503634"> <str id="name">tree_coniferous_fg_2_1337374503634</str> <int id="y">2311</int> <int id="x">1838</int> <str id="sprite_class">tree_coniferous_fg_2</str> <int id="z">8</int> <int id="w">679</int> <int id="h">1464</int> </object> <object id="groddle_shadow_spot_1_1337707374751"> <str id="name">groddle_shadow_spot_1_1337707374751</str> <int id="y">2225</int> <int id="x">1045</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="z">41</int> <int id="w">1229</int> <int id="h">532</int> </object> <object id="mound_dirt_4_1337374503682"> <str id="name">mound_dirt_4_1337374503681</str> <int id="y">2187</int> <int id="x">809</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">39</int> <int id="w">498</int> <int id="h">189</int> </object> <object id="mound_dirt_4_1337374503681"> <str id="name">mound_dirt_4_1337374503681</str> <int id="y">2131</int> <int id="x">473</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">38</int> <int id="w">498</int> <int id="h">189</int> </object> <object id="groddle_plant_1_1337374503676"> <str id="name">groddle_plant_1_1337374503674</str> <int id="y">1969</int> <int id="x">2117</int> <str id="sprite_class">groddle_plant_1</str> <int id="z">33</int> <int id="w">119</int> <int id="h">126</int> </object> <object id="pinecluster_1_1337374503648"> <str id="name">pinecluster_1_1337374503646</str> <int id="y">2327</int> <int id="x">1231</int> <str id="sprite_class">pinecluster_1</str> <int id="z">25</int> <int id="w">694</int> <int id="h">506</int> </object> <object id="tree_coniferous_fg_3_1337374503638"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">2110</int> <int id="x">25</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">4</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="groddle_plant_2_1337374503680"> <str id="name">groddle_plant_2_1337374503680</str> <int id="y">2016</int> <int id="x">1842</int> <str id="sprite_class">groddle_plant_2</str> <int id="z">37</int> <int id="w">51</int> <int id="h">117</int> </object> <object id="groddle_plant_1_1337374503675"> <str id="name">groddle_plant_1_1337374503674</str> <int id="y">2019</int> <int id="x">1768</int> <str id="sprite_class">groddle_plant_1</str> <int id="z">32</int> <int id="w">119</int> <int id="h">126</int> </object> <object id="tree_coniferous_fg_4_1337374503636"> <str id="name">tree_coniferous_fg_4_1337374503636</str> <int id="y">2134</int> <int id="x">1675</int> <str id="sprite_class">tree_coniferous_fg_4</str> <int id="z">10</int> <int id="w">526</int> <int id="h">1048</int> </object> <object id="tree_coniferous_fg_3_1337707374839"> <str id="name">tree_coniferous_fg_3_1337374503631</str> <int id="y">1627</int> <int id="x">2656</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="z">13</int> <int id="w">630</int> <int id="h">1435</int> </object> <object id="tree_coniferous_fg_4_1337374503632"> <str id="name">tree_coniferous_fg_4_1337374503632</str> <int id="y">1971</int> <int id="x">283</int> <str id="sprite_class">tree_coniferous_fg_4</str> <int id="z">6</int> <int id="w">585</int> <int id="h">1166</int> </object> </object> <int id="z">-1</int> </object> <object id="T_1337374503444"> <int id="w">4000</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">16746496</int> </object> <object id="contrast"> <int id="value">-4</int> </object> <object id="tintAmount"> <int id="value">48</int> </object> <object id="brightness"> <int id="value">-28</int> </object> </object> <str id="name">bg2</str> <int id="h">1410</int> <object id="decos"> <object id="pinecluster_2_1337707374769"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1154</int> <int id="x">866</int> <str id="sprite_class">pinecluster_2</str> <int id="z">27</int> <int id="w">444</int> <int id="h">259</int> </object> <object id="pinecluster_2_1337707374768"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1115</int> <int id="x">697</int> <str id="sprite_class">pinecluster_2</str> <int id="z">26</int> <int id="w">444</int> <int id="h">259</int> </object> <object id="pinecluster_2_1337707374797"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1006</int> <int id="x">4047</int> <str id="sprite_class">pinecluster_2</str> <int id="z">6</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337707374792"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1054</int> <int id="x">2247</int> <str id="sprite_class">pinecluster_2</str> <int id="z">1</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337707374798"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">904</int> <int id="x">4219</int> <str id="sprite_class">pinecluster_2</str> <int id="z">7</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337374503470"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1002</int> <int id="x">1895</int> <str id="sprite_class">pinecluster_2</str> <int id="z">10</int> <int id="w">362</int> <int id="h">211</int> </object> <object id="pinecluster_2_1337374503467"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">931</int> <int id="x">23</int> <str id="sprite_class">pinecluster_2</str> <int id="z">8</int> <int id="w">362</int> <int id="h">211</int> </object> <object id="pinecluster_2_1337374503477"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1081</int> <int id="x">2045</int> <str id="sprite_class">pinecluster_2</str> <int id="z">19</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337374503474"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1049</int> <int id="x">90</int> <str id="sprite_class">pinecluster_2</str> <int id="z">15</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337707374794"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">922</int> <int id="x">3010</int> <str id="sprite_class">pinecluster_2</str> <int id="z">3</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337374503476"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">962</int> <int id="x">1975</int> <str id="sprite_class">pinecluster_2</str> <int id="z">0</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337374503475"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1044</int> <int id="x">411</int> <str id="sprite_class">pinecluster_2</str> <int id="z">16</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337707374795"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">975</int> <int id="x">2765</int> <str id="sprite_class">pinecluster_2</str> <int id="z">4</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="tree_group_bg2_1_1337374503493"> <str id="name">tree_group_bg2_1_1337374503489</str> <int id="y">1078</int> <int id="x">479</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="z">17</int> <int id="w">270</int> <int id="h">353</int> </object> <object id="pinecluster_2_1337707374793"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1063</int> <int id="x">2531</int> <str id="sprite_class">pinecluster_2</str> <int id="z">2</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337374503496"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1129</int> <int id="x">390</int> <str id="sprite_class">pinecluster_2</str> <int id="z">24</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="tree_group_bg2_1_1337374503494"> <str id="name">tree_group_bg2_1_1337374503489</str> <int id="y">1106</int> <int id="x">311</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="z">18</int> <int id="w">270</int> <int id="h">353</int> </object> <object id="pinecluster_2_1337374503469"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1017</int> <int id="x">-3</int> <str id="sprite_class">pinecluster_2</str> <int id="z">14</int> <int id="w">362</int> <int id="h">211</int> </object> <object id="pinecluster_2_1337707374767"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1110</int> <int id="x">1744</int> <str id="sprite_class">pinecluster_2</str> <int id="z">22</int> <int id="w">444</int> <int id="h">259</int> </object> <object id="pinecluster_2_1337707374796"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">996</int> <int id="x">3371</int> <str id="sprite_class">pinecluster_2</str> <int id="z">5</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337374503503"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1142</int> <int id="x">2019</int> <str id="sprite_class">pinecluster_2</str> <int id="z">20</int> <int id="w">444</int> <int id="h">259</int> </object> <object id="pinecluster_2_1337374503468"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">977</int> <int id="x">288</int> <str id="sprite_class">pinecluster_2</str> <int id="z">9</int> <int id="w">362</int> <int id="h">211</int> </object> <object id="pinecluster_2_1337374503497"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1130</int> <int id="x">101</int> <str id="sprite_class">pinecluster_2</str> <int id="z">25</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337374503472"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1010</int> <int id="x">1749</int> <str id="sprite_class">pinecluster_2</str> <int id="z">12</int> <int id="w">362</int> <int id="h">211</int> </object> <object id="pinecluster_2_1337374503495"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1042</int> <int id="x">673</int> <str id="sprite_class">pinecluster_2</str> <int id="z">23</int> <int id="w">448</int> <int id="h">261</int> </object> <object id="pinecluster_2_1337374503473"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1007</int> <int id="x">1463</int> <str id="sprite_class">pinecluster_2</str> <int id="z">13</int> <int id="w">362</int> <int id="h">211</int> </object> <object id="pinecluster_2_1337374503471"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1009</int> <int id="x">1595</int> <str id="sprite_class">pinecluster_2</str> <int id="z">11</int> <int id="w">362</int> <int id="h">211</int> </object> <object id="pinecluster_2_1337707374766"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1084</int> <int id="x">1474</int> <str id="sprite_class">pinecluster_2</str> <int id="z">21</int> <int id="w">444</int> <int id="h">259</int> </object> </object> <int id="z">-3</int> </object> <object id="T_1337374503443"> <int id="w">5000</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">16746496</int> </object> <object id="tintAmount"> <int id="value">28</int> </object> <object id="brightness"> <int id="value">-22</int> </object> </object> <str id="name">middleplus</str> <int id="h">1500</int> <object id="decos"> <object id="groddle_fern_1_1337374503722"> <str id="name">groddle_fern_1_1337374503722</str> <int id="y">2384</int> <int id="x">677</int> <str id="sprite_class">groddle_fern_1</str> <int id="z">6</int> <int id="w">126</int> <int id="h">75</int> </object> <object id="bush_3_1337374503660"> <str id="name">bush_3_1337374503660</str> <int id="y">2380</int> <int id="x">594</int> <str id="sprite_class">bush_3</str> <int id="z">1</int> <int id="w">283</int> <int id="h">100</int> </object> <object id="bush_seethrough_01a_g1_1337374503721"> <str id="name">bush_seethrough_01a_g1_1337374503718</str> <int id="y">2278</int> <int id="x">46</int> <str id="sprite_class">bush_seethrough_01a_g1</str> <int id="z">3</int> <int id="w">173</int> <int id="h">72</int> </object> <object id="bush_3_1337374503720"> <str id="name">bush_3_1337374503660</str> <int id="y">2312</int> <int id="x">-35</int> <str id="sprite_class">bush_3</str> <int id="z">4</int> <int id="w">283</int> <int id="h">100</int> </object> <object id="bush_3_1337374503719"> <str id="name">bush_3_1337374503660</str> <int id="y">2326</int> <int id="x">168</int> <str id="sprite_class">bush_3</str> <int id="z">5</int> <int id="w">283</int> <int id="h">100</int> </object> <object id="bush_3_1337374503661"> <str id="name">bush_3_1337374503660</str> <int id="y">2394</int> <int id="x">797</int> <str id="sprite_class">bush_3</str> <int id="z">2</int> <int id="w">283</int> <int id="h">100</int> </object> <object id="tree_dead_2_1337374503901"> <str id="name">tree_dead_2_1337374503901</str> <int id="y">2362</int> <int id="x">356</int> <str id="sprite_class">tree_dead_2</str> <int id="z">8</int> <int id="w">270</int> <int id="h">87</int> </object> <object id="tree_coniferous_fg_1_1337707375246"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">2369</int> <int id="x">1256</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">9</int> <int id="w">633</int> <int id="h">1406</int> <int id="r">-10</int> </object> <object id="groddle_fern_1_1337374503723"> <str id="name">groddle_fern_1_1337374503722</str> <int id="y">2400</int> <int id="x">812</int> <str id="sprite_class">groddle_fern_1</str> <int id="z">7</int> <int id="w">126</int> <int id="h">75</int> </object> <object id="bush_seethrough_01a_g1_1337374503718"> <str id="name">bush_seethrough_01a_g1_1337374503718</str> <int id="y">2346</int> <int id="x">675</int> <str id="sprite_class">bush_seethrough_01a_g1</str> <int id="z">0</int> <int id="w">173</int> <int id="h">72</int> </object> </object> <int id="z">1</int> </object> <object id="T_1337374503655"> <int id="w">3750</int> <object id="filtersNEW"> <object id="blur"> <int id="value">6</int> </object> <object id="tintColor"> <int id="value">16746496</int> </object> <object id="brightness"> <int id="value">-49</int> </object> <object id="saturation"> <int id="value">19</int> </object> <object id="tintAmount"> <int id="value">82</int> </object> <object id="contrast"> <int id="value">-14</int> </object> </object> <str id="name">skydark</str> <int id="h">1380</int> <object id="decos"> <object id="bureaucratic_hall_light_ray_1_1337374503658"> <str id="name">bureaucratic_hall_light_ray_1_1337374503657</str> <int id="y">875</int> <int id="x">578</int> <str id="sprite_class">bureaucratic_hall_light_ray_1</str> <int id="z">1</int> <int id="w">980</int> <int id="h">129</int> </object> <object id="bureaucratic_hall_light_ray_1_1337374503689"> <str id="name">bureaucratic_hall_light_ray_1_1337374503657</str> <int id="y">901</int> <int id="x">776</int> <str id="sprite_class">bureaucratic_hall_light_ray_1</str> <int id="z">2</int> <int id="w">980</int> <int id="h">129</int> </object> <object id="bureaucratic_hall_light_ray_1_1337374503691"> <str id="name">bureaucratic_hall_light_ray_1_1337374503657</str> <int id="y">785</int> <int id="x">940</int> <str id="sprite_class">bureaucratic_hall_light_ray_1</str> <int id="z">4</int> <int id="w">980</int> <int id="h">78</int> </object> <object id="bureaucratic_hall_light_ray_1_1337374503659"> <str id="name">bureaucratic_hall_light_ray_1_1337374503657</str> <int id="y">989</int> <int id="x">1458</int> <str id="sprite_class">bureaucratic_hall_light_ray_1</str> <int id="z">7</int> <int id="w">958</int> <int id="h">199</int> </object> <object id="bureaucratic_hall_light_ray_1_1337374503692"> <str id="name">bureaucratic_hall_light_ray_1_1337374503657</str> <int id="y">806</int> <int id="x">934</int> <str id="sprite_class">bureaucratic_hall_light_ray_1</str> <int id="z">5</int> <int id="w">980</int> <int id="h">78</int> </object> <object id="bureaucratic_hall_light_ray_1_1337374503693"> <str id="name">bureaucratic_hall_light_ray_1_1337374503657</str> <int id="y">806</int> <int id="x">1323</int> <str id="sprite_class">bureaucratic_hall_light_ray_1</str> <int id="z">6</int> <int id="w">980</int> <int id="h">78</int> </object> <object id="bureaucratic_hall_light_ray_1_1337374503690"> <str id="name">bureaucratic_hall_light_ray_1_1337374503657</str> <int id="y">831</int> <int id="x">288</int> <str id="sprite_class">bureaucratic_hall_light_ray_1</str> <int id="z">3</int> <int id="w">980</int> <int id="h">129</int> </object> <object id="bureaucratic_hall_light_ray_1_1337374503657"> <str id="name">bureaucratic_hall_light_ray_1_1337374503657</str> <int id="y">927</int> <int id="x">1373</int> <str id="sprite_class">bureaucratic_hall_light_ray_1</str> <int id="z">0</int> <int id="w">958</int> <int id="h">144</int> </object> </object> <int id="z">-6</int> </object> <object id="T_1337374503460"> <int id="w">3750</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">16776960</int> </object> <object id="tintAmount"> <int id="value">38</int> </object> <object id="brightness"> <int id="value">23</int> </object> </object> <str id="name">sky2</str> <int id="h">1380</int> <object id="decos"> <object id="light_shafts_blue_bottom_1337374503464"> <str id="name">light_shafts_blue_bottom_1337374503462</str> <int id="y">713</int> <int id="x">761</int> <str id="sprite_class">light_shafts_blue_bottom</str> <int id="z">5</int> <int id="w">658</int> <int id="h">53</int> </object> <object id="light_spot_1337374503987"> <str id="name">light_spot_1337374503452</str> <int id="y">731</int> <int id="x">128</int> <str id="sprite_class">light_spot</str> <int id="z">3</int> <int id="w">937</int> <int id="h">271</int> <int id="r">7</int> </object> <object id="light_shafts_blue_bottom_1337374503906"> <str id="name">light_shafts_blue_bottom_1337374503462</str> <int id="y">772</int> <int id="x">655</int> <str id="sprite_class">light_shafts_blue_bottom</str> <int id="z">8</int> <int id="w">470</int> <int id="h">70</int> </object> <object id="light_shafts_blue_bottom_1337374503688"> <str id="name">light_shafts_blue_bottom_1337374503462</str> <int id="y">772</int> <int id="x">746</int> <str id="sprite_class">light_shafts_blue_bottom</str> <int id="z">7</int> <int id="w">652</int> <int id="h">54</int> </object> <object id="cloud_fluffy_2_1337707374799"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">508</int> <int id="x">2127</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">10</int> <int id="w">818</int> <int id="h">95</int> </object> <object id="light_spot_1337374503651"> <str id="name">light_spot_1337374503452</str> <int id="y">768</int> <int id="x">182</int> <str id="sprite_class">light_spot</str> <int id="z">1</int> <int id="w">1678</int> <int id="h">407</int> </object> <object id="light_spot_1337374503711"> <str id="name">light_spot_1337374503452</str> <int id="y">646</int> <int id="x">91</int> <str id="sprite_class">light_spot</str> <int id="z">2</int> <int id="w">1678</int> <int id="h">419</int> <int id="r">7</int> </object> <object id="cloud_fluffy_2_1337707374800"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">592</int> <int id="x">3157</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">11</int> <int id="w">818</int> <int id="h">95</int> </object> <object id="light_spot_1337374503461"> <str id="name">light_spot_1337374503452</str> <int id="y">682</int> <int id="x">901</int> <str id="sprite_class">light_spot</str> <int id="z">0</int> <int id="w">1371</int> <int id="h">82</int> </object> <object id="cloud_fluffy_2_1337374503463"> <str id="name">cloud_fluffy_2_1337374503463</str> <int id="y">585</int> <int id="x">647</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="z">9</int> <int id="w">818</int> <int id="h">95</int> </object> <object id="light_shafts_blue_bottom_1337374503687"> <str id="name">light_shafts_blue_bottom_1337374503462</str> <int id="y">717</int> <int id="x">1183</int> <str id="sprite_class">light_shafts_blue_bottom</str> <int id="z">6</int> <int id="w">658</int> <int id="h">53</int> </object> <object id="light_spot_1337374503652"> <str id="name">light_spot_1337374503452</str> <int id="y">809</int> <int id="x">1979</int> <str id="sprite_class">light_spot</str> <int id="z">12</int> <int id="w">1764</int> <int id="h">444</int> </object> <object id="light_shafts_blue_bottom_1337374503462"> <str id="name">light_shafts_blue_bottom_1337374503462</str> <int id="y">529</int> <int id="x">974</int> <str id="sprite_class">light_shafts_blue_bottom</str> <int id="z">4</int> <int id="w">592</int> <int id="h">54</int> </object> </object> <int id="z">-5</int> </object> <object id="middleground"> <object id="filtersNEW"> <object id="tintColor"> <int id="value">16746496</int> </object> <object id="contrast"> <int id="value">16</int> </object> <object id="tintAmount"> <int id="value">39</int> </object> <object id="brightness"> <int id="value">12</int> </object> </object> <object id="boxes"> </object> <object id="doors"> </object> <str id="name">middleground</str> <object id="decos"> <object id="tree_stack_branch_3_1337707375043"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-517</int> <int id="x">444</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">76</int> <int id="w">212</int> <int id="h">79</int> </object> <object id="platform_branch_boards_10_g1_1337374503888"> <str id="name">platform_branch_boards_10_g1_1337374503888</str> <int id="y">-800</int> <int id="x">-1031</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">125</int> <int id="w">365</int> <int id="h">109</int> </object> <object id="platform_branch_boards_04_g1_1337374503893"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-843</int> <int id="x">749</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">74</int> <int id="w">150</int> <int id="h">56</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_08_g1_1337374503550"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503550</str> <int id="y">-1567</int> <int id="x">-486</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">59</int> <int id="w">213</int> <int id="h">86</int> <int id="r">5</int> </object> <object id="platform_branch_a05_1337374503562"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1944</int> <int id="x">862</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">98</int> <int id="w">152</int> <int id="h">65</int> </object> <object id="platform_branch_boards_06_g1_1337374503744"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-936</int> <int id="x">1080</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">65</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_04_g1_1337374503892"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-857</int> <int id="x">825</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">79</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_02_g1_1337729294769"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_02_g1_1337707375030</str> <int id="y">-722</int> <int id="x">2085</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">331</int> <int id="w">319</int> <int id="h">135</int> <int id="r">5</int> </object> <object id="tree_stack_branch_3_1337707374971"> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-981</int> <int id="x">767</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">78</int> <int id="w">212</int> <int id="h">79</int> <int id="r">10</int> </object> <object id="tree_stack_trunk_1337374503525"> <str id="name">tree_stack_trunk_1337374503524</str> <int id="y">-1217</int> <int id="x">-847</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">40</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_a05_1337374503558"> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1837</int> <int id="x">391</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">92</int> <int id="w">188</int> <int id="h">81</int> </object> <object id="platform_branch_a05_1337374503883"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1969</int> <int id="x">-534</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">44</int> <int id="w">188</int> <int id="h">81</int> <int id="r">15</int> </object> <object id="platform_branch_boards_07_g1_1337729294891"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_07_g1_1337707374925</str> <int id="y">-358</int> <int id="x">-1942</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">229</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="platform_branch_boards_02_g1_1337707375091"> <str id="name">platform_branch_boards_02_g1_1337707375062</str> <int id="y">-1118</int> <int id="x">-434</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">276</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="platform_branch_boards_10_g1_1337374503564"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_10_g1_1337374503563</str> <int id="y">-1828</int> <int id="x">933</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">103</int> <int id="w">365</int> <int id="h">109</int> <int id="r">20</int> </object> <object id="tree_stack_trunk_1337374503585"> <str id="name">tree_stack_trunk_1337374503524</str> <int id="y">-1997</int> <int id="x">910</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">37</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_01_g1_1337707375247"> <str id="name">platform_branch_boards_01_g1_1337707375073</str> <int id="y">26</int> <int id="x">-798</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">283</int> <int id="w">596</int> <int id="h">184</int> </object> <object id="platform_branch_boards_01_g1_1337374503546"> <str id="name">platform_branch_boards_01_g1_1337374503546</str> <int id="y">-1600</int> <int id="x">-788</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">53</int> <int id="w">596</int> <int id="h">184</int> </object> <object id="tree_stack_branch_3_1337374503894"> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-838</int> <int id="x">782</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">75</int> <int id="w">212</int> <int id="h">79</int> </object> <object id="tree_coniferous_fg_1_1337707375028"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">642</int> <int id="x">1316</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">10</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="platform_branch_boards_09_g1_1337707374870"> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-89</int> <int id="x">-834</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">319</int> <int id="w">195</int> <int id="h">61</int> </object> <object id="platform_branch_boards_06_g1_1337374503531"> <str id="name">platform_branch_boards_06_g1_1337374503531</str> <int id="y">-1821</int> <int id="x">292</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">48</int> <int id="w">358</int> <int id="h">123</int> </object> <object id="platform_branch_boards_02_g1_1337707375242"> <str id="name">platform_branch_boards_02_g1_1337707375062</str> <int id="y">-69</int> <int id="x">-2048</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">273</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="platform_branch_boards_02_g1_1337374503951"> <str id="name">platform_branch_boards_02_g1_1337374503951</str> <int id="y">-1084</int> <int id="x">-866</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">142</int> <int id="w">256</int> <int id="h">108</int> </object> <object id="platform_branch_boards_08_g1_1337374503591"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503550</str> <int id="y">-2036</int> <int id="x">-626</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">63</int> <int id="w">213</int> <int id="h">86</int> </object> <object id="platform_branch_boards_06_g1_1337707374904"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">16</int> <int id="x">302</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">208</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_01_g1_1337707375073"> <str id="name">platform_branch_boards_01_g1_1337707375073</str> <int id="y">-833</int> <int id="x">-2020</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">279</int> <int id="w">596</int> <int id="h">184</int> </object> <object id="platform_branch_boards_09_g1_1337374503793"> <str id="name">platform_branch_boards_09_g1_1337374503793</str> <int id="y">-1171</int> <int id="x">-53</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">118</int> <int id="w">220</int> <int id="h">69</int> </object> <object id="platform_branch_boards_01_g1_1337729294803"> <str id="name">platform_branch_boards_01_g1_1337707374998</str> <int id="y">-193</int> <int id="x">2161</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">344</int> <int id="w">596</int> <int id="h">184</int> <int id="r">-5</int> </object> <object id="tree_stack_knot_1337729294895"> <str id="name">tree_stack_knot_1337707375185</str> <int id="y">-496</int> <int id="x">-2061</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">292</int> <int id="w">20</int> <int id="h">121</int> </object> <object id="platform_branch_4_1337374503614"> <bool id="h_flip">true</bool> <str id="name">platform_branch_4_1337374503612</str> <int id="y">-1939</int> <int id="x">-577</int> <str id="sprite_class">platform_branch_4</str> <int id="z">54</int> <int id="w">253</int> <int id="h">87</int> <int id="r">10</int> </object> <object id="tree_stack_knot_1337707374884"> <str id="name">tree_stack_knot_1337707374884</str> <int id="y">-173</int> <int id="x">-1436</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">206</int> <int id="w">52</int> <int id="h">314</int> </object> <object id="tree_stack_trunk_1337707374845"> <str id="name">tree_stack_trunk_1337707374840</str> <int id="y">96</int> <int id="x">911</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">15</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_08_g1_1337374503754"> <str id="name">platform_branch_boards_08_g1_1337374503753</str> <int id="y">-1008</int> <int id="x">-1031</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">25</int> <int id="w">142</int> <int id="h">57</int> <int id="r">10</int> </object> <object id="platform_branch_boards_06_g1_1337729294842"> <str id="name">platform_branch_boards_06_g1_1337707375125</str> <int id="y">-1067</int> <int id="x">-1527</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">271</int> <int id="w">301</int> <int id="h">103</int> <int id="r">-15</int> </object> <object id="platform_branch_boards_06_g1_1337707374982"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1201</int> <int id="x">1869</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">12</int> <int id="w">325</int> <int id="h">111</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_07_g1_1337707375009"> <str id="name">platform_branch_boards_07_g1_1337707375009</str> <int id="y">-728</int> <int id="x">1751</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">252</int> <int id="w">169</int> <int id="h">68</int> <int id="r">-10</int> </object> <object id="platform_branch_a05_1337374503916"> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1752</int> <int id="x">837</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">93</int> <int id="w">154</int> <int id="h">66</int> </object> <object id="platform_branch_boards_08_g1_1337729294914"> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-962</int> <int id="x">-1154</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">112</int> <int id="w">129</int> <int id="h">52</int> <int id="r">-25</int> </object> <object id="tree_stack_branch_2_1337729294934"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_2_1337729294933</str> <int id="y">-1169</int> <int id="x">1320</int> <str id="sprite_class">tree_stack_branch_2</str> <int id="z">3</int> <int id="w">175</int> <int id="h">107</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_06_g1_1337707374856"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707374853</str> <int id="y">-437</int> <int id="x">-1231</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">178</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_05_g1_1337374503554"> <str id="name">platform_branch_boards_05_g1_1337374503554</str> <int id="y">-1532</int> <int id="x">288</int> <str id="sprite_class">platform_branch_boards_05_g1</str> <int id="z">66</int> <int id="w">365</int> <int id="h">109</int> </object> <object id="platform_branch_boards_10_g1_1337374503794"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_10_g1_1337374503794</str> <int id="y">-839</int> <int id="x">297</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">242</int> <int id="w">365</int> <int id="h">109</int> </object> <object id="platform_branch_boards_06_g1_1337707374981"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1212</int> <int id="x">1778</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">216</int> <int id="w">325</int> <int id="h">111</int> </object> <object id="platform_branch_boards_08_g1_1337374503946"> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-1469</int> <int id="x">-995</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">138</int> <int id="w">164</int> <int id="h">66</int> <int id="r">-10</int> </object> <object id="platform_branch_4_1337374503590"> <bool id="h_flip">true</bool> <str id="name">platform_branch_4_1337374503536</str> <int id="y">-2039</int> <int id="x">-671</int> <str id="sprite_class">platform_branch_4</str> <int id="z">32</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_4_1337374503615"> <str id="name">platform_branch_4_1337374503612</str> <int id="y">-1978</int> <int id="x">-1120</int> <str id="sprite_class">platform_branch_4</str> <int id="z">28</int> <int id="w">253</int> <int id="h">87</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_06_g1_1337707374855"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707374853</str> <int id="y">-95</int> <int id="x">-1223</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">177</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="wood_platform_1339888421695"> <str id="name">wood_platform_1339888421694</str> <int id="y">-152</int> <int id="x">1545</int> <str id="sprite_class">wood_platform</str> <int id="z">310</int> <int id="w">122</int> <int id="h">65</int> </object> <object id="platform_branch_boards_03_g1_1337707375268"> <str id="name">platform_branch_boards_03_g1_1337374503811</str> <int id="y">19</int> <int id="x">547</int> <str id="sprite_class">platform_branch_boards_03_g1</str> <int id="z">71</int> <int id="w">332</int> <int id="h">101</int> </object> <object id="tree_stack_branch_3_1337374503796"> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-1146</int> <int id="x">-2</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">214</int> <int id="w">201</int> <int id="h">74</int> </object> <object id="platform_branch_boards_09_g1_1337707374872"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-35</int> <int id="x">-597</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">185</int> <int id="w">220</int> <int id="h">69</int> </object> <object id="platform_branch_boards_04_g1_1337729294781"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-833</int> <int id="x">2302</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">333</int> <int id="w">198</int> <int id="h">74</int> <int id="r">20</int> </object> <object id="platform_branch_4_1337374503589"> <str id="name">platform_branch_4_1337374503536</str> <int id="y">-2045</int> <int id="x">-1031</int> <str id="sprite_class">platform_branch_4</str> <int id="z">31</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_04_g1_1337729294766"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-711</int> <int id="x">1090</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">72</int> <int id="w">176</int> <int id="h">66</int> <int id="r">10</int> </object> <object id="tree_stack_knot_1337729294759"> <str id="name">tree_stack_knot_1337707375185</str> <int id="y">125</int> <int id="x">2147</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">294</int> <int id="w">45</int> <int id="h">271</int> </object> <object id="platform_branch_boards_08_g1_1337707374950"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-721</int> <int id="x">-315</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">237</int> <int id="w">164</int> <int id="h">66</int> <int id="r">10</int> </object> <object id="platform_branch_boards_08_g1_1337729294859"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337707374913</str> <int id="y">-495</int> <int id="x">-1887</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">4</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="platform_branch_boards_08_g1_1337374503875"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503550</str> <int id="y">-1976</int> <int id="x">-359</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">61</int> <int id="w">213</int> <int id="h">86</int> <int id="r">15</int> </object> <object id="platform_branch_a05_1337729294912"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337729294900</str> <int id="y">-264</int> <int id="x">-744</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">280</int> <int id="w">185</int> <int id="h">79</int> </object> <object id="tree_stack_knot_1337707374888"> <str id="name">tree_stack_knot_1337707374884</str> <int id="y">-368</int> <int id="x">-1413</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">169</int> <int id="w">25</int> <int id="h">151</int> </object> <object id="platform_branch_boards_06_g1_1337374503749"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1239</int> <int id="x">-1022</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">114</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="tree_stack_leafy_1_1337385697232"> <str id="name">tree_stack_leafy_1_1337385697231</str> <int id="y">-2323</int> <int id="x">922</int> <str id="sprite_class">tree_stack_leafy_1</str> <int id="z">154</int> <int id="w">465</int> <int id="h">144</int> </object> <object id="platform_branch_boards_07_g1_1337374503566"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_07_g1_1337374503566</str> <int id="y">-1937</int> <int id="x">670</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">95</int> <int id="w">142</int> <int id="h">57</int> <int id="r">20</int> </object> <object id="platform_branch_boards_08_g1_1337707374989"> <str id="name">platform_branch_boards_08_g1_1337707374983</str> <int id="y">-1191</int> <int id="x">1556</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">246</int> <int id="w">155</int> <int id="h">62</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_06_g1_1337374503553"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1629</int> <int id="x">661</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">64</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_08_g1_1337707375122"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-680</int> <int id="x">-228</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">238</int> <int id="w">164</int> <int id="h">66</int> <int id="r">10</int> </object> <object id="platform_branch_boards_03_g1_1337707375308"> <str id="name">platform_branch_boards_03_g1_1337374503811</str> <int id="y">-657</int> <int id="x">1645</int> <str id="sprite_class">platform_branch_boards_03_g1</str> <int id="z">327</int> <int id="w">332</int> <int id="h">101</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_06_g1_1337729294798"> <str id="name">platform_branch_boards_06_g1_1337707375008</str> <int id="y">-920</int> <int id="x">2460</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">257</int> <int id="w">301</int> <int id="h">103</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_11_g1_1337374503532"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_11_g1_1337374503532</str> <int id="y">-1840</int> <int id="x">183</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">50</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="trunk_ladder_1_1337374503983"> <str id="name">trunk_ladder_1_1337374503828</str> <int id="y">-1525</int> <int id="x">-853</int> <str id="sprite_class">trunk_ladder_1</str> <int id="z">148</int> <int id="w">88</int> <int id="h">101</int> </object> <object id="platform_branch_boards_10_g1_1337707375223"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_10_g1_1337707375221</str> <int id="y">-96</int> <int id="x">1659</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">308</int> <int id="w">365</int> <int id="h">109</int> <int id="r">7</int> </object> <object id="platform_branch_boards_03_g1_1337707375007"> <str id="name">platform_branch_boards_03_g1_1337707375007</str> <int id="y">-746</int> <int id="x">1921</int> <str id="sprite_class">platform_branch_boards_03_g1</str> <int id="z">253</int> <int id="w">332</int> <int id="h">101</int> </object> <object id="tree_stack_knot_1337729294896"> <str id="name">tree_stack_knot_1337707375185</str> <int id="y">-519</int> <int id="x">-1995</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">293</int> <int id="w">18</int> <int id="h">109</int> </object> <object id="tree_stack_trunk_1337374503524"> <str id="name">tree_stack_trunk_1337374503524</str> <int id="y">-520</int> <int id="x">-848</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">39</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_12_g1_1337707375000"> <str id="name">platform_branch_boards_12_g1_1337707375000</str> <int id="y">-1148</int> <int id="x">2278</int> <str id="sprite_class">platform_branch_boards_12_g1</str> <int id="z">342</int> <int id="w">260</int> <int id="h">115</int> </object> <object id="platform_branch_boards_08_g1_1337374503978"> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-1622</int> <int id="x">-1042</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">17</int> <int id="w">181</int> <int id="h">73</int> <int id="r">-20</int> </object> <object id="platform_branch_a05_1337729294911"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337729294900</str> <int id="y">-12</int> <int id="x">-748</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">282</int> <int id="w">185</int> <int id="h">79</int> </object> <object id="platform_branch_boards_02_g1_1337374503921"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_02_g1_1337374503921</str> <int id="y">-1719</int> <int id="x">897</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">131</int> <int id="w">248</int> <int id="h">105</int> </object> <object id="platform_branch_boards_06_g1_1337707375216"> <str id="name">platform_branch_boards_06_g1_1337707375216</str> <int id="y">-39</int> <int id="x">734</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">311</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_05_g1_1337374503850"> <str id="name">platform_branch_boards_05_g1_1337374503554</str> <int id="y">-2105</int> <int id="x">707</int> <str id="sprite_class">platform_branch_boards_05_g1</str> <int id="z">67</int> <int id="w">365</int> <int id="h">109</int> </object> <object id="platform_branch_a05_1337707374956"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337707374956</str> <int id="y">-877</int> <int id="x">226</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">241</int> <int id="w">154</int> <int id="h">66</int> </object> <object id="tree_stack_branch_1_1337707374955"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_1_1337374503752</str> <int id="y">-834</int> <int id="x">223</int> <str id="sprite_class">tree_stack_branch_1</str> <int id="z">240</int> <int id="w">130</int> <int id="h">89</int> </object> <object id="tree_stack_trunk_1337707374862"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">-610</int> <int id="x">129</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">180</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_08_g1_1337707374914"> <str id="name">platform_branch_boards_08_g1_1337707374913</str> <int id="y">-312</int> <int id="x">-2107</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">221</int> <int id="w">142</int> <int id="h">57</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_01_g1_1337707375096"> <str id="name">platform_branch_boards_01_g1_1337707375096</str> <int id="y">-304</int> <int id="x">-391</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">172</int> <int id="w">521</int> <int id="h">161</int> </object> <object id="platform_branch_boards_09_g1_1337707375052"> <str id="name">platform_branch_boards_09_g1_1337707375052</str> <int id="y">-629</int> <int id="x">-1508</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">267</int> <int id="w">220</int> <int id="h">69</int> <int id="r">-11</int> </object> <object id="platform_branch_a05_1337374503884"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1940</int> <int id="x">-419</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">45</int> <int id="w">188</int> <int id="h">81</int> <int id="r">15</int> </object> <object id="platform_branch_a05_1337374503559"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1967</int> <int id="x">591</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">94</int> <int id="w">188</int> <int id="h">81</int> </object> <object id="tree_stack_trunk_1337707374865"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">-1380</int> <int id="x">-429</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">183</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="tree_stack_branch_1_1337707374945"> <str id="name">tree_stack_branch_1_1337374503752</str> <int id="y">-650</int> <int id="x">-523</int> <str id="sprite_class">tree_stack_branch_1</str> <int id="z">235</int> <int id="w">142</int> <int id="h">97</int> </object> <object id="platform_branch_boards_08_g1_1337374503753"> <str id="name">platform_branch_boards_08_g1_1337374503753</str> <int id="y">-1008</int> <int id="x">-1140</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">24</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="platform_branch_boards_09_g1_1337374503619"> <str id="name">platform_branch_boards_09_g1_1337374503618</str> <int id="y">-2074</int> <int id="x">-944</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">107</int> <int id="w">220</int> <int id="h">69</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_06_g1_1337707374907"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-153</int> <int id="x">300</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">210</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_08_g1_1337707374849"> <str id="name">platform_branch_boards_08_g1_1337707374849</str> <int id="y">-97</int> <int id="x">-2421</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">161</int> <int id="w">142</int> <int id="h">57</int> <int id="r">-15</int> </object> <object id="tree_coniferous_fg_1_1337707374877"> <str id="name">tree_coniferous_fg_1_1337707374877</str> <int id="y">-294</int> <int id="x">-2035</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">14</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="platform_branch_boards_09_g1_1337374503618"> <str id="name">platform_branch_boards_09_g1_1337374503618</str> <int id="y">-1992</int> <int id="x">-1108</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">106</int> <int id="w">220</int> <int id="h">69</int> <int id="r">-5</int> </object> <object id="tree_stack_branch_3_1337374503964"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-1172</int> <int id="x">-542</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">19</int> <int id="w">201</int> <int id="h">74</int> <int id="r">25</int> </object> <object id="platform_branch_boards_11_g1_1337707375053"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_11_g1_1337707375053</str> <int id="y">-593</int> <int id="x">-1584</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">265</int> <int id="w">150</int> <int id="h">56</int> <int id="r">-30</int> </object> <object id="tree_stack_trunk_1337707374843"> <str id="name">tree_stack_trunk_1337707374840</str> <int id="y">175</int> <int id="x">-849</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">16</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_08_g1_1337374503952"> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-1101</int> <int id="x">-972</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">143</int> <int id="w">164</int> <int id="h">66</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_08_g1_1337729294857"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337707374913</str> <int id="y">-658</int> <int id="x">-1896</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">224</int> <int id="w">142</int> <int id="h">57</int> <int id="r">20</int> </object> <object id="platform_branch_boards_04_g1_1337729294818"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-108</int> <int id="x">2182</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">339</int> <int id="w">176</int> <int id="h">66</int> </object> <object id="platform_branch_boards_08_g1_1337374503533"> <str id="name">platform_branch_boards_08_g1_1337374503533</str> <int id="y">-1829</int> <int id="x">85</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">49</int> <int id="w">216</int> <int id="h">87</int> </object> <object id="platform_branch_4_1337374503536"> <str id="name">platform_branch_4_1337374503536</str> <int id="y">-1771</int> <int id="x">149</int> <str id="sprite_class">platform_branch_4</str> <int id="z">30</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="tree_stack_trunk_1337707374844"> <str id="name">tree_stack_trunk_1337707374840</str> <int id="y">105</int> <int id="x">2110</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">159</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_04_g1_1337729294780"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-863</int> <int id="x">2236</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">334</int> <int id="w">200</int> <int id="h">75</int> <int id="r">10</int> </object> <object id="platform_branch_5_1337374503755"> <bool id="h_flip">true</bool> <str id="name">platform_branch_5_1337374503755</str> <int id="y">-1025</int> <int id="x">-554</int> <str id="sprite_class">platform_branch_5</str> <int id="z">23</int> <int id="w">142</int> <int id="h">55</int> </object> <object id="trunk_ladder_1_1337374503935"> <bool id="h_flip">true</bool> <str id="name">trunk_ladder_1_1337374503828</str> <int id="y">-1484</int> <int id="x">920</int> <str id="sprite_class">trunk_ladder_1</str> <int id="z">135</int> <int id="w">82</int> <int id="h">94</int> </object> <object id="platform_branch_boards_09_g1_1337707374871"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-82</int> <int id="x">-990</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">184</int> <int id="w">220</int> <int id="h">69</int> </object> <object id="platform_branch_a05_1337729294901"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337729294900</str> <int id="y">-45</int> <int id="x">1013</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">321</int> <int id="w">177</int> <int id="h">76</int> </object> <object id="platform_branch_boards_08_g1_1337374503874"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503550</str> <int id="y">-1971</int> <int id="x">-445</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">62</int> <int id="w">213</int> <int id="h">86</int> <int id="r">5</int> </object> <object id="tree_stack_leafy_1_1337385697231"> <str id="name">tree_stack_leafy_1_1337385697231</str> <int id="y">-2273</int> <int id="x">518</int> <str id="sprite_class">tree_stack_leafy_1</str> <int id="z">153</int> <int id="w">596</int> <int id="h">184</int> </object> <object id="platform_branch_a05_1337729294905"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337729294900</str> <int id="y">-1235</int> <int id="x">2210</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">302</int> <int id="w">147</int> <int id="h">63</int> </object> <object id="platform_branch_boards_09_g1_1337707374873"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-15</int> <int id="x">-238</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">195</int> <int id="w">220</int> <int id="h">69</int> </object> <object id="platform_branch_boards_06_g1_1338595091065"> <str id="name">platform_branch_boards_06_g1_1337707375008</str> <int id="y">-294</int> <int id="x">2005</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">0</int> <int id="w">207</int> <int id="h">71</int> <int id="r">-17</int> </object> <object id="platform_branch_boards_08_g1_1337385697233"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-918</int> <int id="x">-736</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">155</int> <int id="w">164</int> <int id="h">66</int> <int id="r">10</int> </object> <object id="platform_branch_a05_1337374503561"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1941</int> <int id="x">798</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">97</int> <int id="w">188</int> <int id="h">81</int> </object> <object id="platform_branch_boards_08_g1_1337729294913"> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-967</int> <int id="x">-1194</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">110</int> <int id="w">164</int> <int id="h">66</int> <int id="r">-10</int> </object> <object id="tree_stack_branch_1_1337374503864"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_1_1337374503864</str> <int id="y">-1525</int> <int id="x">-462</int> <str id="sprite_class">tree_stack_branch_1</str> <int id="z">52</int> <int id="w">221</int> <int id="h">151</int> </object> <object id="platform_branch_boards_08_g1_1337707374917"> <str id="name">platform_branch_boards_08_g1_1337707374913</str> <int id="y">-268</int> <int id="x">-2177</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">222</int> <int id="w">142</int> <int id="h">57</int> <int id="r">-10</int> </object> <object id="platform_branch_a05_1337374503886"> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1985</int> <int id="x">-1074</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">47</int> <int id="w">188</int> <int id="h">81</int> <int id="r">-5</int> </object> <object id="tree_stack_branch_3_1337707374985"> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-1292</int> <int id="x">2010</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">247</int> <int id="w">159</int> <int id="h">59</int> </object> <object id="platform_branch_boards_08_g1_1337374503941"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-1152</int> <int id="x">-364</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">137</int> <int id="w">164</int> <int id="h">66</int> <int id="r">10</int> </object> <object id="platform_branch_boards_06_g1_1337374503750"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-536</int> <int id="x">-675</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">115</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_04_g1_1337729294776"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-625</int> <int id="x">2012</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">337</int> <int id="w">176</int> <int id="h">66</int> <int id="r">-15</int> </object> <object id="platform_branch_boards_08_g1_1337707375173"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-1335</int> <int id="x">-577</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">9</int> <int id="w">213</int> <int id="h">86</int> <int id="r">10</int> </object> <object id="platform_branch_boards_02_g1_1337374503756"> <str id="name">platform_branch_boards_02_g1_1337374503756</str> <int id="y">-577</int> <int id="x">-847</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">117</int> <int id="w">257</int> <int id="h">109</int> </object> <object id="platform_branch_boards_09_g1_1337707374895"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-143</int> <int id="x">1122</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">188</int> <int id="w">220</int> <int id="h">69</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_11_g1_1337707375061"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_11_g1_1337707375053</str> <int id="y">-645</int> <int id="x">-1416</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">266</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_05_g1_1337707374988"> <str id="name">platform_branch_boards_05_g1_1337707374988</str> <int id="y">-1134</int> <int id="x">1451</int> <str id="sprite_class">platform_branch_boards_05_g1</str> <int id="z">11</int> <int id="w">365</int> <int id="h">109</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_09_g1_1337374503621"> <str id="name">platform_branch_boards_09_g1_1337374503618</str> <int id="y">-2035</int> <int id="x">-1101</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">108</int> <int id="w">220</int> <int id="h">69</int> </object> <object id="platform_branch_a01_1337374503814"> <str id="name">platform_branch_a01_1337374503814</str> <int id="y">-1077</int> <int id="x">1051</int> <str id="sprite_class">platform_branch_a01</str> <int id="z">88</int> <int id="w">260</int> <int id="h">115</int> </object> <object id="platform_branch_boards_07_g1_1337707374942"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_07_g1_1337707374925</str> <int id="y">-443</int> <int id="x">-1300</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">230</int> <int id="w">168</int> <int id="h">67</int> <int id="r">10</int> </object> <object id="platform_branch_boards_06_g1_1337374503751"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-537</int> <int id="x">-1009</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">116</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="tree_stack_trunk_1337707375249"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">237</int> <int id="x">-1480</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">166</int> <int id="w">88</int> <int id="h">700</int> <int id="r">5</int> </object> <object id="platform_branch_boards_11_g1_1337374503932"> <str id="name">platform_branch_boards_11_g1_1337374503932</str> <int id="y">-1193</int> <int id="x">1043</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">133</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="trunk_ladder_1_1337374503938"> <str id="name">trunk_ladder_1_1337374503828</str> <int id="y">-1671</int> <int id="x">897</int> <str id="sprite_class">trunk_ladder_1</str> <int id="z">36</int> <int id="w">90</int> <int id="h">103</int> </object> <object id="platform_branch_4_1337374503613"> <bool id="h_flip">true</bool> <str id="name">platform_branch_4_1337374503612</str> <int id="y">-1986</int> <int id="x">-687</int> <str id="sprite_class">platform_branch_4</str> <int id="z">55</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_06_g1_1337707374967"> <str id="name">platform_branch_boards_06_g1_1337374503813</str> <int id="y">-985</int> <int id="x">734</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">85</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_09_g1_1337707374901"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-131</int> <int id="x">1745</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">190</int> <int id="w">220</int> <int id="h">69</int> </object> <object id="trunk_ladder_1_1337374503982"> <str id="name">trunk_ladder_1_1337374503828</str> <int id="y">-1624</int> <int id="x">-855</int> <str id="sprite_class">trunk_ladder_1</str> <int id="z">147</int> <int id="w">75</int> <int id="h">86</int> </object> <object id="tree_stack_branch_3_1337707374970"> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-935</int> <int id="x">605</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">77</int> <int id="w">212</int> <int id="h">79</int> <int id="r">-20</int> </object> <object id="tree_stack_branch_3_1337729294898"> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-216</int> <int id="x">818</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">316</int> <int id="w">212</int> <int id="h">79</int> <int id="r">-20</int> </object> <object id="platform_branch_boards_08_g1_1337374503551"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503550</str> <int id="y">-1707</int> <int id="x">-744</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">29</int> <int id="w">213</int> <int id="h">86</int> <int id="r">5</int> </object> <object id="platform_branch_boards_03_g1_1337374503811"> <str id="name">platform_branch_boards_03_g1_1337374503811</str> <int id="y">-610</int> <int id="x">731</int> <str id="sprite_class">platform_branch_boards_03_g1</str> <int id="z">70</int> <int id="w">332</int> <int id="h">101</int> </object> <object id="platform_branch_boards_04_g1_1337707374969"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-982</int> <int id="x">782</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">83</int> <int id="w">207</int> <int id="h">77</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_04_g1_1337707375211"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-255</int> <int id="x">659</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">286</int> <int id="w">176</int> <int id="h">66</int> <int id="r">-20</int> </object> <object id="tree_stack_trunk_1337374503584"> <str id="name">tree_stack_trunk_1337374503524</str> <int id="y">-1298</int> <int id="x">911</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">35</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_08_g1_1337374503592"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503550</str> <int id="y">-2004</int> <int id="x">-517</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">60</int> <int id="w">213</int> <int id="h">86</int> </object> <object id="platform_branch_boards_09_g1_1337707375129"> <str id="name">platform_branch_boards_09_g1_1337707375129</str> <int id="y">-759</int> <int id="x">-1595</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">288</int> <int id="w">191</int> <int id="h">60</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_06_g1_1337729294886"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707374916</str> <int id="y">-380</int> <int id="x">-2407</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">199</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_02_g1_1337374503547"> <str id="name">platform_branch_boards_02_g1_1337374503547</str> <int id="y">-2013</int> <int id="x">-863</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">56</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="tree_stack_branch_3_1337374503969"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-1358</int> <int id="x">-451</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">18</int> <int id="w">201</int> <int id="h">74</int> </object> <object id="platform_branch_boards_08_g1_1337707374937"> <str id="name">platform_branch_boards_08_g1_1337707374924</str> <int id="y">-322</int> <int id="x">-1730</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">233</int> <int id="w">142</int> <int id="h">57</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_06_g1_1337374503745"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-756</int> <int id="x">-50</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">219</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_a05_1337374503885"> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-2020</int> <int id="x">-956</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">46</int> <int id="w">188</int> <int id="h">81</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_06_g1_1337707374931"> <str id="name">platform_branch_boards_06_g1_1337707374853</str> <int id="y">-314</int> <int id="x">-1588</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">232</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_06_g1_1337374503857"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1627</int> <int id="x">-574</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">21</int> <int id="w">301</int> <int id="h">103</int> <int id="r">10</int> </object> <object id="tree_stack_trunk_1337374503526"> <str id="name">tree_stack_trunk_1337374503524</str> <int id="y">-1908</int> <int id="x">-848</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">41</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_08_g1_1337729294918"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-680</int> <int id="x">-2312</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">202</int> <int id="w">164</int> <int id="h">66</int> </object> <object id="platform_branch_boards_02_g1_1337707375168"> <str id="name">platform_branch_boards_02_g1_1337707375062</str> <int id="y">-985</int> <int id="x">127</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">278</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="tree_stack_trunk_1337374503530"> <str id="name">tree_stack_trunk_1337374503524</str> <int id="y">-1783</int> <int id="x">488</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">38</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="tree_stack_branch_3_1337374503809"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-1279</int> <int id="x">1015</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">90</int> <int id="w">159</int> <int id="h">59</int> </object> <object id="platform_branch_boards_04_g1_1337729294774"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-660</int> <int id="x">2020</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">341</int> <int id="w">176</int> <int id="h">66</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_06_g1_1337729294880"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707374916</str> <int id="y">-656</int> <int id="x">-2285</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">200</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_07_g1_1337374503887"> <str id="name">platform_branch_boards_07_g1_1337374503887</str> <int id="y">-853</int> <int id="x">-930</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">124</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="tree_stack_trunk_1337707375184"> <str id="name">tree_stack_trunk_1337707374840</str> <int id="y">-13</int> <int id="x">2145</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">158</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="tree_stack_branch_2_1337729294933"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_2_1337729294933</str> <int id="y">-1132</int> <int id="x">1762</int> <str id="sprite_class">tree_stack_branch_2</str> <int id="z">2</int> <int id="w">175</int> <int id="h">107</int> <int id="r">-70</int> </object> <object id="platform_branch_boards_09_g1_1337707374894"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-87</int> <int id="x">814</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">187</int> <int id="w">220</int> <int id="h">69</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_04_g1_1337729294816"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-109</int> <int id="x">2057</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">338</int> <int id="w">176</int> <int id="h">66</int> <int id="r">-15</int> </object> <object id="tree_stack_branch_3_1337729294932"> <str id="name">tree_stack_branch_3_1337729294932</str> <int id="y">-1094</int> <int id="x">1397</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">1</int> <int id="w">223</int> <int id="h">82</int> <int id="r">-15</int> </object> <object id="tree_stack_branch_3_1337374503797"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-955</int> <int id="x">1015</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">120</int> <int id="w">159</int> <int id="h">59</int> </object> <object id="platform_branch_boards_06_g1_1337729294871"> <str id="name">platform_branch_boards_06_g1_1337707375008</str> <int id="y">-385</int> <int id="x">2383</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">256</int> <int id="w">332</int> <int id="h">114</int> <int id="r">-10</int> </object> <object id="tree_stack_branch_3_1337374503965"> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-1255</int> <int id="x">-970</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">150</int> <int id="w">201</int> <int id="h">74</int> </object> <object id="tree_stack_branch_3_1337385697234"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-924</int> <int id="x">-730</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">149</int> <int id="w">201</int> <int id="h">74</int> </object> <object id="platform_branch_boards_02_g1_1337707375030"> <str id="name">platform_branch_boards_02_g1_1337707375030</str> <int id="y">-417</int> <int id="x">1348</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">262</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="platform_branch_boards_04_g1_1337729294775"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-627</int> <int id="x">1915</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">332</int> <int id="w">176</int> <int id="h">66</int> <int id="r">-15</int> </object> <object id="platform_branch_boards_08_g1_1337374503552"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503550</str> <int id="y">-1169</int> <int id="x">-466</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">57</int> <int id="w">213</int> <int id="h">86</int> <int id="r">5</int> </object> <object id="platform_branch_boards_06_g1_1337707374980"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1270</int> <int id="x">1942</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">217</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_4_1337374503616"> <str id="name">platform_branch_4_1337374503612</str> <int id="y">-2000</int> <int id="x">-984</int> <str id="sprite_class">platform_branch_4</str> <int id="z">27</int> <int id="w">253</int> <int id="h">87</int> <int id="r">-5</int> </object> <object id="platform_branch_a05_1337374503882"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1991</int> <int id="x">-576</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">43</int> <int id="w">188</int> <int id="h">81</int> </object> <object id="platform_branch_boards_04_g1_1337374503909"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-1332</int> <int id="x">994</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">126</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_a05_1337729294908"> <str id="name">platform_branch_a05_1337729294900</str> <int id="y">-1073</int> <int id="x">2026</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">250</int> <int id="w">147</int> <int id="h">63</int> </object> <object id="platform_branch_boards_06_g1_1337374503858"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1535</int> <int id="x">-386</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">22</int> <int id="w">301</int> <int id="h">103</int> <int id="r">5</int> </object> <object id="tree_stack_branch_4_1337374503863"> <str id="name">tree_stack_branch_4_1337374503862</str> <int id="y">-1598</int> <int id="x">-668</int> <str id="sprite_class">tree_stack_branch_4</str> <int id="z">51</int> <int id="w">348</int> <int id="h">162</int> </object> <object id="tree_stack_knot_1337707375187"> <str id="name">tree_stack_knot_1337707375185</str> <int id="y">-1277</int> <int id="x">2137</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">296</int> <int id="w">29</int> <int id="h">175</int> </object> <object id="tree_bare_tall_1_1337707375188"> <str id="name">tree_bare_tall_1_1337707375188</str> <int id="y">-844</int> <int id="x">2101</int> <str id="sprite_class">tree_bare_tall_1</str> <int id="z">297</int> <int id="w">168</int> <int id="h">788</int> <int id="r">-105</int> </object> <object id="platform_branch_boards_06_g1_1337374503908"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503813</str> <int id="y">-1262</int> <int id="x">1089</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">86</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_08_g1_1337729294856"> <str id="name">platform_branch_boards_08_g1_1337707374913</str> <int id="y">-503</int> <int id="x">-2221</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">223</int> <int id="w">142</int> <int id="h">57</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_03_g1_1337707375309"> <str id="name">platform_branch_boards_03_g1_1337374503811</str> <int id="y">-699</int> <int id="x">1851</int> <str id="sprite_class">platform_branch_boards_03_g1</str> <int id="z">328</int> <int id="w">332</int> <int id="h">101</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_02_g1_1337374503925"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_02_g1_1337374503921</str> <int id="y">-1178</int> <int id="x">912</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">132</int> <int id="w">248</int> <int id="h">105</int> </object> <object id="platform_branch_boards_04_g1_1337707375293"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-210</int> <int id="x">813</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">315</int> <int id="w">150</int> <int id="h">56</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_01_g1_1337707375253"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_01_g1_1337707375096</str> <int id="y">56</int> <int id="x">81</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">320</int> <int id="w">521</int> <int id="h">161</int> </object> <object id="tree_stack_trunk_1337707375183"> <str id="name">tree_stack_trunk_1337707374840</str> <int id="y">-960</int> <int id="x">2140</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">8</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="tree_stack_trunk_1337707374861"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">86</int> <int id="x">131</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">179</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_10_g1_1339888421704"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_10_g1_1337374503794</str> <int id="y">-812</int> <int id="x">337</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">264</int> <int id="w">365</int> <int id="h">109</int> <int id="r">10</int> </object> <object id="tree_coniferous_fg_2_1337707374882"> <str id="name">tree_coniferous_fg_2_1337707374878</str> <int id="y">-76</int> <int id="x">-1389</int> <str id="sprite_class">tree_coniferous_fg_2</str> <int id="z">164</int> <int id="w">679</int> <int id="h">1464</int> </object> <object id="tree_stack_trunk_1337707375182"> <str id="name">tree_stack_trunk_1337707374840</str> <int id="y">-566</int> <int id="x">2140</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">7</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_10_g1_1337707374987"> <str id="name">platform_branch_boards_10_g1_1337707374984</str> <int id="y">-1194</int> <int id="x">1931</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">249</int> <int id="w">364</int> <int id="h">109</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_01_g1_1337707375114"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_01_g1_1337707375096</str> <int id="y">-375</int> <int id="x">103</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">285</int> <int id="w">521</int> <int id="h">161</int> </object> <object id="tree_stack_knot_1337729294894"> <str id="name">tree_stack_knot_1337707375185</str> <int id="y">-479</int> <int id="x">-2027</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">291</int> <int id="w">35</int> <int id="h">211</int> </object> <object id="platform_branch_boards_06_g1_1337729294789"> <str id="name">platform_branch_boards_06_g1_1337707375008</str> <int id="y">-81</int> <int id="x">2460</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">258</int> <int id="w">301</int> <int id="h">103</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_04_g1_1337374503812"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-731</int> <int id="x">1004</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">73</int> <int id="w">179</int> <int id="h">67</int> </object> <object id="tree_stack_knot_1337707375185"> <str id="name">tree_stack_knot_1337707375185</str> <int id="y">-250</int> <int id="x">2147</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">290</int> <int id="w">45</int> <int id="h">271</int> </object> <object id="platform_branch_4_1337374503620"> <str id="name">platform_branch_4_1337374503612</str> <int id="y">-2026</int> <int id="x">-1138</int> <str id="sprite_class">platform_branch_4</str> <int id="z">26</int> <int id="w">253</int> <int id="h">87</int> <int id="r">10</int> </object> <object id="platform_branch_a05_1337707374986"> <str id="name">platform_branch_a05_1337707374986</str> <int id="y">-1259</int> <int id="x">2013</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">248</int> <int id="w">162</int> <int id="h">70</int> </object> <object id="platform_branch_boards_04_g1_1337707375289"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-219</int> <int id="x">1044</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">81</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_05_g1_1337707375227"> <str id="name">platform_branch_boards_05_g1_1337374503554</str> <int id="y">-211</int> <int id="x">689</int> <str id="sprite_class">platform_branch_boards_05_g1</str> <int id="z">287</int> <int id="w">365</int> <int id="h">109</int> <int id="r">-25</int> </object> <object id="platform_branch_boards_08_g1_1337729294861"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337707374913</str> <int id="y">-473</int> <int id="x">-1738</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">6</int> <int id="w">142</int> <int id="h">57</int> <int id="r">10</int> </object> <object id="platform_branch_boards_04_g1_1337374503537"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503534</str> <int id="y">-1837</int> <int id="x">-9</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">33</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_08_g1_1337707375094"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-1338</int> <int id="x">-425</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">284</int> <int id="w">164</int> <int id="h">66</int> <int id="r">10</int> </object> <object id="platform_branch_boards_06_g1_1337707375254"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">28</int> <int id="x">-68</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">212</int> <int id="w">333</int> <int id="h">114</int> </object> <object id="platform_branch_boards_04_g1_1337374503918"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-1751</int> <int id="x">825</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">127</int> <int id="w">150</int> <int id="h">56</int> <int id="r">-15</int> </object> <object id="platform_branch_boards_08_g1_1337729294858"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337707374913</str> <int id="y">-635</int> <int id="x">-1811</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">225</int> <int id="w">142</int> <int id="h">57</int> <int id="r">20</int> </object> <object id="platform_branch_boards_09_g1_1337707374902"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-104</int> <int id="x">2339</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">191</int> <int id="w">220</int> <int id="h">69</int> <int id="r">-10</int> </object> <object id="tree_stack_branch_1_1337374503752"> <str id="name">tree_stack_branch_1_1337374503752</str> <int id="y">-533</int> <int id="x">-927</int> <str id="sprite_class">tree_stack_branch_1</str> <int id="z">234</int> <int id="w">130</int> <int id="h">89</int> </object> <object id="platform_branch_boards_06_g1_1337707374905"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-72</int> <int id="x">2293</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">209</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_10_g1_1337707374944"> <str id="name">platform_branch_boards_10_g1_1337374503888</str> <int id="y">-652</int> <int id="x">-566</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">236</int> <int id="w">365</int> <int id="h">109</int> <int id="r">-3</int> </object> <object id="moss_3_1337387219295"> <str id="name">moss_3_1337387219291</str> <int id="y">5</int> <int id="x">-350</int> <str id="sprite_class">moss_3</str> <int id="z">157</int> <int id="w">188</int> <int id="h">36</int> </object> <object id="platform_branch_boards_06_g1_1337374503813"> <str id="name">platform_branch_boards_06_g1_1337374503813</str> <int id="y">-1149</int> <int id="x">742</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">84</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_02_g1_1337707375034"> <str id="name">platform_branch_boards_02_g1_1337707375030</str> <int id="y">-756</int> <int id="x">455</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">263</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="platform_branch_boards_09_g1_1337707374900"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-159</int> <int id="x">1533</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">189</int> <int id="w">220</int> <int id="h">69</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_10_g1_1337374503563"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_10_g1_1337374503563</str> <int id="y">-1915</int> <int id="x">799</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">102</int> <int id="w">365</int> <int id="h">109</int> <int id="r">20</int> </object> <object id="platform_branch_a05_1337729294902"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337729294900</str> <int id="y">-333</int> <int id="x">1003</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">312</int> <int id="w">147</int> <int id="h">63</int> </object> <object id="platform_branch_boards_03_g1_1337374503548"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_03_g1_1337374503548</str> <int id="y">-1195</int> <int id="x">-657</int> <str id="sprite_class">platform_branch_boards_03_g1</str> <int id="z">152</int> <int id="w">332</int> <int id="h">101</int> </object> <object id="tree_stack_knot_1337707374887"> <str id="name">tree_stack_knot_1337707374884</str> <int id="y">33</int> <int id="x">-1463</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">168</int> <int id="w">52</int> <int id="h">314</int> </object> <object id="platform_branch_boards_06_g1_1337729294802"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-893</int> <int id="x">2509</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">343</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="tree_stack_trunk_1337707374852"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">23</int> <int id="x">-1397</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">167</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="tree_stack_leafy_2_1337707374883"> <str id="name">tree_stack_leafy_2_1337707374883</str> <int id="y">-557</int> <int id="x">-1398</int> <str id="sprite_class">tree_stack_leafy_2</str> <int id="z">205</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="tree_coniferous_fg_1_1337707375021"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">551</int> <int id="x">1539</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">259</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="platform_branch_boards_06_g1_1337374503747"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-967</int> <int id="x">-1020</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">111</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_07_g1_1337707375303"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_07_g1_1337707374925</str> <int id="y">-421</int> <int id="x">-759</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">324</int> <int id="w">168</int> <int id="h">67</int> <int id="r">10</int> </object> <object id="platform_branch_boards_02_g1_1337707375062"> <str id="name">platform_branch_boards_02_g1_1337707375062</str> <int id="y">-787</int> <int id="x">-1405</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">272</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="platform_branch_boards_08_g1_1337374503919"> <str id="name">platform_branch_boards_08_g1_1337374503919</str> <int id="y">-1737</int> <int id="x">753</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">128</int> <int id="w">142</int> <int id="h">57</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_06_g1_1337707374854"> <str id="name">platform_branch_boards_06_g1_1337707374853</str> <int id="y">-89</int> <int id="x">-1565</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">176</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_06_g1_1337707374853"> <str id="name">platform_branch_boards_06_g1_1337707374853</str> <int id="y">-95</int> <int id="x">-2200</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">174</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="tree_stack_branch_2_1337707374922"> <str id="name">tree_stack_branch_2_1337707374922</str> <int id="y">-215</int> <int id="x">-1912</int> <str id="sprite_class">tree_stack_branch_2</str> <int id="z">227</int> <int id="w">202</int> <int id="h">123</int> </object> <object id="platform_branch_boards_02_g1_1337707375107"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_02_g1_1337707375030</str> <int id="y">-267</int> <int id="x">1411</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">260</int> <int id="w">241</int> <int id="h">102</int> </object> <object id="platform_branch_boards_07_g1_1337729294830"> <str id="name">platform_branch_boards_07_g1_1337707374925</str> <int id="y">-409</int> <int id="x">-937</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">326</int> <int id="w">168</int> <int id="h">67</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_09_g1_1337707374915"> <str id="name">platform_branch_boards_09_g1_1337707374915</str> <int id="y">-298</int> <int id="x">-2216</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">13</int> <int id="w">220</int> <int id="h">69</int> <int id="r">-3</int> </object> <object id="platform_branch_boards_08_g1_1337707375300"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-261</int> <int id="x">-178</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">171</int> <int id="w">194</int> <int id="h">78</int> <int id="r">15</int> </object> <object id="tree_stack_trunk_1337374503583"> <str id="name">tree_stack_trunk_1337374503524</str> <int id="y">-601</int> <int id="x">912</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">34</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_06_g1_1337707375234"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707374853</str> <int id="y">-51</int> <int id="x">-1842</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">175</int> <int id="w">354</int> <int id="h">121</int> </object> <object id="platform_branch_boards_07_g1_1337707374925"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_07_g1_1337707374925</str> <int id="y">-205</int> <int id="x">-1945</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">228</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="tree_stack_trunk_1337707374851"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">117</int> <int id="x">-2030</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">163</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_08_g1_1337707375225"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337707375225</str> <int id="y">-139</int> <int id="x">1253</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">305</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="platform_branch_boards_08_g1_1337729294860"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337707374913</str> <int id="y">-488</int> <int id="x">-1790</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">5</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="platform_branch_boards_06_g1_1337729294854"> <str id="name">platform_branch_boards_06_g1_1337707374916</str> <int id="y">-513</int> <int id="x">-2182</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">203</int> <int id="w">301</int> <int id="h">103</int> <int id="r">-10</int> </object> <object id="trunk_ladder_1_1337374503959"> <str id="name">trunk_ladder_1_1337374503828</str> <int id="y">-1893</int> <int id="x">-848</int> <str id="sprite_class">trunk_ladder_1</str> <int id="z">145</int> <int id="w">75</int> <int id="h">86</int> </object> <object id="platform_branch_boards_11_g1_1337729294817"> <str id="name">platform_branch_boards_11_g1_1337729294817</str> <int id="y">-119</int> <int id="x">2136</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">340</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="heights_tree_bare_1_1337374503873"> <str id="name">heights_tree_bare_1_1337374503873</str> <int id="y">59</int> <int id="x">165</int> <str id="sprite_class">heights_tree_bare_1</str> <int id="z">20</int> <int id="w">295</int> <int id="h">839</int> </object> <object id="platform_branch_boards_06_g1_1337707375042"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-543</int> <int id="x">299</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">220</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="tree_bare_tall_1_1337707375189"> <str id="name">tree_bare_tall_1_1337707375188</str> <int id="y">-1324</int> <int id="x">2137</int> <str id="sprite_class">tree_bare_tall_1</str> <int id="z">298</int> <int id="w">215</int> <int id="h">1008</int> <int id="r">100</int> </object> <object id="platform_branch_boards_10_g1_1337707375298"> <str id="name">platform_branch_boards_10_g1_1337707375298</str> <int id="y">-58</int> <int id="x">985</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">322</int> <int id="w">365</int> <int id="h">109</int> </object> <object id="tree_stack_branch_3_1337374503970"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-1386</int> <int id="x">-722</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">151</int> <int id="w">201</int> <int id="h">74</int> </object> <object id="platform_branch_a05_1337374503881"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-2022</int> <int id="x">-740</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">42</int> <int id="w">188</int> <int id="h">81</int> </object> <object id="tree_stack_branch_1_1337707374966"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_1_1337374503752</str> <int id="y">-798</int> <int id="x">518</int> <str id="sprite_class">tree_stack_branch_1</str> <int id="z">89</int> <int id="w">130</int> <int id="h">89</int> </object> <object id="platform_branch_boards_02_g1_1337707375270"> <str id="name">platform_branch_boards_02_g1_1337707375062</str> <int id="y">10</int> <int id="x">-441</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">277</int> <int id="w">319</int> <int id="h">135</int> <int id="r">5</int> </object> <object id="platform_branch_boards_10_g1_1337729294906"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_10_g1_1337729294906</str> <int id="y">-1252</int> <int id="x">2335</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">299</int> <int id="w">365</int> <int id="h">109</int> </object> <object id="tree_stack_branch_3_1337707375220"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_3_1337707375219</str> <int id="y">-95</int> <int id="x">1025</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">304</int> <int id="w">198</int> <int id="h">73</int> </object> <object id="trunk_ladder_1_1337374503960"> <bool id="h_flip">true</bool> <str id="name">trunk_ladder_1_1337374503828</str> <int id="y">-1989</int> <int id="x">-837</int> <str id="sprite_class">trunk_ladder_1</str> <int id="z">144</int> <int id="w">82</int> <int id="h">94</int> </object> <object id="platform_branch_a05_1337374503560"> <bool id="h_flip">true</bool> <str id="name">platform_branch_a05_1337374503558</str> <int id="y">-1963</int> <int id="x">701</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">96</int> <int id="w">188</int> <int id="h">81</int> </object> <object id="platform_branch_boards_06_g1_1337729294836"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707375125</str> <int id="y">-994</int> <int id="x">-1889</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">270</int> <int id="w">301</int> <int id="h">103</int> <int id="r">10</int> </object> <object id="platform_branch_boards_06_g1_1337707374916"> <str id="name">platform_branch_boards_06_g1_1337707374916</str> <int id="y">-257</int> <int id="x">-2247</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">197</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_06_g1_1337707375304"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707374853</str> <int id="y">-413</int> <int id="x">-715</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">323</int> <int id="w">249</int> <int id="h">85</int> <int id="r">5</int> </object> <object id="platform_branch_boards_06_g1_1337707375126"> <str id="name">platform_branch_boards_06_g1_1337707375125</str> <int id="y">-709</int> <int id="x">-1611</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">269</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_12_g1_1337374503549"> <str id="name">platform_branch_boards_12_g1_1337374503549</str> <int id="y">-1035</int> <int id="x">-698</int> <str id="sprite_class">platform_branch_boards_12_g1</str> <int id="z">58</int> <int id="w">260</int> <int id="h">115</int> </object> <object id="platform_branch_boards_02_g1_1337707375080"> <str id="name">platform_branch_boards_02_g1_1337707375062</str> <int id="y">-1123</int> <int id="x">-2024</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">274</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="platform_branch_boards_01_g1_1337729294819"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_01_g1_1337707375073</str> <int id="y">-202</int> <int id="x">-897</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">281</int> <int id="w">596</int> <int id="h">184</int> </object> <object id="platform_branch_boards_08_g1_1337707374924"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337707374924</str> <int id="y">-195</int> <int id="x">-1856</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">231</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="platform_branch_boards_07_g1_1337729294832"> <str id="name">platform_branch_boards_07_g1_1337707374925</str> <int id="y">-381</int> <int id="x">-1026</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">325</int> <int id="w">168</int> <int id="h">67</int> <int id="r">-10</int> </object> <object id="platform_branch_a05_1337729294909"> <str id="name">platform_branch_a05_1337729294900</str> <int id="y">-48</int> <int id="x">-941</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">307</int> <int id="w">147</int> <int id="h">63</int> </object> <object id="platform_branch_boards_04_g1_1337707374968"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-960</int> <int id="x">594</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">82</int> <int id="w">207</int> <int id="h">77</int> <int id="r">-5</int> </object> <object id="platform_branch_boards_06_g1_1337707374952"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-858</int> <int id="x">-257</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">239</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_04_g1_1337729294877"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-574</int> <int id="x">2220</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">336</int> <int id="w">200</int> <int id="h">75</int> <int id="r">10</int> </object> <object id="platform_branch_boards_06_g1_1337374503748"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1379</int> <int id="x">-677</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">113</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="tree_stack_branch_3_1337729294899"> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-30</int> <int id="x">811</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">317</int> <int id="w">212</int> <int id="h">79</int> <int id="r">-20</int> </object> <object id="platform_branch_boards_04_g1_1337374503914"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-1226</int> <int id="x">993</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">130</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_06_g1_1337707374997"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1127</int> <int id="x">1507</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">218</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_06_g1_1337707374906"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-97</int> <int id="x">1953</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">213</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_10_g1_1337707374984"> <str id="name">platform_branch_boards_10_g1_1337707374984</str> <int id="y">-1137</int> <int id="x">1708</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">244</int> <int id="w">364</int> <int id="h">109</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_09_g1_1337707374890"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-21</int> <int id="x">400</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">186</int> <int id="w">220</int> <int id="h">69</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_11_g1_1337374503939"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_11_g1_1337374503939</str> <int id="y">-1732</int> <int id="x">769</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">136</int> <int id="w">150</int> <int id="h">56</int> <int id="r">-15</int> </object> <object id="platform_branch_boards_02_g1_1337707375085"> <str id="name">platform_branch_boards_02_g1_1337707375062</str> <int id="y">-1121</int> <int id="x">-1378</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">275</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="platform_branch_boards_06_g1_1337729294879"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707374916</str> <int id="y">-706</int> <int id="x">-2425</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">201</int> <int id="w">301</int> <int id="h">103</int> <int id="r">10</int> </object> <object id="platform_branch_boards_06_g1_1337374503743"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-1137</int> <int id="x">-44</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">215</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_10_g1_1337729294907"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_10_g1_1337729294906</str> <int id="y">-1212</int> <int id="x">2495</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">300</int> <int id="w">365</int> <int id="h">109</int> <int id="r">5</int> </object> <object id="tree_stack_branch_1_1337707374949"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_1_1337374503752</str> <int id="y">-732</int> <int id="x">-338</int> <str id="sprite_class">tree_stack_branch_1</str> <int id="z">156</int> <int id="w">130</int> <int id="h">89</int> </object> <object id="platform_branch_boards_11_g1_1337707374892"> <str id="name">platform_branch_boards_11_g1_1337707374892</str> <int id="y">-35</int> <int id="x">529</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">193</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_04_g1_1337729294878"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-540</int> <int id="x">2293</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">335</int> <int id="w">200</int> <int id="h">75</int> <int id="r">15</int> </object> <object id="tree_stack_trunk_1337707374864"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">-1309</int> <int id="x">128</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">182</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_a05_1337707374880"> <str id="name">platform_branch_a05_1337707374880</str> <int id="y">-297</int> <int id="x">-2139</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">196</int> <int id="w">187</int> <int id="h">81</int> </object> <object id="tree_stack_knot_1337707375186"> <str id="name">tree_stack_knot_1337707375185</str> <int id="y">-682</int> <int id="x">2150</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">295</int> <int id="w">45</int> <int id="h">271</int> </object> <object id="platform_branch_boards_04_g1_1337374503926"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-1200</int> <int id="x">1064</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">129</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_10_g1_1337707375224"> <str id="name">platform_branch_boards_10_g1_1337707375221</str> <int id="y">-100</int> <int id="x">1425</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">309</int> <int id="w">365</int> <int id="h">109</int> <int id="r">-3</int> </object> <object id="platform_branch_boards_11_g1_1337707375194"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_11_g1_1337374503816</str> <int id="y">-1150</int> <int id="x">1628</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">301</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="tree_stack_trunk_1337707374863"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">-1285</int> <int id="x">2110</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">181</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="tree_stack_trunk_1337707374860"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">-682</int> <int id="x">-429</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">173</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_06_g1_1337707374903"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">14</int> <int id="x">-263</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">207</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_01_g1_1337707375174"> <str id="name">platform_branch_boards_01_g1_1337707375174</str> <int id="y">-1266</int> <int id="x">158</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">289</int> <int id="w">471</int> <int id="h">145</int> </object> <object id="platform_branch_boards_11_g1_1337707374893"> <str id="name">platform_branch_boards_11_g1_1337707374892</str> <int id="y">-115</int> <int id="x">949</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">194</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_01_g1_1337707375200"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_01_g1_1337707375096</str> <int id="y">-270</int> <int id="x">875</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">313</int> <int id="w">521</int> <int id="h">161</int> </object> <object id="platform_branch_boards_11_g1_1337374503817"> <str id="name">platform_branch_boards_11_g1_1337374503816</str> <int id="y">-1073</int> <int id="x">1186</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">122</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_07_g1_1337374503944"> <str id="name">platform_branch_boards_07_g1_1337374503944</str> <int id="y">-1143</int> <int id="x">-936</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">140</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="tree_stack_trunk_1337707375250"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">232</int> <int id="x">-1540</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">165</int> <int id="w">88</int> <int id="h">700</int> <int id="r">10</int> </object> <object id="platform_branch_boards_07_g1_1337374503945"> <str id="name">platform_branch_boards_07_g1_1337374503944</str> <int id="y">-1499</int> <int id="x">-933</int> <str id="sprite_class">platform_branch_boards_07_g1</str> <int id="z">141</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="tree_stack_trunk_1337707374859"> <str id="name">tree_stack_trunk_1337707374851</str> <int id="y">15</int> <int id="x">-430</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">170</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_04_g1_1337707375294"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-191</int> <int id="x">755</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">314</int> <int id="w">150</int> <int id="h">56</int> <int id="r">-10</int> </object> <object id="platform_branch_boards_04_g1_1337374503535"> <str id="name">platform_branch_boards_04_g1_1337374503534</str> <int id="y">-1993</int> <int id="x">669</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">101</int> <int id="w">150</int> <int id="h">56</int> <int id="r">5</int> </object> <object id="platform_branch_boards_05_g1_1337374503810"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_05_g1_1337374503554</str> <int id="y">-558</int> <int id="x">1115</int> <str id="sprite_class">platform_branch_boards_05_g1</str> <int id="z">69</int> <int id="w">365</int> <int id="h">109</int> </object> <object id="platform_branch_boards_11_g1_1337374503816"> <str id="name">platform_branch_boards_11_g1_1337374503816</str> <int id="y">-1094</int> <int id="x">1078</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">121</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_11_g1_1337374503617"> <str id="name">platform_branch_boards_11_g1_1337374503617</str> <int id="y">-2064</int> <int id="x">-1077</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">105</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_06_g1_1337707375130"> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-116</int> <int id="x">-43</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">211</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_03_g1_1337707375310"> <str id="name">platform_branch_boards_03_g1_1337374503811</str> <int id="y">-719</int> <int id="x">1937</int> <str id="sprite_class">platform_branch_boards_03_g1</str> <int id="z">330</int> <int id="w">332</int> <int id="h">101</int> <int id="r">-5</int> </object> <object id="trunk_ladder_1_1337374503936"> <str id="name">trunk_ladder_1_1337374503828</str> <int id="y">-1589</int> <int id="x">910</int> <str id="sprite_class">trunk_ladder_1</str> <int id="z">134</int> <int id="w">75</int> <int id="h">86</int> </object> <object id="platform_branch_boards_10_g1_1337374503565"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_10_g1_1337374503563</str> <int id="y">-1901</int> <int id="x">764</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">104</int> <int id="w">365</int> <int id="h">109</int> <int id="r">20</int> </object> <object id="tree_stack_trunk_1337707374846"> <str id="name">tree_stack_trunk_1337707374840</str> <int id="y">-593</int> <int id="x">2111</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">160</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="platform_branch_boards_04_g1_1337707375044"> <str id="name">platform_branch_boards_04_g1_1337374503812</str> <int id="y">-518</int> <int id="x">425</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">80</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_06_g1_1337729294848"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707374916</str> <int id="y">-452</int> <int id="x">-1862</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">198</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_08_g1_1337707374983"> <str id="name">platform_branch_boards_08_g1_1337707374983</str> <int id="y">-1212</int> <int id="x">1632</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">245</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="platform_branch_boards_08_g1_1337374503966"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337374503941</str> <int id="y">-1371</int> <int id="x">-519</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">139</int> <int id="w">164</int> <int id="h">66</int> <int id="r">10</int> </object> <object id="trunk_ladder_1_1337374503961"> <str id="name">trunk_ladder_1_1337374503828</str> <int id="y">-1798</int> <int id="x">-851</int> <str id="sprite_class">trunk_ladder_1</str> <int id="z">146</int> <int id="w">75</int> <int id="h">86</int> </object> <object id="platform_branch_boards_02_g1_1337707375230"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_02_g1_1337707375030</str> <int id="y">-215</int> <int id="x">903</int> <str id="sprite_class">platform_branch_boards_02_g1</str> <int id="z">318</int> <int id="w">319</int> <int id="h">135</int> </object> <object id="platform_branch_boards_10_g1_1337707374850"> <str id="name">platform_branch_boards_10_g1_1337707374850</str> <int id="y">-95</int> <int id="x">-2266</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">162</int> <int id="w">365</int> <int id="h">109</int> </object> <object id="platform_branch_boards_06_g1_1337729294785"> <str id="name">platform_branch_boards_06_g1_1337707375008</str> <int id="y">-427</int> <int id="x">2427</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">255</int> <int id="w">301</int> <int id="h">103</int> <int id="r">-10</int> </object> <object id="platform_branch_a05_1337707375314"> <str id="name">platform_branch_a05_1337707375314</str> <int id="y">-776</int> <int id="x">2012</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">329</int> <int id="w">165</int> <int id="h">71</int> </object> <object id="platform_branch_boards_09_g1_1337374503556"> <str id="name">platform_branch_boards_09_g1_1337374503556</str> <int id="y">-1843</int> <int id="x">67</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">91</int> <int id="w">220</int> <int id="h">69</int> </object> <object id="platform_branch_boards_05_g1_1337374503851"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_05_g1_1337374503554</str> <int id="y">-1595</int> <int id="x">1112</int> <str id="sprite_class">platform_branch_boards_05_g1</str> <int id="z">68</int> <int id="w">365</int> <int id="h">109</int> </object> <object id="tree_stack_trunk_1337707375215"> <str id="name">tree_stack_trunk_1337707374840</str> <int id="y">310</int> <int id="x">908</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">303</int> <int id="w">88</int> <int id="h">700</int> </object> <object id="tree_stack_branch_3_1337374503963"> <bool id="h_flip">true</bool> <str id="name">tree_stack_branch_3_1337374503796</str> <int id="y">-1239</int> <int id="x">-728</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">119</int> <int id="w">201</int> <int id="h">74</int> </object> <object id="platform_branch_boards_09_g1_1337707375054"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707375052</str> <int id="y">-622</int> <int id="x">-1307</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">268</int> <int id="w">184</int> <int id="h">58</int> <int id="r">24</int> </object> <object id="platform_branch_a05_1337729294903"> <str id="name">platform_branch_a05_1337729294900</str> <int id="y">-818</int> <int id="x">-936</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">123</int> <int id="w">147</int> <int id="h">63</int> </object> <object id="platform_branch_boards_06_g1_1337374503746"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337374503553</str> <int id="y">-773</int> <int id="x">-679</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">109</int> <int id="w">301</int> <int id="h">103</int> </object> <object id="platform_branch_boards_01_g1_1337707374999"> <str id="name">platform_branch_boards_01_g1_1337707374998</str> <int id="y">-990</int> <int id="x">2123</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">251</int> <int id="w">596</int> <int id="h">184</int> </object> <object id="platform_branch_boards_01_g1_1337707375022"> <str id="name">platform_branch_boards_01_g1_1337707375022</str> <int id="y">-256</int> <int id="x">1559</int> <str id="sprite_class">platform_branch_boards_01_g1</str> <int id="z">261</int> <int id="w">495</int> <int id="h">153</int> </object> <object id="platform_branch_boards_08_g1_1337707374928"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_08_g1_1337707374924</str> <int id="y">-213</int> <int id="x">-1882</int> <str id="sprite_class">platform_branch_boards_08_g1</str> <int id="z">226</int> <int id="w">142</int> <int id="h">57</int> </object> <object id="platform_branch_boards_11_g1_1337374503557"> <str id="name">platform_branch_boards_11_g1_1337374503557</str> <int id="y">-1723</int> <int id="x">-794</int> <str id="sprite_class">platform_branch_boards_11_g1</str> <int id="z">99</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_boards_10_g1_1337707375221"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_10_g1_1337707375221</str> <int id="y">-81</int> <int id="x">1091</int> <str id="sprite_class">platform_branch_boards_10_g1</str> <int id="z">306</int> <int id="w">365</int> <int id="h">109</int> <int id="r">-3</int> </object> <object id="platform_branch_boards_06_g1_1337729294855"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707374916</str> <int id="y">-664</int> <int id="x">-1895</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">204</int> <int id="w">270</int> <int id="h">92</int> <int id="r">15</int> </object> <object id="platform_branch_boards_06_g1_1337707375008"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_06_g1_1337707375008</str> <int id="y">-568</int> <int id="x">2264</int> <str id="sprite_class">platform_branch_boards_06_g1</str> <int id="z">254</int> <int id="w">301</int> <int id="h">103</int> <int id="r">11</int> </object> <object id="platform_branch_boards_09_g1_1337707374891"> <bool id="h_flip">true</bool> <str id="name">platform_branch_boards_09_g1_1337707374867</str> <int id="y">-43</int> <int id="x">608</int> <str id="sprite_class">platform_branch_boards_09_g1</str> <int id="z">192</int> <int id="w">220</int> <int id="h">69</int> </object> <object id="platform_branch_boards_04_g1_1337374503534"> <str id="name">platform_branch_boards_04_g1_1337374503534</str> <int id="y">-2004</int> <int id="x">581</int> <str id="sprite_class">platform_branch_boards_04_g1</str> <int id="z">100</int> <int id="w">150</int> <int id="h">56</int> </object> <object id="platform_branch_a03_1337374503815"> <str id="name">platform_branch_a03_1337374503815</str> <int id="y">-1076</int> <int id="x">1169</int> <str id="sprite_class">platform_branch_a03</str> <int id="z">87</int> <int id="w">150</int> <int id="h">54</int> </object> </object> <int id="w">5000</int> <object id="ladders"> </object> <int id="z">0</int> <object id="walls"> </object> <object id="targets"> </object> <object id="signposts"> <object id="signpost_2"> <int id="w">100</int> <object id="connects"> <object id="0"> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1337366741.swf,http://c2.glitch.bz/locations/arbito1/1337206108.swf</str> <int id="y">-506</int> <str id="hub_id">126</str> <str id="mote_id">9</str> <int id="x">1894</int> <objref id="target" tsid="LDO42D61VR03PM6" label="Soleu Lucii"/> </object> <object id="1"> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1337366741.swf,http://c2.glitch.bz/locations/arbito1/1337206108.swf</str> <int id="y">-212</int> <str id="hub_id">126</str> <str id="mote_id">9</str> <int id="x">-2250</int> <objref id="target" tsid="LDOF4NU42S03R63" label="Fenykus Nivalis"/> </object> </object> <int id="y">-350</int> <str id="id">signpost_2</str> <int id="h">200</int> <int id="x">2043</int> </object> <object id="signpost_1"> <int id="w">100</int> <object id="connects"> <object id="0"> <objref id="target" tsid="LDO34N1OUR03H4O" label="Sanguine Sigg"/> <str id="mote_id">9</str> <str id="hub_id">126</str> <str id="x">142</str> <str id="y">-1965</str> </object> </object> <int id="y">-340</int> <int id="h">200</int> <int id="x">-2220</int> </object> </object> <int id="h">1500</int> <object id="platform_lines"> <object id="plat_1337729294807"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-348</int> <int id="x">2148</int> </object> <object id="start"> <int id="y">-353</int> <int id="x">2104</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375032"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-530</int> <int id="x">1366</int> </object> <object id="start"> <int id="y">-526</int> <int id="x">1316</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294770"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-836</int> <int id="x">2080</int> </object> <object id="start"> <int id="y">-824</int> <int id="x">2033</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375261"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-90</int> <int id="x">172</int> </object> <object id="start"> <int id="y">-84</int> <int id="x">140</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294847"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1030</int> <int id="x">-1760</int> </object> <object id="start"> <int id="y">-1042</int> <int id="x">-1777</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294804"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-339</int> <int id="x">2035</int> </object> <object id="start"> <int id="y">-327</int> <int id="x">1998</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374909"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-214</int> <int id="x">300</int> </object> <object id="start"> <int id="y">-225</int> <int id="x">244</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375123"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-748</int> <int id="x">-256</int> </object> <object id="start"> <int id="y">-761</int> <int id="x">-266</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294778"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-704</int> <int id="x">1972</int> </object> <object id="start"> <int id="y">-693</int> <int id="x">1954</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375150"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-138</int> <int id="x">-854</int> </object> <object id="start"> <int id="y">-131</int> <int id="x">-950</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375120"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-505</int> <int id="x">245</int> </object> <object id="start"> <int id="y">-521</int> <int id="x">167</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375236"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-179</int> <int id="x">-2176</int> </object> <object id="start"> <int id="y">-187</int> <int id="x">-2246</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503768"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-842</int> <int id="x">-677</int> </object> <object id="start"> <int id="y">-857</int> <int id="x">-753</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294883"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-728</int> <int id="x">-2281</int> </object> <object id="start"> <int id="y">-750</int> <int id="x">-2310</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375090"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1168</int> <int id="x">-1256</int> </object> <object id="start"> <int id="y">-1189</int> <int id="x">-1294</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375135"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-209</int> <int id="x">88</int> </object> <object id="start"> <int id="y">-198</int> <int id="x">36</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503807"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-821</int> <int id="x">-48</int> </object> <object id="start"> <int id="y">-829</int> <int id="x">-173</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503581"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-97</int> <int id="x">588</int> </object> <object id="start"> <int id="y">-85</int> <int id="x">504</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374755"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-141</int> <int id="x">-1700</int> </object> <object id="start"> <int id="y">-138</int> <int id="x">-1734</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375257"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-74</int> <int id="x">57</int> </object> <object id="start"> <int id="y">-41</int> <int id="x">-51</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374938"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-521</int> <int id="x">-1326</int> </object> <object id="start"> <int id="y">-528</int> <int id="x">-1376</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375137"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-75</int> <int id="x">-287</int> </object> <object id="start"> <int id="y">-64</int> <int id="x">-327</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337797298641"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-369</int> <int id="x">-2083</int> </object> <object id="start"> <int id="y">-352</int> <int id="x">-2130</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294820"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-312</int> <int id="x">-1006</int> </object> <object id="start"> <int id="y">-261</int> <int id="x">-1125</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503950"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1176</int> <int id="x">-905</int> </object> <object id="start"> <int id="y">-1145</int> <int id="x">-1014</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503957"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1091</int> <int id="x">-606</int> </object> <object id="start"> <int id="y">-1109</int> <int id="x">-736</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294875"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-456</int> <int id="x">2390</int> </object> <object id="start"> <int id="y">-451</int> <int id="x">2344</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503822"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1113</int> <int id="x">1223</int> </object> <object id="start"> <int id="y">-1118</int> <int id="x">1140</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375068"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-902</int> <int id="x">-1388</int> </object> <object id="start"> <int id="y">-903</int> <int id="x">-1388</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294795"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1219</int> <int id="x">2253</int> </object> <object id="start"> <int id="y">-1215</int> <int id="x">2227</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375191"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1332</int> <int id="x">2420</int> </object> <object id="start"> <int id="y">-1351</int> <int id="x">2329</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375271"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-101</int> <int id="x">-446</int> </object> <object id="start"> <int id="y">-78</int> <int id="x">-517</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375165"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-187</int> <int id="x">1264</int> </object> <object id="start"> <int id="y">-187</int> <int id="x">1201</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375241"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-131</int> <int id="x">-1815</int> </object> <object id="start"> <int id="y">-133</int> <int id="x">-1864</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421702"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-168</int> <int id="x">1862</int> </object> <object id="start"> <int id="y">-188</int> <int id="x">1760</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503578"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-56</int> <int id="x">-157</int> </object> <object id="start"> <int id="y">-70</int> <int id="x">-229</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294799"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-977</int> <int id="x">2382</int> </object> <object id="start"> <int id="y">-968</int> <int id="x">2322</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375098"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-451</int> <int id="x">-459</int> </object> <object id="start"> <int id="y">-429</int> <int id="x">-533</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294887"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-439</int> <int id="x">-2424</int> </object> <object id="start"> <int id="y">-470</int> <int id="x">-2498</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375295"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-243</int> <int id="x">759</int> </object> <object id="start"> <int id="y">-228</int> <int id="x">708</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375127"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-784</int> <int id="x">-1695</int> </object> <object id="start"> <int id="y">-776</int> <int id="x">-1733</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294828"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-344</int> <int id="x">-730</int> </object> <object id="start"> <int id="y">-346</int> <int id="x">-744</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375273"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-64</int> <int id="x">-327</int> </object> <object id="start"> <int id="y">-101</int> <int id="x">-417</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294808"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-353</int> <int id="x">2176</int> </object> <object id="start"> <int id="y">-348</int> <int id="x">2148</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375205"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-420</int> <int id="x">907</int> </object> <object id="start"> <int id="y">-419</int> <int id="x">869</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375058"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-702</int> <int id="x">-1426</int> </object> <object id="start"> <int id="y">-696</int> <int id="x">-1462</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421706"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-912</int> <int id="x">361</int> </object> <object id="start"> <int id="y">-920</int> <int id="x">287</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421696"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-200</int> <int id="x">1502</int> </object> <object id="start"> <int id="y">-196</int> <int id="x">1412</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294811"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-187</int> <int id="x">2051</int> </object> <object id="start"> <int id="y">-162</int> <int id="x">1976</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503891"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-901</int> <int id="x">-880</int> </object> <object id="start"> <int id="y">-895</int> <int id="x">-966</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294838"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1079</int> <int id="x">-1946</int> </object> <object id="start"> <int id="y">-1087</int> <int id="x">-1956</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503898"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-782</int> <int id="x">1046</int> </object> <object id="start"> <int id="y">-795</int> <int id="x">943</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375026"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-352</int> <int id="x">1646</int> </object> <object id="start"> <int id="y">-392</int> <int id="x">1577</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337797298642"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-352</int> <int id="x">-2130</int> </object> <object id="start"> <int id="y">-337</int> <int id="x">-2140</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421700"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-194</int> <int id="x">1670</int> </object> <object id="start"> <int id="y">-201</int> <int id="x">1603</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375011"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-812</int> <int id="x">1811</int> </object> <object id="start"> <int id="y">-790</int> <int id="x">1780</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375141"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-85</int> <int id="x">-568</int> </object> <object id="start"> <int id="y">-88</int> <int id="x">-628</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375306"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-468</int> <int id="x">-719</int> </object> <object id="start"> <int id="y">-490</int> <int id="x">-797</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294773"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-766</int> <int id="x">2222</int> </object> <object id="start"> <int id="y">-824</int> <int id="x">2131</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294841"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1042</int> <int id="x">-1777</int> </object> <object id="start"> <int id="y">-1047</int> <int id="x">-1825</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374947"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-747</int> <int id="x">-568</int> </object> <object id="start"> <int id="y">-745</int> <int id="x">-606</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375212"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-316</int> <int id="x">679</int> </object> <object id="start"> <int id="y">-282</int> <int id="x">607</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375169"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1086</int> <int id="x">91</int> </object> <object id="start"> <int id="y">-1033</int> <int id="x">10</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375099"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-445</int> <int id="x">-448</int> </object> <object id="start"> <int id="y">-451</int> <int id="x">-459</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375239"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-158</int> <int id="x">-1966</int> </object> <object id="start"> <int id="y">-183</int> <int id="x">-2064</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375105"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-356</int> <int id="x">-195</int> </object> <object id="start"> <int id="y">-358</int> <int id="x">-197</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375089"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1189</int> <int id="x">-1294</int> </object> <object id="start"> <int id="y">-1209</int> <int id="x">-1309</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375020"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-583</int> <int id="x">2359</int> </object> <object id="start"> <int id="y">-600</int> <int id="x">2304</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421693"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-171</int> <int id="x">1894</int> </object> <object id="start"> <int id="y">-168</int> <int id="x">1862</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375301"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-323</int> <int id="x">-162</int> </object> <object id="start"> <int id="y">-346</int> <int id="x">-188</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375138"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-70</int> <int id="x">-229</int> </object> <object id="start"> <int id="y">-75</int> <int id="x">-287</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294866"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-626</int> <int id="x">-2058</int> </object> <object id="start"> <int id="y">-608</int> <int id="x">-2115</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375181"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1312</int> <int id="x">337</int> </object> <object id="start"> <int id="y">-1343</int> <int id="x">246</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294790"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-144</int> <int id="x">2385</int> </object> <object id="start"> <int id="y">-149</int> <int id="x">2353</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375109"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-337</int> <int id="x">1357</int> </object> <object id="start"> <int id="y">-307</int> <int id="x">1319</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375203"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-389</int> <int id="x">809</int> </object> <object id="start"> <int id="y">-371</int> <int id="x">791</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374939"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-497</int> <int id="x">-1255</int> </object> <object id="start"> <int id="y">-521</int> <int id="x">-1326</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374951"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-761</int> <int id="x">-266</int> </object> <object id="start"> <int id="y">-792</int> <int id="x">-370</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375057"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-696</int> <int id="x">-1462</int> </object> <object id="start"> <int id="y">-647</int> <int id="x">-1596</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339646971722"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1234</int> <int id="x">1695</int> </object> <object id="start"> <int id="y">-1206</int> <int id="x">1639</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375313"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-739</int> <int id="x">1591</int> </object> <object id="start"> <int id="y">-718</int> <int id="x">1515</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374974"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1048</int> <int id="x">632</int> </object> <object id="start"> <int id="y">-1023</int> <int id="x">609</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374921"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-369</int> <int id="x">-2063</int> </object> <object id="start"> <int id="y">-369</int> <int id="x">-2083</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375116"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-482</int> <int id="x">19</int> </object> <object id="start"> <int id="y">-462</int> <int id="x">4</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294806"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-353</int> <int id="x">2104</int> </object> <object id="start"> <int id="y">-343</int> <int id="x">2069</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374919"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-323</int> <int id="x">-2217</int> </object> <object id="start"> <int id="y">-328</int> <int id="x">-2287</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375019"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-600</int> <int id="x">2304</int> </object> <object id="start"> <int id="y">-624</int> <int id="x">2275</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375047"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-604</int> <int id="x">290</int> </object> <object id="start"> <int id="y">-604</int> <int id="x">275</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375144"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-174</int> <int id="x">-1458</int> </object> <object id="start"> <int id="y">-173</int> <int id="x">-1506</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294834"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-444</int> <int id="x">-1004</int> </object> <object id="start"> <int id="y">-411</int> <int id="x">-1070</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375005"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1079</int> <int id="x">2253</int> </object> <object id="start"> <int id="y">-1132</int> <int id="x">2175</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294821"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-326</int> <int id="x">-996</int> </object> <object id="start"> <int id="y">-312</int> <int id="x">-1006</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503942"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1223</int> <int id="x">-398</int> </object> <object id="start"> <int id="y">-1231</int> <int id="x">-414</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375235"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-183</int> <int id="x">-2286</int> </object> <object id="start"> <int id="y">-174</int> <int id="x">-2381</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374975"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1052</int> <int id="x">662</int> </object> <object id="start"> <int id="y">-1048</int> <int id="x">632</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503897"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-908</int> <int id="x">872</int> </object> <object id="start"> <int id="y">-902</int> <int id="x">784</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421691"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-134</int> <int id="x">870</int> </object> <object id="start"> <int id="y">-134</int> <int id="x">847</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375240"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-133</int> <int id="x">-1864</int> </object> <object id="start"> <int id="y">-158</int> <int id="x">-1966</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375305"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-490</int> <int id="x">-797</int> </object> <object id="start"> <int id="y">-501</int> <int id="x">-822</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421705"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-920</int> <int id="x">287</int> </object> <object id="start"> <int id="y">-932</int> <int id="x">268</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375119"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-521</int> <int id="x">167</int> </object> <object id="start"> <int id="y">-516</int> <int id="x">144</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375284"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-331</int> <int id="x">876</int> </object> <object id="start"> <int id="y">-300</int> <int id="x">822</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375204"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-419</int> <int id="x">869</int> </object> <object id="start"> <int id="y">-389</int> <int id="x">809</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339646971716"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1309</int> <int id="x">2498</int> </object> <object id="start"> <int id="y">-1309</int> <int id="x">2439</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375104"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-358</int> <int id="x">-197</int> </object> <object id="start"> <int id="y">-392</int> <int id="x">-303</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374964"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1222</int> <int id="x">38</int> </object> <object id="start"> <int id="y">-1212</int> <int id="x">-48</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294862"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-506</int> <int id="x">-1699</int> </object> <object id="start"> <int id="y">-521</int> <int id="x">-1745</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503784"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1323</int> <int id="x">-922</int> </object> <object id="start"> <int id="y">-1297</int> <int id="x">-1013</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294831"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-474</int> <int id="x">-887</int> </object> <object id="start"> <int id="y">-456</int> <int id="x">-994</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375084"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-795</int> <int id="x">-1578</int> </object> <object id="start"> <int id="y">-787</int> <int id="x">-1633</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375066"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-901</int> <int id="x">-1418</int> </object> <object id="start"> <int id="y">-890</int> <int id="x">-1457</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421710"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-836</int> <int id="x">531</int> </object> <object id="start"> <int id="y">-862</int> <int id="x">488</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374946"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-745</int> <int id="x">-606</int> </object> <object id="start"> <int id="y">-720</int> <int id="x">-708</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503769"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-850</int> <int id="x">-581</int> </object> <object id="start"> <int id="y">-842</int> <int id="x">-677</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375154"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-55</int> <int id="x">308</int> </object> <object id="start"> <int id="y">-45</int> <int id="x">288</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421688"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-124</int> <int id="x">-2464</int> </object> <object id="start"> <int id="y">-123</int> <int id="x">-2496</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375006"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1045</int> <int id="x">2343</int> </object> <object id="start"> <int id="y">-1079</int> <int id="x">2253</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503913"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1333</int> <int id="x">1203</int> </object> <object id="start"> <int id="y">-1330</int> <int id="x">1073</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503764"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-596</int> <int id="x">-685</int> </object> <object id="start"> <int id="y">-624</int> <int id="x">-765</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375259"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-86</int> <int id="x">108</int> </object> <object id="start"> <int id="y">-74</int> <int id="x">78</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294890"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-439</int> <int id="x">-2285</int> </object> <object id="start"> <int id="y">-448</int> <int id="x">-2295</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374756"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-150</int> <int id="x">-2391</int> </object> <object id="start"> <int id="y">-124</int> <int id="x">-2464</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503967"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1430</int> <int id="x">-544</int> </object> <object id="start"> <int id="y">-1442</int> <int id="x">-564</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375290"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-266</int> <int id="x">1043</int> </object> <object id="start"> <int id="y">-276</int> <int id="x">1018</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375070"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-867</int> <int id="x">-1320</int> </object> <object id="start"> <int id="y">-890</int> <int id="x">-1356</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294885"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-712</int> <int id="x">-2173</int> </object> <object id="start"> <int id="y">-721</int> <int id="x">-2202</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375272"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-101</int> <int id="x">-417</int> </object> <object id="start"> <int id="y">-101</int> <int id="x">-446</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374965"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1232</int> <int id="x">95</int> </object> <object id="start"> <int id="y">-1222</int> <int id="x">38</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374828"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-149</int> <int id="x">2353</int> </object> <object id="start"> <int id="y">-143</int> <int id="x">2275</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294782"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-911</int> <int id="x">2302</int> </object> <object id="start"> <int id="y">-940</int> <int id="x">2171</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375167"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-189</int> <int id="x">1392</int> </object> <object id="start"> <int id="y">-179</int> <int id="x">1327</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374934"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-375</int> <int id="x">-1577</int> </object> <object id="start"> <int id="y">-380</int> <int id="x">-1614</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421690"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-157</int> <int id="x">966</int> </object> <object id="start"> <int id="y">-134</int> <int id="x">870</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374979"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1075</int> <int id="x">871</int> </object> <object id="start"> <int id="y">-1067</int> <int id="x">821</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503575"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-142</int> <int id="x">-1055</int> </object> <object id="start"> <int id="y">-153</int> <int id="x">-1084</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374963"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1212</int> <int id="x">-48</int> </object> <object id="start"> <int id="y">-1213</int> <int id="x">-125</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294840"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1047</int> <int id="x">-1825</int> </object> <object id="start"> <int id="y">-1053</int> <int id="x">-1891</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294868"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-719</int> <int id="x">-1886</int> </object> <object id="start"> <int id="y">-749</int> <int id="x">-1945</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294784"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-871</int> <int id="x">2375</int> </object> <object id="start"> <int id="y">-891</int> <int id="x">2321</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375074"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-983</int> <int id="x">-2178</int> </object> <object id="start"> <int id="y">-947</int> <int id="x">-2251</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294792"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-159</int> <int id="x">2499</int> </object> <object id="start"> <int id="y">-147</int> <int id="x">2448</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374962"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1213</int> <int id="x">-125</int> </object> <object id="start"> <int id="y">-1203</int> <int id="x">-173</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375207"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-396</int> <int id="x">1016</int> </object> <object id="start"> <int id="y">-420</int> <int id="x">938</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294827"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-346</int> <int id="x">-744</int> </object> <object id="start"> <int id="y">-369</int> <int id="x">-812</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375002"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1137</int> <int id="x">1966</int> </object> <object id="start"> <int id="y">-1093</int> <int id="x">1890</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375140"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-88</int> <int id="x">-628</int> </object> <object id="start"> <int id="y">-94</int> <int id="x">-700</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503772"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1066</int> <int id="x">-578</int> </object> <object id="start"> <int id="y">-1091</int> <int id="x">-606</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503780"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1281</int> <int id="x">-613</int> </object> <object id="start"> <int id="y">-1280</int> <int id="x">-708</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421680"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1149</int> <int id="x">2080</int> </object> <object id="start"> <int id="y">-1157</int> <int id="x">2032</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374933"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-380</int> <int id="x">-1614</int> </object> <object id="start"> <int id="y">-386</int> <int id="x">-1691</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294767"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-772</int> <int id="x">1061</int> </object> <object id="start"> <int id="y">-782</int> <int id="x">1046</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421703"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-327</int> <int id="x">1998</int> </object> <object id="start"> <int id="y">-288</int> <int id="x">1928</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375018"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-624</int> <int id="x">2275</int> </object> <object id="start"> <int id="y">-645</int> <int id="x">2247</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503928"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1270</int> <int id="x">938</int> </object> <object id="start"> <int id="y">-1267</int> <int id="x">897</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375037"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1006</int> <int id="x">1185</int> </object> <object id="start"> <int id="y">-999</int> <int id="x">1070</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294915"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1022</int> <int id="x">-1139</int> </object> <object id="start"> <int id="y">-990</int> <int id="x">-1202</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294936"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1173</int> <int id="x">-2140</int> </object> <object id="start"> <int id="y">-1158</int> <int id="x">-2152</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375209"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-368</int> <int id="x">1085</int> </object> <object id="start"> <int id="y">-396</int> <int id="x">1016</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503766"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-601</int> <int id="x">-551</int> </object> <object id="start"> <int id="y">-604</int> <int id="x">-594</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375143"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-173</int> <int id="x">-1506</int> </object> <object id="start"> <int id="y">-150</int> <int id="x">-1596</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421701"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-192</int> <int id="x">1686</int> </object> <object id="start"> <int id="y">-194</int> <int id="x">1670</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503808"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-843</int> <int id="x">58</int> </object> <object id="start"> <int id="y">-821</int> <int id="x">-48</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294864"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-569</int> <int id="x">-2197</int> </object> <object id="start"> <int id="y">-569</int> <int id="x">-2279</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339646971721"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1248</int> <int id="x">1806</int> </object> <object id="start"> <int id="y">-1234</int> <int id="x">1695</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374940"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-508</int> <int id="x">-1168</int> </object> <object id="start"> <int id="y">-497</int> <int id="x">-1255</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503943"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1169</int> <int id="x">-317</int> </object> <object id="start"> <int id="y">-1223</int> <int id="x">-398</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421698"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-188</int> <int id="x">1574</int> </object> <object id="start"> <int id="y">-189</int> <int id="x">1527</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503757"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-605</int> <int id="x">-1041</int> </object> <object id="start"> <int id="y">-610</int> <int id="x">-1130</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375146"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-188</int> <int id="x">-1356</int> </object> <object id="start"> <int id="y">-194</int> <int id="x">-1391</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374935"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-401</int> <int id="x">-1498</int> </object> <object id="start"> <int id="y">-375</int> <int id="x">-1577</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375117"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-513</int> <int id="x">84</int> </object> <object id="start"> <int id="y">-482</int> <int id="x">19</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375139"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-94</int> <int id="x">-700</int> </object> <object id="start"> <int id="y">-139</int> <int id="x">-779</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503818"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1212</int> <int id="x">748</int> </object> <object id="start"> <int id="y">-1219</int> <int id="x">630</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375149"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-134</int> <int id="x">-998</int> </object> <object id="start"> <int id="y">-142</int> <int id="x">-1055</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294867"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-749</int> <int id="x">-1945</int> </object> <object id="start"> <int id="y">-780</int> <int id="x">-1994</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374991"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1192</int> <int id="x">1530</int> </object> <object id="start"> <int id="y">-1198</int> <int id="x">1444</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294863"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-569</int> <int id="x">-2279</int> </object> <object id="start"> <int id="y">-558</int> <int id="x">-2317</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421692"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-134</int> <int id="x">847</int> </object> <object id="start"> <int id="y">-100</int> <int id="x">736</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294882"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-750</int> <int id="x">-2310</int> </object> <object id="start"> <int id="y">-769</int> <int id="x">-2420</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374953"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-927</int> <int id="x">-284</int> </object> <object id="start"> <int id="y">-955</int> <int id="x">-396</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375166"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-179</int> <int id="x">1327</int> </object> <object id="start"> <int id="y">-187</int> <int id="x">1264</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375244"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-187</int> <int id="x">-2246</int> </object> <object id="start"> <int id="y">-183</int> <int id="x">-2286</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503761"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-667</int> <int id="x">-836</int> </object> <object id="start"> <int id="y">-660</int> <int id="x">-874</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374973"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1023</int> <int id="x">609</int> </object> <object id="start"> <int id="y">-1015</int> <int id="x">529</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375013"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-829</int> <int id="x">1989</int> </object> <object id="start"> <int id="y">-829</int> <int id="x">1881</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294793"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1216</int> <int id="x">2206</int> </object> <object id="start"> <int id="y">-1253</int> <int id="x">2160</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503576"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-139</int> <int id="x">-779</int> </object> <object id="start"> <int id="y">-138</int> <int id="x">-854</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375156"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-79</int> <int id="x">450</int> </object> <object id="start"> <int id="y">-78</int> <int id="x">397</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375175"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1385</int> <int id="x">40</int> </object> <object id="start"> <int id="y">-1353</int> <int id="x">-39</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375088"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1209</int> <int id="x">-1309</int> </object> <object id="start"> <int id="y">-1236</int> <int id="x">-1350</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503781"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1240</int> <int id="x">-511</int> </object> <object id="start"> <int id="y">-1264</int> <int id="x">-540</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375077"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-954</int> <int id="x">-1916</int> </object> <object id="start"> <int id="y">-995</int> <int id="x">-1992</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375003"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1157</int> <int id="x">2032</int> </object> <object id="start"> <int id="y">-1137</int> <int id="x">1966</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294826"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-369</int> <int id="x">-812</int> </object> <object id="start"> <int id="y">-364</int> <int id="x">-828</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337385697235"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-956</int> <int id="x">-670</int> </object> <object id="start"> <int id="y">-994</int> <int id="x">-816</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375055"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-634</int> <int id="x">-1604</int> </object> <object id="start"> <int id="y">-619</int> <int id="x">-1632</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375258"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-74</int> <int id="x">78</int> </object> <object id="start"> <int id="y">-74</int> <int id="x">57</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503774"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1036</int> <int id="x">-1002</int> </object> <object id="start"> <int id="y">-1048</int> <int id="x">-1065</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294849"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-535</int> <int id="x">-1948</int> </object> <object id="start"> <int id="y">-547</int> <int id="x">-2000</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294845"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1136</int> <int id="x">-1522</int> </object> <object id="start"> <int id="y">-1119</int> <int id="x">-1589</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503783"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1297</int> <int id="x">-1013</int> </object> <object id="start"> <int id="y">-1306</int> <int id="x">-1131</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503776"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1443</int> <int id="x">-698</int> </object> <object id="start"> <int id="y">-1475</int> <int id="x">-819</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421708"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-868</int> <int id="x">458</int> </object> <object id="start"> <int id="y">-905</int> <int id="x">373</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375157"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-106</int> <int id="x">684</int> </object> <object id="start"> <int id="y">-112</int> <int id="x">613</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294810"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-273</int> <int id="x">2371</int> </object> <object id="start"> <int id="y">-300</int> <int id="x">2275</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375093"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1233</int> <int id="x">-458</int> </object> <object id="start"> <int id="y">-1207</int> <int id="x">-489</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375115"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-462</int> <int id="x">4</int> </object> <object id="start"> <int id="y">-426</int> <int id="x">-97</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294768"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-748</int> <int id="x">1140</int> </object> <object id="start"> <int id="y">-772</int> <int id="x">1061</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374825"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-196</int> <int id="x">1412</int> </object> <object id="start"> <int id="y">-189</int> <int id="x">1392</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503895"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-897</int> <int id="x">766</int> </object> <object id="start"> <int id="y">-873</int> <int id="x">688</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503763"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-624</int> <int id="x">-765</int> </object> <object id="start"> <int id="y">-667</int> <int id="x">-836</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503968"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1406</int> <int id="x">-465</int> </object> <object id="start"> <int id="y">-1430</int> <int id="x">-544</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374995"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1302</int> <int id="x">2012</int> </object> <object id="start"> <int id="y">-1293</int> <int id="x">1919</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339646971715"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1351</int> <int id="x">2329</int> </object> <object id="start"> <int id="y">-1333</int> <int id="x">2243</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503767"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-857</int> <int id="x">-753</int> </object> <object id="start"> <int id="y">-874</int> <int id="x">-815</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374912"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-847</int> <int id="x">97</int> </object> <object id="start"> <int id="y">-843</int> <int id="x">58</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375072"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-821</int> <int id="x">-1274</int> </object> <object id="start"> <int id="y">-849</int> <int id="x">-1310</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375142"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-150</int> <int id="x">-1596</int> </object> <object id="start"> <int id="y">-158</int> <int id="x">-1688</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375027"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-304</int> <int id="x">1731</int> </object> <object id="start"> <int id="y">-342</int> <int id="x">1655</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503574"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-153</int> <int id="x">-1217</int> </object> <object id="start"> <int id="y">-188</int> <int id="x">-1356</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294935"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1189</int> <int id="x">-1938</int> </object> <object id="start"> <int id="y">-1205</int> <int id="x">-1947</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339646971717"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1309</int> <int id="x">2439</int> </object> <object id="start"> <int id="y">-1332</int> <int id="x">2420</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503759"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-645</int> <int id="x">-910</int> </object> <object id="start"> <int id="y">-602</int> <int id="x">-977</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294888"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-446</int> <int id="x">-2363</int> </object> <object id="start"> <int id="y">-439</int> <int id="x">-2424</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375286"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-314</int> <int id="x">947</int> </object> <object id="start"> <int id="y">-332</int> <int id="x">916</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375238"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-183</int> <int id="x">-2064</int> </object> <object id="start"> <int id="y">-186</int> <int id="x">-2099</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294771"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-833</int> <int id="x">2093</int> </object> <object id="start"> <int id="y">-836</int> <int id="x">2080</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375078"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-941</int> <int id="x">-1905</int> </object> <object id="start"> <int id="y">-954</int> <int id="x">-1916</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375081"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1230</int> <int id="x">-2062</int> </object> <object id="start"> <int id="y">-1173</int> <int id="x">-2140</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503775"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1058</int> <int id="x">-886</int> </object> <object id="start"> <int id="y">-1036</int> <int id="x">-1002</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503785"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1329</int> <int id="x">-881</int> </object> <object id="start"> <int id="y">-1323</int> <int id="x">-922</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294876"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-488</int> <int id="x">2431</int> </object> <object id="start"> <int id="y">-456</int> <int id="x">2390</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294824"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-369</int> <int id="x">-867</int> </object> <object id="start"> <int id="y">-361</int> <int id="x">-897</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503580"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-85</int> <int id="x">504</int> </object> <object id="start"> <int id="y">-79</int> <int id="x">450</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375010"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-790</int> <int id="x">1780</int> </object> <object id="start"> <int id="y">-771</int> <int id="x">1703</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294852"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-523</int> <int id="x">-1810</int> </object> <object id="start"> <int id="y">-513</int> <int id="x">-1884</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503912"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1330</int> <int id="x">1073</int> </object> <object id="start"> <int id="y">-1341</int> <int id="x">1008</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421683"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-464</int> <int id="x">1471</int> </object> <object id="start"> <int id="y">-488</int> <int id="x">1429</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375152"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-50</int> <int id="x">245</int> </object> <object id="start"> <int id="y">-90</int> <int id="x">172</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375031"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-526</int> <int id="x">1316</int> </object> <object id="start"> <int id="y">-471</int> <int id="x">1240</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375252"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-158</int> <int id="x">-1688</int> </object> <object id="start"> <int id="y">-141</int> <int id="x">-1700</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375004"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1132</int> <int id="x">2175</int> </object> <object id="start"> <int id="y">-1149</int> <int id="x">2080</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375035"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1003</int> <int id="x">1029</int> </object> <object id="start"> <int id="y">-1028</int> <int id="x">942</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374994"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1293</int> <int id="x">1919</int> </object> <object id="start"> <int id="y">-1248</int> <int id="x">1806</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375076"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-995</int> <int id="x">-1992</int> </object> <object id="start"> <int id="y">-1007</int> <int id="x">-2077</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375048"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-608</int> <int id="x">368</int> </object> <object id="start"> <int id="y">-604</int> <int id="x">290</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294783"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-891</int> <int id="x">2321</int> </object> <object id="start"> <int id="y">-911</int> <int id="x">2302</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294846"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1119</int> <int id="x">-1589</int> </object> <object id="start"> <int id="y">-1099</int> <int id="x">-1658</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503896"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-902</int> <int id="x">784</int> </object> <object id="start"> <int id="y">-897</int> <int id="x">766</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375049"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-572</int> <int id="x">409</int> </object> <object id="start"> <int id="y">-608</int> <int id="x">368</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375059"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-700</int> <int id="x">-1358</int> </object> <object id="start"> <int id="y">-702</int> <int id="x">-1426</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375172"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1026</int> <int id="x">252</int> </object> <object id="start"> <int id="y">-1058</int> <int id="x">210</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374930"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-247</int> <int id="x">-1833</int> </object> <object id="start"> <int id="y">-251</int> <int id="x">-1919</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375296"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-267</int> <int id="x">776</int> </object> <object id="start"> <int id="y">-243</int> <int id="x">759</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375069"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-890</int> <int id="x">-1356</int> </object> <object id="start"> <int id="y">-903</int> <int id="x">-1388</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294916"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1038</int> <int id="x">-1116</int> </object> <object id="start"> <int id="y">-1022</int> <int id="x">-1139</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294815"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-143</int> <int id="x">2275</int> </object> <object id="start"> <int id="y">-158</int> <int id="x">2208</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375131"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-186</int> <int id="x">-133</int> </object> <object id="start"> <int id="y">-184</int> <int id="x">-172</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375024"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-392</int> <int id="x">1513</int> </object> <object id="start"> <int id="y">-379</int> <int id="x">1438</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374908"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-225</int> <int id="x">244</int> </object> <object id="start"> <int id="y">-242</int> <int id="x">176</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294825"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-364</int> <int id="x">-828</int> </object> <object id="start"> <int id="y">-369</int> <int id="x">-867</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294829"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-317</int> <int id="x">-668</int> </object> <object id="start"> <int id="y">-344</int> <int id="x">-730</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294870"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-664</int> <int id="x">-1763</int> </object> <object id="start"> <int id="y">-700</int> <int id="x">-1821</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375176"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1394</int> <int id="x">100</int> </object> <object id="start"> <int id="y">-1385</int> <int id="x">40</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375260"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-84</int> <int id="x">140</int> </object> <object id="start"> <int id="y">-86</int> <int id="x">108</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374941"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-499</int> <int id="x">-1102</int> </object> <object id="start"> <int id="y">-508</int> <int id="x">-1168</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375082"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1233</int> <int id="x">-2000</int> </object> <object id="start"> <int id="y">-1230</int> <int id="x">-2062</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374954"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-927</int> <int id="x">-140</int> </object> <object id="start"> <int id="y">-927</int> <int id="x">-284</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375023"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-379</int> <int id="x">1438</int> </object> <object id="start"> <int id="y">-353</int> <int id="x">1363</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374993"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1206</int> <int id="x">1639</int> </object> <object id="start"> <int id="y">-1199</int> <int id="x">1605</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375282"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-290</int> <int id="x">818</int> </object> <object id="start"> <int id="y">-267</int> <int id="x">776</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375075"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1007</int> <int id="x">-2077</int> </object> <object id="start"> <int id="y">-983</int> <int id="x">-2178</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374976"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1046</int> <int id="x">742</int> </object> <object id="start"> <int id="y">-1052</int> <int id="x">662</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421699"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-201</int> <int id="x">1603</int> </object> <object id="start"> <int id="y">-188</int> <int id="x">1574</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375177"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1389</int> <int id="x">152</int> </object> <object id="start"> <int id="y">-1394</int> <int id="x">100</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375015"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-824</int> <int id="x">2033</int> </object> <object id="start"> <int id="y">-825</int> <int id="x">2001</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375288"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-276</int> <int id="x">1018</int> </object> <object id="start"> <int id="y">-313</int> <int id="x">954</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375251"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-138</int> <int id="x">-1734</int> </object> <object id="start"> <int id="y">-131</int> <int id="x">-1815</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375134"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-198</int> <int id="x">36</int> </object> <object id="start"> <int id="y">-179</int> <int id="x">-15</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375155"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-78</int> <int id="x">397</int> </object> <object id="start"> <int id="y">-55</int> <int id="x">308</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375050"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-564</int> <int id="x">466</int> </object> <object id="start"> <int id="y">-572</int> <int id="x">409</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375016"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-676</int> <int id="x">2174</int> </object> <object id="start"> <int id="y">-686</int> <int id="x">2140</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503779"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1280</int> <int id="x">-708</int> </object> <object id="start"> <int id="y">-1271</int> <int id="x">-737</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503821"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1118</int> <int id="x">1140</int> </object> <object id="start"> <int id="y">-1135</int> <int id="x">1119</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374920"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-337</int> <int id="x">-2140</int> </object> <object id="start"> <int id="y">-323</int> <int id="x">-2217</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421679"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1274</int> <int id="x">-748</int> </object> <object id="start"> <int id="y">-1285</int> <int id="x">-802</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294794"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1215</int> <int id="x">2227</int> </object> <object id="start"> <int id="y">-1216</int> <int id="x">2206</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294823"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-361</int> <int id="x">-897</int> </object> <object id="start"> <int id="y">-366</int> <int id="x">-916</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375132"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-173</int> <int id="x">-54</int> </object> <object id="start"> <int id="y">-186</int> <int id="x">-133</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374826"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-188</int> <int id="x">1760</int> </object> <object id="start"> <int id="y">-192</int> <int id="x">1686</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503758"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-602</int> <int id="x">-977</int> </object> <object id="start"> <int id="y">-605</int> <int id="x">-1041</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337797298640"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-171</int> <int id="x">-2160</int> </object> <object id="start"> <int id="y">-179</int> <int id="x">-2176</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374992"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1199</int> <int id="x">1605</int> </object> <object id="start"> <int id="y">-1192</int> <int id="x">1530</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375280"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-164</int> <int id="x">1911</int> </object> <object id="start"> <int id="y">-171</int> <int id="x">1894</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375256"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-41</int> <int id="x">-51</int> </object> <object id="start"> <int id="y">-55</int> <int id="x">-133</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294837"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1087</int> <int id="x">-1956</int> </object> <object id="start"> <int id="y">-1102</int> <int id="x">-2004</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375161"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-184</int> <int id="x">1027</int> </object> <object id="start"> <int id="y">-155</int> <int id="x">989</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375145"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-194</int> <int id="x">-1391</int> </object> <object id="start"> <int id="y">-174</int> <int id="x">-1458</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374827"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-162</int> <int id="x">1976</int> </object> <object id="start"> <int id="y">-164</int> <int id="x">1911</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294779"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-721</int> <int id="x">2075</int> </object> <object id="start"> <int id="y">-704</int> <int id="x">1972</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375283"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-300</int> <int id="x">822</int> </object> <object id="start"> <int id="y">-290</int> <int id="x">818</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339646971720"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1289</int> <int id="x">2025</int> </object> <object id="start"> <int id="y">-1302</int> <int id="x">2012</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503953"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1178</int> <int id="x">-871</int> </object> <object id="start"> <int id="y">-1176</int> <int id="x">-905</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421687"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1156</int> <int id="x">-1883</int> </object> <object id="start"> <int id="y">-1171</int> <int id="x">-1902</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374948"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-748</int> <int id="x">-484</int> </object> <object id="start"> <int id="y">-747</int> <int id="x">-568</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375147"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-168</int> <int id="x">-1130</int> </object> <object id="start"> <int id="y">-153</int> <int id="x">-1217</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294788"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-527</int> <int id="x">2499</int> </object> <object id="start"> <int id="y">-488</int> <int id="x">2431</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375108"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-353</int> <int id="x">1363</int> </object> <object id="start"> <int id="y">-337</int> <int id="x">1357</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375064"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-838</int> <int id="x">-1526</int> </object> <object id="start"> <int id="y">-825</int> <int id="x">-1534</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421697"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-189</int> <int id="x">1527</int> </object> <object id="start"> <int id="y">-200</int> <int id="x">1502</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375101"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-443</int> <int id="x">-382</int> </object> <object id="start"> <int id="y">-438</int> <int id="x">-404</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421678"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1264</int> <int id="x">-540</int> </object> <object id="start"> <int id="y">-1281</int> <int id="x">-613</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503954"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1151</int> <int id="x">-801</int> </object> <object id="start"> <int id="y">-1178</int> <int id="x">-871</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294786"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-456</int> <int id="x">2296</int> </object> <object id="start"> <int id="y">-436</int> <int id="x">2246</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421681"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-342</int> <int id="x">1655</int> </object> <object id="start"> <int id="y">-352</int> <int id="x">1646</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374936"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-406</int> <int id="x">-1442</int> </object> <object id="start"> <int id="y">-401</int> <int id="x">-1498</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503820"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1135</int> <int id="x">1119</int> </object> <object id="start"> <int id="y">-1146</int> <int id="x">1001</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375103"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-392</int> <int id="x">-303</int> </object> <object id="start"> <int id="y">-410</int> <int id="x">-317</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375180"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1343</int> <int id="x">246</int> </object> <object id="start"> <int id="y">-1358</int> <int id="x">238</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294801"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1006</int> <int id="x">2499</int> </object> <object id="start"> <int id="y">-978</int> <int id="x">2454</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375087"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1236</int> <int id="x">-1350</int> </object> <object id="start"> <int id="y">-1227</int> <int id="x">-1402</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294844"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1159</int> <int id="x">-1502</int> </object> <object id="start"> <int id="y">-1136</int> <int id="x">-1522</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375071"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-849</int> <int id="x">-1310</int> </object> <object id="start"> <int id="y">-867</int> <int id="x">-1320</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294889"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-448</int> <int id="x">-2295</int> </object> <object id="start"> <int id="y">-446</int> <int id="x">-2363</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294797"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1191</int> <int id="x">2375</int> </object> <object id="start"> <int id="y">-1204</int> <int id="x">2363</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374910"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-224</int> <int id="x">369</int> </object> <object id="start"> <int id="y">-214</int> <int id="x">300</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374958"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-932</int> <int id="x">268</int> </object> <object id="start"> <int id="y">-924</int> <int id="x">205</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375025"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-392</int> <int id="x">1577</int> </object> <object id="start"> <int id="y">-392</int> <int id="x">1513</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374911"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-225</int> <int id="x">427</int> </object> <object id="start"> <int id="y">-224</int> <int id="x">369</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375201"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-330</int> <int id="x">701</int> </object> <object id="start"> <int id="y">-316</int> <int id="x">679</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503760"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-660</int> <int id="x">-874</int> </object> <object id="start"> <int id="y">-645</int> <int id="x">-910</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375067"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-903</int> <int id="x">-1388</int> </object> <object id="start"> <int id="y">-901</int> <int id="x">-1418</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503889"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-893</int> <int id="x">-1040</int> </object> <object id="start"> <int id="y">-868</int> <int id="x">-1145</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421707"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-905</int> <int id="x">373</int> </object> <object id="start"> <int id="y">-912</int> <int id="x">361</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375106"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-346</int> <int id="x">-188</int> </object> <object id="start"> <int id="y">-358</int> <int id="x">-197</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374990"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1198</int> <int id="x">1444</int> </object> <object id="start"> <int id="y">-1194</int> <int id="x">1330</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375312"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-753</int> <int id="x">1684</int> </object> <object id="start"> <int id="y">-739</int> <int id="x">1591</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503825"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-655</int> <int id="x">1121</int> </object> <object id="start"> <int id="y">-641</int> <int id="x">1010</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294884"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-721</int> <int id="x">-2202</int> </object> <object id="start"> <int id="y">-728</int> <int id="x">-2281</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375136"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-205</int> <int id="x">96</int> </object> <object id="start"> <int id="y">-209</int> <int id="x">88</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375092"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1207</int> <int id="x">-489</int> </object> <object id="start"> <int id="y">-1165</int> <int id="x">-553</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375121"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-471</int> <int id="x">312</int> </object> <object id="start"> <int id="y">-505</int> <int id="x">245</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294917"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1048</int> <int id="x">-1065</int> </object> <object id="start"> <int id="y">-1038</int> <int id="x">-1116</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375302"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-305</int> <int id="x">-112</int> </object> <object id="start"> <int id="y">-323</int> <int id="x">-162</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294839"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1053</int> <int id="x">-1891</int> </object> <object id="start"> <int id="y">-1079</int> <int id="x">-1946</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375178"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1389</int> <int id="x">175</int> </object> <object id="start"> <int id="y">-1389</int> <int id="x">152</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421684"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1265</int> <int id="x">971</int> </object> <object id="start"> <int id="y">-1270</int> <int id="x">938</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375228"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-282</int> <int id="x">607</int> </object> <object id="start"> <int id="y">-265</int> <int id="x">602</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503956"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1109</int> <int id="x">-736</int> </object> <object id="start"> <int id="y">-1138</int> <int id="x">-792</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375311"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-771</int> <int id="x">1703</int> </object> <object id="start"> <int id="y">-753</int> <int id="x">1684</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375153"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-45</int> <int id="x">288</int> </object> <object id="start"> <int id="y">-50</int> <int id="x">245</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375229"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-265</int> <int id="x">602</int> </object> <object id="start"> <int id="y">-224</int> <int id="x">550</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375036"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-999</int> <int id="x">1070</int> </object> <object id="start"> <int id="y">-1003</int> <int id="x">1029</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375158"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-100</int> <int id="x">736</int> </object> <object id="start"> <int id="y">-106</int> <int id="x">684</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374929"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-251</int> <int id="x">-1919</int> </object> <object id="start"> <int id="y">-264</int> <int id="x">-2002</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375148"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-153</int> <int id="x">-1084</int> </object> <object id="start"> <int id="y">-168</int> <int id="x">-1130</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375118"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-516</int> <int id="x">144</int> </object> <object id="start"> <int id="y">-513</int> <int id="x">84</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421711"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-826</int> <int id="x">537</int> </object> <object id="start"> <int id="y">-836</int> <int id="x">531</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503823"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-699</int> <int id="x">702</int> </object> <object id="start"> <int id="y">-683</int> <int id="x">605</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375014"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-825</int> <int id="x">2001</int> </object> <object id="start"> <int id="y">-829</int> <int id="x">1989</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421709"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-862</int> <int id="x">488</int> </object> <object id="start"> <int id="y">-868</int> <int id="x">458</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375124"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-721</int> <int id="x">-170</int> </object> <object id="start"> <int id="y">-748</int> <int id="x">-256</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375243"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-174</int> <int id="x">-2381</int> </object> <object id="start"> <int id="y">-150</int> <int id="x">-2391</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294851"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-513</int> <int id="x">-1884</int> </object> <object id="start"> <int id="y">-535</int> <int id="x">-1948</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294791"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-147</int> <int id="x">2448</int> </object> <object id="start"> <int id="y">-144</int> <int id="x">2385</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375060"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-635</int> <int id="x">-1235</int> </object> <object id="start"> <int id="y">-700</int> <int id="x">-1358</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375046"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-604</int> <int id="x">275</int> </object> <object id="start"> <int id="y">-631</int> <int id="x">204</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503826"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-630</int> <int id="x">1249</int> </object> <object id="start"> <int id="y">-655</int> <int id="x">1121</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375190"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1333</int> <int id="x">2243</int> </object> <object id="start"> <int id="y">-1340</int> <int id="x">2169</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374977"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1048</int> <int id="x">761</int> </object> <object id="start"> <int id="y">-1046</int> <int id="x">742</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503778"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1271</int> <int id="x">-737</int> </object> <object id="start"> <int id="y">-1274</int> <int id="x">-748</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503819"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1240</int> <int id="x">858</int> </object> <object id="start"> <int id="y">-1212</int> <int id="x">748</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503824"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-687</int> <int id="x">872</int> </object> <object id="start"> <int id="y">-699</int> <int id="x">702</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503890"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-895</int> <int id="x">-966</int> </object> <object id="start"> <int id="y">-893</int> <int id="x">-1040</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503782"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1231</int> <int id="x">-414</int> </object> <object id="start"> <int id="y">-1240</int> <int id="x">-511</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374918"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-328</int> <int id="x">-2287</int> </object> <object id="start"> <int id="y">-328</int> <int id="x">-2362</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375017"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-645</int> <int id="x">2247</int> </object> <object id="start"> <int id="y">-676</int> <int id="x">2174</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503765"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-604</int> <int id="x">-594</int> </object> <object id="start"> <int id="y">-596</int> <int id="x">-685</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375038"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-999</int> <int id="x">1202</int> </object> <object id="start"> <int id="y">-1006</int> <int id="x">1185</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294822"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-366</int> <int id="x">-916</int> </object> <object id="start"> <int id="y">-326</int> <int id="x">-996</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294814"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-158</int> <int id="x">2208</int> </object> <object id="start"> <int id="y">-176</int> <int id="x">2137</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375102"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-410</int> <int id="x">-317</int> </object> <object id="start"> <int id="y">-443</int> <int id="x">-382</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375269"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-112</int> <int id="x">613</int> </object> <object id="start"> <int id="y">-97</int> <int id="x">588</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375065"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-890</int> <int id="x">-1457</int> </object> <object id="start"> <int id="y">-838</int> <int id="x">-1526</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503930"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1245</int> <int id="x">1103</int> </object> <object id="start"> <int id="y">-1250</int> <int id="x">986</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375162"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-192</int> <int id="x">1118</int> </object> <object id="start"> <int id="y">-184</int> <int id="x">1027</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503577"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-78</int> <int id="x">-517</int> </object> <object id="start"> <int id="y">-85</int> <int id="x">-568</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375012"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-829</int> <int id="x">1881</int> </object> <object id="start"> <int id="y">-812</int> <int id="x">1811</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375237"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-186</int> <int id="x">-2099</int> </object> <object id="start"> <int id="y">-171</int> <int id="x">-2160</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375307"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-462</int> <int id="x">-611</int> </object> <object id="start"> <int id="y">-468</int> <int id="x">-719</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375179"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1358</int> <int id="x">238</int> </object> <object id="start"> <int id="y">-1389</int> <int id="x">175</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375255"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-55</int> <int id="x">-133</int> </object> <object id="start"> <int id="y">-56</int> <int id="x">-157</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375133"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-179</int> <int id="x">-15</int> </object> <object id="start"> <int id="y">-173</int> <int id="x">-54</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421682"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-488</int> <int id="x">1429</int> </object> <object id="start"> <int id="y">-502</int> <int id="x">1419</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503910"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1375</int> <int id="x">1041</int> </object> <object id="start"> <int id="y">-1384</int> <int id="x">953</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375202"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-371</int> <int id="x">791</int> </object> <object id="start"> <int id="y">-330</int> <int id="x">701</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375291"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-262</int> <int id="x">1083</int> </object> <object id="start"> <int id="y">-266</int> <int id="x">1043</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294853"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-521</int> <int id="x">-1745</int> </object> <object id="start"> <int id="y">-523</int> <int id="x">-1810</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294805"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-343</int> <int id="x">2069</int> </object> <object id="start"> <int id="y">-339</int> <int id="x">2035</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503777"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1442</int> <int id="x">-564</int> </object> <object id="start"> <int id="y">-1443</int> <int id="x">-698</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375128"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-787</int> <int id="x">-1633</int> </object> <object id="start"> <int id="y">-784</int> <int id="x">-1695</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294809"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-300</int> <int id="x">2275</int> </object> <object id="start"> <int id="y">-353</int> <int id="x">2176</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503927"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1267</int> <int id="x">897</int> </object> <object id="start"> <int id="y">-1240</int> <int id="x">858</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375100"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-438</int> <int id="x">-404</int> </object> <object id="start"> <int id="y">-445</int> <int id="x">-448</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294800"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-978</int> <int id="x">2454</int> </object> <object id="start"> <int id="y">-977</int> <int id="x">2382</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294892"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-400</int> <int id="x">-1907</int> </object> <object id="start"> <int id="y">-409</int> <int id="x">-1996</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375206"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-420</int> <int id="x">938</int> </object> <object id="start"> <int id="y">-420</int> <int id="x">907</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294865"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-608</int> <int id="x">-2115</int> </object> <object id="start"> <int id="y">-569</int> <int id="x">-2197</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294772"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-824</int> <int id="x">2131</int> </object> <object id="start"> <int id="y">-833</int> <int id="x">2093</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375086"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1227</int> <int id="x">-1402</int> </object> <object id="start"> <int id="y">-1176</int> <int id="x">-1495</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294869"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-700</int> <int id="x">-1821</int> </object> <object id="start"> <int id="y">-719</int> <int id="x">-1886</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294873"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-451</int> <int id="x">2344</int> </object> <object id="start"> <int id="y">-456</int> <int id="x">2296</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374932"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-386</int> <int id="x">-1691</int> </object> <object id="start"> <int id="y">-355</int> <int id="x">-1778</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374978"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1067</int> <int id="x">821</int> </object> <object id="start"> <int id="y">-1048</int> <int id="x">761</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375079"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-901</int> <int id="x">-1800</int> </object> <object id="start"> <int id="y">-941</int> <int id="x">-1905</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375170"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1092</int> <int id="x">123</int> </object> <object id="start"> <int id="y">-1086</int> <int id="x">91</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503955"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1138</int> <int id="x">-792</int> </object> <object id="start"> <int id="y">-1151</int> <int id="x">-801</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294813"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-176</int> <int id="x">2137</int> </object> <object id="start"> <int id="y">-186</int> <int id="x">2095</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375045"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-631</int> <int id="x">204</int> </object> <object id="start"> <int id="y">-642</int> <int id="x">160</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375248"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-131</int> <int id="x">-950</int> </object> <object id="start"> <int id="y">-134</int> <int id="x">-998</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375164"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-187</int> <int id="x">1201</int> </object> <object id="start"> <int id="y">-198</int> <int id="x">1152</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337374503929"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1250</int> <int id="x">986</int> </object> <object id="start"> <int id="y">-1265</int> <int id="x">971</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375285"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-332</int> <int id="x">916</int> </object> <object id="start"> <int id="y">-331</int> <int id="x">876</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375063"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-825</int> <int id="x">-1534</int> </object> <object id="start"> <int id="y">-795</int> <int id="x">-1578</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294777"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-693</int> <int id="x">1954</int> </object> <object id="start"> <int id="y">-667</int> <int id="x">1856</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421686"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1171</int> <int id="x">-1902</int> </object> <object id="start"> <int id="y">-1189</int> <int id="x">-1938</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375171"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1058</int> <int id="x">210</int> </object> <object id="start"> <int id="y">-1093</int> <int id="x">158</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421677"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1093</int> <int id="x">158</int> </object> <object id="start"> <int id="y">-1092</int> <int id="x">123</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294812"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-186</int> <int id="x">2095</int> </object> <object id="start"> <int id="y">-187</int> <int id="x">2051</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294796"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1204</int> <int id="x">2363</int> </object> <object id="start"> <int id="y">-1219</int> <int id="x">2253</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375097"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-429</int> <int id="x">-533</int> </object> <object id="start"> <int id="y">-392</int> <int id="x">-605</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375287"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-313</int> <int id="x">954</int> </object> <object id="start"> <int id="y">-314</int> <int id="x">947</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421712"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-802</int> <int id="x">577</int> </object> <object id="start"> <int id="y">-826</int> <int id="x">537</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294833"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-456</int> <int id="x">-994</int> </object> <object id="start"> <int id="y">-444</int> <int id="x">-1004</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375095"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1378</int> <int id="x">-381</int> </object> <object id="start"> <int id="y">-1406</int> <int id="x">-465</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294881"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-769</int> <int id="x">-2420</int> </object> <object id="start"> <int id="y">-804</int> <int id="x">-2494</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374972"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1015</int> <int id="x">529</int> </object> <object id="start"> <int id="y">-1004</int> <int id="x">515</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707374957"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-924</int> <int id="x">205</int> </object> <object id="start"> <int id="y">-935</int> <int id="x">174</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375083"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1205</int> <int id="x">-1947</int> </object> <object id="start"> <int id="y">-1233</int> <int id="x">-2000</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375033"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-502</int> <int id="x">1419</int> </object> <object id="start"> <int id="y">-530</int> <int id="x">1366</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375056"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-647</int> <int id="x">-1596</int> </object> <object id="start"> <int id="y">-634</int> <int id="x">-1604</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1339888421689"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-155</int> <int id="x">989</int> </object> <object id="start"> <int id="y">-157</int> <int id="x">966</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337707375163"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-198</int> <int id="x">1152</int> </object> <object id="start"> <int id="y">-192</int> <int id="x">1118</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1337729294843"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-1176</int> <int id="x">-1495</int> </object> <object id="start"> <int id="y">-1159</int> <int id="x">-1502</int> </object> <int id="platform_item_perm">-1</int> </object> </object> </object> <object id="T_1337707374833"> <int id="w">5300</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">11558400</int> </object> <object id="tintAmount"> <int id="value">48</int> </object> <object id="brightness"> <int id="value">-51</int> </object> </object> <str id="name">foreground</str> <int id="h">1530</int> <object id="decos"> <object id="tree_coniferous_fg_1_1337707374834"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">2105</int> <int id="x">539</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">0</int> <int id="w">633</int> <int id="h">1406</int> <int id="r">5</int> </object> <object id="pinecluster_2_1338595091064"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1831</int> <int id="x">5034</int> <str id="sprite_class">pinecluster_2</str> <int id="z">6</int> <int id="w">789</int> <int id="h">460</int> </object> <object id="tree_coniferous_fg_1_1337707374848"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">2225</int> <int id="x">2118</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">2</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="tree_coniferous_fg_1_1337707374836"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">2332</int> <int id="x">2846</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">3</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="tree_coniferous_fg_1_1337707374837"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">2458</int> <int id="x">4942</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">4</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="tree_coniferous_fg_1_1337707374835"> <str id="name">tree_coniferous_fg_1_1337374503587</str> <int id="y">2225</int> <int id="x">1396</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">1</int> <int id="w">633</int> <int id="h">1406</int> </object> <object id="pinecluster_2_1337707375218"> <str id="name">pinecluster_2_1337374503467</str> <int id="y">1689</int> <int id="x">4136</int> <str id="sprite_class">pinecluster_2</str> <int id="z">5</int> <int id="w">789</int> <int id="h">460</int> </object> </object> <int id="z">2</int> </object> </object> <str id="music_file"></str> <bool id="wall_jump">false</bool> <null id="physics"/> <object id="gradient"> <str id="top">C2560A</str> <str id="bottom">FF9900</str> </object> <str id="tsid">LDOF15642S031VN</str> <null id="loading_label"/> <int id="ground_y">-225</int> <null id="img_file_versioned"/> <int id="rookable_type">0</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1337366741.swf</str> <object id="sources"> <int id="LDO34N1OUR03H4O">1</int> <int id="LDOF4NU42S03R63">1</int> <int id="LDO42D61VR03PM6">1</int> </object> </object> </game_object>
360,210
Common Lisp
.l
11,131
25.420178
203
0.54076
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ab37bd7f77789e6a39efb5317fb49e702097fb213f46e1471fb2d4c8eeaf3ec1
20,850
[ -1 ]
20,851
GLICFILAMTI11QV.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/forest/GLICFILAMTI11QV.xml
<game_object tsid="GLICFILAMTI11QV" ts="1336606371762" label="Scribe&apos;s Weald" class_tsid="" lastUpdateTime="1336606361547" upd_gs="gs10" load_time="2012-05-09 16:23:03.672" upd_time="2012-05-09 16:32:31.892"> <object id="dynamic"> <int id="l">-1250</int> <int id="r">1250</int> <int id="t">-1000</int> <int id="b">0</int> <str id="label">Scribe's Weald</str> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="bg_2"> <int id="w">2100</int> <int id="z">-2</int> <object id="filtersNEW"> <object id="contrast"> </object> <object id="tintAmount"> </object> <object id="brightness"> <int id="value">-23</int> </object> <object id="saturation"> </object> <object id="blur"> </object> </object> <int id="h">1000</int> <object id="decos"> <object id="tree_group_bg2_1_1289252001417"> <int id="w">558</int> <int id="x">909</int> <int id="y">876</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="z">0</int> <int id="h">729</int> <str id="name">tree_group_bg2_1_1289252001417</str> </object> <object id="tree_group_bg2_1_1289251912233"> <int id="w">558</int> <int id="x">1274</int> <int id="y">920</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="z">1</int> <int id="h">729</int> <str id="name">tree_group_bg2_1_1289251912233</str> </object> <object id="pinecluster_1_1289252435562"> <int id="w">633</int> <int id="x">1228</int> <int id="y">1020</int> <str id="sprite_class">pinecluster_1</str> <int id="z">7</int> <int id="h">476</int> <str id="name">pinecluster_1_1289252435562</str> </object> <object id="pinecluster_2_1289251876183"> <int id="w">787</int> <int id="x">1610</int> <int id="y">910</int> <str id="sprite_class">pinecluster_2</str> <int id="z">4</int> <int id="h">460</int> <str id="name">pinecluster_2_1289251876183</str> </object> <object id="wallpaper_tree_short_1_1289251748133"> <int id="w">1450</int> <int id="x">1958</int> <int id="y">958</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">3</int> <int id="h">945</int> <str id="name">wallpaper_tree_short_1_1289251748133</str> </object> <object id="pinecluster_1_1289252434073"> <int id="w">633</int> <int id="x">848</int> <int id="y">918</int> <str id="sprite_class">pinecluster_1</str> <int id="z">6</int> <int id="h">476</int> <str id="name">pinecluster_1_1289252434073</str> </object> <object id="pinecluster_1_1289251887801"> <int id="w">633</int> <int id="x">827</int> <int id="y">898</int> <str id="sprite_class">pinecluster_1</str> <int id="z">5</int> <int id="h">476</int> <str id="name">pinecluster_1_1289251887801</str> </object> <object id="pinecluster_mask_1_1289252982406"> <int id="w">307</int> <int id="r">2</int> <int id="x">908</int> <int id="y">835</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="z">11</int> <int id="h">119</int> <str id="name">pinecluster_mask_1_1289252982406</str> </object> <object id="wallpaper_tree_short_1_1289251743882"> <int id="w">1450</int> <int id="x">285</int> <int id="y">972</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="z">2</int> <int id="h">945</int> <str id="name">wallpaper_tree_short_1_1289251743882</str> </object> <object id="pinecluster_1_1289253208215"> <int id="w">633</int> <int id="x">509</int> <int id="y">1100</int> <str id="sprite_class">pinecluster_1</str> <int id="z">12</int> <int id="h">476</int> <str id="name">pinecluster_1_1289253208215</str> </object> <object id="groddle_bush7_1289252492785"> <int id="w">563</int> <int id="x">386</int> <int id="y">856</int> <str id="sprite_class">groddle_bush7</str> <int id="z">10</int> <int id="h">133</int> <str id="name">groddle_bush7_1289252492785</str> </object> <object id="groddle_bush7_1289252479640"> <int id="w">563</int> <int id="x">1142</int> <int id="y">876</int> <str id="sprite_class">groddle_bush7</str> <int id="z">8</int> <int id="h">133</int> <str id="name">groddle_bush7_1289252479640</str> </object> <object id="groddle_bush7_1289252483872"> <int id="w">563</int> <int id="x">1854</int> <int id="y">888</int> <str id="sprite_class">groddle_bush7</str> <int id="z">9</int> <int id="h">133</int> <str id="name">groddle_bush7_1289252483872</str> </object> </object> <str id="name">bg_2</str> </object> <object id="foreground"> <int id="w">2708</int> <int id="z">2</int> <object id="filtersNEW"> <object id="contrast"> </object> <object id="tintAmount"> </object> <object id="brightness"> <int id="value">-58</int> </object> <object id="saturation"> </object> <object id="blur"> </object> </object> <int id="h">1000</int> <object id="decos"> <object id="tree_bare_thin_1_1289253288150"> <int id="w">276</int> <int id="x">2433</int> <int id="y">1173</int> <str id="sprite_class">tree_bare_thin_1</str> <int id="z">3</int> <int id="h">784</int> <str id="name">tree_bare_thin_1_1289253288150</str> </object> <object id="tree_bare_thin_1_1289253130796"> <int id="w">276</int> <int id="x">1453</int> <int id="y">1285</int> <str id="sprite_class">tree_bare_thin_1</str> <int id="z">0</int> <int id="h">784</int> <bool id="h_flip">true</bool> <str id="name">tree_bare_thin_1_1289253130796</str> </object> <object id="flower_bush_5_1289253236169"> <int id="w">319</int> <int id="x">402</int> <int id="y">1063</int> <str id="sprite_class">flower_bush_5</str> <int id="z">1</int> <int id="h">135</int> <str id="name">flower_bush_5_1289253236169</str> </object> <object id="flower_bush_5_1289253240896"> <int id="w">319</int> <int id="x">246</int> <int id="y">1080</int> <str id="sprite_class">flower_bush_5</str> <int id="z">2</int> <int id="h">135</int> <str id="name">flower_bush_5_1289253240896</str> </object> <object id="tree_coniferous_bare_1_1289253295397"> <int id="w">557</int> <int id="x">732</int> <int id="y">1104</int> <str id="sprite_class">tree_coniferous_bare_1</str> <int id="z">4</int> <int id="h">747</int> <str id="name">tree_coniferous_bare_1_1289253295397</str> </object> </object> <str id="name">foreground</str> </object> <object id="middleplus"> <int id="w">2500</int> <int id="z">1</int> <object id="filtersNEW"> <object id="contrast"> </object> <object id="tintAmount"> </object> <object id="brightness"> <int id="value">-47</int> </object> <object id="saturation"> </object> <object id="blur"> </object> </object> <int id="h">1000</int> <object id="decos"> <object id="mound_dirt_4_1289252962478"> <int id="w">443</int> <int id="x">1590</int> <int id="y">1073</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">3</int> <int id="h">169</int> <str id="name">mound_dirt_4_1289252962478</str> </object> <object id="bush_3_1289252974928"> <int id="w">283</int> <int id="x">1847</int> <int id="y">1063</int> <str id="sprite_class">bush_3</str> <int id="z">4</int> <int id="h">100</int> <str id="name">bush_3_1289252974928</str> </object> <object id="bush_3_1289253115363"> <int id="w">283</int> <int id="x">2031</int> <int id="y">1051</int> <str id="sprite_class">bush_3</str> <int id="z">6</int> <int id="h">100</int> <str id="name">bush_3_1289253115363</str> </object> <object id="pinecluster_mask_1_1289252976694"> <int id="w">316</int> <int id="x">1321</int> <int id="y">1038</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="z">5</int> <int id="h">122</int> <str id="name">pinecluster_mask_1_1289252976694</str> </object> <object id="groddle_bush1_1289252593456"> <int id="w">208</int> <int id="x">221</int> <int id="y">1046</int> <str id="sprite_class">groddle_bush1</str> <int id="z">2</int> <int id="h">123</int> <str id="name">groddle_bush1_1289252593456</str> </object> <object id="groddle_bush4_1289252591746"> <int id="w">143</int> <int id="x">131</int> <int id="y">1024</int> <str id="sprite_class">groddle_bush4</str> <int id="z">1</int> <int id="h">69</int> <str id="name">groddle_bush4_1289252591746</str> </object> <object id="groddle_bush1_1289252589654"> <int id="w">160</int> <int id="x">17</int> <int id="y">1045</int> <str id="sprite_class">groddle_bush1</str> <int id="z">0</int> <int id="h">95</int> <str id="name">groddle_bush1_1289252589654</str> </object> </object> <str id="name">middleplus</str> </object> <object id="middleground"> <object id="signposts"> <object id="signpost_1"> <int id="y">-50</int> <int id="w">150</int> <object id="connects"> <object id="0"> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1304704804.swf</str> <str id="mote_id">9</str> <int id="x">1800</int> <str id="hub_id">56</str> <int id="y">-70</int> <objref id="target" tsid="LLI2HVHUM4F16B0" label="Pasha&apos;s Place"/> </object> </object> <int id="x">1025</int> <int id="h">200</int> </object> <object id="signpost_2"> <int id="y">-71</int> <int id="w">150</int> <object id="connects"> <object id="0"> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1304704804.swf</str> <str id="mote_id">9</str> <int id="x">1400</int> <str id="hub_id">56</str> <int id="y">-115</int> <objref id="target" tsid="LLI2V0UN7RD1T2J" label="Hechey Track"/> </object> </object> <int id="x">-1087</int> <int id="h">200</int> </object> </object> <object id="targets"> </object> <object id="boxes"> </object> <object id="walls"> </object> <object id="filtersNEW"> <object id="contrast"> </object> <object id="brightness"> <int id="value">-16</int> </object> <object id="tintAmount"> </object> <object id="saturation"> </object> </object> <object id="decos"> <object id="patch_mossy_1_1289252925130"> <int id="w">145</int> <int id="r">-9</int> <int id="x">103</int> <int id="y">-64</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">39</int> <int id="h">35</int> <str id="name">patch_mossy_1_1289252925130</str> </object> <object id="dirt_platform_long_1289251678213"> <int id="w">955</int> <int id="x">-380</int> <int id="y">8</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">7</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251678213</str> </object> <object id="patch_mossy_1_1289253066395"> <int id="w">258</int> <int id="r">2</int> <int id="x">1154</int> <int id="y">6</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">47</int> <int id="h">59</int> <str id="name">patch_mossy_1_1289253066395</str> </object> <object id="tree_coniferous_fg_1_1289252109924"> <int id="w">633</int> <int id="x">1148</int> <int id="y">-24</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">20</int> <int id="h">1406</int> <str id="name">tree_coniferous_fg_1_1289252109924</str> </object> <object id="gravel_2_1289252685759"> <int id="w">39</int> <int id="x">-621</int> <int id="y">-92</int> <str id="sprite_class">gravel_2</str> <int id="z">30</int> <int id="h">22</int> <str id="name">gravel_2_1289252685759</str> </object> <object id="patch_mossy_3_1289252678075"> <int id="w">196</int> <int id="x">-600</int> <int id="y">-50</int> <str id="sprite_class">patch_mossy_3</str> <int id="z">29</int> <int id="h">37</int> <str id="name">patch_mossy_3_1289252678075</str> </object> <object id="flower_bush_5_1289252171803"> <int id="w">251</int> <int id="x">-313</int> <int id="y">-36</int> <str id="sprite_class">flower_bush_5</str> <int id="z">55</int> <int id="h">107</int> <str id="name">flower_bush_5_1289252171803</str> </object> <object id="dirt_platform_long_1289251697664"> <int id="w">955</int> <int id="x">1062</int> <int id="y">-20</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">12</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251697664</str> </object> <object id="bush_3_1289252607775"> <int id="w">283</int> <int id="x">-974</int> <int id="y">-63</int> <str id="sprite_class">bush_3</str> <int id="z">22</int> <int id="h">100</int> <str id="name">bush_3_1289252607775</str> </object> <object id="tree_stack_leafy_2_1289252876261"> <int id="w">320</int> <int id="x">891</int> <int id="y">-400</int> <str id="sprite_class">tree_stack_leafy_2</str> <int id="z">33</int> <int id="h">136</int> <str id="name">tree_stack_leafy_2_1289252876261</str> </object> <object id="tree_stack_leafy_1_1289252857627"> <int id="w">596</int> <int id="x">927</int> <int id="y">-385</int> <str id="sprite_class">tree_stack_leafy_1</str> <int id="z">32</int> <int id="h">184</int> <str id="name">tree_stack_leafy_1_1289252857627</str> </object> <object id="mound_dirt_4_1289252953594"> <int id="w">499</int> <int id="x">144</int> <int id="y">130</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">42</int> <int id="h">190</int> <str id="name">mound_dirt_4_1289252953594</str> </object> <object id="dirt_platform_long_1289251707330"> <int id="w">955</int> <int id="x">-980</int> <int id="y">-58</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">14</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251707330</str> </object> <object id="bush_3_1289252132401"> <int id="w">283</int> <int id="x">1020</int> <int id="y">-70</int> <str id="sprite_class">bush_3</str> <int id="z">2</int> <int id="h">100</int> <str id="name">bush_3_1289252132401</str> </object> <object id="dirt_platform_long_1289251685381"> <int id="w">955</int> <int id="x">1026</int> <int id="y">-62</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">10</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251685381</str> </object> <object id="tree_stack_knot_1289264166523"> <int id="w">34</int> <int id="x">-191</int> <int id="y">-382</int> <str id="sprite_class">tree_stack_knot</str> <int id="z">58</int> <int id="h">205</int> <str id="name">tree_stack_knot_1289264166523</str> </object> <object id="tree_stack_branch_4_1289252884127"> <int id="w">217</int> <int id="x">994</int> <int id="y">-278</int> <str id="sprite_class">tree_stack_branch_4</str> <int id="z">35</int> <int id="h">102</int> <str id="name">tree_stack_branch_4_1289252884127</str> </object> <object id="tree_stack_trunk_1289264159345"> <int id="w">88</int> <int id="x">-176</int> <int id="y">-449</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">57</int> <int id="h">701</int> <str id="name">tree_stack_trunk_1289264159345</str> </object> <object id="flower_bush_5_1289252197120"> <int id="w">211</int> <int id="x">1012</int> <int id="y">-76</int> <str id="sprite_class">flower_bush_5</str> <int id="z">19</int> <int id="h">90</int> <str id="name">flower_bush_5_1289252197120</str> </object> <object id="dirt_platform_long_1289251712931"> <int id="w">955</int> <int id="x">-944</int> <int id="y">2</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">16</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251712931</str> </object> <object id="flower_bush_5_1289252613008"> <int id="w">251</int> <int id="x">-787</int> <int id="y">-64</int> <str id="sprite_class">flower_bush_5</str> <int id="z">23</int> <int id="h">107</int> <str id="name">flower_bush_5_1289252613008</str> </object> <object id="patch_mossy_1_1289252933094"> <int id="w">145</int> <int id="r">9</int> <int id="x">518</int> <int id="y">-99</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">40</int> <int id="h">35</int> <str id="name">patch_mossy_1_1289252933094</str> </object> <object id="patch_mossy_3_1289252940545"> <int id="w">196</int> <int id="r">11</int> <int id="x">564</int> <int id="y">-69</int> <str id="sprite_class">patch_mossy_3</str> <int id="z">41</int> <int id="h">37</int> <str id="name">patch_mossy_3_1289252940545</str> </object> <object id="dirt_platform_long_1289251682819"> <int id="w">955</int> <int id="x">520</int> <int id="y">-24</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">9</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251682819</str> </object> <object id="patch_mossy_3_1289252670308"> <int id="w">196</int> <int id="x">-813</int> <int id="y">-8</int> <str id="sprite_class">patch_mossy_3</str> <int id="z">26</int> <int id="h">37</int> <str id="name">patch_mossy_3_1289252670308</str> </object> <object id="tree_stack_branch_2_1289252888877"> <int id="w">118</int> <int id="x">1235</int> <int id="y">-271</int> <str id="sprite_class">tree_stack_branch_2</str> <int id="z">36</int> <int id="h">73</int> <str id="name">tree_stack_branch_2_1289252888877</str> </object> <object id="platform_branch_a01_1289264177353"> <int id="w">261</int> <int id="x">-24</int> <int id="y">-694</int> <str id="sprite_class">platform_branch_a01</str> <int id="z">62</int> <int id="h">116</int> <str id="name">platform_branch_a01_1289264177353</str> </object> <object id="patch_mossy_1_1289252675842"> <int id="w">145</int> <int id="x">-1129</int> <int id="y">-17</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">28</int> <int id="h">35</int> <str id="name">patch_mossy_1_1289252675842</str> </object> <object id="patch_mossy_1_1289252665858"> <int id="w">145</int> <int id="x">-802</int> <int id="y">-25</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">25</int> <int id="h">35</int> <str id="name">patch_mossy_1_1289252665858</str> </object> <object id="dirt_mound_1_1289251972401"> <int id="w">780</int> <int id="x">352</int> <int id="y">-14</int> <str id="sprite_class">dirt_mound_1</str> <int id="z">17</int> <int id="h">139</int> <str id="name">dirt_mound_1_1289251972401</str> </object> <object id="platform_branch_a05_1289252881044"> <int id="w">103</int> <int id="x">-227</int> <int id="y">-292</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">34</int> <int id="h">45</int> <str id="name">platform_branch_a05_1289252881044</str> </object> <object id="patch_mossy_1_1289253054094"> <int id="w">220</int> <int id="r">2</int> <int id="x">820</int> <int id="y">-7</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">45</int> <int id="h">51</int> <str id="name">patch_mossy_1_1289253054094</str> </object> <object id="patch_mossy_1_1289253070916"> <int id="w">258</int> <int id="r">2</int> <int id="x">1008</int> <int id="y">32</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">48</int> <int id="h">59</int> <str id="name">patch_mossy_1_1289253070916</str> </object> <object id="light_shafts_1289257283496"> <int id="w">761</int> <int id="x">512</int> <int id="y">-56</int> <str id="sprite_class">light_shafts</str> <int id="z">0</int> <int id="h">724</int> <str id="name">light_shafts_1289257283496</str> </object> <object id="patch_mossy_1_1289252903365"> <int id="w">145</int> <int id="r">-9</int> <int id="x">148</int> <int id="y">-94</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">38</int> <int id="h">35</int> <str id="name">patch_mossy_1_1289252903365</str> </object> <object id="bush_3_1289252602658"> <int id="w">283</int> <int id="r">3</int> <int id="x">-1187</int> <int id="y">-72</int> <str id="sprite_class">bush_3</str> <int id="z">21</int> <int id="h">100</int> <str id="name">bush_3_1289252602658</str> </object> <object id="tree_stack_base_1289264138810"> <int id="w">229</int> <int id="x">-187</int> <int id="y">-44</int> <str id="sprite_class">tree_stack_base</str> <int id="z">53</int> <int id="h">410</int> <str id="name">tree_stack_base_1289264138810</str> </object> <object id="bush_3_1289252121601"> <int id="w">283</int> <int id="x">-368</int> <int id="y">-78</int> <str id="sprite_class">bush_3</str> <int id="z">4</int> <int id="h">100</int> <str id="name">bush_3_1289252121601</str> </object> <object id="dirt_platform_long_1289251679627"> <int id="w">955</int> <int id="x">530</int> <int id="y">8</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">8</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251679627</str> </object> <object id="tree_coniferous_fg_2_1289251762499"> <int id="w">679</int> <int id="x">870</int> <int id="y">-36</int> <str id="sprite_class">tree_coniferous_fg_2</str> <int id="z">18</int> <int id="h">1464</int> <str id="name">tree_coniferous_fg_2_1289251762499</str> </object> <object id="dirt_platform_long_1289251699814"> <int id="w">955</int> <int id="x">1082</int> <int id="y">0</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">13</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251699814</str> </object> <object id="patch_mossy_1_1289252912103"> <int id="w">182</int> <int id="r">-9</int> <int id="x">48</int> <int id="y">-70</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">37</int> <int id="h">43</int> <str id="name">patch_mossy_1_1289252912103</str> </object> <object id="tree_stack_branch_4_1289264174551"> <int id="w">217</int> <int id="x">-47</int> <int id="y">-351</int> <str id="sprite_class">tree_stack_branch_4</str> <int id="z">61</int> <int id="h">102</int> <str id="name">tree_stack_branch_4_1289264174551</str> </object> <object id="dirt_platform_long_1289251710447"> <int id="w">955</int> <int id="x">-964</int> <int id="y">-24</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">15</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251710447</str> </object> <object id="patch_mossy_1_1289253063524"> <int id="w">220</int> <int id="r">2</int> <int id="x">978</int> <int id="y">-2</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">46</int> <int id="h">51</int> <str id="name">patch_mossy_1_1289253063524</str> </object> <object id="patch_mossy_1_1289252663794"> <int id="w">145</int> <int id="x">-905</int> <int id="y">-29</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">24</int> <int id="h">35</int> <str id="name">patch_mossy_1_1289252663794</str> </object> <object id="platform_branch_a05_1289264169848"> <int id="w">103</int> <int id="x">-253</int> <int id="y">-344</int> <str id="sprite_class">platform_branch_a05</str> <int id="z">59</int> <int id="h">45</int> <str id="name">platform_branch_a05_1289264169848</str> </object> <object id="dirt_platform_long_1289251691731"> <int id="w">955</int> <int id="x">526</int> <int id="y">-34</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">11</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251691731</str> </object> <object id="patch_mossy_1_1289252673006"> <int id="w">145</int> <int id="x">-1192</int> <int id="y">-36</int> <str id="sprite_class">patch_mossy_1</str> <int id="z">27</int> <int id="h">35</int> <str id="name">patch_mossy_1_1289252673006</str> </object> <object id="dirt_platform_long_1289251672863"> <int id="w">955</int> <int id="x">-400</int> <int id="y">-12</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">6</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251672863</str> </object> <object id="tree_stack_branch_3_1289264172311"> <int id="w">157</int> <int id="x">-271</int> <int id="y">-538</int> <str id="sprite_class">tree_stack_branch_3</str> <int id="z">60</int> <int id="h">59</int> <str id="name">tree_stack_branch_3_1289264172311</str> </object> <object id="flower_bush_5_1289252189104"> <int id="w">251</int> <int id="x">-214</int> <int id="y">-52</int> <str id="sprite_class">flower_bush_5</str> <int id="z">1</int> <int id="h">107</int> <str id="name">flower_bush_5_1289252189104</str> </object> <object id="dirt_platform_long_1289251659964"> <int id="w">955</int> <int id="x">-394</int> <int id="y">-52</int> <str id="sprite_class">dirt_platform_long</str> <int id="z">5</int> <int id="h">53</int> <str id="name">dirt_platform_long_1289251659964</str> </object> <object id="bush_3_1289252129435"> <int id="w">283</int> <int id="x">-66</int> <int id="y">-46</int> <str id="sprite_class">bush_3</str> <int id="z">3</int> <int id="h">100</int> <str id="name">bush_3_1289252129435</str> </object> <object id="groddle_grass_2_1289252773943"> <int id="w">101</int> <int id="x">-173</int> <int id="y">-35</int> <str id="sprite_class">groddle_grass_2</str> <int id="z">31</int> <int id="h">81</int> <str id="name">groddle_grass_2_1289252773943</str> </object> <object id="groddle_grass_2_1289253008612"> <int id="w">81</int> <int id="x">712</int> <int id="y">-74</int> <str id="sprite_class">groddle_grass_2</str> <int id="z">44</int> <int id="h">65</int> <bool id="h_flip">true</bool> <str id="name">groddle_grass_2_1289253008612</str> </object> <object id="groddle_plant_1_1289253082446"> <int id="w">134</int> <int id="x">871</int> <int id="y">-70</int> <str id="sprite_class">groddle_plant_1</str> <int id="z">49</int> <int id="h">140</int> <str id="name">groddle_plant_1_1289253082446</str> </object> <object id="groddle_plant_1_1289253086498"> <int id="w">101</int> <int id="x">891</int> <int id="y">-63</int> <str id="sprite_class">groddle_plant_1</str> <int id="z">50</int> <int id="h">106</int> <bool id="h_flip">true</bool> <str id="name">groddle_plant_1_1289253086498</str> </object> <object id="groddle_grass_2_1289253013949"> <int id="w">81</int> <int id="x">891</int> <int id="y">-54</int> <str id="sprite_class">groddle_grass_2</str> <int id="z">51</int> <int id="h">65</int> <str id="name">groddle_grass_2_1289253013949</str> </object> <object id="groddle_grass_2_1289252772043"> <int id="w">81</int> <int id="x">-133</int> <int id="y">-38</int> <str id="sprite_class">groddle_grass_2</str> <int id="z">54</int> <int id="h">65</int> <str id="name">groddle_grass_2_1289252772043</str> </object> <object id="groddle_grass_2_1289253005779"> <int id="w">81</int> <int id="x">691</int> <int id="y">-91</int> <str id="sprite_class">groddle_grass_2</str> <int id="z">43</int> <int id="h">65</int> <str id="name">groddle_grass_2_1289253005779</str> </object> <object id="groddle_fern_1_1289253101180"> <int id="w">127</int> <int id="x">978</int> <int id="y">-64</int> <str id="sprite_class">groddle_fern_1</str> <int id="z">52</int> <int id="h">75</int> <str id="name">groddle_fern_1_1289253101180</str> </object> <object id="groddle_fern_1_1289253104313"> <int id="w">127</int> <int id="x">-75</int> <int id="y">-48</int> <str id="sprite_class">groddle_fern_1</str> <int id="z">56</int> <int id="h">75</int> <str id="name">groddle_fern_1_1289253104313</str> </object> </object> <object id="platform_lines"> <object id="_pl1289252325719"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-84</int> <int id="x">156</int> </object> <object id="end"> <int id="y">-112</int> <int id="x">308</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289252311416"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-34</int> <int id="x">-574</int> </object> <object id="end"> <int id="y">-22</int> <int id="x">-422</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289252322286"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-22</int> <int id="x">-422</int> </object> <object id="end"> <int id="y">-22</int> <int id="x">-174</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289252326846"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-112</int> <int id="x">308</int> </object> <object id="end"> <int id="y">-110</int> <int id="x">418</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289252330144"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-26</int> <int id="x">856</int> </object> <object id="end"> <int id="y">-32</int> <int id="x">1249</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289252310117"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-64</int> <int id="x">-1246</int> </object> <object id="end"> <int id="y">-34</int> <int id="x">-574</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289252327878"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-110</int> <int id="x">418</int> </object> <object id="end"> <int id="y">-64</int> <int id="x">634</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289252329026"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-64</int> <int id="x">634</int> </object> <object id="end"> <int id="y">-26</int> <int id="x">856</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289252323579"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-22</int> <int id="x">-174</int> </object> <object id="end"> <int id="y">-84</int> <int id="x">156</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289264246261"> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-757</int> <int id="x">-74</int> </object> <object id="end"> <int id="y">-745</int> <int id="x">74</int> </object> <int id="platform_item_perm">-1</int> </object> </object> <int id="w">2500</int> <object id="ladders"> </object> <object id="platforms"> </object> <object id="doors"> </object> <int id="z">0</int> <int id="h">1000</int> <str id="name">middleground</str> </object> <object id="bg_1"> <int id="w">2250</int> <int id="z">-1</int> <object id="filtersNEW"> <object id="contrast"> <int id="value">-10</int> </object> <object id="tintAmount"> </object> <object id="brightness"> <int id="value">-23</int> </object> <object id="saturation"> <int id="value">-11</int> </object> <object id="blur"> </object> </object> <int id="h">1000</int> <object id="decos"> <object id="bush_2_1289252148087"> <int id="w">222</int> <int id="x">1724</int> <int id="y">930</int> <str id="sprite_class">bush_2</str> <int id="z">9</int> <int id="h">86</int> <str id="name">bush_2_1289252148087</str> </object> <object id="flower_bush_5_1289252623474"> <int id="w">175</int> <int id="x">731</int> <int id="y">905</int> <str id="sprite_class">flower_bush_5</str> <int id="z">20</int> <int id="h">75</int> <str id="name">flower_bush_5_1289252623474</str> </object> <object id="flower_bush_5_1289252621143"> <int id="w">175</int> <int id="x">621</int> <int id="y">917</int> <str id="sprite_class">flower_bush_5</str> <int id="z">19</int> <int id="h">75</int> <str id="name">flower_bush_5_1289252621143</str> </object> <object id="bush_1_1289253030096"> <int id="w">105</int> <int id="x">1295</int> <int id="y">855</int> <str id="sprite_class">bush_1</str> <int id="z">31</int> <int id="h">84</int> <str id="name">bush_1_1289253030096</str> </object> <object id="bush_2_1289252143135"> <int id="w">222</int> <int id="x">760</int> <int id="y">902</int> <str id="sprite_class">bush_2</str> <int id="z">7</int> <int id="h">86</int> <str id="name">bush_2_1289252143135</str> </object> <object id="bush_1_1289253033429"> <int id="w">105</int> <int id="x">452</int> <int id="y">854</int> <str id="sprite_class">bush_1</str> <int id="z">32</int> <int id="h">84</int> <str id="name">bush_1_1289253033429</str> </object> <object id="dirt_mound_1_1289252257703"> <int id="w">622</int> <int id="x">652</int> <int id="y">984</int> <str id="sprite_class">dirt_mound_1</str> <int id="z">12</int> <int id="h">126</int> <str id="name">dirt_mound_1_1289252257703</str> </object> <object id="tree_stack_leafy_1_1289264104760"> <int id="w">596</int> <int id="x">1562</int> <int id="y">185</int> <str id="sprite_class">tree_stack_leafy_1</str> <int id="z">37</int> <int id="h">184</int> <str id="name">tree_stack_leafy_1_1289264104760</str> </object> <object id="tree_stack_base_4_1289252726276"> <int id="w">448</int> <int id="x">1521</int> <int id="y">895</int> <str id="sprite_class">tree_stack_base_4</str> <int id="z">23</int> <int id="h">339</int> <str id="name">tree_stack_base_4_1289252726276</str> </object> <object id="pinecluster_1_1289252270049"> <int id="w">702</int> <int id="x">40</int> <int id="y">870</int> <str id="sprite_class">pinecluster_1</str> <int id="z">13</int> <int id="h">509</int> <str id="name">pinecluster_1_1289252270049</str> </object> <object id="bush_3_1289252757808"> <int id="w">283</int> <int id="x">948</int> <int id="y">886</int> <str id="sprite_class">bush_3</str> <int id="z">26</int> <int id="h">100</int> <str id="name">bush_3_1289252757808</str> </object> <object id="dirt_mound_1_1289252369114"> <int id="w">780</int> <int id="x">1124</int> <int id="y">942</int> <str id="sprite_class">dirt_mound_1</str> <int id="z">17</int> <int id="h">139</int> <str id="name">dirt_mound_1_1289252369114</str> </object> <object id="light_shafts_1289253405459"> <int id="w">761</int> <int id="x">1507</int> <int id="y">938</int> <str id="sprite_class">light_shafts</str> <int id="z">35</int> <int id="h">724</int> <str id="name">light_shafts_1289253405459</str> </object> <object id="mound_dirt_4_1289251943687"> <int id="w">499</int> <int id="x">736</int> <int id="y">940</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">3</int> <int id="h">190</int> <str id="name">mound_dirt_4_1289251943687</str> </object> <object id="bush_3_1289252753702"> <int id="w">283</int> <int id="x">1668</int> <int id="y">930</int> <str id="sprite_class">bush_3</str> <int id="z">25</int> <int id="h">100</int> <str id="name">bush_3_1289252753702</str> </object> <object id="tree_coniferous_fg_1_1289252281427"> <int id="w">633</int> <int id="x">84</int> <int id="y">904</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">14</int> <int id="h">1406</int> <str id="name">tree_coniferous_fg_1_1289252281427</str> </object> <object id="flower_bush_5_1289252626550"> <int id="w">175</int> <int id="x">859</int> <int id="y">894</int> <str id="sprite_class">flower_bush_5</str> <int id="z">21</int> <int id="h">75</int> <str id="name">flower_bush_5_1289252626550</str> </object> <object id="bush_3_1289252748632"> <int id="w">283</int> <int id="x">1787</int> <int id="y">893</int> <str id="sprite_class">bush_3</str> <int id="z">24</int> <int id="h">100</int> <str id="name">bush_3_1289252748632</str> </object> <object id="dirt_mound_1_1289252378821"> <int id="w">780</int> <int id="x">1518</int> <int id="y">946</int> <str id="sprite_class">dirt_mound_1</str> <int id="z">18</int> <int id="h">139</int> <str id="name">dirt_mound_1_1289252378821</str> </object> <object id="tree_bare_thin_1_1289253318820"> <int id="w">229</int> <int id="x">1282</int> <int id="y">925</int> <str id="sprite_class">tree_bare_thin_1</str> <int id="z">0</int> <int id="h">651</int> <str id="name">tree_bare_thin_1_1289253318820</str> </object> <object id="bush_2_1289252140899"> <int id="w">222</int> <int id="x">650</int> <int id="y">918</int> <str id="sprite_class">bush_2</str> <int id="z">6</int> <int id="h">86</int> <str id="name">bush_2_1289252140899</str> </object> <object id="tree_stack_trunk_1289252733876"> <int id="w">88</int> <int id="x">1524</int> <int id="y">612</int> <str id="sprite_class">tree_stack_trunk</str> <int id="z">2</int> <int id="h">701</int> <str id="name">tree_stack_trunk_1289252733876</str> </object> <object id="tree_bare_thin_1_1289253307684"> <int id="w">276</int> <int id="x">543</int> <int id="y">930</int> <str id="sprite_class">tree_bare_thin_1</str> <int id="z">34</int> <int id="h">784</int> <str id="name">tree_bare_thin_1_1289253307684</str> </object> <object id="bush_2_1289252993229"> <int id="w">196</int> <int id="x">1205</int> <int id="y">847</int> <str id="sprite_class">bush_2</str> <int id="z">28</int> <int id="h">76</int> <str id="name">bush_2_1289252993229</str> </object> <object id="tree_coniferous_fg_1_1289252710787"> <int id="w">513</int> <int id="x">1075</int> <int id="y">872</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">22</int> <int id="h">1140</int> <str id="name">tree_coniferous_fg_1_1289252710787</str> </object> <object id="mound_dirt_3_1289251952124"> <int id="w">294</int> <int id="x">2220</int> <int id="y">962</int> <str id="sprite_class">mound_dirt_3</str> <int id="z">5</int> <int id="h">206</int> <str id="name">mound_dirt_3_1289251952124</str> </object> <object id="bush_3_1289252761427"> <int id="w">283</int> <int id="x">1132</int> <int id="y">917</int> <str id="sprite_class">bush_3</str> <int id="z">29</int> <int id="h">100</int> <str id="name">bush_3_1289252761427</str> </object> <object id="flower_bush_5_1289252617292"> <int id="w">175</int> <int id="x">524</int> <int id="y">893</int> <str id="sprite_class">flower_bush_5</str> <int id="z">33</int> <int id="h">75</int> <str id="name">flower_bush_5_1289252617292</str> </object> <object id="tree_coniferous_fg_1_1289253195268"> <int id="w">513</int> <int id="x">940</int> <int id="y">943</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">1</int> <int id="h">1140</int> <str id="name">tree_coniferous_fg_1_1289253195268</str> </object> <object id="dirt_mound_1_1289252245177"> <int id="w">622</int> <int id="x">38</int> <int id="y">898</int> <str id="sprite_class">dirt_mound_1</str> <int id="z">10</int> <int id="h">126</int> <str id="name">dirt_mound_1_1289252245177</str> </object> <object id="mound_dirt_4_1289251948966"> <int id="w">499</int> <int id="x">998</int> <int id="y">1036</int> <str id="sprite_class">mound_dirt_4</str> <int id="z">4</int> <int id="h">190</int> <str id="name">mound_dirt_4_1289251948966</str> </object> <object id="tree_coniferous_fg_1_1289252287470"> <int id="w">633</int> <int id="x">344</int> <int id="y">926</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="z">15</int> <int id="h">1406</int> <str id="name">tree_coniferous_fg_1_1289252287470</str> </object> <object id="tree_coniferous_fg_2_1289264081967"> <int id="w">679</int> <int id="x">809</int> <int id="y">972</int> <str id="sprite_class">tree_coniferous_fg_2</str> <int id="z">36</int> <int id="h">1464</int> <str id="name">tree_coniferous_fg_2_1289264081967</str> </object> <object id="dirt_mound_1_1289252255032"> <int id="w">622</int> <int id="x">352</int> <int id="y">944</int> <str id="sprite_class">dirt_mound_1</str> <int id="z">11</int> <int id="h">126</int> <str id="name">dirt_mound_1_1289252255032</str> </object> <object id="tree_coniferous_fg_2_1289252299700"> <int id="w">679</int> <int id="x">242</int> <int id="y">972</int> <str id="sprite_class">tree_coniferous_fg_2</str> <int id="z">16</int> <int id="h">1464</int> <str id="name">tree_coniferous_fg_2_1289252299700</str> </object> <object id="bush_2_1289252145252"> <int id="w">222</int> <int id="x">1026</int> <int id="y">942</int> <str id="sprite_class">bush_2</str> <int id="z">8</int> <int id="h">86</int> <str id="name">bush_2_1289252145252</str> </object> <object id="tree_stack_leafy_1_1289264107693"> <int id="w">414</int> <int id="x">1515</int> <int id="y">391</int> <str id="sprite_class">tree_stack_leafy_1</str> <int id="z">38</int> <int id="h">128</int> <bool id="h_flip">true</bool> <str id="name">tree_stack_leafy_1_1289264107693</str> </object> <object id="groddle_grass_2_1289253021414"> <int id="w">81</int> <int id="x">2027</int> <int id="y">863</int> <str id="sprite_class">groddle_grass_2</str> <int id="z">30</int> <int id="h">65</int> <str id="name">groddle_grass_2_1289253021414</str> </object> <object id="groddle_grass_2_1289252766277"> <int id="w">81</int> <int id="x">1001</int> <int id="y">888</int> <str id="sprite_class">groddle_grass_2</str> <int id="z">27</int> <int id="h">65</int> <str id="name">groddle_grass_2_1289252766277</str> </object> </object> <str id="name">bg_1</str> </object> <object id="sky"> <int id="w">1667</int> <int id="z">-3</int> <object id="filtersNEW"> <object id="contrast"> </object> <object id="tintAmount"> </object> <object id="brightness"> </object> <object id="saturation"> </object> <object id="blur"> </object> </object> <int id="h">1000</int> <object id="decos"> <object id="pinehills_2_1289251790599"> <int id="w">1130</int> <int id="x">365</int> <int id="y">944</int> <str id="sprite_class">pinehills_2</str> <int id="z">4</int> <int id="h">341</int> <str id="name">pinehills_2_1289251790599</str> </object> <object id="pinehills_distant_1_1289251605980"> <int id="w">1020</int> <int id="x">61</int> <int id="y">850</int> <str id="sprite_class">pinehills_distant_1</str> <int id="z">1</int> <int id="h">334</int> <str id="name">pinehills_distant_1_1289251605980</str> </object> <object id="mountain_trees_darker_1_1289251588037"> <int id="w">1010</int> <int id="x">773</int> <int id="y">778</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="z">0</int> <int id="h">429</int> <str id="name">mountain_trees_darker_1_1289251588037</str> </object> <object id="pinehills_distant_1_1289251611030"> <int id="w">1020</int> <int id="x">765</int> <int id="y">892</int> <str id="sprite_class">pinehills_distant_1</str> <int id="z">2</int> <int id="h">334</int> <str id="name">pinehills_distant_1_1289251611030</str> </object> <object id="pinehills_2_1289251795230"> <int id="w">1608</int> <int id="x">1276</int> <int id="y">844</int> <str id="sprite_class">pinehills_2</str> <int id="z">5</int> <int id="h">564</int> <str id="name">pinehills_2_1289251795230</str> </object> <object id="pinehills_distant_1_1289251614013"> <int id="w">1020</int> <int id="x">1497</int> <int id="y">886</int> <str id="sprite_class">pinehills_distant_1</str> <int id="z">3</int> <int id="h">334</int> <str id="name">pinehills_distant_1_1289251614013</str> </object> </object> <str id="name">sky</str> </object> </object> <str id="music_file"></str> <str id="tsid">GLICFILAMTI11QV</str> <object id="gradient"> <str id="bottom">FEF40B</str> <str id="top">FFD8C4</str> </object> <int id="ground_y">0</int> <null id="img_file_versioned"/> <object id="sources"> <int id="LLI2V0UN7RD1T2J">1</int> <int id="LLI2HVHUM4F16B0">1</int> </object> <null id="loading_label"/> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1304704804.swf</str> <null id="physics"/> <int id="rookable_type">0</int> </object> </game_object>
50,071
Common Lisp
.l
1,533
26.026093
213
0.549405
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0f2038c870f4ef82dea35528c889d9e4e8df6220a0b0ec0422630fc9c0d23562
20,851
[ -1 ]
20,852
LLICFILAMTI11QV.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/forest/LLICFILAMTI11QV.xml
<game_object tsid="LLICFILAMTI11QV" ts="1364245820669" label="Scribe&apos;s Weald" class_tsid="town" hubid="56" moteid="9" letime="3ld2gab5" rbtime="25h9uak4" upd_gs="gs6" load_time="2013-03-25 09:37:13.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-07-21/LLICFILAMTI11QV_loading_1311272820.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <bool id="jobs_is_locked">false</bool> <object id="image"> <str id="url">streets/2011-07-21/LLICFILAMTI11QV_main_1311272822.jpg</str> <int id="w">720</int> <int id="h">288</int> </object> <object id="action_requests"> </object> <object id="rook_status"> <bool id="rooked">false</bool> </object> <object id="delayed_sounds"> </object> <object id="keys"> </object> <object id="qurazy"> </object> <object id="incantations"> <object id="PHFBAN7Q4TC22VA"> <int id="step">1</int> <int id="ts">1350436166</int> </object> <object id="PUVQ9CP8K9G2F2M"> <int id="step">1</int> <int id="ts">1350436209</int> </object> <object id="PUVI4EDKGAJ207T"> <int id="step">2</int> <int id="ts">1350436225</int> </object> <object id="PUVVILGJCUF27V0"> <int id="step">1</int> <int id="ts">1350436273</int> </object> <object id="PHFKVVPRI2D2CGO"> <int id="step">1</int> <int id="ts">1350436893</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">1</int> <int id="ts">1350436915</int> </object> <object id="PHFC713TM2D22UF"> <int id="step">2</int> <int id="ts">1350436916</int> </object> <object id="PIF3P1905R61D2U"> <int id="step">1</int> <int id="ts">1350437431</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">1</int> <int id="ts">1350437495</int> </object> <object id="PCRG4AJDLNS1TTP"> <int id="step">2</int> <int id="ts">1350437496</int> </object> <object id="PUV1T4MF4FF2Q8S"> <int id="step">3</int> <int id="ts">1350437496</int> </object> <object id="PHFK48ANI2D2F12"> <int id="step">1</int> <int id="ts">1350437559</int> </object> <object id="PHFIPVH38TC2PIV"> <int id="step">1</int> <int id="ts">1350437724</int> </object> <object id="PUV78NOA0G73MM9"> <int id="step">2</int> <int id="ts">1350437733</int> </object> <object id="PUVG1MUCTA93KMM"> <int id="step">1</int> <int id="ts">1350438351</int> </object> <object id="PUVPNRE5ND83N2V"> <int id="step">2</int> <int id="ts">1350438354</int> </object> <object id="PA9JPU1Q9PD223O"> <int id="step">1</int> <int id="ts">1350438621</int> </object> <object id="PHVVO7CASCB21O5"> <int id="step">2</int> <int id="ts">1350438625</int> </object> <object id="PIFT391SQ363BIC"> <int id="step">1</int> <int id="ts">1350439198</int> </object> <object id="PHV2INV1M3A22CS"> <int id="step">2</int> <int id="ts">1350439209</int> </object> <object id="PUVMCBIC7JG2RDN"> <int id="step">1</int> <int id="ts">1350439519</int> </object> <object id="PUVCK0THA3J2RTL"> <int id="step">2</int> <int id="ts">1350439530</int> </object> <object id="PUVJ86DSLSM2BDC"> <int id="step">3</int> <int id="ts">1350439532</int> </object> <object id="PUVPBGSGGI9363H"> <int id="step">1</int> <int id="ts">1350439545</int> </object> <object id="PUVGV2K6PBG24Q2"> <int id="step">1</int> <int id="ts">1350439573</int> </object> <object id="PCRCFKKOGUJ1Q7C"> <int id="step">1</int> <int id="ts">1350439995</int> </object> <object id="PHV7VR28QG822HB"> <int id="step">1</int> <int id="ts">1350440591</int> </object> <object id="PUV10ALD09H22LB"> <int id="step">2</int> <int id="ts">1350440600</int> </object> <object id="PUVH3TQBJS63O8M"> <int id="step">3</int> <int id="ts">1350440611</int> </object> <object id="PCR45R93AUT1EMH"> <int id="step">1</int> <int id="ts">1350440761</int> </object> <object id="PCRFPSQPKNS1E2I"> <int id="step">2</int> <int id="ts">1350440777</int> </object> <object id="PIFV7JNC6163LDM"> <int id="step">1</int> <int id="ts">1350441219</int> </object> <object id="PIF1AB3PVG63M4B"> <int id="step">2</int> <int id="ts">1350441856</int> </object> <object id="PHV1AV0JOP62IOS"> <int id="step">1</int> <int id="ts">1350442517</int> </object> <object id="PCRE15VHINS1RJI"> <int id="step">1</int> <int id="ts">1350442623</int> </object> <object id="PHV2N3G3AF825OC"> <int id="step">1</int> <int id="ts">1350443393</int> </object> <object id="PHV2GBROGF82MRS"> <int id="step">2</int> <int id="ts">1350443395</int> </object> <object id="PHVRKEJ8VV22AU3"> <int id="step">1</int> <int id="ts">1350444333</int> </object> <object id="PUVAHGOVSS83RTK"> <int id="step">1</int> <int id="ts">1350444731</int> </object> <object id="PUVTKEDO69G2IAT"> <int id="step">2</int> <int id="ts">1350444742</int> </object> <object id="PUVH3THALJ83OH4"> <int id="step">1</int> <int id="ts">1350444991</int> </object> <object id="PUVFEENQHQ8386F"> <int id="step">1</int> <int id="ts">1350445102</int> </object> <object id="PCRDURAIHUM1915"> <int id="step">1</int> <int id="ts">1350445805</int> </object> <object id="PUV3JN5MTIA31QP"> <int id="step">1</int> <int id="ts">1350446037</int> </object> <object id="PUVMLF2B4IB31C8"> <int id="step">1</int> <int id="ts">1350446966</int> </object> <object id="PUV160O6FLB3KF2"> <int id="step">2</int> <int id="ts">1350446969</int> </object> <object id="PUVBNT8S0V93PMS"> <int id="step">3</int> <int id="ts">1350446970</int> </object> <object id="PHF7FAIS10D205I"> <int id="step">1</int> <int id="ts">1350446971</int> </object> <object id="PHFS0IK652D2K0L"> <int id="step">2</int> <int id="ts">1350446978</int> </object> <object id="PUV6RTNUBA9355U"> <int id="step">3</int> <int id="ts">1350446983</int> </object> <object id="PHVV60T1DI829GR"> <int id="step">1</int> <int id="ts">1350447099</int> </object> <object id="PM1EMRJKJ4027KO"> <int id="step">1</int> <int id="ts">1350447437</int> </object> <object id="PUV86EDVVOE2SJG"> <int id="step">1</int> <int id="ts">1350447813</int> </object> <object id="PUVN8LR3HQ63GE4"> <int id="step">2</int> <int id="ts">1350447817</int> </object> <object id="PUVT527JACG2A1Q"> <int id="step">3</int> <int id="ts">1350447819</int> </object> <object id="PUV2PCFUPSF2NBE"> <int id="step">1</int> <int id="ts">1350450118</int> </object> <object id="PUVFH6OPFTF2LF6"> <int id="step">2</int> <int id="ts">1350450128</int> </object> <object id="PLI16FSFK2I91"> <int id="step">1</int> <int id="ts">1350450583</int> </object> <object id="PUVERUQUIIJ2TCI"> <int id="step">2</int> <int id="ts">1350450590</int> </object> <object id="PA97I2RED7E2KE2"> <int id="step">3</int> <int id="ts">1350450591</int> </object> <object id="PHV3EC8AOK42KO4"> <int id="step">1</int> <int id="ts">1350450598</int> </object> <object id="PHF9I9M891D271B"> <int id="step">1</int> <int id="ts">1350451042</int> </object> <object id="PLI10TT96BL3U"> <int id="step">1</int> <int id="ts">1350451462</int> </object> <object id="PDOEJ4GPT3V2MIL"> <int id="step">2</int> <int id="ts">1350451469</int> </object> <object id="PHFQKPSCE2D2HQ2"> <int id="step">1</int> <int id="ts">1350452057</int> </object> <object id="PA962257UKD2G59"> <int id="step">2</int> <int id="ts">1350452060</int> </object> <object id="PUVACO56KHA3S5O"> <int id="step">3</int> <int id="ts">1350452062</int> </object> <object id="PUVI8DSMIJB371E"> <int id="step">1</int> <int id="ts">1350452604</int> </object> <object id="PUVAGGK1L1A3SGM"> <int id="step">2</int> <int id="ts">1350452616</int> </object> <object id="PUVR4V4PQ383K55"> <int id="step">3</int> <int id="ts">1350452640</int> </object> <object id="PUV2QHVJTJB3VRK"> <int id="step">1</int> <int id="ts">1350453769</int> </object> <object id="PHVNJ4LKTQ626HM"> <int id="step">2</int> <int id="ts">1350453771</int> </object> <object id="PUV659ESQ8B34J3"> <int id="step">3</int> <int id="ts">1350453773</int> </object> <object id="PUV3B39J16B3DHQ"> <int id="step">1</int> <int id="ts">1350454267</int> </object> <object id="PA9T8Q9677E20UC"> <int id="step">2</int> <int id="ts">1350454546</int> </object> <object id="PUVDIUKJTQ636BN"> <int id="step">1</int> <int id="ts">1350454558</int> </object> <object id="PIFHIBOVJ6632DF"> <int id="step">2</int> <int id="ts">1350455236</int> </object> <object id="PHFAPDJUQQC23Q6"> <int id="step">1</int> <int id="ts">1350456706</int> </object> <object id="PHFVCRK8V4D22NS"> <int id="step">2</int> <int id="ts">1350456728</int> </object> <object id="PA9UP7RCAUD2PD6"> <int id="step">1</int> <int id="ts">1350457423</int> </object> <object id="PM1GBN2Q1H12041"> <int id="step">2</int> <int id="ts">1350457426</int> </object> <object id="PHFSRKE6T0D2GH8"> <int id="step">1</int> <int id="ts">1350458967</int> </object> <object id="PUVFUD1UJRE26GD"> <int id="step">2</int> <int id="ts">1350459072</int> </object> <object id="PUVTV724F7D2G1V"> <int id="step">1</int> <int id="ts">1350459486</int> </object> <object id="PHFAGTM9BFD2VCF"> <int id="step">2</int> <int id="ts">1350459504</int> </object> <object id="PUVT5TK2G6D28QU"> <int id="step">1</int> <int id="ts">1350459741</int> </object> <object id="PUVP6JUU8JB3FNS"> <int id="step">1</int> <int id="ts">1350459789</int> </object> <object id="PUV1UL7EGC83HM4"> <int id="step">2</int> <int id="ts">1350459796</int> </object> <object id="PHF9L3JP5BD2R6D"> <int id="step">1</int> <int id="ts">1350461110</int> </object> <object id="PA9QA8RBRPD22NK"> <int id="step">2</int> <int id="ts">1350461112</int> </object> <object id="PHFCA0VG30D2LVR"> <int id="step">1</int> <int id="ts">1350461437</int> </object> <object id="PUV4MP5FJG83KA7"> <int id="step">1</int> <int id="ts">1350461915</int> </object> <object id="PIFHCQSRUS53B6M"> <int id="step">1</int> <int id="ts">1350462900</int> </object> <object id="PM1JV75OM4028DU"> <int id="step">2</int> <int id="ts">1350462906</int> </object> <object id="PUVGN6Q8U9E2I83"> <int id="step">1</int> <int id="ts">1350463663</int> </object> <object id="PUVBJOS4IQE2HT8"> <int id="step">2</int> <int id="ts">1350463665</int> </object> <object id="PUVLDBAAO673ORE"> <int id="step">3</int> <int id="ts">1350463666</int> </object> <object id="PHFJBTLF5FD2O48"> <int id="step">1</int> <int id="ts">1350463763</int> </object> <object id="PUVS2S2R0MB3R01"> <int id="step">1</int> <int id="ts">1350463859</int> </object> <object id="PUVO3SFBBIB3TOP"> <int id="step">2</int> <int id="ts">1350463862</int> </object> <object id="PUVSGG1ULJE2EBJ"> <int id="step">3</int> <int id="ts">1350463869</int> </object> <object id="PUVFIH9AJ9G2RBL"> <int id="step">1</int> <int id="ts">1350464390</int> </object> <object id="PIF9573ICE63AGC"> <int id="step">2</int> <int id="ts">1350464498</int> </object> <object id="PUVEV4TIGDE2EJG"> <int id="step">1</int> <int id="ts">1350464749</int> </object> <object id="PA9U8326U8I29KM"> <int id="step">2</int> <int id="ts">1350464751</int> </object> <object id="PUVJ9R0NOAJ23LH"> <int id="step">3</int> <int id="ts">1350464754</int> </object> <object id="PA98M6U46RD2JJH"> <int id="step">1</int> <int id="ts">1350465596</int> </object> <object id="PCRDSUEFINS1EJ1"> <int id="step">1</int> <int id="ts">1350466258</int> </object> <object id="PUVSSI14VTA3NGM"> <int id="step">1</int> <int id="ts">1350468517</int> </object> <object id="PUVH9GAIDLB3NDN"> <int id="step">2</int> <int id="ts">1350468538</int> </object> <object id="PUVN0HRS7F93P69"> <int id="step">1</int> <int id="ts">1350470316</int> </object> <object id="PHF31BRLV4D27G0"> <int id="step">2</int> <int id="ts">1350472159</int> </object> <object id="PUVLICHS6LB3QE3"> <int id="step">3</int> <int id="ts">1350472183</int> </object> <object id="PUV5RUVCQLG2OO1"> <int id="step">1</int> <int id="ts">1350475535</int> </object> <object id="PUV3G7UGUF933VH"> <int id="step">1</int> <int id="ts">1350475647</int> </object> <object id="PHVU6JQNUKB2DJF"> <int id="step">2</int> <int id="ts">1350475649</int> </object> <object id="PHFIS28II2D239P"> <int id="step">3</int> <int id="ts">1350475651</int> </object> <object id="PUV5J1BUC2B3UGP"> <int id="step">1</int> <int id="ts">1350475658</int> </object> <object id="PHFVN17DD0D2G3V"> <int id="step">2</int> <int id="ts">1350475662</int> </object> <object id="PUV89C2QT5O20OL"> <int id="step">1</int> <int id="ts">1350478156</int> </object> <object id="PIF4FNTP4FIBE"> <int id="step">2</int> <int id="ts">1350478162</int> </object> <object id="PUVJ14GQK8D2BAC"> <int id="step">1</int> <int id="ts">1350481039</int> </object> <object id="PHVAIDE6OA52QGG"> <int id="step">2</int> <int id="ts">1350481048</int> </object> <object id="PUVPHMR075D2SNE"> <int id="step">1</int> <int id="ts">1350485104</int> </object> <object id="PUVP6M2EH9G2Q22"> <int id="step">1</int> <int id="ts">1350486109</int> </object> <object id="PA920DBMG0E2ASB"> <int id="step">2</int> <int id="ts">1350486133</int> </object> <object id="PIF12MTPPQH5L"> <int id="step">1</int> <int id="ts">1350486917</int> </object> <object id="PCRL8MVRSNS1B0G"> <int id="step">1</int> <int id="ts">1350489462</int> </object> <object id="PUVMCPKNL0F22UT"> <int id="step">2</int> <int id="ts">1350491773</int> </object> <object id="PHF34P8T35D2E8S"> <int id="step">1</int> <int id="ts">1350492866</int> </object> <object id="PUVTNI1FJH93NPE"> <int id="step">1</int> <int id="ts">1350493667</int> </object> <object id="PUV9QUSLBJE2G5N"> <int id="step">2</int> <int id="ts">1350493705</int> </object> <object id="PUV7N3P3I4J2PS8"> <int id="step">1</int> <int id="ts">1350493960</int> </object> <object id="PA9252IP5UD21NG"> <int id="step">1</int> <int id="ts">1350494389</int> </object> <object id="PNVK4E8SE8E2NH0"> <int id="step">1</int> <int id="ts">1350495156</int> </object> <object id="PHV6C84JR2821C3"> <int id="step">1</int> <int id="ts">1350496065</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">2</int> <int id="ts">1350496066</int> </object> <object id="PHF7GOMJS1D24NC"> <int id="step">3</int> <int id="ts">1350496067</int> </object> <object id="PUV49PF4QVF2OMB"> <int id="step">1</int> <int id="ts">1350496244</int> </object> <object id="PUV9TAHHD9G289O"> <int id="step">2</int> <int id="ts">1350496247</int> </object> <object id="PUVLFFUVRV83V9M"> <int id="step">3</int> <int id="ts">1350496266</int> </object> <object id="PCRU680J7UM14HN"> <int id="step">1</int> <int id="ts">1350498043</int> </object> <object id="PUV1HGTOH4A3IR9"> <int id="step">1</int> <int id="ts">1350498460</int> </object> <object id="PUVA82F85D73SQ2"> <int id="step">2</int> <int id="ts">1350499357</int> </object> <object id="PUVUCJ1BR4A3NOC"> <int id="step">3</int> <int id="ts">1350499751</int> </object> <object id="PA93S1AM4RD29RK"> <int id="step">1</int> <int id="ts">1350501046</int> </object> <object id="PHF1NIIAP1D2RI3"> <int id="step">1</int> <int id="ts">1350501421</int> </object> <object id="PHVUL3BGS3A2DQO"> <int id="step">2</int> <int id="ts">1350501424</int> </object> <object id="PUVU9VTHCTE2J62"> <int id="step">1</int> <int id="ts">1350501753</int> </object> <object id="PUV9QFOV3ME2DOV"> <int id="step">2</int> <int id="ts">1350501756</int> </object> <object id="PUVT8691EI93FIR"> <int id="step">3</int> <int id="ts">1350501758</int> </object> <object id="PHVE5USE9P62UL5"> <int id="step">1</int> <int id="ts">1350502528</int> </object> <object id="PUVUVN6H8F934GS"> <int id="step">2</int> <int id="ts">1350502531</int> </object> <object id="PUVBF5Q7E7830LP"> <int id="step">3</int> <int id="ts">1350502532</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">1</int> <int id="ts">1350502546</int> </object> <object id="PUVA3B9BG5D2J8A"> <int id="step">1</int> <int id="ts">1350502879</int> </object> <object id="PA9UFDR4JJD224N"> <int id="step">2</int> <int id="ts">1350502888</int> </object> <object id="PUVBIORRBF93J9R"> <int id="step">1</int> <int id="ts">1350502904</int> </object> <object id="PUVA2RGKSPK263G"> <int id="step">2</int> <int id="ts">1350502919</int> </object> <object id="PUVOPL6QDU93MJH"> <int id="step">1</int> <int id="ts">1350505464</int> </object> <object id="PHFMI32SK4D2U1L"> <int id="step">2</int> <int id="ts">1350505858</int> </object> <object id="PIF5A6G3R66382H"> <int id="step">1</int> <int id="ts">1350507033</int> </object> <object id="PHF7NSKA3AD2PU5"> <int id="step">1</int> <int id="ts">1350508002</int> </object> <object id="PUV76BIV41O20KD"> <int id="step">2</int> <int id="ts">1350509354</int> </object> <object id="PUV224T8NPM2TPN"> <int id="step">3</int> <int id="ts">1350509931</int> </object> <object id="PHV5AI7DGI72EMV"> <int id="step">1</int> <int id="ts">1350510066</int> </object> <object id="PA9O3QNPFID2ENR"> <int id="step">2</int> <int id="ts">1350511374</int> </object> <object id="PUVARSVU9IB3PHR"> <int id="step">1</int> <int id="ts">1350511464</int> </object> <object id="PHVSCM4AFS627EF"> <int id="step">1</int> <int id="ts">1350512683</int> </object> <object id="PHF1GCHBE4D2KLM"> <int id="step">1</int> <int id="ts">1350513930</int> </object> <object id="PHVIBHO8RN02DFH"> <int id="step">1</int> <int id="ts">1350513967</int> </object> <object id="PHF9U3UPMVC26VO"> <int id="step">2</int> <int id="ts">1350513972</int> </object> <object id="PHVK2FSFOT22C3I"> <int id="step">1</int> <int id="ts">1350514160</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">2</int> <int id="ts">1350515743</int> </object> <object id="PUV7Q0QGO773EUS"> <int id="step">1</int> <int id="ts">1350515784</int> </object> <object id="PIF4EF0L5OKUTP"> <int id="step">2</int> <int id="ts">1350515788</int> </object> <object id="PUVNP7LHL4733O9"> <int id="step">1</int> <int id="ts">1350516127</int> </object> <object id="PHVEQLLACJ32T3A"> <int id="step">1</int> <int id="ts">1350516985</int> </object> <object id="PHFVB7UGK2D283T"> <int id="step">2</int> <int id="ts">1350516993</int> </object> <object id="PIFIPU7QSO53BHU"> <int id="step">1</int> <int id="ts">1350517809</int> </object> <object id="PUVFEL3UR8B35I8"> <int id="step">1</int> <int id="ts">1350517849</int> </object> <object id="PUVPJIH5OGA3EL4"> <int id="step">1</int> <int id="ts">1350519112</int> </object> <object id="PUV51270OC930IE"> <int id="step">1</int> <int id="ts">1350519407</int> </object> <object id="PUV4KL8IOKG205V"> <int id="step">1</int> <int id="ts">1350519561</int> </object> <object id="PUV6VA44QQB3LTV"> <int id="step">2</int> <int id="ts">1350519577</int> </object> <object id="PUVLE608CNB3GA3"> <int id="step">3</int> <int id="ts">1350519729</int> </object> <object id="PUVNIBP02EE2L04"> <int id="step">1</int> <int id="ts">1350519851</int> </object> <object id="PHFBIL9394D2CV7"> <int id="step">2</int> <int id="ts">1350519858</int> </object> <object id="PHFG6RUSF1D2GQU"> <int id="step">1</int> <int id="ts">1350520662</int> </object> <object id="PUVBBEV6LP735IR"> <int id="step">2</int> <int id="ts">1350520663</int> </object> <object id="PHFTTVBJQ2D2PP8"> <int id="step">3</int> <int id="ts">1350520664</int> </object> <object id="PA9I3VQD2VD2L8S"> <int id="step">1</int> <int id="ts">1350520804</int> </object> <object id="PUVBTTFKSVE2QNB"> <int id="step">2</int> <int id="ts">1350521738</int> </object> <object id="PUVNCT5TL5D2BB4"> <int id="step">1</int> <int id="ts">1354914438</int> </object> <object id="PUV8PBHEH5K2E9N"> <int id="step">1</int> <int id="ts">1354915086</int> </object> <object id="PUVFN2LHIHC3LN7"> <int id="step">2</int> <int id="ts">1354915087</int> </object> <object id="PCRAFRDJFUT1PGB"> <int id="step">1</int> <int id="ts">1354915547</int> </object> <object id="PHF3EMI4JDD2EUU"> <int id="step">1</int> <int id="ts">1354916469</int> </object> <object id="PA9TLH9T15E2EVD"> <int id="step">1</int> <int id="ts">1354916570</int> </object> <object id="PHF9LSI6S4D2FTF"> <int id="step">1</int> <int id="ts">1354916585</int> </object> <object id="PUVOV284NNA3T07"> <int id="step">1</int> <int id="ts">1354916956</int> </object> </object> <object id="emotes"> <object id="25-05-23"> </object> <object id="25-05-25"> </object> <object id="25-05-26"> <int id="PHF2VPV503D26FE">1351271039</int> <int id="PUV473G116D2GUS">1351271039</int> <int id="PUVVLIPFM5D2UC5">1351271055</int> <int id="PA9TLH9T15E2EVD">1351271061</int> <int id="PUVFICB3E7D2UAI">1351271198</int> <int id="PUVA2RGKSPK263G">1351271198</int> <int id="PIFSMKNBOG63N0R">1351271204</int> <int id="PUV7DBINAS73IFR">1351271207</int> <int id="PIF3FIHH24636IC">1351271218</int> <int id="PUVJIU4MIIH2R1K">1351271221</int> <int id="PCREFFQ3JNS15CM">1351271228</int> <int id="PDO9SN705UU21C4">1351271250</int> <int id="PUVR7DBV7JG2E14">1351271251</int> <int id="PUVBUB7PT9E2HLL">1351271266</int> <int id="PA9252IP5UD21NG">1351271273</int> <int id="PUVLRIVP6F73JNS">1351271291</int> <int id="PA9SSH8TMRD2VN8">1351271306</int> <int id="PHFPBUKK93D26VU">1351271307</int> <int id="PHVQ095I1K42GFL">1351271308</int> <int id="PHVAI4B3TK82G0N">1351271316</int> <int id="PCRFSEAH3TJ15HS">1351271323</int> <int id="PUV95LJVTHF26QI">1351271417</int> <int id="PHFKA411RVC22P0">1351271419</int> <int id="PHFM0PHNTUC2S8E">1351271461</int> <int id="PUVO7EKBSC93K41">1351271461</int> <int id="PUVQK9NC2CA3UM4">1351271505</int> <int id="PUVUCMK66OE2S7S">1351271507</int> <int id="PA9A2VTBRID23MT">1351271510</int> <int id="PUV17FCT69A3G1E">1351271514</int> <int id="PA9L6LLR3QD2GUH">1351271538</int> <int id="PUVHPFP0RB931UM">1351271616</int> <int id="PHVF31DQRQA2SPR">1351271618</int> <int id="PHV6C84JR2821C3">1351271621</int> <int id="PUVIJ9L2QDE23GC">1351271621</int> <int id="PCR4GK24TCV152E">1351271624</int> <int id="PHVQJ78CUCC2FM3">1351271674</int> <int id="PHFU73UKQ2D2SH5">1351271704</int> <int id="PA9GNHK5C0E23D8">1351271712</int> <int id="PUV50C46PKF2MOK">1351271745</int> <int id="PIFP82ST3M53E5D">1351271769</int> <int id="PA9MHI1O8OD26LA">1351271769</int> <int id="PHF20O01HRC21FP">1351271803</int> <int id="PUV8HU2U3HC37UE">1351271806</int> <int id="PHVVC92PUDC28DN">1351271852</int> <int id="PHFKVVPRI2D2CGO">1351271860</int> <int id="PCRE2VRLINS18V4">1351272059</int> <int id="PHVJR6H2J652Q9K">1351272083</int> <int id="PHFV3DRAV0D23TB">1351272100</int> <int id="PCRPNI20GTJ11UO">1351272113</int> <int id="PUVRHCHA89E23J6">1351272123</int> <int id="PUVKM4SM3993AGR">1351272185</int> <int id="PHVDBBBM9OA2D35">1351272189</int> <int id="PCR6QLN3RVT1329">1351272191</int> <int id="PHFGMBJBA4D21EG">1351272241</int> <int id="PHFA302213D2GRI">1351272243</int> <int id="PCRGUC7F2TM1MT4">1351272245</int> <int id="PUVNL8P6R7F26RP">1351272249</int> <int id="PHFNCFTVB4D2DNN">1351272256</int> <int id="PUVLDPCHFEK2AOQ">1351272282</int> <int id="PUV5EVLD0KF2669">1351272313</int> <int id="PUVBUBE4U5P2A9U">1351272427</int> <int id="PUVOV284NNA3T07">1351272516</int> <int id="PIFLF93LOD63T7I">1351272668</int> <int id="PHFVJO6A4BD2VKU">1351272843</int> <int id="PUVRSHGF4IQ21VO">1351272844</int> <int id="PUVQITRUOHB3CUO">1351272852</int> <int id="PUV39SSI9QG247R">1351272857</int> <int id="PHV5BMDN0P525G3">1351272861</int> <int id="PUVA0VV258C3ROR">1351272881</int> <int id="PM168JRREN12LHU">1351272991</int> <int id="PUV8PBHEH5K2E9N">1351272992</int> <int id="PUVCG9K8U9G24DD">1351273100</int> <int id="PHFSL9FTTBD2JQM">1351273101</int> <int id="PHV2N3G3AF825OC">1351273114</int> <int id="PUV4I22BOHG20KB">1351273121</int> <int id="PCRM9207UNS1D2F">1351273131</int> <int id="PA984LGOCKD26UK">1351273148</int> <int id="PIFEEQICHN53A11">1351273160</int> <int id="PHV7FR190MB2I9S">1351273205</int> <int id="PCRI874MONS12T3">1351273206</int> <int id="PUVJ3DEKJ9G2G2D">1351273218</int> <int id="PUVL0NBHFAC35NH">1351273251</int> <int id="PUV79I5LM7G2ADD">1351273259</int> <int id="PHFEGT1UT2D2SE9">1351273292</int> <int id="PUVSQGDN28C3N83">1351273293</int> <int id="PA9MTSSU4GD26L3">1351273323</int> <int id="PUVBSLNLLEI2KD5">1351273388</int> <int id="PUVKJO4RNLB3SET">1351273402</int> <int id="PA9P7TSVJ1E2UCF">1351273408</int> <int id="PUV6JM9F2MB3HEE">1351273585</int> <int id="PUVG45VUPKB36O3">1351273585</int> <int id="PCRL8MVRSNS1B0G">1351273721</int> <int id="PUV73MEEK2934PF">1351273727</int> <int id="PHFIVA1983D25F9">1351273743</int> <int id="PA93TKPJ66E2SG5">1351273746</int> <int id="PHFRK9P8S0D2MVK">1351273754</int> <int id="PHFINSK9JCD29H5">1351273834</int> <int id="PUVR8CQDK2I2PUF">1351273888</int> <int id="PUVEC3IR9MB3PHK">1351273990</int> <int id="PUVI6B84T1A3D99">1351274007</int> <int id="PUV771P9IME25MS">1351274009</int> <int id="PUVKNHKUAAC34AA">1351274015</int> <int id="PCRDMHR3NDO1FVT">1351274032</int> <int id="PCR825CVE0N1DVT">1351274185</int> <int id="PHFLUP2B34D2O34">1351274187</int> <int id="PUV77FCFC8N26V4">1351274189</int> <int id="PUV3Q3PFL0Q2ON5">1351274217</int> <int id="PHVRJ840M992GJK">1351274349</int> <int id="PUVOA5NB5QB3FRD">1351274350</int> <int id="PHFPRQPJJ2D2NKI">1351274577</int> <int id="PIF37IOVLQ53B17">1351274577</int> <int id="PCRE15VHINS1RJI">1351274577</int> <int id="PUV5FSTRPNF29UT">1351274715</int> <int id="PUVFDC083PE2F30">1351274739</int> <int id="PUVO9GST65D2T6C">1351274742</int> <int id="PHVSCM4AFS627EF">1351274742</int> <int id="PHFM2VTMB4D2M5D">1351274760</int> <int id="PA9PPLUHPJD24UQ">1351274822</int> <int id="PUVO62T54PB3SQP">1351274824</int> <int id="PUVE9D19JOB3P2T">1351274824</int> <int id="PHFS9UM8Q3D2STM">1351274896</int> <int id="PUVG7BUC6OB361D">1351274897</int> <int id="PIF7MRGK2G63VBO">1351275366</int> <int id="PA9VHKNCKQD2LUN">1351275370</int> <int id="PHF7GOMJS1D24NC">1351275372</int> <int id="PHF248O600D2SNR">1351275452</int> <int id="PUVMKHNUCCG2Q76">1351275452</int> <int id="PUVQGGB29P93519">1351275601</int> <int id="PHF31BRLV4D27G0">1351275607</int> <int id="PUVCC56TLB7395A">1351275665</int> <int id="PUVI47VNQ1C3THG">1351275666</int> <int id="PUVLDBAAO673ORE">1351275685</int> <int id="PUV9NRDP5P83ILS">1351275690</int> <int id="PHFENL1QCVC2HDK">1351275692</int> <int id="PA94QV6SBPD25Q4">1351275785</int> <int id="PA9AAQRSQ1E2VC8">1351275832</int> <int id="PUVJO54O12F2NJ3">1351275859</int> <int id="PUV46J90QB73R0R">1351275920</int> <int id="PHVABLN44H22DKA">1351275961</int> <int id="PHF8D44363D2HPS">1351276006</int> <int id="PUV91D8F1NB3VMH">1351276059</int> <int id="PUVA0HSJ7SB33BN">1351276068</int> <int id="PCR44OG2AUT12IH">1351276145</int> <int id="PUV4VSL3EEC3A1B">1351276199</int> <int id="PHVMQ71H0082G9H">1351276199</int> <int id="PHVDI42UF942SOA">1351276613</int> <int id="PUVLMJROMC93TFF">1351276613</int> <int id="PUVVG165URE24OC">1351276616</int> <int id="PUVR0DO8OS93KHU">1351276623</int> <int id="PA98MUCRCKD2EC1">1351276651</int> <int id="PCRHFVUMNNS11OP">1351276653</int> <int id="PUV1QK9Q61C3SF8">1351277292</int> <int id="PHVRLNSOM032AAO">1351277319</int> <int id="PCR4BJU0BUM1TUF">1351277319</int> <int id="PUVN43KAO6D2EQU">1351277321</int> <int id="PHVT2V3P3U22T8R">1351277461</int> <int id="PUV3ICHODBM2GKL">1351277461</int> <int id="PCRN0PG2VNS1BAL">1351277472</int> <int id="PUV7N3P3I4J2PS8">1351277503</int> <int id="PCR8TLDMR7N1AAA">1351277505</int> <int id="PHFBJB377AD29TL">1351277560</int> <int id="PA9F3EHI36E2JIG">1351277838</int> <int id="PUVVG5V8NQ93AQB">1351277920</int> <int id="PUV2KCFCITG2H3Q">1351278134</int> <int id="PUV3JN5MTIA31QP">1351278334</int> <int id="PHF5OTALG4D2QME">1351278336</int> <int id="PIF3P1905R61D2U">1351278432</int> <int id="PHVERIL4RP626NI">1351278495</int> <int id="PUV1U879OTE2HQ6">1351278611</int> <int id="PUVH597T7DC32E1">1351278612</int> <int id="PIF7VJONM463GBI">1351278615</int> <int id="PHVK2DAAO8520EA">1351278927</int> <int id="PUVDH68MDEE2S3E">1351278958</int> <int id="PHVD2F6HEP62SVB">1351279099</int> <int id="PCRJNG7VCDV1MVM">1351279101</int> <int id="PIFQHBL4S563QJT">1351279226</int> <int id="PCR1G5T9M3U1S6V">1351279231</int> <int id="PUVPPE5CM583388">1351279267</int> <int id="PUV8SFPHCQ63CR9">1351279302</int> <int id="PHFVCCQDR3D2FIQ">1351279364</int> <int id="PHVT6D96EL22G4P">1351279529</int> <int id="PIFTG82475631EI">1351279533</int> <int id="PUVRLG7EMCB3VAD">1351279573</int> <int id="PUVI4EDKGAJ207T">1351279574</int> <int id="PM13FQ40B60241T">1351279626</int> <int id="PUVTMVI961G2PNI">1351279839</int> <int id="PUVKHBR4LCB3I8P">1351280062</int> <int id="PIF6E7MR5R61DJ9">1351280180</int> <int id="PUV3OPF597D2D8R">1351280785</int> <int id="PUVG0RDUHUL2RVJ">1351281186</int> <int id="PM1LOQ518N129RP">1351281208</int> <int id="PUVCAJTDPFH203K">1351281410</int> <int id="PA9FUUC2K3E2DRG">1351281420</int> <int id="PUV6GSGSL2I2NP7">1351281662</int> <int id="PUVTST9O8H93EOB">1351281710</int> <int id="PUVIS05FIIA3SBO">1351281774</int> <int id="PHF5CE6O72D2KP3">1351281797</int> <int id="PA9856NM2KD20N0">1351282030</int> <int id="PUV4K2N5AIC3N4T">1351282030</int> <int id="PUV4R7KGJTA3ATK">1351283028</int> <int id="PUVFPTBQU7D2GI3">1351283227</int> <int id="PUVISAR5V7D2CKL">1351283245</int> <int id="PUVUFLB7QHK2OQL">1351283249</int> <int id="PUVOSKG9QRE2KK7">1351283538</int> <int id="PUV2O7J6I9D207V">1351283539</int> <int id="PHVH5L6GPN62JOU">1351283655</int> <int id="PUV766GM4TE2A3Q">1351283966</int> <int id="PIF362UNJH53LQF">1351283966</int> <int id="PUVPTF7N2DG203S">1351283968</int> <int id="PUV3KH2MQSB3LR9">1351284250</int> <int id="PCR91B3UB8N1O3S">1351284252</int> <int id="PUVHPAD7L5N292B">1351284360</int> <int id="PUV4QVT3R5J2ILP">1351285053</int> </object> <object id="25-05-27"> <int id="PUVAL7U6GLB3K6V">1351285291</int> <int id="PA98ONJR2GD2CRB">1351285400</int> <int id="PUV3F8Q8P9D2Q5T">1351285401</int> <int id="PIFF19K9R263QJF">1351285404</int> <int id="PUVP71QTF0F2PB1">1351285428</int> <int id="PCR42DQMSCV1P9O">1351285637</int> <int id="PUV6QB9A35C31SG">1351285640</int> <int id="PHVJB7326H92FUB">1351285697</int> <int id="PA9J5LA451E2LSE">1351285697</int> <int id="PHV3SOHNMB52ELG">1351285816</int> <int id="PHFKGTOEK4D24VC">1351285817</int> <int id="PUVOSKG9QRE2KK7">1351285828</int> <int id="PUVI7ERSRHF2COM">1351285931</int> <int id="PUVHPAD7L5N292B">1351285932</int> <int id="PHV19OKESO62P13">1351285937</int> <int id="PUVHT82E1AP2E7H">1351285967</int> <int id="PCRE15VHINS1RJI">1351286219</int> <int id="PUV9KVP449E244L">1351286221</int> <int id="PA93S1AM4RD29RK">1351286237</int> <int id="PUV7PBQ7RUB3UL1">1351286310</int> <int id="PUVM19VOMK93FOP">1351286332</int> <int id="PHFPPJFJTVC2RK0">1351286345</int> <int id="PUV8PBHEH5K2E9N">1351286356</int> <int id="PHVU651LED82STP">1351286437</int> <int id="PUVC3KF8A8H2L2T">1351286450</int> <int id="PUVQEFLSU9C3SN2">1351286453</int> <int id="PUV766GM4TE2A3Q">1351286556</int> <int id="PHFBI3VT2ED2M4J">1351286557</int> <int id="PUVT5TK2G6D28QU">1351286601</int> <int id="PUVP41OFVCC332T">1351286603</int> <int id="PUV70B01CBG27J4">1351286635</int> <int id="PUVH597T7DC32E1">1351286682</int> <int id="PIF9OIVS9863SMF">1351286690</int> <int id="PUV9QFOV3ME2DOV">1351286715</int> <int id="PIFOGO1FNV5327P">1351286723</int> <int id="PUV6M92FD0H2KGM">1351286762</int> <int id="PHFJAE8FQVC2RNH">1351286809</int> <int id="PUVEGG4T2FG2UCD">1351286813</int> <int id="PHVIBHO8RN02DFH">1351286892</int> <int id="PA97IHVNBHD2L6Q">1351286924</int> <int id="PM120IAKPK123LN">1351287304</int> <int id="PCRNH6RCVNS1072">1351287305</int> <int id="PUV64C3J17C3LFP">1351287306</int> <int id="PCR31L66BAO1BOV">1351287311</int> <int id="PUVPTF7N2DG203S">1351287400</int> <int id="PHVDI42UF942SOA">1351287546</int> <int id="PCR6QLN3RVT1329">1351287549</int> <int id="PUVUEFJABRG2LND">1351287550</int> <int id="PA984LGOCKD26UK">1351287903</int> <int id="PUVEUMROI7D2IPU">1351287982</int> <int id="PHVJLT7S99527G2">1351287997</int> <int id="PUV7V1U0L7C3SCQ">1351288024</int> <int id="PCR1I23C34U1ASQ">1351288156</int> <int id="PUVQN4IADGG28KK">1351288157</int> <int id="PHVPQQ4OL992INR">1351288187</int> <int id="PUVLBC6O27F2FKP">1351288621</int> <int id="PM1MUFMEJD226ST">1351288622</int> <int id="PHVCP3261Q62SK4">1351288922</int> <int id="PCRE8LITINS1E3I">1351288926</int> <int id="PCRT0VFI6OS14VF">1351288952</int> <int id="PUV333V527D2942">1351289049</int> <int id="PUVOJ8VCPKE2MOC">1351289054</int> <int id="PUV3OPF597D2D8R">1351289127</int> <int id="PHVMUHUM3N622HJ">1351289475</int> <int id="PHVFADFGDT728AA">1351289484</int> <int id="PCRICS10PNS1LHA">1351289714</int> <int id="PUVONSK33OB3H64">1351289717</int> <int id="PUVIGNDPK9C36T1">1351289862</int> <int id="PCRGCU1RLNS19KK">1351289863</int> <int id="PCR8ERDNDUT16L4">1351289928</int> <int id="PUVSVMTPFIJ2M6B">1351289928</int> <int id="PHVDGRB8JD92GR6">1351290422</int> <int id="PHVPL6K28F7295D">1351290423</int> <int id="PUV2EGMNAHS2OQC">1351290429</int> <int id="PUV5EGOEJFC3J8F">1351290830</int> <int id="PA9HSMK86ID2F1A">1351290832</int> <int id="PUVCC56TLB7395A">1351290839</int> <int id="PCR4KMJVCAO1OQ7">1351290842</int> <int id="PCR4U1ICDAO1A8D">1351290843</int> <int id="PHV4THU2C792M0S">1351290852</int> <int id="PHV2N3G3AF825OC">1351290929</int> <int id="PUVR30DTCEC3I46">1351290936</int> <int id="PUVQRGOM9SB3MLA">1351291074</int> <int id="PUVMRHDRT483OEH">1351291076</int> <int id="PA9F3EHI36E2JIG">1351291444</int> <int id="PA9MO59D5CI2BG6">1351291470</int> <int id="PUV5SMGPEHG2DP8">1351291483</int> <int id="PHV6C84JR2821C3">1351291502</int> <int id="PUVNCT5TL5D2BB4">1351291510</int> <int id="PUVSVDEIMTG26B0">1351291516</int> <int id="PUV160O6FLB3KF2">1351291557</int> <int id="PUV9QUSLBJE2G5N">1351291580</int> <int id="PUVI4EDKGAJ207T">1351291660</int> <int id="PUVUII6QVHF26B7">1351291678</int> <int id="PUVA2RGKSPK263G">1351291722</int> <int id="PUV8RO3SQNH2JH4">1351291788</int> <int id="PA9CP0I8H6E2VH9">1351291830</int> <int id="PUV473G116D2GUS">1351291841</int> <int id="PHV7FR190MB2I9S">1351291995</int> <int id="PUV6GUJ9FSH2EUV">1351292072</int> <int id="PUVPC6D8RGC3EU9">1351292074</int> <int id="PUV22S2QJIF2GFM">1351292078</int> <int id="PHVKLAV9JEC2F4B">1351292098</int> <int id="PUVTGC3IF1A3Q4N">1351292344</int> <int id="PUV3JOQHDGB322T">1351292346</int> <int id="PCRDFPF4INS1J1N">1351292490</int> <int id="PUVGMGQU96830RT">1351292493</int> <int id="PUVKP5SOG7D29S2">1351292609</int> <int id="PUVVI4BTHBJ28F1">1351292631</int> <int id="PUVRDR9OBDN29DF">1351292661</int> <int id="PCROHCP0JDV1QRP">1351292662</int> <int id="PHFP13C56FD2BL8">1351292893</int> <int id="PIF25G8LLR53DPA">1351292949</int> <int id="PUVKTVFVK983BMQ">1351292950</int> <int id="PHVSBDCV7B52ELU">1351292964</int> <int id="PCR4U07B1UJ1FBQ">1351292969</int> <int id="PUVC77TNAEC356A">1351292993</int> <int id="PUV76BIV41O20KD">1351293366</int> <int id="PCRIMC1IPNS1PKK">1351293368</int> <int id="PUVFQ836U9E2IAS">1351293380</int> <int id="PHFLMIVO2UC2HK7">1351293472</int> <int id="PUVII91M9DH2QVN">1351293475</int> <int id="PIFOLMB0UO53FA2">1351293745</int> <int id="PUVSBBQBFV632TL">1351293985</int> <int id="PHF274E9E0D23V6">1351294043</int> <int id="PA9E1LMNLSD2EOO">1351294044</int> <int id="PHVG2J362992RNS">1351294058</int> <int id="PUVML5U8C9C3CL5">1351294432</int> <int id="PUVEO0HVO0B3E00">1351294433</int> <int id="PUVMCPKNL0F22UT">1351295227</int> <int id="PUVFN2LHIHC3LN7">1351295229</int> <int id="PUVJU69IKJC3BOE">1351295256</int> <int id="PA97PHPM54E2M0U">1351295259</int> <int id="PUVKMVKGUCG2PM3">1351295261</int> <int id="PUVMVUMOSQH2GS2">1351295385</int> <int id="PCRIELI3PNS1E5L">1351295387</int> <int id="PCR4GK24TCV152E">1351295627</int> <int id="PCR93R35SSJ1MOP">1351295877</int> <int id="PUV1LO4CFVB30OI">1351296182</int> <int id="PHFNCFTVB4D2DNN">1351296183</int> <int id="PUVNL8P6R7F26RP">1351296184</int> <int id="PUVQMCE3D9D2K8E">1351296614</int> <int id="PIF14GJO15D1P84">1351296740</int> <int id="PUVIPP0HFCG2V6I">1351296743</int> <int id="PUV39DUPENE2ATB">1351296821</int> <int id="PUV4I9MA47C3RAV">1351296826</int> <int id="PUVGVR7AN9D2JDR">1351297164</int> <int id="PUV80H86I7D2V4P">1351297169</int> <int id="PUVSR02QSV831TJ">1351297231</int> <int id="PHV3J76JGS62RF5">1351297232</int> <int id="PUVJU9MT7E93N5U">1351297233</int> <int id="PUVB2GCOIC938H2">1351297262</int> <int id="PUVKI6O4OCC30P5">1351297367</int> <int id="PCRA67IB8LL1MCE">1351297494</int> <int id="PHFH9VGQB2D2IUC">1351297504</int> <int id="PUVPVK0ILAE2PDG">1351297969</int> <int id="PHVERH6QNU621I8">1351298117</int> <int id="PUV1P773GVP2RUR">1351298143</int> <int id="PCRA8QN2LEV1QTF">1351298200</int> <int id="PA9VHKNCKQD2LUN">1351298268</int> <int id="PUVUJR1UUTG2SJP">1351298271</int> <int id="PUVMUKUEHRE2KME">1351298396</int> <int id="PUVOA5NB5QB3FRD">1351298535</int> <int id="PUV6H82RC8H2CIH">1351298565</int> <int id="PUVTKEDO69G2IAT">1351298947</int> <int id="PIFL0PPUT663NPS">1351298970</int> <int id="PHVR0962PO02QFU">1351299538</int> <int id="PUVCRM7PT6L2AO8">1351299540</int> <int id="PUVRESL85SE2FP5">1351299542</int> <int id="PHVO3NBD2N522CI">1351299544</int> <int id="PHVJR6H2J652Q9K">1351299563</int> <int id="PIF6LVBP7L53SOB">1351299566</int> <int id="PCR9V2I0FUT1DVV">1351299566</int> </object> <object id="25-05-28"> <int id="PHF5DILG53D2JVK">1351299639</int> <int id="PUVCRM7PT6L2AO8">1351299661</int> <int id="PIFO2D7B5063UBC">1351299664</int> <int id="PHF43603F4D2I2C">1351299682</int> <int id="PCR9V2I0FUT1DVV">1351299683</int> <int id="PHVR0962PO02QFU">1351299694</int> <int id="PHF5EJAB10D2JP8">1351299997</int> <int id="PHVF66LO2RA20PQ">1351300032</int> <int id="PUVA5NTG3AG2UR1">1351300034</int> <int id="PUVF8DJVCU93K98">1351300055</int> <int id="PM1VP9MKT602436">1351300076</int> <int id="PCRNH6RCVNS1072">1351300078</int> <int id="PUVMUKUEHRE2KME">1351300101</int> <int id="PUV5E5K85LB37M1">1351300120</int> <int id="PA9ADGI5MND20Q0">1351300134</int> <int id="PUVIFPAIL5D2AVL">1351300586</int> <int id="PCRQIDJL0IV1DPS">1351300587</int> <int id="PUV8MKGHU6C3GIB">1351300984</int> <int id="PHVR7F201F72EUM">1351301346</int> <int id="PCR101KU5UP1EAG">1351301369</int> <int id="PCRG4AJDLNS1TTP">1351301393</int> <int id="PCRE77SPB0U14V3">1351301806</int> <int id="PIFTG82475631EI">1351301807</int> <int id="PUV6M92FD0H2KGM">1351301813</int> <int id="PUVUS0QNKOA3MC5">1351301878</int> <int id="PHV3J76JGS62RF5">1351301886</int> <int id="PUV9MDBBBQB3SPA">1351301902</int> <int id="PUVI9G9O9EH2KM5">1351301952</int> <int id="PCRI874MONS12T3">1351301972</int> <int id="PUV15KDOAK930M3">1351302004</int> <int id="PCR1I23C34U1ASQ">1351302252</int> <int id="PUVH7H58HMC3MF3">1351302256</int> <int id="PHVQJ78CUCC2FM3">1351302553</int> <int id="PUVHT82E1AP2E7H">1351302553</int> <int id="PHVIKAFLJS62FVP">1351302680</int> <int id="PA9J5LA451E2LSE">1351302704</int> <int id="PHF76FGJ7FD2QP4">1351302833</int> <int id="PM1HDTV02402DBO">1351303021</int> <int id="PIFN1P22MDB1MHK">1351303021</int> <int id="PA9AAQRSQ1E2VC8">1351303638</int> <int id="PUVP214BUKB3SKD">1351303809</int> <int id="PUVDM3K3CCG2ERK">1351303811</int> <int id="PA9856NM2KD20N0">1351303836</int> <int id="PHFINSK9JCD29H5">1351303908</int> <int id="PUVKKRET75B328O">1351303910</int> <int id="PHFRTI9GS0D2QGA">1351304058</int> <int id="PUVOS88N9N9342Q">1351304078</int> <int id="PUVJRGCG59F2913">1351304079</int> <int id="PUVUJR1UUTG2SJP">1351304102</int> <int id="PDO6QS7KMDT2LJH">1351304347</int> <int id="PHF1VMDO9DD2AK3">1351304348</int> <int id="PUVG2EDJV8G2ADK">1351304465</int> <int id="PA9G3OP2QUD2H9O">1351304507</int> <int id="PIFKD2G62R531FC">1351304724</int> <int id="PCR7T82R11K14AP">1351304740</int> <int id="PUVANK930CC3FME">1351304774</int> <int id="PUVI45UO8LF292D">1351304777</int> <int id="PA9CVBGOMJD2NT4">1351304920</int> <int id="PUV3QB0U8AC3K1D">1351304926</int> <int id="PUVH6BK7FGK2AHQ">1351305004</int> <int id="PUVJ86DSLSM2BDC">1351305010</int> <int id="PUVBBEV6LP735IR">1351305014</int> <int id="PUVBUB7PT9E2HLL">1351305073</int> <int id="PA9PPLUHPJD24UQ">1351305083</int> <int id="PUVLMJROMC93TFF">1351305087</int> <int id="PA9SEU1KQ5E2M49">1351305698</int> <int id="PUVTBBTJFSG2NC1">1351305720</int> <int id="PUVRL3OSO7G2VV4">1351306029</int> <int id="PUVHBURKAIB3UKH">1351306376</int> <int id="PA9F3EHI36E2JIG">1351306410</int> <int id="PUVJMUGHVLN2761">1351306919</int> <int id="PUV9AQKGSO73GDM">1351306921</int> <int id="PHF624MH10D2RFE">1351306950</int> <int id="PHV2GBROGF82MRS">1351308558</int> <int id="PHV2FDTQK362HC8">1351308639</int> <int id="PUVOICGABL93PAP">1351308912</int> <int id="PA9QGBL6FSD20U9">1351308988</int> <int id="PCRFDQOCKNS1LIS">1351309000</int> <int id="PUV1D62CP6D2M64">1351309176</int> <int id="PUV3D7EIFJB30QV">1351309176</int> <int id="PUVSR01EJCG2G0N">1351309934</int> <int id="PUV5K74TLDF28AF">1351309935</int> <int id="PUVCJ3V3R7D2N88">1351310560</int> <int id="PUVF02HO6AG2E66">1351311095</int> <int id="PHVVO7CASCB21O5">1351311406</int> <int id="PA9U72RMPID224K">1351311565</int> <int id="PIFNHNBDMK63AN5">1351312410</int> <int id="PUVT0ELSEMJ2UHR">1351312853</int> <int id="PUV71L8MAS73Q8K">1351312890</int> <int id="PHF4I93610D2TI2">1351312905</int> </object> <object id="25-05-29"> <int id="PHVPL6K28F7295D">1351314055</int> <int id="PM11J0LUK902GQV">1351314173</int> <int id="PA9PPLUHPJD24UQ">1351314174</int> <int id="PHFEQQV20UC2ES4">1351314361</int> <int id="PUVCC56TLB7395A">1351314362</int> <int id="PCRU2USI8VT1IH3">1351314423</int> <int id="PUV2EGMNAHS2OQC">1351314480</int> <int id="PUVRKF7GK5F23CF">1351314827</int> <int id="PUVCJ3V3R7D2N88">1351314828</int> <int id="PCRNH6RCVNS1072">1351315350</int> <int id="PUVBHQ89NBM2HAR">1351315445</int> <int id="PCR1I23C34U1ASQ">1351315449</int> <int id="PHFS0IK652D2K0L">1351315726</int> <int id="PUVFICB3E7D2UAI">1351315743</int> <int id="PUV82ADNCFC3578">1351315751</int> <int id="PA95OL41KGD267A">1351315752</int> <int id="PUV6M92FD0H2KGM">1351315777</int> <int id="PHVPD72CABA2UCJ">1351315805</int> <int id="PUVSVDEIMTG26B0">1351315812</int> <int id="PA9NJ72CFKD2B40">1351316059</int> <int id="PUV2IHARV7F2GRE">1351316064</int> <int id="PHFBMADAEAD2JND">1351316112</int> <int id="PA9VHKNCKQD2LUN">1351316860</int> <int id="PUVTBBTJFSG2NC1">1351316860</int> <int id="PHFQG5V7V2D2RK5">1351317054</int> <int id="PA9QA8RBRPD22NK">1351317055</int> <int id="PUVHPAD7L5N292B">1351317059</int> <int id="PUV5EVLD0KF2669">1351317108</int> <int id="PUVSBITHB7I24U6">1351317114</int> <int id="PHFINSK9JCD29H5">1351317955</int> <int id="PHV47UC3OL72KBN">1351318586</int> <int id="PUVD3I2GH9C3515">1351318592</int> <int id="PHF6Q76POED2L4A">1351318604</int> <int id="PUV13H7I2OA3SER">1351318612</int> <int id="PHFKVVPRI2D2CGO">1351318727</int> <int id="PHV7MNV1VO62BC4">1351318782</int> <int id="PCRR6HQFR0U1SRC">1351319946</int> <int id="PUVRO6CA60I2RT3">1351319951</int> <int id="PHFN8I5UBCD2C6Q">1351319971</int> <int id="PCR2JJS38PS1MON">1351319994</int> <int id="PHVH5L6GPN62JOU">1351320045</int> <int id="PA92MJIOKQD2IMA">1351320253</int> <int id="PUVI7ERSRHF2COM">1351321788</int> <int id="PUVS0VLJ9G93E96">1351321795</int> <int id="PUVESOHKE9C311B">1351322732</int> <int id="PA9FUUC2K3E2DRG">1351322734</int> <int id="PIFG7LQVTG6356J">1351324036</int> <int id="PUVBOED1JQQ2CBG">1351324333</int> <int id="PIF66D21EB41T3G">1351325451</int> <int id="PIF2EL2VKF016N3">1351325698</int> <int id="PA95R91ABUD2CMS">1351325701</int> <int id="PHFVCRK8V4D22NS">1351327143</int> <int id="PIF9R57T8P53I85">1351327144</int> <int id="PHF31BRLV4D27G0">1351327747</int> <int id="PUV76BIV41O20KD">1351327750</int> <int id="PUVEC3IR9MB3PHK">1351327765</int> <int id="PHV3Q0F55E22URQ">1351328304</int> <int id="PCRT0VFI6OS14VF">1351328307</int> </object> <object id="25-05-30"> <int id="PHVEQLLACJ32T3A">1351328404</int> <int id="PA9VHKNCKQD2LUN">1351328406</int> <int id="PUV14N2LA8D2JIJ">1351329660</int> <int id="PUVB87P7KQ93S9Q">1351329662</int> <int id="PHFU4OO79AD2ENQ">1351330004</int> <int id="PUVI4EDKGAJ207T">1351330004</int> <int id="PCR42DQMSCV1P9O">1351330253</int> <int id="PUV8726GUNH2L21">1351330253</int> <int id="PUVNL18UKJC3JTG">1351330408</int> <int id="PUV5EVLD0KF2669">1351330408</int> <int id="PUVGFFOBSHC3J5A">1351331434</int> <int id="PUVMVOG3H1832L4">1351331434</int> <int id="PUVKTS44N2C3KDO">1351331500</int> <int id="PUV3F8Q8P9D2Q5T">1351333100</int> <int id="PUVHPAD7L5N292B">1351333100</int> <int id="PA9E9SC8Q0E2TV1">1351336047</int> <int id="PHFKGTOEK4D24VC">1351336574</int> <int id="PUVE8P3162C3IVC">1351336574</int> <int id="PUVHOL349JJ22U4">1351338700</int> <int id="PUVVJAMNBDC3SIR">1351338700</int> <int id="PCRJNG7VCDV1MVM">1351339305</int> <int id="PUV91D8F1NB3VMH">1351339308</int> <int id="PUVJ86DSLSM2BDC">1351339549</int> <int id="PUVI9G9O9EH2KM5">1351339550</int> <int id="PHVJLT7S99527G2">1351339792</int> <int id="PHF4RCL6T3D2GAC">1351339853</int> <int id="PUV5FLF16L935CN">1351340231</int> <int id="PUVLVN26LPB3IAF">1351340408</int> <int id="PHVABLN44H22DKA">1351340409</int> <int id="PUV3KH2MQSB3LR9">1351340676</int> <int id="PUVTFJUHH9E22QH">1351340677</int> <int id="PCRNH6RCVNS1072">1351341545</int> <int id="PCR10NAFCQS1K33">1351341548</int> <int id="PA97KGQJJ7E2G6P">1351342055</int> <int id="PUVH7IT5U1K2M4U">1351342062</int> <int id="PHFKA411RVC22P0">1351342064</int> </object> <object id="25-05-31"> <int id="PUVL2EQ7J7D25OS">1351343433</int> <int id="PCRBFCINGUT15SD">1351343443</int> <int id="PHFKGTOEK4D24VC">1351343474</int> <int id="PHVL1LRBAD92ENO">1351343772</int> <int id="PCRNH6RCVNS1072">1351343899</int> <int id="PUVBUB7PT9E2HLL">1351344002</int> <int id="PHF43603F4D2I2C">1351344060</int> <int id="PCR101KU5UP1EAG">1351344125</int> <int id="PUV5FLF16L935CN">1351344144</int> <int id="PUVJGMGHIIA388B">1351344202</int> <int id="PA97HUNHBUD2FUI">1351344209</int> <int id="PCRIELI3PNS1E5L">1351344255</int> <int id="PUVBCKHONKC33H5">1351344280</int> <int id="PUVCC56TLB7395A">1351344453</int> <int id="PHFVCCQDR3D2FIQ">1351344557</int> <int id="PHVJR6H2J652Q9K">1351345584</int> <int id="PHF2CSR1OCD2E6B">1351345983</int> <int id="PUVI4EDKGAJ207T">1351347044</int> <int id="PHFMI32SK4D2U1L">1351347057</int> <int id="PHVVR6I43M72BB2">1351347422</int> <int id="PCRJNG7VCDV1MVM">1351347484</int> <int id="PA9J5LA451E2LSE">1351347485</int> <int id="PUV8RO3SQNH2JH4">1351347716</int> <int id="PHFLB8GNU2D2GD8">1351347718</int> <int id="PHV52C0R3K72SEQ">1351347719</int> <int id="PA9NEEPG27E2DD0">1351347807</int> <int id="PUV3BN7EOT83QP8">1351347810</int> <int id="PHV4RKLETCB2B9I">1351348048</int> <int id="PUVSR02QSV831TJ">1351348049</int> <int id="PHF248O600D2SNR">1351348187</int> <int id="PUVI273ODRH27LV">1351348308</int> <int id="PUVFEENQHQ8386F">1351348637</int> <int id="PIFTG82475631EI">1351348640</int> <int id="PA9UNV5QH7E2B0P">1351348900</int> <int id="PUVRKFKFDGG2OPH">1351348901</int> <int id="PHFAM2DUH4D23RG">1351349920</int> <int id="PCRDFPF4INS1J1N">1351349922</int> <int id="PHFKVVPRI2D2CGO">1351350296</int> <int id="PUV10ALD09H22LB">1351350297</int> <int id="PA9856NM2KD20N0">1351350320</int> <int id="PUV22S2QJIF2GFM">1351351007</int> <int id="PUVEF3K4EIG2SFT">1351351707</int> <int id="PUVHPFP0RB931UM">1351351708</int> <int id="PA9PPLUHPJD24UQ">1351353057</int> <int id="PA9E1LMNLSD2EOO">1351353059</int> <int id="PA9BGL43P6E2MQ3">1351353154</int> <int id="PUVSR01EJCG2G0N">1351353194</int> <int id="PUVD3SLJ12A361Q">1351353532</int> <int id="PUVNL8P6R7F26RP">1351353591</int> <int id="PUVNU0KCM0B3U5T">1351353592</int> <int id="PUV90O5SDJK20F4">1351353707</int> <int id="PA94QV6SBPD25Q4">1351353709</int> <int id="PUVG9VDGPRE2FJ3">1351353721</int> <int id="PCRE9GAUINS1F64">1351353770</int> <int id="PIF22O7JKF01NRV">1351354683</int> <int id="PHVMUHUM3N622HJ">1351354716</int> <int id="PUVG0CKG9AB3P2C">1351355248</int> <int id="PUVV239FD1A3Q4D">1351355252</int> <int id="PA92KIPN12E27D0">1351355271</int> <int id="PIFL4AO85463T1U">1351355326</int> <int id="PCR5A28ARIL1DJS">1351355330</int> <int id="PUVPUTTP7BE2AJ0">1351355394</int> <int id="PUVEDP92H7G2683">1351355411</int> <int id="PUVOV284NNA3T07">1351355426</int> <int id="PHF57Q72ADD2QNL">1351355680</int> <int id="PUVR92GN0HG2582">1351355682</int> <int id="PHVR7F201F72EUM">1351355693</int> <int id="PA9HSMK86ID2F1A">1351355725</int> <int id="PCR10CGI60N1LG6">1351356119</int> <int id="PUVCAJTDPFH203K">1351356507</int> <int id="PUVKD8A9OEA31OM">1351356508</int> <int id="PIFQK9P17663VJA">1351356616</int> <int id="PUVJSP4158G25FM">1351356624</int> <int id="PUV3Q3PFL0Q2ON5">1351356952</int> <int id="PUVC8AD0CEK258Q">1351356962</int> <int id="PUVUVN6H8F934GS">1351356966</int> </object> <object id="25-05-32"> </object> <object id="25-05-33"> </object> <object id="25-05-34"> </object> <object id="25-05-35"> </object> <object id="25-05-37"> </object> <object id="25-05-38"> </object> <object id="25-05-39"> </object> <object id="25-05-40"> </object> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PUV1L6AHH7K2U6H">1352337900</int> <int id="PUVCAJTDPFH203K">1352337920</int> <int id="PHV2N3G3AF825OC">1352337976</int> <int id="PUVJMUGHVLN2761">1352338017</int> <int id="PUVDFV46DV936PV">1352338099</int> <int id="PA9TADD9FPD233C">1352338223</int> <int id="PUVQKKV3F5D29T1">1352338378</int> <int id="PCRJNG7VCDV1MVM">1352338518</int> <int id="PHFQ3QMFHVC281F">1352338604</int> <int id="PHFJVIL04RC2ULD">1352338629</int> <int id="PCROPEN11OS1K51">1352338693</int> <int id="PHVF1FRMV9929LG">1352338703</int> <int id="PUVPVK0ILAE2PDG">1352338720</int> <int id="PHFGMBJBA4D21EG">1352338739</int> <int id="PIFQHBL4S563QJT">1352338760</int> <int id="PUV7HG7UG9C35EM">1352338797</int> <int id="PUVP2EOLH583U8I">1352339178</int> <int id="PUV6ERH6FUC3QJM">1352339294</int> <int id="PUV2ML84IMG2SQ0">1352339720</int> <int id="PIFGCNAO5663GCP">1352339799</int> <int id="PCRC8PG7HUT1DAI">1352339909</int> <int id="PUV80E90FI93LB0">1352339915</int> <int id="PUV611DPFLE2TKH">1352339930</int> <int id="PHFINSK9JCD29H5">1352340016</int> <int id="PCR4R99KAUT1JQ7">1352340077</int> <int id="PCR6L4VMU3N1H72">1352340077</int> <int id="PUVM586HP7C35NG">1352340151</int> <int id="PUV33S2P3773TK0">1352340282</int> <int id="PIF9R57T8P53I85">1352340306</int> <int id="PIFN1P22MDB1MHK">1352340418</int> <int id="PUVBBO6CF983D1L">1352340440</int> <int id="PUVFV4PKSLC31T5">1352340443</int> <int id="PM1LOQ518N129RP">1352340465</int> <int id="PHF1DC9BE4D2JPK">1352340637</int> <int id="PUV8UEGI9CD3R4N">1352340782</int> <int id="PUV682PVF5D23FH">1352340981</int> <int id="PUVS35GVJTC3KI7">1352341036</int> <int id="PUVE2U4QNQL2S20">1352341095</int> <int id="PUVFUGQFQ9D2JV0">1352341298</int> <int id="PUVNIBP02EE2L04">1352341563</int> <int id="PUVT0ELSEMJ2UHR">1352341588</int> <int id="PUV83DA2N5D2QUV">1352341672</int> <int id="PM1B73SDG602CVK">1352341778</int> <int id="PUVMKHNUCCG2Q76">1352341805</int> <int id="PHV8FFNSUB9254U">1352341930</int> <int id="PUV6M92FD0H2KGM">1352341962</int> <int id="PUVQLJ8LIDD35J2">1352342172</int> <int id="PHV43G7J6TA2M7P">1352342212</int> <int id="PHF624MH10D2RFE">1352342351</int> <int id="PUVS5LN4PCG2HLQ">1352342621</int> <int id="PUVTOGF77CA3V7M">1352342640</int> <int id="PIFBGMEMMP53GHD">1352342698</int> <int id="PUVRINE0QJL2GOH">1352343165</int> <int id="PUVH5K5FGJA3TQU">1352343174</int> <int id="PUVNCT5TL5D2BB4">1352343287</int> <int id="PUVVEUFO4LB3EF5">1352343477</int> <int id="PHV90CU6KG22L76">1352343695</int> <int id="PUVUMCDF3VC38C9">1352343851</int> <int id="PUVDML8BPK93CKI">1352343899</int> <int id="PUV6P0F50NC3M6U">1352343936</int> <int id="PUVMGE9DGPC3I6V">1352343940</int> <int id="PUVJHB0CBKC3SRN">1352344214</int> <int id="PUV2UEH8VRC3684">1352344258</int> <int id="PUVIJ9L2QDE23GC">1352344279</int> <int id="PIF7MRGK2G63VBO">1352344627</int> <int id="PUVSU0I6IJH275E">1352344700</int> <int id="PUV42LEOBAF2MKD">1352344783</int> <int id="PUVQRSQHP993TPG">1352344903</int> <int id="PUV90O5SDJK20F4">1352344935</int> <int id="PUV1CPEV8IB3U67">1352345186</int> <int id="PUVEH0CBNJC3KB7">1352345210</int> <int id="PCRG9CKLLNS1KTS">1352345229</int> <int id="PHFAQB5VH4D2OSK">1352346063</int> <int id="PUVOP728SEE2BQE">1352346519</int> <int id="PUVFEHU904J2T3U">1352346625</int> <int id="PHVSBDCV7B52ELU">1352346767</int> <int id="PA9252IP5UD21NG">1352347284</int> <int id="PUVKBPJJIBD36P9">1352347527</int> <int id="PUVSGL8UHEE2T10">1352348213</int> <int id="PUVLFPT60BB3COT">1352348269</int> <int id="PHFT66IJV2D29PS">1352348487</int> <int id="PUV79AKJQ8E28K4">1352348683</int> <int id="PHFM0PHNTUC2S8E">1352348790</int> <int id="PM168JRREN12LHU">1352348902</int> <int id="PUVOSKG9QRE2KK7">1352349007</int> <int id="PHVRJ840M992GJK">1352349072</int> <int id="PHFNCFTVB4D2DNN">1352349112</int> <int id="PHFA302213D2GRI">1352349112</int> <int id="PHFA1DO113D27OI">1352349112</int> <int id="PUVP3UTUOI83R56">1352349416</int> <int id="PUV2EGMNAHS2OQC">1352349527</int> <int id="PHF9LSI6S4D2FTF">1352349793</int> <int id="PHF3EMI4JDD2EUU">1352350005</int> <int id="PUV2T1MGQ9G2B9J">1352350011</int> <int id="PUVUTSGV5JB37FB">1352350111</int> <int id="PUVNQ0KFSGB3BTA">1352350138</int> <int id="PUVANK930CC3FME">1352350189</int> <int id="PUVR1R7KV9F2EQ9">1352350276</int> <int id="PHFOAB4LPDD2P36">1352350282</int> <int id="PUV70FRRB3F23EU">1352350465</int> </object> <object id="25-07-09"> <int id="PHFM0PHNTUC2S8E">1352350823</int> <int id="PUVBCLAEHIB39B7">1352350925</int> <int id="PUVR1R7KV9F2EQ9">1352351002</int> <int id="PHVSGKDV7SA2FK8">1352351313</int> <int id="PUVJ4GKBUMC32R9">1352351498</int> <int id="PUVA5NTG3AG2UR1">1352351638</int> <int id="PHF624MH10D2RFE">1352352602</int> <int id="PHVQRJ67Q742FCG">1352352602</int> <int id="PHV19AFHTB922VQ">1352352740</int> <int id="PHV3SOHNMB52ELG">1352352874</int> <int id="PHV26QL7U262C7J">1352352997</int> <int id="PUV6EQ0F4NB36GC">1352353203</int> <int id="PIF14GJO15D1P84">1352353206</int> <int id="PA9SI3EOAND2BDK">1352354117</int> <int id="PCRE15VHINS1RJI">1352354959</int> <int id="PHV3J76JGS62RF5">1352355356</int> <int id="PIF82R4LQF01ISK">1352356150</int> <int id="PUVANK930CC3FME">1352356187</int> <int id="PCRIQ6OSD1N166M">1352356497</int> <int id="PUVIJ9KTN5D24U6">1352356785</int> <int id="PUVGDNG097C3RGM">1352356908</int> <int id="PCRNH6RCVNS1072">1352356998</int> <int id="PHVCFT53VN6228O">1352357118</int> <int id="PUVJSKMEME93KQD">1352357157</int> <int id="PUVJP8KO4CC3PUK">1352357232</int> <int id="PHFSRKE6T0D2GH8">1352357829</int> <int id="PA9UNV5QH7E2B0P">1352358442</int> <int id="PUVV5HJ6RD93NIJ">1352358735</int> <int id="PUVOIO5NTF93QO1">1352358735</int> <int id="PA9252IP5UD21NG">1352358757</int> <int id="PUVSCJHRTVS280U">1352359557</int> <int id="PHFP2LIDC4D2H2O">1352359775</int> <int id="PUVHPAD7L5N292B">1352359797</int> <int id="PUV5ABHBJAG2568">1352359816</int> <int id="PM1A4MDNG402AR4">1352360004</int> <int id="PUVD1R35GNC3PP0">1352360084</int> <int id="PUV6JPAODNB3FOK">1352360663</int> <int id="PUVSQT4IJVA3VSK">1352361164</int> <int id="PHFRJ945A3D2FMO">1352361263</int> <int id="PUVKGB9KG9D2G4L">1352361998</int> <int id="PHV714BJ7S22UC4">1352362493</int> <int id="PHVNJ4LKTQ626HM">1352362907</int> <int id="PHFL2MQMU2D2GE4">1352363176</int> <int id="PCRBFCINGUT15SD">1352363629</int> <int id="PIF3OCMOP251AKC">1352364308</int> <int id="PCRGUC7F2TM1MT4">1352364308</int> <int id="PUVVLIPFM5D2UC5">1352365012</int> <int id="PHFAGTM9BFD2VCF">1352365160</int> </object> <object id="25-07-10"> <int id="PUVMK49O9BG28M6">1352365289</int> <int id="PUVSLPFE06D2FMT">1352365414</int> <int id="PUVVLIPFM5D2UC5">1352365632</int> <int id="PUVJ1M0B74D38BI">1352365860</int> <int id="PHVABLN44H22DKA">1352365881</int> <int id="PUVDML8BPK93CKI">1352366309</int> <int id="PUVNB508T5D2INJ">1352366458</int> <int id="PHVCM54BMP72K56">1352366711</int> <int id="PUV8C6CRE3F2RU3">1352366772</int> <int id="PUVMVBUINVE2FDP">1352367733</int> <int id="PHF31BRLV4D27G0">1352368026</int> <int id="PHFINSK9JCD29H5">1352368570</int> <int id="PIF2V9ICHO53PFN">1352368948</int> <int id="PUV5ABHBJAG2568">1352369138</int> <int id="PUVNL50OJ5D24O5">1352369375</int> <int id="PUVCE3RNDIB340P">1352369582</int> <int id="PUV7GFQVEJC3BBN">1352370473</int> <int id="PUVHPFP0RB931UM">1352370819</int> <int id="PUVC1CT6I6F2BF0">1352371273</int> <int id="PUV14N2LA8D2JIJ">1352371610</int> <int id="PCR2JJS38PS1MON">1352372587</int> <int id="PUVQSKCT62F29GL">1352373509</int> <int id="PUV4TQTEMAH2OIS">1352373800</int> <int id="PHFBLTOF5CD2E77">1352374061</int> <int id="PHFBMADAEAD2JND">1352374398</int> <int id="PHVQ024095A2FQ8">1352374977</int> <int id="PA9G8I2SEJD27U9">1352375745</int> <int id="PA9PPLUHPJD24UQ">1352376501</int> <int id="PHFNS9AVU2D2BE6">1352376688</int> <int id="PUVU3OIE4UE2U9S">1352376916</int> <int id="PHFOBBM0GAD2JAL">1352376967</int> <int id="PUVKJ8IP6LB39B1">1352377166</int> <int id="PUVUNFF3PLB3LER">1352378297</int> <int id="PHFSCRJV9FD2F51">1352379106</int> <int id="PUV39SSI9QG247R">1352379367</int> <int id="PHFKVVPRI2D2CGO">1352379378</int> </object> <object id="25-07-11"> <int id="PHFKVVPRI2D2CGO">1352379808</int> <int id="PHV94IGLLV22EE5">1352379869</int> <int id="PHF624MH10D2RFE">1352381399</int> <int id="PCRNBUJSCJL1SOG">1352381727</int> <int id="PCRG4AJDLNS1TTP">1352381937</int> <int id="PUV22S2QJIF2GFM">1352382077</int> <int id="PM168JRREN12LHU">1352382325</int> <int id="PUVO4DC282A3502">1352382436</int> <int id="PHVVO7CASCB21O5">1352382573</int> <int id="PIFAVSBAJR538UD">1352382683</int> <int id="PIFNVCUEMK63SPD">1352382829</int> <int id="PUVS76IBB0S2R71">1352383180</int> <int id="PA9AA8P2MJD2US9">1352383661</int> <int id="PM114AN79E02KO6">1352385166</int> <int id="PUVQ5C3MKQH27FB">1352385388</int> <int id="PUV7281593F2747">1352386519</int> <int id="PUVK4347KHE2JL8">1352386984</int> <int id="PHVNIFVCQRA253D">1352387012</int> <int id="PUVTVHBGAB83HBI">1352387080</int> <int id="PHV5AI7DGI72EMV">1352387557</int> <int id="PHFINSK9JCD29H5">1352387595</int> <int id="PUVSMUH7VEC3HR9">1352387995</int> <int id="PHVE5USE9P62UL5">1352388282</int> <int id="PUVQG4V5PNE24LT">1352388589</int> <int id="PUV3AEGAMEH2GLM">1352388806</int> <int id="PCRR6HQFR0U1SRC">1352388936</int> <int id="PUVEJ4PFHSL20HH">1352388972</int> <int id="PUVVN5TSFLH2BB8">1352388992</int> <int id="PUVH7BU7IQC3O8D">1352389264</int> <int id="PUVCUCM4C8D2PLF">1352389522</int> <int id="PUV2IPH9NF83QFO">1352389582</int> <int id="PHFOBBM0GAD2JAL">1352390081</int> <int id="PHVSCM4AFS627EF">1352390288</int> <int id="PUV6EQ0F4NB36GC">1352390357</int> <int id="PUVFGC9R7EF2ECE">1352390551</int> <int id="PHV3SOHNMB52ELG">1352391423</int> <int id="PHFAM2DUH4D23RG">1352391529</int> <int id="PUV2LCB0HEL2UGF">1352391726</int> <int id="PUVUEFJABRG2LND">1352391894</int> <int id="PHV4UNDQ9Q02PDK">1352392118</int> <int id="PUVA2RGKSPK263G">1352392571</int> <int id="PCRIMC1IPNS1PKK">1352392993</int> <int id="PUVQKKV3F5D29T1">1352392998</int> <int id="PUVKLU36GOC35IF">1352393345</int> <int id="PUVDFEAA4DM2ERR">1352393390</int> <int id="PUV78MGI48C3NKP">1352393438</int> <int id="PUV2BCEC5CG2V5L">1352393504</int> </object> <object id="25-07-12"> <int id="PHFRK9P8S0D2MVK">1352394263</int> <int id="PHV3SOHNMB52ELG">1352394267</int> <int id="PUVQAVTGUBC3QUV">1352394379</int> <int id="PCR5A28ARIL1DJS">1352394391</int> <int id="PHFKVVPRI2D2CGO">1352394720</int> <int id="PHVFG0THJF827TB">1352394869</int> <int id="PCREMRVAJNS1JKK">1352395098</int> <int id="PUVA2RGKSPK263G">1352395171</int> <int id="PHFVB7UGK2D283T">1352395208</int> <int id="PUVI45UO8LF292D">1352395573</int> <int id="PA9VHKNCKQD2LUN">1352395645</int> <int id="PHFT66IJV2D29PS">1352395678</int> <int id="PUV6KCLJ9FC3UGK">1352395845</int> <int id="PIFP3SA6C063SSP">1352396064</int> <int id="PHFINSK9JCD29H5">1352396074</int> <int id="PHFKA411RVC22P0">1352396334</int> <int id="PUVUTSGV5JB37FB">1352396335</int> <int id="PIFSMKNBOG63N0R">1352396466</int> <int id="PUVDML8BPK93CKI">1352396611</int> <int id="PUVNC5VN7D934FN">1352397513</int> <int id="PHFOQQMDQ0D278A">1352397586</int> <int id="PUVA9IOQNTC3SJK">1352397800</int> <int id="PHV1PM17V4125NM">1352397845</int> <int id="PUVTTIURKLC3B30">1352398250</int> <int id="PUVI0H2977A3G7K">1352398303</int> <int id="PHFU448MD4D2HL9">1352398535</int> <int id="PHFO9KEJ25D2MBL">1352398648</int> <int id="PHVRFSUBBDC2QD9">1352398649</int> <int id="PUVS01MGFEH2MAJ">1352398793</int> <int id="PHFS4VNHOTC25IA">1352398996</int> <int id="PHVFSV9R04A2DO9">1352399609</int> <int id="PUV4N87P8GG2EB6">1352399923</int> <int id="PIF73NQUM7634IP">1352400107</int> <int id="PUVPR1I900A3GII">1352400211</int> <int id="PHV3GLFLVE22SH6">1352400838</int> <int id="PHVSFAS9ED82TBC">1352400907</int> <int id="PUVHFCB2RLE2ARH">1352401248</int> <int id="PUVOPF8QBH93P4B">1352401688</int> <int id="PUVVJ936BCA3M1E">1352401951</int> <int id="PUV70B01CBG27J4">1352402316</int> <int id="PUVB45SR44D3NOE">1352402508</int> <int id="PUVANK930CC3FME">1352402621</int> <int id="PHV2N3G3AF825OC">1352403058</int> <int id="PUV11UBO2KG2KJL">1352403383</int> <int id="PHV21LD6GRA2ACT">1352403418</int> <int id="PCRBFCINGUT15SD">1352403611</int> <int id="PUV611DPFLE2TKH">1352404063</int> <int id="PUVRL3OSO7G2VV4">1352404288</int> <int id="PUV8KRHK6EG25DT">1352404369</int> <int id="PUVKP5SOG7D29S2">1352404755</int> <int id="PHFMVJCKSVC2BRL">1352404772</int> <int id="PHF3EMI4JDD2EUU">1352405151</int> <int id="PUV20LK604835CB">1352405563</int> <int id="PUV6OD02LNR27JP">1352405771</int> <int id="PHF624MH10D2RFE">1352405796</int> <int id="PCR14AIGQJO1V4O">1352405880</int> <int id="PHV11VJMK642E45">1352406348</int> <int id="PUVPBGSGGI9363H">1352406935</int> <int id="PUV4TOO3O1D32TP">1352407039</int> <int id="PUVOQVJ074A3F6S">1352407421</int> <int id="PM13FQ40B60241T">1352407542</int> <int id="PUV9QFOV3ME2DOV">1352407764</int> <int id="PUV1S8K1OAD3GDS">1352407907</int> <int id="PHVABLN44H22DKA">1352408074</int> </object> <object id="25-07-13"> <int id="PIFUKTPT6L639BB">1352408633</int> <int id="PA9252IP5UD21NG">1352408674</int> <int id="PUVHPFP0RB931UM">1352408880</int> <int id="PHV2N3G3AF825OC">1352409060</int> <int id="PHFKVVPRI2D2CGO">1352409141</int> <int id="PA9GNHK5C0E23D8">1352409358</int> <int id="PIFSMKNBOG63N0R">1352409385</int> <int id="PUVHGT5JDLB30F7">1352409419</int> <int id="PUV6FUO75V93AII">1352409420</int> <int id="PUVNNA96VDD3460">1352409505</int> <int id="PUVPC6P6SA839RS">1352409646</int> <int id="PUVJU69IKJC3BOE">1352409990</int> <int id="PUVO3TARGPC39VS">1352410258</int> <int id="PHFOU973H3D26IQ">1352410585</int> <int id="PHF3EMI4JDD2EUU">1352410990</int> <int id="PUV9QFOV3ME2DOV">1352410996</int> <int id="PHF4VCR245D2MK3">1352411009</int> <int id="PUVISAR5V7D2CKL">1352411159</int> <int id="PA9SI3EOAND2BDK">1352411452</int> <int id="PHF6LNTTT3D2PLQ">1352411811</int> <int id="PHF624MH10D2RFE">1352412435</int> <int id="PUV3OPF597D2D8R">1352412853</int> <int id="PUVTTIURKLC3B30">1352412891</int> <int id="PUV89GGJIEC3P2I">1352413092</int> <int id="PIFLF93LOD63T7I">1352413155</int> <int id="PUVA2RGKSPK263G">1352413473</int> <int id="PHFVB7UGK2D283T">1352413685</int> <int id="PUVJ1DFFUJC3QO9">1352414265</int> <int id="PUVFFKO5NJP2GNH">1352414732</int> <int id="PUVQDRLM9NB31K0">1352414852</int> <int id="PA9BGL43P6E2MQ3">1352415294</int> <int id="PA9D6L6HEVD234S">1352415410</int> <int id="PUVSLPFE06D2FMT">1352415487</int> <int id="PUV14N2LA8D2JIJ">1352415884</int> <int id="PUVDPBJ8NDL2C7D">1352416275</int> <int id="PUV9KOTM1KE2MNG">1352416374</int> <int id="PUV6M92FD0H2KGM">1352416375</int> <int id="PHFOVO1A44D26CQ">1352416610</int> <int id="PUVTD2NVTID3NDN">1352416629</int> <int id="PA9F3EHI36E2JIG">1352416644</int> <int id="PUV9901F4BA3L6F">1352416810</int> <int id="PIF2TA3RK563FSR">1352416845</int> <int id="PUVOK83EVCC3BTG">1352416970</int> <int id="PHV19SAUGH72GB8">1352417068</int> <int id="PUVRL3OSO7G2VV4">1352417351</int> <int id="PHFT93U2C0D25VR">1352417587</int> <int id="PA9SGIV1AUD2PNL">1352418122</int> <int id="PUVJFL92V8H27T1">1352418388</int> <int id="PNV32HKO7SD26UH">1352418798</int> <int id="PA9F74KMB0E2ES3">1352418801</int> <int id="PHVSCM4AFS627EF">1352419801</int> <int id="PCR7T82R11K14AP">1352419808</int> <int id="PHFM0PHNTUC2S8E">1352419876</int> <int id="PUVPVK0ILAE2PDG">1352420320</int> <int id="PHVSBDCV7B52ELU">1352420364</int> <int id="PHVR7F201F72EUM">1352421680</int> <int id="PUV979L46IB3HEE">1352421810</int> <int id="PUVSC6I4QG839F3">1352422222</int> <int id="PUVEDIHK8N930OM">1352422438</int> <int id="PUVT0ELSEMJ2UHR">1352422506</int> <int id="PCR12I603OL1GJD">1352422632</int> <int id="PUVFQ836U9E2IAS">1352422695</int> </object> <object id="25-08-01"> <int id="PUV9BC57QMB3DNC">1352423032</int> <int id="PUV9QFOV3ME2DOV">1352424351</int> <int id="PHVBRQR0A192RSM">1352425064</int> <int id="PHV17370R352TN8">1352428573</int> <int id="PHFK5DVI8DD22EP">1352434454</int> </object> <object id="25-08-04"> <int id="PHV5AI7DGI72EMV">1352472144</int> <int id="PUVK46QGM9G2ANO">1352477967</int> </object> <object id="25-08-05"> <int id="PUVNJIQE8PC3F8K">1352487889</int> <int id="PUV9E4JDSTA3253">1352491827</int> </object> <object id="25-08-11"> <int id="PUVPUV67TRC3529">1352569203</int> </object> <object id="25-08-13"> <int id="PUV88HJU7OB3B8Q">1352600397</int> <int id="PUVA5NTG3AG2UR1">1352609003</int> </object> <object id="25-08-22"> <int id="PHV5AI7DGI72EMV">1352735799</int> <int id="PUV8BML177K28HU">1352736654</int> </object> <object id="25-08-23"> <int id="PUV8BML177K28HU">1352749408</int> <int id="PHVORKSVG952LCA">1352752757</int> </object> <object id="25-08-24"> <int id="PUV8BML177K28HU">1352763717</int> </object> <object id="25-08-30"> <int id="PUV8BML177K28HU">1352841282</int> </object> <object id="25-08-33"> <int id="PUVM419U2NB3KIE">1352896755</int> </object> <object id="25-08-36"> <int id="PUVB5F5VDPB3AKP">1352930841</int> </object> <object id="25-09-03"> <int id="PHVMUK66SI726F4">1352993749</int> </object> <object id="25-10-02"> <int id="PIFGCNAO5663GCP">1353051581</int> </object> <object id="25-10-18"> <int id="PA9SEU1KQ5E2M49">1353285986</int> </object> <object id="25-10-19"> <int id="PUVH4JOK59G2BM3">1353295205</int> </object> <object id="25-10-20"> <int id="PHV10SFC5112ODS">1353311370</int> </object> <object id="25-10-23"> <int id="PCRNH6RCVNS1072">1353356402</int> </object> <object id="25-10-36"> <int id="PHV4RKLETCB2B9I">1353534667</int> </object> <object id="25-10-44"> <int id="PHFGIBN0F3D2R8O">1353647251</int> <int id="PHV5AI7DGI72EMV">1353652194</int> </object> <object id="25-11-06"> <int id="PUVTMVI961G2PNI">1353787145</int> </object> <object id="26-01-09"> <int id="PUV4BFTRRUC3RLF">1353995865</int> </object> <object id="26-01-15"> <int id="PHV5AI7DGI72EMV">1354081620</int> </object> <object id="26-01-18"> <int id="PUVTMVI961G2PNI">1354127675</int> </object> <object id="26-03-19"> <int id="PHV5AI7DGI72EMV">1354600508</int> </object> <object id="26-03-42"> <int id="PHFNS9AVU2D2BE6">1354935584</int> <int id="PUV334M99H83606">1354937921</int> </object> <object id="26-03-43"> <int id="PA998GBOSJD2EDI">1354944356</int> <int id="PUVO99PIVOC3PNT">1354945145</int> </object> <object id="26-03-49"> <int id="PHFNS9AVU2D2BE6">1355032079</int> </object> <object id="26-03-51"> <int id="PUVSS3VLH2K2JMP">1355058965</int> </object> <object id="26-03-52"> <int id="PHVE7HP4ST72T66">1355082352</int> </object> <object id="26-03-53"> <int id="PHV5AI7DGI72EMV">1355092224</int> </object> <object id="26-04-01"> <int id="PIF82R4LQF01ISK">1355104302</int> <int id="PCRRV307L1N11TA">1355104744</int> <int id="PUV2Q3F51I935K5">1355109326</int> <int id="PHFAGTM9BFD2VCF">1355109808</int> <int id="PUVU0H1NB7E3U57">1355110732</int> <int id="PIF761SOOQKUIH">1355110859</int> </object> </object> <object id="hi_sign_evasion_record_history"> <object id="version_1"> <str id="pc_tsid">PDO4R0BLAGT222N</str> <str id="pc_label">DancinBear</str> <int id="secs">11</int> <int id="when">1351821366</int> <int id="version">1</int> </object> </object> <object id="hi_sign_evasion_record"> <str id="pc_tsid">PUVSMIGB8DG29L5</str> <str id="pc_label">Carrion Carrier</str> <int id="secs">12</int> <int id="when">1353253237</int> <int id="version">10</int> <str id="day_key">25-10-16</str> </object> <int id="incantations_step">1</int> <object id="incantations_redux"> <object id="PUVK2730A6F2U80"> <int id="step">1</int> <int id="ts">1354917577</int> </object> <object id="PUV4J86UJPC3TEN"> <int id="step">2</int> <int id="ts">1354917583</int> </object> <object id="PUV4M2F46LL2DPA"> <int id="step">1</int> <int id="ts">1354917594</int> </object> <object id="PUV14BQE31D3QK4"> <int id="step">2</int> <int id="ts">1354917599</int> </object> <object id="PCR11792JRL10T9"> <int id="step">3</int> <int id="ts">1354917601</int> </object> <object id="PHFK48ANI2D2F12"> <int id="step">1</int> <int id="ts">1354917659</int> </object> <object id="PIF6P0TIVQ53F1H"> <int id="step">1</int> <int id="ts">1354918791</int> </object> <object id="PUVBHA1C58C33PQ"> <int id="step">1</int> <int id="ts">1354919152</int> </object> <object id="PUVC2FPD03H2RCI"> <int id="step">2</int> <int id="ts">1354919154</int> </object> <object id="PUVKME5Q70E3SR1"> <int id="step">3</int> <int id="ts">1354919156</int> </object> <object id="PHVMUK66SI726F4"> <int id="step">1</int> <int id="ts">1354919175</int> </object> <object id="PHVO2VL5MP02ONH"> <int id="step">1</int> <int id="ts">1354919963</int> </object> <object id="PUVQN4IADGG28KK"> <int id="step">1</int> <int id="ts">1354919972</int> </object> <object id="PUV2C53BG9C3ODU"> <int id="step">1</int> <int id="ts">1354920097</int> </object> <object id="PIF22O7JKF01NRV"> <int id="step">2</int> <int id="ts">1354920116</int> </object> <object id="PUV6JPAODNB3FOK"> <int id="step">3</int> <int id="ts">1354920169</int> </object> <object id="PUVC50UP84C39AK"> <int id="step">1</int> <int id="ts">1354920574</int> </object> <object id="PA9SGIV1AUD2PNL"> <int id="step">1</int> <int id="ts">1354920631</int> </object> <object id="PUVE0P38UUC3P2O"> <int id="step">1</int> <int id="ts">1354921592</int> </object> <object id="PUVCGKMH58C3E1E"> <int id="step">2</int> <int id="ts">1354921596</int> </object> <object id="PUVERUQUIIJ2TCI"> <int id="step">3</int> <int id="ts">1354921600</int> </object> <object id="PUVD0UO5ETC3BO1"> <int id="step">1</int> <int id="ts">1354923714</int> </object> <object id="PHVR3OIVQJ42F6G"> <int id="step">2</int> <int id="ts">1354923717</int> </object> <object id="PUVHAQBGPL937P3"> <int id="step">3</int> <int id="ts">1354923718</int> </object> <object id="PHFEBGS0MAD2KGT"> <int id="step">1</int> <int id="ts">1354924436</int> </object> <object id="PHVBQSO3LG22530"> <int id="step">2</int> <int id="ts">1354924773</int> </object> <object id="PHV76S67V9A2DUA"> <int id="step">1</int> <int id="ts">1354924837</int> </object> <object id="PHFINSK9JCD29H5"> <int id="step">2</int> <int id="ts">1354925159</int> </object> <object id="PUVR41F05GF2VJV"> <int id="step">1</int> <int id="ts">1354925193</int> </object> <object id="PUV4UO1A0FB3VQ1"> <int id="step">1</int> <int id="ts">1354925291</int> </object> <object id="PUVCE3RNDIB340P"> <int id="step">1</int> <int id="ts">1354925662</int> </object> <object id="PA9174C9GHD21U7"> <int id="step">1</int> <int id="ts">1354926118</int> </object> <object id="PHFIS28II2D239P"> <int id="step">1</int> <int id="ts">1354926552</int> </object> <object id="PCR3SJRBQIL12K2"> <int id="step">1</int> <int id="ts">1354927902</int> </object> <object id="PHF3EMI4JDD2EUU"> <int id="step">1</int> <int id="ts">1354929237</int> </object> <object id="PUVN10CBHLB3GIG"> <int id="step">2</int> <int id="ts">1354929253</int> </object> <object id="PHFIU1P4P4D2PHL"> <int id="step">1</int> <int id="ts">1354933681</int> </object> <object id="PHFNS9AVU2D2BE6"> <int id="step">1</int> <int id="ts">1354935529</int> </object> <object id="PHFP13C56FD2BL8"> <int id="step">2</int> <int id="ts">1354937068</int> </object> <object id="PHV2GBROGF82MRS"> <int id="step">1</int> <int id="ts">1354939739</int> </object> <object id="PHV2N3G3AF825OC"> <int id="step">2</int> <int id="ts">1354939741</int> </object> <object id="PA992GBF3PD2JRV"> <int id="step">1</int> <int id="ts">1354940003</int> </object> <object id="PUV1P80SU0A3I5S"> <int id="step">1</int> <int id="ts">1354940037</int> </object> <object id="PUV3GDPPB9E27VF"> <int id="step">2</int> <int id="ts">1354940774</int> </object> <object id="PUV523037AD3VO0"> <int id="step">1</int> <int id="ts">1354943026</int> </object> <object id="PHFMGAVRMAD2DGU"> <int id="step">1</int> <int id="ts">1354943457</int> </object> <object id="PA9E1LMNLSD2EOO"> <int id="step">2</int> <int id="ts">1354943473</int> </object> <object id="PHVEAEQ55F72KLU"> <int id="step">1</int> <int id="ts">1354944023</int> </object> <object id="PUVDDFCHULH2204"> <int id="step">2</int> <int id="ts">1354944030</int> </object> <object id="PA998GBOSJD2EDI"> <int id="step">1</int> <int id="ts">1354944307</int> </object> <object id="PIFQHNFJ1M634GJ"> <int id="step">2</int> <int id="ts">1354944331</int> </object> <object id="PUVJ4F7G14L2HTI"> <int id="step">1</int> <int id="ts">1354947952</int> </object> <object id="PUVFVIM4HLD3F02"> <int id="step">2</int> <int id="ts">1354947957</int> </object> <object id="PUVQ6I3032D3097"> <int id="step">1</int> <int id="ts">1354951389</int> </object> <object id="PUV3B32Q8JG2DB3"> <int id="step">2</int> <int id="ts">1354951391</int> </object> <object id="PUVLOKM16N93SRA"> <int id="step">3</int> <int id="ts">1354951393</int> </object> <object id="PUVQOVN59ME2QM9"> <int id="step">1</int> <int id="ts">1354952235</int> </object> <object id="PUV7JC4GTIJ2PGO"> <int id="step">2</int> <int id="ts">1354952240</int> </object> <object id="PUVUBPJHDUC3HI1"> <int id="step">1</int> <int id="ts">1354952467</int> </object> <object id="PUVABNUBG5D29P8"> <int id="step">1</int> <int id="ts">1354964060</int> </object> <object id="PUVHKHKSFDC3H9E"> <int id="step">2</int> <int id="ts">1354964062</int> </object> <object id="PUVAJKHV28G2BQR"> <int id="step">3</int> <int id="ts">1354964074</int> </object> <object id="PA97PHPM54E2M0U"> <int id="step">1</int> <int id="ts">1354965422</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">2</int> <int id="ts">1354965422</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">3</int> <int id="ts">1354965423</int> </object> <object id="PIF1NTTORNACL"> <int id="step">1</int> <int id="ts">1354968797</int> </object> <object id="PCRFJ2ABSEV1F8E"> <int id="step">2</int> <int id="ts">1354968800</int> </object> <object id="PCR4KMJVCAO1OQ7"> <int id="step">1</int> <int id="ts">1354969715</int> </object> <object id="PUVV3HT977C3HIG"> <int id="step">2</int> <int id="ts">1354970073</int> </object> <object id="PUVE2TGQ79S2VUR"> <int id="step">1</int> <int id="ts">1354970439</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">2</int> <int id="ts">1354970441</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">3</int> <int id="ts">1354970442</int> </object> <object id="PUV9VNS5SOS22Q9"> <int id="step">1</int> <int id="ts">1354972559</int> </object> <object id="PCRMKIMIUNS1S1G"> <int id="step">1</int> <int id="ts">1354974756</int> </object> <object id="PUV76BIV41O20KD"> <int id="step">1</int> <int id="ts">1354977136</int> </object> <object id="PCRKFODORUT188S"> <int id="step">2</int> <int id="ts">1354985219</int> </object> <object id="PCR10CGI60N1LG6"> <int id="step">1</int> <int id="ts">1354985721</int> </object> <object id="PUV3JN5MTIA31QP"> <int id="step">2</int> <int id="ts">1354987037</int> </object> <object id="PHVABLN44H22DKA"> <int id="step">1</int> <int id="ts">1354991132</int> </object> <object id="PHF8FOMPS2D2J2C"> <int id="step">1</int> <int id="ts">1354994337</int> </object> <object id="PUVUII6QVHF26B7"> <int id="step">2</int> <int id="ts">1354994352</int> </object> <object id="PUVOQGDCFTH21UN"> <int id="step">1</int> <int id="ts">1354997922</int> </object> <object id="PUVUTSGV5JB37FB"> <int id="step">2</int> <int id="ts">1354997925</int> </object> <object id="PUVNQ08H15C3F2V"> <int id="step">3</int> <int id="ts">1354997927</int> </object> <object id="PUV224T8NPM2TPN"> <int id="step">1</int> <int id="ts">1354998169</int> </object> <object id="PUVVILGJCUF27V0"> <int id="step">2</int> <int id="ts">1354998176</int> </object> <object id="PUVM6TEQL5D2M1I"> <int id="step">3</int> <int id="ts">1354998183</int> </object> <object id="PUVTNI1FJH93NPE"> <int id="step">1</int> <int id="ts">1354998388</int> </object> <object id="PA9RDR9AQ9I241I"> <int id="step">2</int> <int id="ts">1354998398</int> </object> <object id="PHF11QGRI3D2KLQ"> <int id="step">1</int> <int id="ts">1354998555</int> </object> </object> <object id="hi_sign_daily_evasion_record"> <str id="pc_tsid">PHVR0962PO02QFU</str> <str id="pc_label">The Cat Face</str> <int id="secs">10</int> <int id="when">1355111568</int> <int id="version">10</int> <str id="day_key">26-04-01</str> </object> </object> <objrefs id="items"> <objref tsid="IUVJP2752HQ2611" label="Qurazy marker"/> <objref tsid="ILICG4IE2UI1JB2" label="Quoin"/> <objref tsid="ICRA44F4OKR1QSK" label="Crab"/> <objref tsid="ILICFK5BNTI19LA" label="Paper Tree"/> </objrefs> <objrefs id="players"> <objref tsid="PHVG2J362992RNS" label="Fnibbit"/> <objref tsid="PA9MRPBOMPD2I43" label="The Barista"/> <objref tsid="PHFE6NKST2D2QFK" label="Penelope Sue"/> <objref tsid="PHFAL9IF63D2Q0N" label="Edwirges"/> <objref tsid="PHVBCNUCPE228CL" label="KP Doody"/> <objref tsid="PHVIBHO8RN02DFH" label="jasbo"/> <objref tsid="PIFHJ5TCM6D1558" label="Lelu"/> <objref tsid="PHVA0E8BP892180" label="Lady Myseri"/> <objref tsid="PHV5AI7DGI72EMV" label="MrMatt"/> <objref tsid="PHFDKR3DCVC2IMT" label="Uric The Oddball"/> <objref tsid="PUVVCS4GQ7C3VC8" label="JacktheStripper"/> <objref tsid="PUVKH4U109G2KCA" label="Turbo Buffalo"/> <objref tsid="PUV1G2MGJU93SHL" label="lindsanator"/> <objref tsid="PIF3OCMOP251AKC" label="shhexy corin"/> <objref tsid="PCR9E5GQJSM1GDF" label="Wren Bramble"/> <objref tsid="PIF17RS00KKUSJ" label="Eureka"/> <objref tsid="PIF6RN35T3D1DT2" label="ping"/> <objref tsid="PCRFJ2ABSEV1F8E" label="Millie"/> <objref tsid="PCR3F7ARASM149R" label="lucy jane"/> <objref tsid="PUVNT8J9T5D29DT" label="Spinmann"/> <objref tsid="PUVDHJUUFC938Q6" label="Civia"/> <objref tsid="PUVO1O2T7GO29R8" label="Plutopia"/> <objref tsid="PCRDMHR3NDO1FVT" label="Varaeth"/> <objref tsid="PCRJ2SFJ7IL1KQD" label="Gabi"/> <objref tsid="PHVKJEP0I6321HU" label="Radasha"/> <objref tsid="PUVPNF3PS2I2HUT" label="Plotina"/> <objref tsid="PUVL4H4PR673RJM" label="Shitty Bill"/> <objref tsid="PIF210IIKF015FF" label="Nanookie"/> <objref tsid="PHF75TP3PRC2DMG" label="Bearington Boots"/> <objref tsid="PIF1UFTOS10HF" label="striatic"/> <objref tsid="PUV99J37JBE2ADF" label="Calan Adan"/> <objref tsid="PHVUDUTT3I22BQ0" label="Bunni3"/> <objref tsid="PHVLQ8CSCB52UUB" label="Rook"/> <objref tsid="PUV5PHI2GBG2R4F" label="Orange Jello"/> <objref tsid="PHVH80JUGF7274V" label="nikisot"/> <objref tsid="PUV23KQCPLB39ED" label="riskybusinessmp"/> <objref tsid="PUV9NBIC7MG2727" label="Zudora"/> <objref tsid="PCRUGJ95S2N17GO" label="Lilith"/> <objref tsid="PUVD79HQPFD2AHJ" label="Sir Isaac Nukem"/> <objref tsid="PHV3DI71MH926L7" label="Tali&apos;Zorah"/> <objref tsid="PM1L3BRN4Q12KAH" label="Zenny"/> <objref tsid="PIFUJHB7F4D10PI" label="Mac Rapalicious"/> <objref tsid="PHVL9JGARN52OG2" label="ԲʆuԲԲyɱ"/> <objref tsid="PHFSL7BCQ2D2AAI" label="Windswept"/> <objref tsid="PUV6UOODPKF200K" label="ALZ_LO"/> <objref tsid="PHFQU3A0A3D25GB" label="Nostie"/> <objref tsid="PHVCM54BMP72K56" label="Papilula"/> <objref tsid="PM1B73SDG602CVK" label="larky lion"/> <objref tsid="PA9T8Q9677E20UC" label="Mysterious Hermit"/> <objref tsid="PUVMMR3UJN934EI" label="LeeluDalasMultipass"/> <objref tsid="PHF8ES6AMVC2E5L" label="Mmmteague"/> <objref tsid="PUVLMV3I98D2H47" label="in shan we trust"/> <objref tsid="PUV733TUK1H2PAE" label="Aissa"/> <objref tsid="PHVPT6F2H542DQD" label="emdot"/> <objref tsid="PIF1OSTOROD0P" label="EgIantine"/> </objrefs> </game_object>
87,679
Common Lisp
.l
2,444
31.246727
208
0.672146
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
b38cb67a83afa7f2a6ed896792f3aa400e3066679fa10e43323c0e95dcc8b56a
20,852
[ -1 ]
20,853
LUVDU3H5COS2S4O.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GUVDU3H5COS2S4O Fasena Preserve - Pretty smaller trees/LUVDU3H5COS2S4O.xml
<game_object tsid="LUVDU3H5COS2S4O" ts="1364234173896" label="Fasena Preserve" class_tsid="town" hubid="120" moteid="9" letime="3g8emq20" rbtime="2soc5hs5" upd_gs="gs6" load_time="2013-03-25 10:45:57.000"> <object id="dynamic"> <bool id="jobs_is_locked">false</bool> <object id="loading_image"> <str id="url">streets/2012-04-14/LUVDU3H5COS2S4O_loading_1334451817.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <object id="image"> <str id="url">streets/2012-04-14/LUVDU3H5COS2S4O_main_1334451819.jpg</str> <int id="w">720</int> <int id="h">120</int> </object> <object id="edit_history"> <str id="1334171000">PIFB7EKKN321MEN:gyoza:locodeco-replace</str> <str id="1334255866">tsauth-gyoza:add_street_obj-signposts</str> <str id="1334255892">tsauth-gyoza:modify_street_obj-signposts-signpost_1</str> <str id="1334256313">PIFB7EKKN321MEN:gyoza:locodeco-replace</str> <str id="1334256415">PIFB7EKKN321MEN:gyoza:locodeco-replace</str> <str id="1334263586">PCR11BHHPVN1AIQ:Lisa:locodeco-replace</str> <str id="1334354751">PCR11BHHPVN1AIQ:Lisa:locodeco-replace</str> <str id="1334451501">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1334451506">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1334451593">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1334451661">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1334451731">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1334451740">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1334793211">tsauth-lisa:edit_street_meta</str> </object> <object id="qurazy"> </object> <bool id="jobs_auto_unlock">false</bool> <bool id="no_teleportation">false</bool> <bool id="disallow_animals">true</bool> <bool id="no_rook">true</bool> <object id="delayed_sounds"> </object> <object id="incantations"> <object id="PUV24RND2U83B75"> <int id="step">1</int> <int id="ts">1350438483</int> </object> <object id="PHVOMQ3KNQA2QGE"> <int id="step">1</int> <int id="ts">1350439565</int> </object> <object id="PHVERIL4RP626NI"> <int id="step">2</int> <int id="ts">1350439567</int> </object> <object id="PHFU9TB1JVC2JE6"> <int id="step">3</int> <int id="ts">1350439570</int> </object> <object id="PUVNIED25Q93D4F"> <int id="step">1</int> <int id="ts">1350439787</int> </object> <object id="PA9UEVCBM4E2797"> <int id="step">1</int> <int id="ts">1350440239</int> </object> <object id="PUVJF5AVKQB3MQ7"> <int id="step">2</int> <int id="ts">1350440242</int> </object> <object id="PA9MJN05L4E2BUP"> <int id="step">3</int> <int id="ts">1350440243</int> </object> <object id="PHF7GOMJS1D24NC"> <int id="step">1</int> <int id="ts">1350440591</int> </object> <object id="PUVFUD1UJRE26GD"> <int id="step">2</int> <int id="ts">1350440594</int> </object> <object id="PUVI4EDKGAJ207T"> <int id="step">3</int> <int id="ts">1350440596</int> </object> <object id="PUVDSDFE2JA34CB"> <int id="step">1</int> <int id="ts">1350441242</int> </object> <object id="PCR91B3UB8N1O3S"> <int id="step">2</int> <int id="ts">1350441244</int> </object> <object id="PA9JU3J1S1E2OQH"> <int id="step">3</int> <int id="ts">1350441248</int> </object> <object id="PCRAK4N00CN18NM"> <int id="step">1</int> <int id="ts">1350441913</int> </object> <object id="PUV2EGMNAHS2OQC"> <int id="step">1</int> <int id="ts">1350443726</int> </object> <object id="PUVQDDMBDK93H76"> <int id="step">1</int> <int id="ts">1350444645</int> </object> <object id="PUVEHJQG89N2LRV"> <int id="step">2</int> <int id="ts">1350444648</int> </object> <object id="PUV72LIAQGM22AJ"> <int id="step">3</int> <int id="ts">1350444654</int> </object> <object id="PUVG890R54L2CF4"> <int id="step">1</int> <int id="ts">1350446559</int> </object> <object id="PUVN8LR3HQ63GE4"> <int id="step">1</int> <int id="ts">1350446660</int> </object> <object id="PIF5ERQF5R61H5F"> <int id="step">1</int> <int id="ts">1350449790</int> </object> <object id="PHFJAE8FQVC2RNH"> <int id="step">1</int> <int id="ts">1350452125</int> </object> <object id="PHFCA0VG30D2LVR"> <int id="step">2</int> <int id="ts">1350452128</int> </object> <object id="PUVCAJTDPFH203K"> <int id="step">3</int> <int id="ts">1350452129</int> </object> <object id="PUVEJE60JF93OGC"> <int id="step">1</int> <int id="ts">1350453089</int> </object> <object id="PUVITTM2DA93114"> <int id="step">1</int> <int id="ts">1350453408</int> </object> <object id="PHFODCHB93D2L7K"> <int id="step">2</int> <int id="ts">1350453412</int> </object> <object id="PUVGV2K6PBG24Q2"> <int id="step">3</int> <int id="ts">1350453414</int> </object> <object id="PUVQ0V5KF4H2DL4"> <int id="step">1</int> <int id="ts">1350464296</int> </object> <object id="PHF9L3JP5BD2R6D"> <int id="step">1</int> <int id="ts">1350464697</int> </object> <object id="PUV78NOA0G73MM9"> <int id="step">2</int> <int id="ts">1350464701</int> </object> <object id="PA9QA8RBRPD22NK"> <int id="step">3</int> <int id="ts">1350464705</int> </object> <object id="PIFB817PKB634JI"> <int id="step">1</int> <int id="ts">1350465537</int> </object> <object id="PUVB2QOCAGG2LF5"> <int id="step">2</int> <int id="ts">1350474870</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1350476659</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1350476661</int> </object> <object id="PHFIS28II2D239P"> <int id="step">3</int> <int id="ts">1350476662</int> </object> <object id="PCRB61FH9SJ1VC4"> <int id="step">1</int> <int id="ts">1350477118</int> </object> <object id="PUV70B01CBG27J4"> <int id="step">1</int> <int id="ts">1350479460</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1350481070</int> </object> <object id="PHFVN17DD0D2G3V"> <int id="step">2</int> <int id="ts">1350481072</int> </object> <object id="PHFLM7KOU2D24PL"> <int id="step">3</int> <int id="ts">1350481073</int> </object> <object id="PUVMCPKNL0F22UT"> <int id="step">1</int> <int id="ts">1350481138</int> </object> <object id="PHFT6U31UBD2A1I"> <int id="step">1</int> <int id="ts">1350483232</int> </object> <object id="PIF1AB3PVG63M4B"> <int id="step">2</int> <int id="ts">1350483268</int> </object> <object id="PA9P7M83LMD2FAO"> <int id="step">3</int> <int id="ts">1350483270</int> </object> <object id="PA9K8H9L9RD2ISS"> <int id="step">1</int> <int id="ts">1350483391</int> </object> <object id="PUVTVRH3K1A30EQ"> <int id="step">2</int> <int id="ts">1350490287</int> </object> <object id="PHF7NSKA3AD2PU5"> <int id="step">3</int> <int id="ts">1350491970</int> </object> <object id="PHF2VPV503D26FE"> <int id="step">1</int> <int id="ts">1350492103</int> </object> <object id="PCRE15VHINS1RJI"> <int id="step">1</int> <int id="ts">1350495086</int> </object> <object id="PCRSVJC3CFV19J7"> <int id="step">2</int> <int id="ts">1350496469</int> </object> <object id="PHFL7P0N83D2P1R"> <int id="step">1</int> <int id="ts">1350498575</int> </object> <object id="PHFN8I5UBCD2C6Q"> <int id="step">2</int> <int id="ts">1350498577</int> </object> <object id="PHF20O01HRC21FP"> <int id="step">3</int> <int id="ts">1350498578</int> </object> <object id="PUVVLKS22873EOB"> <int id="step">1</int> <int id="ts">1350498941</int> </object> <object id="PIFRR7G3JJ63RLD"> <int id="step">2</int> <int id="ts">1350498943</int> </object> <object id="PUVH3TQBJS63O8M"> <int id="step">3</int> <int id="ts">1350500470</int> </object> <object id="PUVA6OS08S832L9"> <int id="step">1</int> <int id="ts">1350502359</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">1</int> <int id="ts">1350502538</int> </object> <object id="PUVPMQG5849388A"> <int id="step">2</int> <int id="ts">1350503037</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">1</int> <int id="ts">1350504640</int> </object> <object id="PUVFDC083PE2F30"> <int id="step">1</int> <int id="ts">1350504911</int> </object> <object id="PUVNJCEML7P2ES0"> <int id="step">1</int> <int id="ts">1350505654</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">2</int> <int id="ts">1350505655</int> </object> <object id="PUV3JOQHDGB322T"> <int id="step">3</int> <int id="ts">1350505656</int> </object> <object id="PCR170UMOQL11R0"> <int id="step">1</int> <int id="ts">1350507107</int> </object> <object id="PIF7PCGSCQ53QR5"> <int id="step">2</int> <int id="ts">1350507114</int> </object> <object id="PHFRN5FV25D26F7"> <int id="step">3</int> <int id="ts">1350507118</int> </object> <object id="PHVLEE66STA2M50"> <int id="step">1</int> <int id="ts">1350508026</int> </object> <object id="PUVQEB5OE6H22K9"> <int id="step">2</int> <int id="ts">1350508110</int> </object> <object id="PUVOV284NNA3T07"> <int id="step">1</int> <int id="ts">1350508975</int> </object> <object id="PUVEO0HVO0B3E00"> <int id="step">2</int> <int id="ts">1350508978</int> </object> <object id="PUV1J3A7QIH2TFF"> <int id="step">3</int> <int id="ts">1350510156</int> </object> <object id="PUVVE7C5HV93LDE"> <int id="step">1</int> <int id="ts">1350510199</int> </object> <object id="PUVU9VTHCTE2J62"> <int id="step">2</int> <int id="ts">1350510206</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">3</int> <int id="ts">1350510207</int> </object> <object id="PHFBJB377AD29TL"> <int id="step">1</int> <int id="ts">1350511553</int> </object> <object id="PHVGI4R40M32RKM"> <int id="step">2</int> <int id="ts">1350511731</int> </object> <object id="PA9LJFAJSFD245A"> <int id="step">3</int> <int id="ts">1350511761</int> </object> <object id="PIFSMKNBOG63N0R"> <int id="step">1</int> <int id="ts">1350512210</int> </object> <object id="PCR14AIGQJO1V4O"> <int id="step">2</int> <int id="ts">1350512213</int> </object> <object id="PUVS00IIIJ932CP"> <int id="step">3</int> <int id="ts">1350512216</int> </object> <object id="PHFFVCJKF1D27NI"> <int id="step">1</int> <int id="ts">1350512754</int> </object> <object id="PUVIS05FIIA3SBO"> <int id="step">1</int> <int id="ts">1350512938</int> </object> <object id="PHFG6RUSF1D2GQU"> <int id="step">2</int> <int id="ts">1350512938</int> </object> <object id="PHFTTVBJQ2D2PP8"> <int id="step">3</int> <int id="ts">1350512944</int> </object> <object id="PIFHIBOVJ6632DF"> <int id="step">1</int> <int id="ts">1350514046</int> </object> <object id="PUVG6IV8J5F28N1"> <int id="step">1</int> <int id="ts">1350514358</int> </object> <object id="PDO6QS7KMDT2LJH"> <int id="step">2</int> <int id="ts">1350514363</int> </object> <object id="PUVCAD6F9A734MT"> <int id="step">3</int> <int id="ts">1350514364</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">1</int> <int id="ts">1350516230</int> </object> <object id="PUV6L7AB0JH22K3"> <int id="step">2</int> <int id="ts">1350516678</int> </object> <object id="PUVBO94BK8K2SNQ"> <int id="step">1</int> <int id="ts">1350518082</int> </object> <object id="PUV5RFGF99D2CGE"> <int id="step">2</int> <int id="ts">1350518084</int> </object> <object id="PUVCK0THA3J2RTL"> <int id="step">1</int> <int id="ts">1350519534</int> </object> <object id="PHFJVIL04RC2ULD"> <int id="step">2</int> <int id="ts">1350519703</int> </object> <object id="PHVK2FSFOT22C3I"> <int id="step">1</int> <int id="ts">1350519754</int> </object> <object id="PHFFAI36B2D228O"> <int id="step">1</int> <int id="ts">1350519861</int> </object> <object id="PIF2V9ICHO53PFN"> <int id="step">2</int> <int id="ts">1350519865</int> </object> <object id="PHVRIB04OQA2NMA"> <int id="step">3</int> <int id="ts">1350519868</int> </object> <object id="PUVPPEC3I683PE4"> <int id="step">1</int> <int id="ts">1350520356</int> </object> <object id="PUVGI68DJ9G2P24"> <int id="step">2</int> <int id="ts">1350520357</int> </object> <object id="PM11J0LUK902GQV"> <int id="step">3</int> <int id="ts">1350520363</int> </object> <object id="PUV10ALD09H22LB"> <int id="step">1</int> <int id="ts">1350520540</int> </object> <object id="PIF5BEQREL632KO"> <int id="step">1</int> <int id="ts">1350520774</int> </object> <object id="PM1FUK88Q502Q0E"> <int id="step">2</int> <int id="ts">1350520779</int> </object> <object id="PUVMU6HARBE2LP3"> <int id="step">3</int> <int id="ts">1350520840</int> </object> <object id="PUVVEUBT0KE20IO"> <int id="step">1</int> <int id="ts">1350521065</int> </object> <object id="PHFPRQPJJ2D2NKI"> <int id="step">1</int> <int id="ts">1350521359</int> </object> <object id="PUV5ECT7ECG2D87"> <int id="step">1</int> <int id="ts">1350521549</int> </object> <object id="PUVEU98NFTF2C1O"> <int id="step">1</int> <int id="ts">1354915146</int> </object> <object id="PUVLEOJADLC3GC8"> <int id="step">1</int> <int id="ts">1354916492</int> </object> <object id="PUVFDCV0HFC32U7"> <int id="step">2</int> <int id="ts">1354916495</int> </object> <object id="PUVH597T7DC32E1"> <int id="step">3</int> <int id="ts">1354916497</int> </object> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PUVKB90ND4C32VQ">1352344619</int> </object> <object id="25-07-09"> <int id="PHFBAN7Q4TC22VA">1352352550</int> <int id="PUV2LHC33FC3CI1">1352357089</int> <int id="PHFRJ945A3D2FMO">1352359083</int> </object> <object id="25-07-11"> <int id="PUV2JT2UJQ83OQ6">1352389019</int> </object> <object id="25-07-12"> <int id="PUV2PGPL55A3V25">1352396092</int> <int id="PUV2JT2UJQ83OQ6">1352397242</int> <int id="PUVOFTR09HD31HM">1352399654</int> <int id="PUVS76IBB0S2R71">1352400868</int> </object> <object id="26-03-04"> <int id="PA9TIG5TT8I2V6C">1354390179</int> </object> </object> <object id="incantations_redux"> <object id="PUVFPDA329C31CD"> <int id="step">1</int> <int id="ts">1354917564</int> </object> <object id="PUVNQ08H15C3F2V"> <int id="step">2</int> <int id="ts">1354917565</int> </object> <object id="PUVGDDTPQMC3NJL"> <int id="step">3</int> <int id="ts">1354917568</int> </object> <object id="PUVIJ7TCMQA3P45"> <int id="step">1</int> <int id="ts">1354919297</int> </object> <object id="PUVOV284NNA3T07"> <int id="step">2</int> <int id="ts">1354919300</int> </object> <object id="PUV9IQOTQH931R1"> <int id="step">3</int> <int id="ts">1354919302</int> </object> <object id="PCR6L4VMU3N1H72"> <int id="step">1</int> <int id="ts">1354919307</int> </object> <object id="PM1A3P8FSA0242M"> <int id="step">1</int> <int id="ts">1354919315</int> </object> <object id="PUVP6M2EH9G2Q22"> <int id="step">1</int> <int id="ts">1354924794</int> </object> <object id="PUV5EVLD0KF2669"> <int id="step">1</int> <int id="ts">1354926237</int> </object> <object id="PUV4J86UJPC3TEN"> <int id="step">2</int> <int id="ts">1354926238</int> </object> <object id="PUVBHA1C58C33PQ"> <int id="step">3</int> <int id="ts">1354926239</int> </object> <object id="PA97PHPM54E2M0U"> <int id="step">1</int> <int id="ts">1354936440</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">2</int> <int id="ts">1354936442</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">3</int> <int id="ts">1354936443</int> </object> <object id="PUVVH9UE34837KI"> <int id="step">1</int> <int id="ts">1354936541</int> </object> <object id="PUVERUQUIIJ2TCI"> <int id="step">2</int> <int id="ts">1354936544</int> </object> <object id="PA95UHHMLID28OO"> <int id="step">3</int> <int id="ts">1354936547</int> </object> <object id="PUVEHJDLLHC3H57"> <int id="step">1</int> <int id="ts">1354938276</int> </object> <object id="PUVC73GATSC3E92"> <int id="step">2</int> <int id="ts">1354938279</int> </object> <object id="PUVQEFLSU9C3SN2"> <int id="step">1</int> <int id="ts">1354938634</int> </object> <object id="PUVE2TGQ79S2VUR"> <int id="step">1</int> <int id="ts">1354966502</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">2</int> <int id="ts">1354966503</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">3</int> <int id="ts">1354966503</int> </object> <object id="PUVKMJQUODB3L7T"> <int id="step">1</int> <int id="ts">1354973632</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">2</int> <int id="ts">1354979362</int> </object> <object id="PUV42LEOBAF2MKD"> <int id="step">1</int> <int id="ts">1354989512</int> </object> <object id="PUV3B32Q8JG2DB3"> <int id="step">1</int> <int id="ts">1354995759</int> </object> <object id="PUVKLU36GOC35IF"> <int id="step">2</int> <int id="ts">1354995762</int> </object> <object id="PUVLQBGCGSM26QB"> <int id="step">3</int> <int id="ts">1354995762</int> </object> <object id="PUV8J2EOETF2UFR"> <int id="step">1</int> <int id="ts">1354999719</int> </object> <object id="PIFG988P1S53EGC"> <int id="step">2</int> <int id="ts">1355000059</int> </object> </object> <int id="incantations_redux_step">2</int> </object> <objrefs id="items"> <objref tsid="IUVFD2BSJNT2U0E" label="Fox Ranger"/> <objref tsid="IUVA27HQARS2DOH" label="Fox Stop Marker"/> <objref tsid="IUV9R2SOARS26SD" label="spawner"/> <objref tsid="IUVA063QARS29CO" label="Fox Stop Marker"/> <objref tsid="IUVA0K6QARS2DP2" label="Fox Stop Marker"/> <objref tsid="IUVA159QARS25J9" label="Fox Stop Marker"/> <objref tsid="IUVA1OBQARS2SBV" label="Fox Stop Marker"/> <objref tsid="IUVBEDJ65RS2NCR" label="Qurazy marker"/> </objrefs> <objrefs id="players"> <objref tsid="PM1L74GEM602JU8" label="Lianne"/> <objref tsid="PA9PL2SE11E2JT9" label="Stensöta"/> </objrefs> </game_object>
19,183
Common Lisp
.l
672
24.165179
205
0.621684
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
25fbdaed2a205440eb8d9005b6aad2ab66b3c788cda2c1ebdaff9d063442417c
20,853
[ -1 ]
20,854
GUVDU3H5COS2S4O.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GUVDU3H5COS2S4O Fasena Preserve - Pretty smaller trees/GUVDU3H5COS2S4O.xml
<game_object tsid="GUVDU3H5COS2S4O" ts="1335301822599" label="Fasena Preserve" class_tsid="" lastUpdateTime="1335301812328" upd_gs="gs11" load_time="2012-04-24 09:45:00.035" upd_time="2012-04-24 14:05:06.975"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id="b">0</int> <str id="label">Fox_Preserve_03</str> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="T_1331845429792"> <int id="w">4200</int> <str id="name">sky</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-21</int> </object> </object> <int id="h">1000</int> <object id="decos"> <object id="cloud_fluffy_1_1331917692616"> <str id="name">cloud_fluffy_1_1331917692609</str> <int id="y">628</int> <int id="h">127</int> <int id="z">3</int> <int id="w">460</int> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">3457</int> </object> <object id="cloud_fluffy_1_1332176701171"> <str id="name">cloud_fluffy_1_1331917692609</str> <int id="y">421</int> <int id="h">220</int> <int id="z">12</int> <int id="w">816</int> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">4192</int> </object> <object id="cloud_fluffy_2_1331917692613"> <str id="name">cloud_fluffy_2_1331917692608</str> <int id="y">598</int> <int id="h">88</int> <int id="z">5</int> <int id="w">598</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="x">2501</int> </object> <object id="cloud_fluffy_1_1331917692615"> <str id="name">cloud_fluffy_1_1331917692609</str> <int id="y">608</int> <int id="h">83</int> <int id="z">2</int> <int id="w">452</int> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">2943</int> </object> <object id="cloud_fluffy_2_1331917692612"> <str id="name">cloud_fluffy_2_1331917692608</str> <int id="y">668</int> <int id="h">118</int> <int id="z">4</int> <int id="w">598</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="x">1881</int> </object> <object id="mountain_trees_darker_1_1331853485012"> <str id="name">mountain_trees_darker_1_1331853485010</str> <int id="y">849</int> <int id="h">355</int> <int id="z">8</int> <int id="w">979</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="x">2215</int> </object> <object id="pinehills_distant_1_1331938657146"> <str id="name">pinehills_distant_1_1331853485034</str> <int id="y">967</int> <int id="h">334</int> <int id="z">11</int> <int id="w">1238</int> <str id="sprite_class">pinehills_distant_1</str> <int id="x">612</int> </object> <object id="cloud_fluffy_2_1331917692614"> <str id="name">cloud_fluffy_2_1331917692608</str> <int id="y">597</int> <int id="h">87</int> <int id="z">6</int> <int id="w">598</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="x">3979</int> </object> <object id="cloud_fluffy_1_1331917692609"> <str id="name">cloud_fluffy_1_1331917692609</str> <int id="y">628</int> <int id="h">129</int> <int id="z">1</int> <int id="w">594</int> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">396</int> </object> <object id="pinehills_distant_1_1331938656796"> <str id="name">pinehills_distant_1_1331853485034</str> <int id="y">978</int> <int id="h">334</int> <int id="z">10</int> <int id="w">1238</int> <str id="sprite_class">pinehills_distant_1</str> <int id="x">1370</int> </object> <object id="pinehills_distant_1_1331853485034"> <str id="name">pinehills_distant_1_1331853485034</str> <int id="y">954</int> <int id="h">334</int> <int id="z">9</int> <int id="w">1238</int> <str id="sprite_class">pinehills_distant_1</str> <int id="x">2622</int> </object> <object id="mountain_trees_darker_1_1331853485011"> <str id="name">mountain_trees_darker_1_1331853485010</str> <int id="y">797</int> <int id="h">294</int> <int id="z">7</int> <int id="w">970</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="x">2690</int> </object> <object id="cloud_fluffy_2_1331917692608"> <str id="name">cloud_fluffy_2_1331917692608</str> <int id="y">383</int> <int id="h">200</int> <int id="z">0</int> <int id="w">878</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="x">963</int> </object> </object> <int id="z">-3</int> </object> <object id="T_1331845429794"> <int id="w">4920</int> <str id="name">bg_2</str> <object id="filtersNEW"> <object id="tintAmount"> <int id="value">0</int> </object> <object id="brightness"> <int id="value">-25</int> </object> </object> <int id="h">1000</int> <object id="decos"> <object id="tree_wallpaper_1a_1331938656889"> <str id="name">tree_wallpaper_1a_1331853485023</str> <int id="y">889</int> <int id="h">253</int> <int id="z">4</int> <int id="w">681</int> <str id="sprite_class">tree_wallpaper_1a</str> <int id="x">643</int> <int id="r">2</int> </object> <object id="pinecluster_mask_1_1331938656883"> <str id="name">pinecluster_mask_1_1331938656869</str> <int id="y">728</int> <int id="h">26</int> <int id="z">20</int> <int id="w">68</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">648</int> </object> <object id="tree_wallpaper_1a_1332176700896"> <str id="name">tree_wallpaper_1a_1331853485023</str> <int id="y">900</int> <int id="h">253</int> <int id="z">6</int> <int id="w">681</int> <str id="sprite_class">tree_wallpaper_1a</str> <int id="x">1164</int> </object> <object id="cloud_fluffy_1_1331938657132"> <str id="name">cloud_fluffy_1_1331917692609</str> <int id="y">508</int> <int id="h">220</int> <int id="z">73</int> <int id="w">816</int> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">4048</int> </object> <object id="bush_3_1331938656872"> <str id="name">bush_3_1331938656871</str> <int id="y">770</int> <int id="h">33</int> <int id="z">68</int> <int id="w">95</int> <str id="sprite_class">bush_3</str> <int id="x">951</int> </object> <object id="transition_hill_1_1331932153029"> <str id="name">transition_hill_1_1331848266527</str> <int id="y">761</int> <int id="h">79</int> <int id="z">25</int> <int id="w">844</int> <str id="sprite_class">transition_hill_1</str> <int id="x">1020</int> </object> <object id="tree_canopy_1_1331938657148"> <str id="name">tree_canopy_1_1331938656803</str> <int id="y">712</int> <int id="h">201</int> <int id="z">45</int> <int id="w">256</int> <str id="sprite_class">tree_canopy_1</str> <int id="x">3031</int> </object> <object id="tree_canopy_1_1331938656805"> <str id="name">tree_canopy_1_1331938656803</str> <int id="y">699</int> <int id="h">142</int> <int id="z">52</int> <int id="w">181</int> <str id="sprite_class">tree_canopy_1</str> <int id="x">48</int> </object> <object id="pinecluster_mask_1_1331938656884"> <str id="name">pinecluster_mask_1_1331938656869</str> <int id="y">734</int> <int id="h">26</int> <int id="z">21</int> <int id="w">68</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">652</int> </object> <object id="tree_deciduous2_1331938656784"> <str id="name">tree_deciduous2_1331848266528</str> <int id="y">761</int> <int id="h">279</int> <int id="z">64</int> <int id="w">283</int> <str id="sprite_class">tree_deciduous2</str> <int id="x">2439</int> </object> <object id="tree_group_bg2_1_1331938656885"> <str id="name">tree_group_bg2_1_1331853485027</str> <int id="y">742</int> <int id="h">124</int> <int id="z">10</int> <int id="w">95</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">758</int> </object> <object id="bush_3_1331938657138"> <str id="name">bush_3_1331938656871</str> <int id="y">718</int> <int id="h">24</int> <bool id="h_flip">true</bool> <int id="z">46</int> <int id="w">68</int> <str id="sprite_class">bush_3</str> <int id="x">1157</int> </object> <object id="wildflowers_bg_4_1332176701010"> <str id="name">wildflowers_bg_4_1332176701009</str> <int id="y">689</int> <int id="h">20</int> <int id="z">41</int> <int id="w">233</int> <str id="sprite_class">wildflowers_bg_4</str> <int id="x">2502</int> </object> <object id="tree_canopy_1_1331938657100"> <str id="name">tree_canopy_1_1331938656803</str> <int id="y">699</int> <int id="h">143</int> <int id="z">43</int> <int id="w">183</int> <str id="sprite_class">tree_canopy_1</str> <int id="x">4882</int> </object> <object id="bush_3_1331938656874"> <str id="name">bush_3_1331938656871</str> <int id="y">746</int> <int id="h">33</int> <int id="z">70</int> <int id="w">95</int> <str id="sprite_class">bush_3</str> <int id="x">133</int> </object> <object id="wildflowers_bg_3_1331938656867"> <str id="name">wildflowers_bg_3_1331938656867</str> <int id="y">714</int> <int id="h">20</int> <int id="z">27</int> <int id="w">196</int> <str id="sprite_class">wildflowers_bg_3</str> <int id="x">846</int> </object> <object id="tree_deciduous3_1331938656786"> <str id="name">tree_deciduous3_1331848266415</str> <int id="y">720</int> <int id="h">164</int> <int id="z">63</int> <int id="w">121</int> <str id="sprite_class">tree_deciduous3</str> <int id="x">2151</int> </object> <object id="bush_3_1331938657142"> <str id="name">bush_3_1331938656871</str> <int id="y">734</int> <int id="h">24</int> <bool id="h_flip">true</bool> <int id="z">75</int> <int id="w">68</int> <str id="sprite_class">bush_3</str> <int id="x">1230</int> </object> <object id="bush_3_1331938657140"> <str id="name">bush_3_1331938656871</str> <int id="y">724</int> <int id="h">24</int> <bool id="h_flip">true</bool> <int id="z">48</int> <int id="w">68</int> <str id="sprite_class">bush_3</str> <int id="x">1242</int> </object> <object id="transition_hill_1_1331932153025"> <str id="name">transition_hill_1_1331848266527</str> <int id="y">765</int> <int id="h">91</int> <int id="z">39</int> <int id="w">1073</int> <str id="sprite_class">transition_hill_1</str> <int id="x">2234</int> </object> <object id="pinecluster_mask_1_1331938656877"> <str id="name">pinecluster_mask_1_1331938656869</str> <int id="y">715</int> <int id="h">26</int> <int id="z">15</int> <int id="w">68</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">484</int> </object> <object id="tree_canopy_1_1331938656806"> <str id="name">tree_canopy_1_1331938656803</str> <int id="y">739</int> <int id="h">177</int> <int id="z">53</int> <int id="w">226</int> <str id="sprite_class">tree_canopy_1</str> <int id="x">170</int> </object> <object id="transition_hill_2_1331853485006"> <str id="name">transition_hill_2_1331853484997</str> <int id="y">720</int> <int id="h">100</int> <bool id="h_flip">true</bool> <int id="z">42</int> <int id="w">947</int> <str id="sprite_class">transition_hill_2</str> <int id="x">5074</int> </object> <object id="tree_canopy_single_1_1331938657151"> <str id="name">tree_canopy_single_1_1331938657150</str> <int id="y">706</int> <int id="h">144</int> <int id="z">1</int> <int id="w">76</int> <str id="sprite_class">tree_canopy_single_1</str> <int id="x">2976</int> </object> <object id="transition_hill_1_1331853485007"> <str id="name">transition_hill_1_1331848266527</str> <int id="y">692</int> <int id="h">76</int> <int id="z">33</int> <int id="w">1073</int> <str id="sprite_class">transition_hill_1</str> <int id="x">3862</int> </object> <object id="evenground_platform_long_1331932153023"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">714</int> <int id="h">38</int> <int id="z">29</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">4248</int> </object> <object id="flower_bush_5_1331938657136"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">727</int> <int id="h">29</int> <int id="z">50</int> <int id="w">69</int> <str id="sprite_class">flower_bush_5</str> <int id="x">1209</int> </object> <object id="pinecluster_mask_1_1331938656882"> <str id="name">pinecluster_mask_1_1331938656869</str> <int id="y">726</int> <int id="h">26</int> <int id="z">19</int> <int id="w">68</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">624</int> </object> <object id="evenground_platform_long_1331932153030"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">743</int> <int id="h">38</int> <int id="z">13</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">404</int> <int id="r">2</int> </object> <object id="bush_3_1331938656871"> <str id="name">bush_3_1331938656871</str> <int id="y">760</int> <int id="h">33</int> <int id="z">66</int> <int id="w">95</int> <str id="sprite_class">bush_3</str> <int id="x">971</int> </object> <object id="pinecluster_mask_1_1331938656875"> <str id="name">pinecluster_mask_1_1331938656869</str> <int id="y">715</int> <int id="h">26</int> <int id="z">14</int> <int id="w">68</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">425</int> </object> <object id="bush_3_1331938656873"> <str id="name">bush_3_1331938656871</str> <int id="y">735</int> <int id="h">33</int> <int id="z">69</int> <int id="w">95</int> <str id="sprite_class">bush_3</str> <int id="x">90</int> </object> <object id="tree_deciduous2_1331917692411"> <str id="name">tree_deciduous2_1331848266528</str> <int id="y">679</int> <int id="h">221</int> <int id="z">58</int> <int id="w">224</int> <str id="sprite_class">tree_deciduous2</str> <int id="x">3879</int> </object> <object id="pinecluster_mask_1_1331938656879"> <str id="name">pinecluster_mask_1_1331938656869</str> <int id="y">717</int> <int id="h">26</int> <int id="z">16</int> <int id="w">68</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">555</int> </object> <object id="tree_canopy_1_1332176700905"> <str id="name">tree_canopy_1_1331938656803</str> <int id="y">738</int> <int id="h">234</int> <int id="z">54</int> <int id="w">298</int> <str id="sprite_class">tree_canopy_1</str> <int id="x">1746</int> </object> <object id="pinecluster_mask_1_1331938656880"> <str id="name">pinecluster_mask_1_1331938656869</str> <int id="y">720</int> <int id="h">26</int> <int id="z">17</int> <int id="w">68</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">611</int> </object> <object id="evenground_platform_long_1331853485004"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">725</int> <int id="h">38</int> <int id="z">28</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">4191</int> </object> <object id="wildflowers_bg_4_1331938657125"> <str id="name">wildflowers_bg_4_1331938657124</str> <int id="y">647</int> <int id="h">20</int> <int id="z">36</int> <int id="w">233</int> <str id="sprite_class">wildflowers_bg_4</str> <int id="x">3648</int> </object> <object id="bush_3_1332176701003"> <str id="name">bush_3_1331938657127</str> <int id="y">704</int> <int id="h">26</int> <int id="z">60</int> <int id="w">74</int> <str id="sprite_class">bush_3</str> <int id="x">2129</int> </object> <object id="cloud_fluffy_1_1331938657135"> <str id="name">cloud_fluffy_1_1331917692609</str> <int id="y">655</int> <int id="h">76</int> <int id="z">0</int> <int id="w">824</int> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">1289</int> </object> <object id="wildflowers_bg_4_1331938657124"> <str id="name">wildflowers_bg_4_1331938657124</str> <int id="y">637</int> <int id="h">20</int> <int id="z">35</int> <int id="w">233</int> <str id="sprite_class">wildflowers_bg_4</str> <int id="x">3748</int> </object> <object id="tree_wallpaper_1a_1331938656865"> <str id="name">tree_wallpaper_1a_1331853485023</str> <int id="y">845</int> <int id="h">253</int> <int id="z">11</int> <int id="w">681</int> <str id="sprite_class">tree_wallpaper_1a</str> <int id="x">4298</int> </object> <object id="bush_3_1332176701006"> <str id="name">bush_3_1331938657127</str> <int id="y">728</int> <int id="h">28</int> <int id="z">77</int> <int id="w">79</int> <str id="sprite_class">bush_3</str> <int id="x">2187</int> </object> <object id="bush_3_1332176701011"> <str id="name">bush_3_1331938657127</str> <int id="y">762</int> <int id="h">48</int> <int id="z">80</int> <int id="w">134</int> <str id="sprite_class">bush_3</str> <int id="x">2421</int> </object> <object id="transition_hill_1_1331932153024"> <str id="name">transition_hill_1_1331848266527</str> <int id="y">754</int> <int id="h">91</int> <int id="z">38</int> <int id="w">1073</int> <str id="sprite_class">transition_hill_1</str> <int id="x">2498</int> </object> <object id="bush_3_1331938657128"> <str id="name">bush_3_1331938657127</str> <int id="y">671</int> <int id="h">28</int> <int id="z">57</int> <int id="w">79</int> <str id="sprite_class">bush_3</str> <int id="x">3913</int> </object> <object id="bush_3_1332176701004"> <str id="name">bush_3_1331938657127</str> <int id="y">718</int> <int id="h">28</int> <bool id="h_flip">true</bool> <int id="z">61</int> <int id="w">79</int> <str id="sprite_class">bush_3</str> <int id="x">2147</int> </object> <object id="tree_canopy_1_1332176700906"> <str id="name">tree_canopy_1_1331938656803</str> <int id="y">737</int> <int id="h">294</int> <int id="z">55</int> <int id="w">375</int> <str id="sprite_class">tree_canopy_1</str> <int id="x">1504</int> </object> <object id="tree_canopy_single_1_1331938657150"> <str id="name">tree_canopy_single_1_1331938657150</str> <int id="y">736</int> <int id="h">178</int> <int id="z">76</int> <int id="w">94</int> <str id="sprite_class">tree_canopy_single_1</str> <int id="x">2871</int> </object> <object id="bush_3_1331938657129"> <str id="name">bush_3_1331938657127</str> <int id="y">681</int> <int id="h">28</int> <int id="z">71</int> <int id="w">79</int> <str id="sprite_class">bush_3</str> <int id="x">3910</int> </object> <object id="tree_deciduous1_1331938656807"> <str id="name">tree_deciduous1_1331848266413</str> <int id="y">731</int> <int id="h">173</int> <int id="z">49</int> <int id="w">154</int> <str id="sprite_class">tree_deciduous1</str> <int id="x">1176</int> </object> <object id="bush_3_1332176701007"> <str id="name">bush_3_1331938657127</str> <int id="y">731</int> <int id="h">28</int> <int id="z">78</int> <int id="w">79</int> <str id="sprite_class">bush_3</str> <int id="x">1872</int> </object> <object id="bush_3_1332176701008"> <str id="name">bush_3_1331938657127</str> <int id="y">740</int> <int id="h">28</int> <int id="z">79</int> <int id="w">79</int> <str id="sprite_class">bush_3</str> <int id="x">1850</int> </object> <object id="wildflowers_bg_3_1331938657126"> <str id="name">wildflowers_bg_3_1331938657126</str> <int id="y">650</int> <int id="h">16</int> <int id="z">34</int> <int id="w">180</int> <str id="sprite_class">wildflowers_bg_3</str> <int id="x">4105</int> </object> <object id="tree_wallpaper_1a_1331938656864"> <str id="name">tree_wallpaper_1a_1331853485023</str> <int id="y">819</int> <int id="h">253</int> <int id="z">12</int> <int id="w">681</int> <str id="sprite_class">tree_wallpaper_1a</str> <int id="x">4862</int> </object> <object id="bush_3_1331938657127"> <str id="name">bush_3_1331938657127</str> <int id="y">666</int> <int id="h">28</int> <int id="z">56</int> <int id="w">79</int> <str id="sprite_class">bush_3</str> <int id="x">3871</int> </object> <object id="wildflowers_bg_4_1331938656866"> <str id="name">wildflowers_bg_4_1331938656866</str> <int id="y">703</int> <int id="h">20</int> <int id="z">26</int> <int id="w">233</int> <str id="sprite_class">wildflowers_bg_4</str> <int id="x">948</int> </object> <object id="tree_canopy_1_1331938657099"> <str id="name">tree_canopy_1_1331938656803</str> <int id="y">720</int> <int id="h">196</int> <int id="z">44</int> <int id="w">250</int> <str id="sprite_class">tree_canopy_1</str> <int id="x">4808</int> </object> <object id="evenground_platform_long_1331932153026"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">714</int> <int id="h">38</int> <int id="z">30</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">3607</int> </object> <object id="transition_hill_2_1331932153028"> <str id="name">transition_hill_2_1331853484997</str> <int id="y">745</int> <int id="h">75</int> <bool id="h_flip">true</bool> <int id="z">51</int> <int id="w">950</int> <str id="sprite_class">transition_hill_2</str> <int id="x">-18</int> </object> <object id="evenground_platform_long_1331932153021"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">748</int> <int id="h">38</int> <int id="z">31</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">4510</int> </object> <object id="bush_3_1331938657147"> <str id="name">bush_3_1331938656871</str> <int id="y">733</int> <int id="h">43</int> <int id="z">67</int> <int id="w">125</int> <str id="sprite_class">bush_3</str> <int id="x">3998</int> </object> <object id="evenground_horizon_1331932153033"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">714</int> <int id="h">34</int> <int id="z">37</int> <int id="w">896</int> <str id="sprite_class">evenground_horizon</str> <int id="x">3908</int> </object> <object id="tree_wallpaper_1a_1332176700895"> <str id="name">tree_wallpaper_1a_1331853485023</str> <int id="y">893</int> <int id="h">253</int> <int id="z">5</int> <int id="w">681</int> <str id="sprite_class">tree_wallpaper_1a</str> <int id="x">1642</int> </object> <object id="tree_group_bg2_1_1331938656887"> <str id="name">tree_group_bg2_1_1331853485027</str> <int id="y">714</int> <int id="h">124</int> <int id="z">8</int> <int id="w">95</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">256</int> </object> <object id="tree_group_bg2_1_1331938656886"> <str id="name">tree_group_bg2_1_1331853485027</str> <int id="y">743</int> <int id="h">124</int> <bool id="h_flip">true</bool> <int id="z">9</int> <int id="w">95</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">863</int> </object> <object id="evenground_platform_long_1331932153031"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">773</int> <int id="h">38</int> <int id="z">23</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">460</int> </object> <object id="tree_group_bg2_1_1331938656888"> <str id="name">tree_group_bg2_1_1331853485027</str> <int id="y">723</int> <int id="h">124</int> <int id="z">7</int> <int id="w">95</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">389</int> </object> <object id="tree_deciduous2_1331938656801"> <str id="name">tree_deciduous2_1331848266528</str> <int id="y">765</int> <int id="h">233</int> <int id="z">65</int> <int id="w">236</int> <str id="sprite_class">tree_deciduous2</str> <int id="x">912</int> </object> <object id="tree_deciduous2_1331938656785"> <str id="name">tree_deciduous2_1331848266528</str> <int id="y">701</int> <int id="h">191</int> <int id="z">59</int> <int id="w">194</int> <str id="sprite_class">tree_deciduous2</str> <int id="x">2100</int> </object> <object id="evenground_platform_long_1331932153032"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">794</int> <int id="h">38</int> <int id="z">24</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">705</int> </object> <object id="cloud_fluffy_2_1331938657133"> <str id="name">cloud_fluffy_2_1331917692608</str> <int id="y">506</int> <int id="h">219</int> <int id="z">74</int> <int id="w">1031</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="x">2777</int> </object> <object id="bush_3_1332176701005"> <str id="name">bush_3_1331938657127</str> <int id="y">718</int> <int id="h">28</int> <int id="z">62</int> <int id="w">79</int> <str id="sprite_class">bush_3</str> <int id="x">2171</int> </object> <object id="bush_3_1331938657139"> <str id="name">bush_3_1331938656871</str> <int id="y">715</int> <int id="h">24</int> <int id="z">47</int> <int id="w">68</int> <str id="sprite_class">bush_3</str> <int id="x">1206</int> </object> <object id="wildflowers_bg_4_1332176701009"> <str id="name">wildflowers_bg_4_1332176701009</str> <int id="y">683</int> <int id="h">20</int> <int id="z">40</int> <int id="w">233</int> <str id="sprite_class">wildflowers_bg_4</str> <int id="x">2381</int> <int id="r">-1</int> </object> <object id="bush_3_1331938657130"> <str id="name">bush_3_1331938657127</str> <int id="y">684</int> <int id="h">28</int> <int id="z">72</int> <int id="w">79</int> <str id="sprite_class">bush_3</str> <int id="x">3960</int> </object> <object id="tree_canopy_single_1_1331938657152"> <str id="name">tree_canopy_single_1_1331938657150</str> <int id="y">707</int> <int id="h">144</int> <int id="z">2</int> <int id="w">76</int> <str id="sprite_class">tree_canopy_single_1</str> <int id="x">3097</int> </object> <object id="tree_wallpaper_1a_1331938656890"> <str id="name">tree_wallpaper_1a_1331853485023</str> <int id="y">848</int> <int id="h">253</int> <int id="z">3</int> <int id="w">681</int> <str id="sprite_class">tree_wallpaper_1a</str> <int id="x">147</int> </object> <object id="pinecluster_mask_1_1331938656878"> <str id="name">pinecluster_mask_1_1331938656869</str> <int id="y">719</int> <int id="h">26</int> <int id="z">22</int> <int id="w">68</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">507</int> </object> <object id="bush_patch_2_1331853485032"> <str id="name">bush_patch_2_1331853485032</str> <int id="y">683</int> <int id="h">18</int> <int id="z">32</int> <int id="w">447</int> <str id="sprite_class">bush_patch_2</str> <int id="x">4435</int> </object> <object id="pinecluster_mask_1_1331938656881"> <str id="name">pinecluster_mask_1_1331938656869</str> <int id="y">722</int> <int id="h">26</int> <int id="z">18</int> <int id="w">68</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">666</int> </object> </object> <int id="z">-2</int> </object> <object id="T_1331845429791"> <int id="w">6000</int> <str id="name">middleplus</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-13</int> </object> </object> <int id="h">1000</int> <object id="decos"> <object id="groddle_grass_1_1332176701138"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">877</int> <int id="h">46</int> <int id="z">157</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">414</int> </object> <object id="flower_bush_5_1332176700951"> <str id="name">flower_bush_5_1331938656843</str> <int id="y">1016</int> <int id="h">120</int> <int id="z">76</int> <int id="w">280</int> <str id="sprite_class">flower_bush_5</str> <int id="x">4910</int> </object> <object id="groddle_grass_2_1332176701145"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">976</int> <int id="h">83</int> <int id="z">161</int> <int id="w">111</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">371</int> </object> <object id="bush_seethrough_01b_g1_1332264261668"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">850</int> <int id="h">96</int> <int id="z">14</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">2571</int> </object> <object id="groddle_grass_2_1332176700934"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">951</int> <int id="h">72</int> <int id="z">73</int> <int id="w">90</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">5312</int> </object> <object id="groddle_cover_clover2_1332176701047"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">1024</int> <int id="h">59</int> <int id="z">123</int> <int id="w">159</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3293</int> </object> <object id="groddle_bush1_1332176701074"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">849</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="z">32</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">1706</int> <int id="r">2</int> </object> <object id="groddle_plant_1_1332176701123"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">888</int> <int id="h">120</int> <int id="z">29</int> <int id="w">113</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">672</int> </object> <object id="groddle_grass_2_1332176700990"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">912</int> <int id="h">66</int> <int id="z">100</int> <int id="w">82</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3287</int> </object> <object id="bush_seethrough_01b_g1_1332264261671"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">888</int> <int id="h">96</int> <int id="z">9</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">3103</int> </object> <object id="groddle_cover_clover2_1332176700961"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">974</int> <int id="h">54</int> <int id="z">89</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4397</int> </object> <object id="groddle_bush4_1332176701130"> <str id="name">groddle_bush4_1331938656842</str> <int id="y">842</int> <int id="h">68</int> <int id="z">18</int> <int id="w">142</int> <str id="sprite_class">groddle_bush4</str> <int id="x">54</int> <int id="r">2</int> </object> <object id="bush_seethrough_01a_g1_1332264261680"> <str id="name">bush_seethrough_01a_g1_1332264261672</str> <int id="y">874</int> <int id="h">72</int> <int id="z">169</int> <int id="w">173</int> <str id="sprite_class">bush_seethrough_01a_g1</str> <int id="x">1670</int> </object> <object id="bush_seethrough_01b_g1_1332264261673"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">897</int> <int id="h">96</int> <int id="z">7</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">937</int> </object> <object id="flower_bush_5_1331938656843"> <str id="name">flower_bush_5_1331938656843</str> <int id="y">870</int> <int id="h">107</int> <int id="z">63</int> <int id="w">251</int> <str id="sprite_class">flower_bush_5</str> <int id="x">4627</int> </object> <object id="groddle_cover_clover2_1332176701068"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">976</int> <int id="h">59</int> <int id="z">134</int> <int id="w">159</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2143</int> </object> <object id="groddle_grass_2_1332176700932"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">964</int> <int id="h">72</int> <int id="z">72</int> <int id="w">90</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">5545</int> </object> <object id="groddle_plant_1_1332176700948"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">881</int> <int id="h">113</int> <int id="z">54</int> <int id="w">106</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">4013</int> </object> <object id="groddle_bush1_1332176701114"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">883</int> <int id="h">94</int> <int id="z">26</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">662</int> <int id="r">2</int> </object> <object id="groddle_bush1_1332176700953"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">969</int> <int id="h">110</int> <int id="z">58</int> <int id="w">187</int> <str id="sprite_class">groddle_bush1</str> <int id="x">5107</int> </object> <object id="groddle_flower_3_1332176701081"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">859</int> <int id="h">44</int> <int id="z">111</int> <int id="w">80</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">2323</int> </object> <object id="groddle_plant_1_1332176701103"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">865</int> <int id="h">109</int> <int id="z">140</int> <int id="w">103</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">1490</int> </object> <object id="groddle_bush4_1332176701054"> <str id="name">groddle_bush4_1331938656842</str> <int id="y">875</int> <int id="h">68</int> <int id="z">17</int> <int id="w">142</int> <str id="sprite_class">groddle_bush4</str> <int id="x">2649</int> <int id="r">2</int> </object> <object id="tree_deciduous1_1331853484958"> <str id="name">tree_deciduous1_1331848266413</str> <int id="y">944</int> <int id="h">943</int> <int id="z">52</int> <int id="w">837</int> <str id="sprite_class">tree_deciduous1</str> <int id="x">4148</int> </object> <object id="groddle_grass_1_1332176701058"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">879</int> <int id="h">46</int> <int id="z">127</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2722</int> </object> <object id="groddle_grass_2_1332176701041"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1004</int> <int id="h">79</int> <int id="z">121</int> <int id="w">98</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3714</int> </object> <object id="flower_bush_7_1331938657076"> <str id="name">flower_bush_7_1331917692419</str> <int id="y">960</int> <int id="h">104</int> <int id="z">66</int> <int id="w">165</int> <str id="sprite_class">flower_bush_7</str> <int id="x">5402</int> </object> <object id="groddle_bush1_1332176701072"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">829</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="z">22</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">1943</int> <int id="r">2</int> </object> <object id="groddle_cover_clover2_1332176700977"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">894</int> <int id="h">54</int> <int id="z">82</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3895</int> </object> <object id="groddle_grass_2_1332176701105"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">884</int> <int id="h">68</int> <int id="z">142</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1380</int> </object> <object id="groddle_grass_2_1332176701057"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">861</int> <int id="h">68</int> <int id="z">11</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2789</int> </object> <object id="groddle_flower_4_1332176701038"> <str id="name">groddle_flower_4_1332176701038</str> <int id="y">890</int> <int id="h">52</int> <bool id="h_flip">true</bool> <int id="z">114</int> <int id="w">88</int> <str id="sprite_class">groddle_flower_4</str> <int id="x">2949</int> </object> <object id="groddle_grass_2_1332176700946"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">883</int> <int id="h">72</int> <int id="z">61</int> <int id="w">90</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4485</int> </object> <object id="groddle_grass_1_1332176701065"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">977</int> <int id="h">52</int> <int id="z">131</int> <int id="w">108</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2439</int> </object> <object id="tree_deciduous3_1331938656839"> <str id="name">tree_deciduous3_1331848266415</str> <int id="y">873</int> <int id="h">951</int> <int id="z">55</int> <int id="w">703</int> <str id="sprite_class">tree_deciduous3</str> <int id="x">1607</int> </object> <object id="groddle_fern_1_1332176700941"> <str id="name">groddle_fern_1_1332176700941</str> <int id="y">877</int> <int id="h">104</int> <int id="z">74</int> <int id="w">174</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">4281</int> </object> <object id="groddle_flower_4_1332176701056"> <str id="name">groddle_flower_4_1332176701038</str> <int id="y">879</int> <int id="h">44</int> <int id="z">116</int> <int id="w">75</int> <str id="sprite_class">groddle_flower_4</str> <int id="x">2815</int> </object> <object id="bush_seethrough_01b_g1_1332264261681"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">867</int> <int id="h">96</int> <int id="z">2</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">3794</int> </object> <object id="bush_seethrough_01a_g1_1332264261688"> <str id="name">bush_seethrough_01a_g1_1332264261672</str> <int id="y">908</int> <int id="h">72</int> <int id="z">1</int> <int id="w">173</int> <str id="sprite_class">bush_seethrough_01a_g1</str> <int id="x">5441</int> </object> <object id="groddle_grass_1_1332176700969"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">979</int> <int id="h">46</int> <int id="z">94</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">4363</int> </object> <object id="groddle_bush1_1332176700954"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">974</int> <int id="h">110</int> <int id="z">59</int> <int id="w">187</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4991</int> </object> <object id="bush_seethrough_01b_g1_1332264261669"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">865</int> <int id="h">96</int> <int id="z">16</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">2734</int> </object> <object id="bush_seethrough_01b_g1_1332264261682"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">858</int> <int id="h">96</int> <int id="z">3</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">3967</int> </object> <object id="groddle_fern_1_1332176701013"> <str id="name">groddle_fern_1_1332176700941</str> <int id="y">992</int> <int id="h">104</int> <bool id="h_flip">true</bool> <int id="z">103</int> <int id="w">174</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">1801</int> </object> <object id="groddle_cover_clover2_1332176700980"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">907</int> <int id="h">54</int> <int id="z">40</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3627</int> </object> <object id="groddle_bush1_1332176701115"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">904</int> <int id="h">94</int> <int id="z">27</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">584</int> <int id="r">2</int> </object> <object id="groddle_grass_1_1332176701128"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">910</int> <int id="h">46</int> <int id="z">155</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">944</int> </object> <object id="rubble_01b_g1_1332176701017"> <str id="name">rubble_01b_g1_1332176701016</str> <int id="y">992</int> <int id="h">134</int> <int id="z">84</int> <int id="w">208</int> <str id="sprite_class">rubble_01b_g1</str> <int id="x">3919</int> </object> <object id="groddle_grass_1_1332176701060"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">851</int> <int id="h">46</int> <int id="z">38</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2441</int> </object> <object id="groddle_flower_4_1332176701152"> <str id="name">groddle_flower_4_1332176701038</str> <int id="y">885</int> <int id="h">50</int> <int id="z">168</int> <int id="w">85</int> <str id="sprite_class">groddle_flower_4</str> <int id="x">59</int> </object> <object id="groddle_grass_2_1332176701104"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">871</int> <int id="h">68</int> <int id="z">141</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1491</int> </object> <object id="groddle_grass_2_1332176700967"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1003</int> <int id="h">81</int> <int id="z">91</int> <int id="w">101</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4133</int> </object> <object id="groddle_cover_clover2_1332176700928"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">942</int> <int id="h">54</int> <int id="z">50</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">5655</int> </object> <object id="groddle_cover_clover2_1332176700959"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">929</int> <int id="h">54</int> <int id="z">86</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4303</int> </object> <object id="groddle_bush1_1332176700939"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">871</int> <int id="h">94</int> <int id="z">60</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4498</int> </object> <object id="groddle_flower_3_1332176701037"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">868</int> <int id="h">44</int> <int id="z">109</int> <int id="w">80</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">2526</int> </object> <object id="groddle_cover_clover2_1332176700960"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">914</int> <int id="h">54</int> <int id="z">81</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4215</int> </object> <object id="groddle_grass_2_1332176701111"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1007</int> <int id="h">73</int> <int id="z">145</int> <int id="w">97</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1573</int> </object> <object id="groddle_flower_4_1332176701079"> <str id="name">groddle_flower_4_1332176701038</str> <int id="y">852</int> <int id="h">50</int> <int id="z">117</int> <int id="w">85</int> <str id="sprite_class">groddle_flower_4</str> <int id="x">2024</int> </object> <object id="groddle_cover_clover2_1332176700987"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">909</int> <int id="h">54</int> <int id="z">42</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3179</int> </object> <object id="groddle_grass_2_1332176701139"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">871</int> <int id="h">68</int> <int id="z">158</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">208</int> </object> <object id="groddle_cover_clover2_1332176701014"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">1022</int> <int id="h">59</int> <int id="z">105</int> <int id="w">159</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">1875</int> </object> <object id="groddle_bush1_1331938656840"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">835</int> <int id="h">94</int> <int id="z">56</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4590</int> </object> <object id="groddle_bush1_1332176700976"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">898</int> <int id="h">94</int> <int id="z">96</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3768</int> </object> <object id="flower_bush_7_1332176701101"> <str id="name">flower_bush_7_1331917692419</str> <int id="y">893</int> <int id="h">104</int> <int id="z">137</int> <int id="w">165</int> <str id="sprite_class">flower_bush_7</str> <int id="x">1315</int> </object> <object id="groddle_grass_2_1332176701109"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1005</int> <int id="h">83</int> <int id="z">143</int> <int id="w">111</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">988</int> </object> <object id="bush_seethrough_01a_g1_1332264261676"> <str id="name">bush_seethrough_01a_g1_1332264261672</str> <int id="y">875</int> <int id="h">72</int> <int id="z">6</int> <int id="w">173</int> <str id="sprite_class">bush_seethrough_01a_g1</str> <int id="x">486</int> </object> <object id="groddle_bush1_1332176700974"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">871</int> <int id="h">94</int> <int id="z">13</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3708</int> </object> <object id="groddle_grass_2_1332176701140"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">875</int> <int id="h">68</int> <int id="z">159</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">173</int> </object> <object id="groddle_bush1_1332176701052"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">1059</int> <int id="h">109</int> <int id="z">126</int> <int id="w">185</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2764</int> <int id="r">2</int> </object> <object id="groddle_bush4_1332176701132"> <str id="name">groddle_bush4_1331938656842</str> <int id="y">869</int> <int id="h">75</int> <int id="z">21</int> <int id="w">156</int> <str id="sprite_class">groddle_bush4</str> <int id="x">26</int> <int id="r">2</int> </object> <object id="groddle_grass_2_1332176701125"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">892</int> <int id="h">68</int> <int id="z">150</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1213</int> </object> <object id="groddle_flower_3_1332176701148"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">1001</int> <int id="h">66</int> <int id="z">163</int> <int id="w">120</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">383</int> </object> <object id="groddle_grass_1_1332176700997"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">899</int> <int id="h">46</int> <int id="z">101</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">3068</int> </object> <object id="groddle_grass_2_1332176701040"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">892</int> <int id="h">66</int> <int id="z">118</int> <int id="w">82</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2979</int> </object> <object id="groddle_grass_2_1332176701042"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1000</int> <int id="h">83</int> <int id="z">119</int> <int id="w">111</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3672</int> </object> <object id="groddle_grass_2_1332176700988"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">914</int> <int id="h">72</int> <int id="z">98</int> <int id="w">90</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3431</int> </object> <object id="groddle_bush1_1332176701051"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">1028</int> <int id="h">109</int> <int id="z">125</int> <int id="w">185</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2641</int> <int id="r">2</int> </object> <object id="groddle_cover_clover2_1332176701015"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">998</int> <int id="h">59</int> <int id="z">104</int> <int id="w">159</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">1931</int> </object> <object id="groddle_plant_1_1331938657091"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">869</int> <int id="h">120</int> <int id="z">64</int> <int id="w">113</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">4694</int> </object> <object id="groddle_flower_3_1332176701149"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">1016</int> <int id="h">57</int> <int id="z">164</int> <int id="w">104</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">1642</int> </object> <object id="groddle_grass_2_1332176701112"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">994</int> <int id="h">73</int> <int id="z">146</int> <int id="w">97</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1344</int> </object> <object id="bush_seethrough_01b_g1_1332264261685"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">861</int> <int id="h">96</int> <int id="z">46</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">4292</int> </object> <object id="gravel_2_1332176701062"> <str id="name">gravel_2_1332176701035</str> <int id="y">885</int> <int id="h">22</int> <bool id="h_flip">true</bool> <int id="z">129</int> <int id="w">39</int> <str id="sprite_class">gravel_2</str> <int id="x">2741</int> </object> <object id="groddle_cover_clover2_1332176700965"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">1025</int> <int id="h">59</int> <int id="z">92</int> <int id="w">159</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4028</int> </object> <object id="flower_bush_5_1332176701075"> <str id="name">flower_bush_5_1331938656843</str> <int id="y">873</int> <int id="h">107</int> <int id="z">136</int> <int id="w">251</int> <str id="sprite_class">flower_bush_5</str> <int id="x">1733</int> </object> <object id="groddle_grass_2_1332176701077"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">855</int> <int id="h">79</int> <int id="z">113</int> <int id="w">98</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1834</int> </object> <object id="groddle_grass_2_1332176701121"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">907</int> <int id="h">68</int> <int id="z">149</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">784</int> </object> <object id="groddle_grass_2_1332176701146"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1021</int> <int id="h">96</int> <int id="z">166</int> <int id="w">127</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">438</int> </object> <object id="groddle_cover_clover2_1332176700963"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">947</int> <int id="h">54</int> <int id="z">87</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4421</int> </object> <object id="groddle_grass_2_1331938657090"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">877</int> <int id="h">72</int> <int id="z">67</int> <int id="w">90</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4683</int> </object> <object id="groddle_grass_2_1332176701080"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">845</int> <int id="h">68</int> <int id="z">23</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1987</int> </object> <object id="gravel_2_1332176701061"> <str id="name">gravel_2_1332176701035</str> <int id="y">878</int> <int id="h">40</int> <int id="z">128</int> <int id="w">71</int> <str id="sprite_class">gravel_2</str> <int id="x">2591</int> </object> <object id="groddle_grass_1_1332176701066"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">1027</int> <int id="h">52</int> <int id="z">132</int> <int id="w">108</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2545</int> </object> <object id="groddle_bush4_1332176700955"> <str id="name">groddle_bush4_1331938656842</str> <int id="y">1008</int> <int id="h">81</int> <bool id="h_flip">true</bool> <int id="z">77</int> <int id="w">169</int> <str id="sprite_class">groddle_bush4</str> <int id="x">5150</int> </object> <object id="bush_seethrough_01a_g1_1332264261675"> <str id="name">bush_seethrough_01a_g1_1332264261672</str> <int id="y">903</int> <int id="h">72</int> <int id="z">152</int> <int id="w">173</int> <str id="sprite_class">bush_seethrough_01a_g1</str> <int id="x">884</int> </object> <object id="rubble_01e_g1_1332176701045"> <str id="name">rubble_01e_g1_1332176701045</str> <int id="y">975</int> <int id="h">50</int> <int id="z">85</int> <int id="w">76</int> <str id="sprite_class">rubble_01e_g1</str> <int id="x">4029</int> </object> <object id="groddle_grass_2_1332176700945"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">887</int> <int id="h">81</int> <int id="z">62</int> <int id="w">101</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4434</int> </object> <object id="groddle_grass_2_1332176701046"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1004</int> <int id="h">79</int> <int id="z">122</int> <int id="w">98</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3360</int> </object> <object id="groddle_grass_2_1332176701043"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1004</int> <int id="h">83</int> <int id="z">120</int> <int id="w">111</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3936</int> </object> <object id="groddle_grass_2_1332176700956"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1014</int> <int id="h">84</int> <int id="z">78</int> <int id="w">105</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">5218</int> </object> <object id="groddle_grass_2_1332176701144"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">988</int> <int id="h">73</int> <int id="z">162</int> <int id="w">97</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">320</int> </object> <object id="groddle_cover_clover2_1332176700927"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">927</int> <int id="h">54</int> <int id="z">49</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">5566</int> </object> <object id="groddle_grass_1_1332176700970"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">883</int> <int id="h">46</int> <int id="z">95</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">4035</int> </object> <object id="groddle_cover_clover2_1332176700929"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">967</int> <int id="h">54</int> <int id="z">68</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">5617</int> </object> <object id="groddle_grass_1_1332176700968"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">967</int> <int id="h">46</int> <int id="z">93</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">4332</int> </object> <object id="groddle_cover_clover2_1332176700962"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">954</int> <int id="h">54</int> <int id="z">88</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4304</int> </object> <object id="groddle_grass_2_1332176700991"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">889</int> <int id="h">72</int> <int id="z">12</int> <int id="w">90</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3395</int> </object> <object id="groddle_plant_1_1332176700947"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">877</int> <int id="h">120</int> <int id="z">53</int> <int id="w">113</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">4044</int> </object> <object id="groddle_bush1_1332176700952"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">989</int> <int id="h">110</int> <int id="z">57</int> <int id="w">187</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4840</int> </object> <object id="groddle_plant_1_1332176701151"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">868</int> <int id="h">109</int> <int id="z">20</int> <int id="w">103</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">147</int> </object> <object id="groddle_plant_1_1332176701122"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">900</int> <int id="h">120</int> <int id="z">148</int> <int id="w">113</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">793</int> </object> <object id="groddle_flower_3_1332176701136"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">906</int> <int id="h">45</int> <int id="z">154</int> <int id="w">82</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">518</int> </object> <object id="groddle_bush1_1332176700940"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">873</int> <int id="h">94</int> <int id="z">44</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4034</int> </object> <object id="groddle_bush4_1331938656842"> <str id="name">groddle_bush4_1331938656842</str> <int id="y">853</int> <int id="h">68</int> <int id="z">48</int> <int id="w">142</int> <str id="sprite_class">groddle_bush4</str> <int id="x">4743</int> </object> <object id="groddle_grass_2_1332176701084"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">834</int> <int id="h">68</int> <int id="z">36</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2176</int> </object> <object id="groddle_plant_1_1332176701100"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">861</int> <int id="h">120</int> <int id="z">138</int> <int id="w">113</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">1516</int> </object> <object id="groddle_fern_1_1332176701012"> <str id="name">groddle_fern_1_1332176700941</str> <int id="y">978</int> <int id="h">104</int> <int id="z">102</int> <int id="w">174</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">1881</int> </object> <object id="groddle_cover_clover2_1332176701108"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">1003</int> <int id="h">59</int> <int id="z">106</int> <int id="w">159</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">1040</int> </object> <object id="groddle_plant_1_1332176700933"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">947</int> <int id="h">120</int> <int id="z">71</int> <int id="w">113</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">5532</int> </object> <object id="groddle_flower_4_1332176701055"> <str id="name">groddle_flower_4_1332176701038</str> <int id="y">877</int> <int id="h">56</int> <bool id="h_flip">true</bool> <int id="z">115</int> <int id="w">95</int> <str id="sprite_class">groddle_flower_4</str> <int id="x">2762</int> </object> <object id="groddle_bush1_1332176700942"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">842</int> <int id="h">94</int> <int id="z">45</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4233</int> </object> <object id="groddle_bush1_1332176701070"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">842</int> <int id="h">94</int> <int id="z">33</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2269</int> <int id="r">2</int> </object> <object id="groddle_cover_clover2_1332176701107"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">1015</int> <int id="h">59</int> <int id="z">107</int> <int id="w">159</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">1149</int> </object> <object id="groddle_bush4_1332176700979"> <str id="name">groddle_bush4_1331938656842</str> <int id="y">893</int> <int id="h">68</int> <int id="z">39</int> <int id="w">142</int> <str id="sprite_class">groddle_bush4</str> <int id="x">3681</int> </object> <object id="groddle_grass_2_1332176700978"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">901</int> <int id="h">72</int> <int id="z">97</int> <int id="w">90</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3789</int> </object> <object id="groddle_cover_clover2_1332176700981"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">903</int> <int id="h">54</int> <int id="z">41</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3302</int> </object> <object id="groddle_grass_2_1332176701044"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">954</int> <int id="h">83</int> <int id="z">83</int> <int id="w">111</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3992</int> </object> <object id="tree_deciduous2_1331853484957"> <str id="name">tree_deciduous2_1331848266528</str> <int id="y">980</int> <int id="h">829</int> <int id="z">51</int> <int id="w">842</int> <str id="sprite_class">tree_deciduous2</str> <int id="x">5457</int> </object> <object id="groddle_grass_2_1332176701083"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">849</int> <int id="h">78</int> <int id="z">37</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2356</int> </object> <object id="groddle_bush4_1332176701131"> <str id="name">groddle_bush4_1331938656842</str> <int id="y">865</int> <int id="h">68</int> <int id="z">19</int> <int id="w">142</int> <str id="sprite_class">groddle_bush4</str> <int id="x">126</int> <int id="r">2</int> </object> <object id="groddle_grass_2_1332176701143"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">985</int> <int id="h">73</int> <int id="z">165</int> <int id="w">97</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">86</int> </object> <object id="groddle_flower_3_1332176701135"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">890</int> <int id="h">49</int> <int id="z">153</int> <int id="w">89</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">476</int> </object> <object id="groddle_cover_clover2_1332176700930"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">1012</int> <int id="h">54</int> <int id="z">69</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">5836</int> </object> <object id="groddle_grass_2_1332176700944"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">868</int> <int id="h">72</int> <int id="z">47</int> <int id="w">90</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4377</int> </object> <object id="groddle_cover_clover2_1332176700964"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">1001</int> <int id="h">59</int> <int id="z">90</int> <int id="w">159</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4084</int> </object> <object id="groddle_grass_1_1332176701064"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">970</int> <int id="h">52</int> <int id="z">130</int> <int id="w">108</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2480</int> </object> <object id="groddle_bush1_1332176701098"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">883</int> <int id="h">94</int> <int id="z">25</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">1237</int> <int id="r">2</int> </object> <object id="groddle_flower_3_1332176701076"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">840</int> <int id="h">44</int> <int id="z">110</int> <int id="w">80</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">1908</int> </object> <object id="groddle_grass_2_1332176701110"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">995</int> <int id="h">83</int> <int id="z">144</int> <int id="w">111</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1624</int> </object> <object id="groddle_cover_clover2_1332176700982"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">921</int> <int id="h">54</int> <int id="z">43</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3364</int> </object> <object id="groddle_cover_clover2_1332176700926"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">945</int> <int id="h">54</int> <int id="z">65</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">5305</int> </object> <object id="groddle_flower_3_1332176701126"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">906</int> <int id="h">44</int> <int id="z">151</int> <int id="w">80</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">984</int> </object> <object id="flower_bush_5_1332176700950"> <str id="name">flower_bush_5_1331938656843</str> <int id="y">990</int> <int id="h">114</int> <int id="z">75</int> <int id="w">267</int> <str id="sprite_class">flower_bush_5</str> <int id="x">5049</int> </object> <object id="groddle_bush1_1332176701116"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">894</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="z">28</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">779</int> <int id="r">2</int> </object> <object id="bush_seethrough_01a_g1_1332264261687"> <str id="name">bush_seethrough_01a_g1_1332264261672</str> <int id="y">919</int> <int id="h">72</int> <int id="z">0</int> <int id="w">173</int> <str id="sprite_class">bush_seethrough_01a_g1</str> <int id="x">5350</int> </object> <object id="bush_seethrough_01a_g1_1332264261672"> <str id="name">bush_seethrough_01a_g1_1332264261672</str> <int id="y">881</int> <int id="h">72</int> <int id="z">10</int> <int id="w">173</int> <str id="sprite_class">bush_seethrough_01a_g1</str> <int id="x">2989</int> </object> <object id="groddle_flower_3_1332176701078"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">854</int> <int id="h">39</int> <int id="z">112</int> <int id="w">70</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">1878</int> </object> <object id="groddle_plant_1_1332176701124"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">894</int> <int id="h">114</int> <int id="z">30</int> <int id="w">107</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">649</int> </object> <object id="bush_seethrough_01b_g1_1332264261670"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">835</int> <int id="h">96</int> <int id="z">15</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">2439</int> </object> <object id="groddle_grass_1_1332176701067"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">948</int> <int id="h">52</int> <int id="z">133</int> <int id="w">108</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2215</int> </object> <object id="groddle_grass_2_1332176701141"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">873</int> <int id="h">68</int> <int id="z">160</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">11</int> </object> <object id="bush_seethrough_01b_g1_1332264261679"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">872</int> <int id="h">96</int> <int id="z">5</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">1407</int> <int id="r">-5</int> </object> <object id="groddle_bush1_1332176701073"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">835</int> <int id="h">94</int> <int id="z">24</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">1822</int> <int id="r">2</int> </object> <object id="tree_deciduous3_1332176701120"> <str id="name">tree_deciduous3_1331848266415</str> <int id="y">923</int> <int id="h">914</int> <bool id="h_flip">true</bool> <int id="z">31</int> <int id="w">676</int> <str id="sprite_class">tree_deciduous3</str> <int id="x">735</int> <int id="r">-2</int> </object> <object id="groddle_flower_3_1332176701036"> <str id="name">groddle_flower_3_1332176701036</str> <int id="y">860</int> <int id="h">55</int> <int id="z">108</int> <int id="w">86</int> <str id="sprite_class">groddle_flower_3</str> <int id="x">2485</int> </object> <object id="groddle_cover_clover2_1332176700931"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">1027</int> <int id="h">54</int> <int id="z">70</int> <int id="w">146</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">5924</int> </object> <object id="groddle_bush1_1332176701069"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">1070</int> <int id="h">109</int> <int id="z">135</int> <int id="w">185</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2244</int> <int id="r">2</int> </object> <object id="bush_seethrough_01b_g1_1332264261678"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">840</int> <int id="h">96</int> <int id="z">4</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">1561</int> <int id="r">-10</int> </object> <object id="groddle_grass_2_1332176700958"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1013</int> <int id="h">73</int> <int id="z">80</int> <int id="w">91</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4813</int> </object> <object id="groddle_grass_2_1332176700957"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1013</int> <int id="h">84</int> <int id="z">79</int> <int id="w">105</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4957</int> </object> <object id="groddle_plant_1_1332176701102"> <str id="name">groddle_plant_1_1331938656815</str> <int id="y">880</int> <int id="h">120</int> <int id="z">139</int> <int id="w">113</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">1385</int> </object> <object id="groddle_bush1_1332176700998"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">849</int> <int id="h">94</int> <int id="z">34</int> <int id="w">160</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2402</int> <int id="r">2</int> </object> <object id="groddle_grass_1_1332176701137"> <str id="name">groddle_grass_1_1332176700968</str> <int id="y">910</int> <int id="h">46</int> <int id="z">156</int> <int id="w">96</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">667</int> </object> <object id="groddle_grass_2_1332176701147"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1019</int> <int id="h">96</int> <int id="z">167</int> <int id="w">127</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">21</int> </object> <object id="groddle_grass_2_1332176701113"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1019</int> <int id="h">73</int> <int id="z">147</int> <int id="w">97</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1790</int> </object> <object id="bush_seethrough_01b_g1_1332264261677"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">870</int> <int id="h">96</int> <int id="z">8</int> <int id="w">238</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">171</int> </object> <object id="groddle_grass_2_1332176700989"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">908</int> <int id="h">71</int> <int id="z">99</int> <int id="w">95</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3249</int> </object> <object id="groddle_grass_2_1332176701048"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">1025</int> <int id="h">79</int> <int id="z">124</int> <int id="w">98</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3319</int> </object> <object id="groddle_grass_2_1332176701082"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">848</int> <int id="h">68</int> <int id="z">35</int> <int id="w">84</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2291</int> </object> </object> <int id="z">1</int> </object> <object id="middleground"> <str id="name">middleground</str> <object id="doors"> </object> <object id="platform_lines"> <object id="plat_1331848266429"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-141</int> <int id="x">649</int> </object> <object id="start"> <int id="y">-126</int> <int id="x">393</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266434"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-107</int> <int id="x">2641</int> </object> <object id="start"> <int id="y">-121</int> <int id="x">2211</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1332176700894"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-31</int> <int id="x">828</int> </object> <object id="start"> <int id="y">-11</int> <int id="x">493</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938656956"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-22</int> <int id="x">-2386</int> </object> <object id="start"> <int id="y">-40</int> <int id="x">-2624</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938656986"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-37</int> <int id="x">-384</int> </object> <object id="start"> <int id="y">-68</int> <int id="x">-727</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266428"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-126</int> <int id="x">393</int> </object> <object id="start"> <int id="y">-128</int> <int id="x">56</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266423"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-148</int> <int id="x">-1605</int> </object> <object id="start"> <int id="y">-140</int> <int id="x">-1762</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266421"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-126</int> <int id="x">-2005</int> </object> <object id="start"> <int id="y">-126</int> <int id="x">-2161</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938657009"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-19</int> <int id="x">331</int> </object> <object id="start"> <int id="y">-44</int> <int id="x">-56</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938656958"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-24</int> <int id="x">-1609</int> </object> <object id="start"> <int id="y">-23</int> <int id="x">-2077</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266420"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-126</int> <int id="x">-2161</int> </object> <object id="start"> <int id="y">-142</int> <int id="x">-2499</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266433"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-121</int> <int id="x">2211</int> </object> <object id="start"> <int id="y">-173</int> <int id="x">1783</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266427"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-128</int> <int id="x">56</int> </object> <object id="start"> <int id="y">-161</int> <int id="x">-294</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938656987"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-44</int> <int id="x">-56</int> </object> <object id="start"> <int id="y">-37</int> <int id="x">-384</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266432"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-173</int> <int id="x">1783</int> </object> <object id="start"> <int id="y">-163</int> <int id="x">1426</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938657010"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-11</int> <int id="x">493</int> </object> <object id="start"> <int id="y">-19</int> <int id="x">331</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938656959"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-64</int> <int id="x">-979</int> </object> <object id="start"> <int id="y">-24</int> <int id="x">-1609</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266431"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-163</int> <int id="x">1426</int> </object> <object id="start"> <int id="y">-162</int> <int id="x">925</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938656985"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-68</int> <int id="x">-727</int> </object> <object id="start"> <int id="y">-64</int> <int id="x">-979</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266424"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-199</int> <int id="x">-1246</int> </object> <object id="start"> <int id="y">-148</int> <int id="x">-1605</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938656957"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-23</int> <int id="x">-2077</int> </object> <object id="start"> <int id="y">-22</int> <int id="x">-2386</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266419"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-142</int> <int id="x">-2499</int> </object> <object id="start"> <int id="y">-170</int> <int id="x">-3000</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266426"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-161</int> <int id="x">-294</int> </object> <object id="start"> <int id="y">-195</int> <int id="x">-650</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331938656955"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-40</int> <int id="x">-2624</int> </object> <object id="start"> <int id="y">-52</int> <int id="x">-3000</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1334449564445"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-195</int> <int id="x">-650</int> </object> <object id="start"> <int id="y">-198</int> <int id="x">-715</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266425"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-198</int> <int id="x">-715</int> </object> <object id="start"> <int id="y">-199</int> <int id="x">-1246</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266430"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-162</int> <int id="x">925</int> </object> <object id="start"> <int id="y">-141</int> <int id="x">649</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266422"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-140</int> <int id="x">-1762</int> </object> <object id="start"> <int id="y">-126</int> <int id="x">-2005</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="plat_1331848266435"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-117</int> <int id="x">2999</int> </object> <object id="start"> <int id="y">-107</int> <int id="x">2641</int> </object> <int id="platform_item_perm">-1</int> </object> </object> <object id="decos"> <object id="patch_mossy_2_1332176701023"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-55</int> <int id="h">37</int> <int id="z">71</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">1642</int> </object> <object id="patch_mossy_2_1332176701090"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">1</int> <int id="h">37</int> <int id="z">100</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-1220</int> </object> <object id="patch_mossy_2_1332176701088"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-116</int> <int id="h">37</int> <int id="z">84</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-670</int> </object> <object id="groddle_cover_clover2_1332176700983"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">-123</int> <int id="h">47</int> <int id="z">69</int> <int id="w">125</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">363</int> </object> <object id="evenground_platform_long_1331848266411"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">16</int> <int id="h">68</int> <int id="z">0</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">2541</int> </object> <object id="patch_mossy_2_1332176701034"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">15</int> <int id="h">37</int> <int id="z">102</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">58</int> </object> <object id="patch_mossy_2_1332176701155"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-58</int> <int id="h">37</int> <int id="z">88</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2494</int> </object> <object id="evenground_horizon_1331848266383"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">-134</int> <int id="h">96</int> <int id="z">7</int> <int id="w">1272</int> <str id="sprite_class">evenground_horizon</str> <int id="x">-1390</int> <int id="r">-4</int> </object> <object id="patch_mossy_2_1332176701022"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-70</int> <int id="h">37</int> <int id="z">70</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">1719</int> </object> <object id="patch_dirt_2a_1331917692505"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-52</int> <int id="h">49</int> <int id="z">41</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2471</int> </object> <object id="evenground_platform_long_1331932153003"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">16</int> <int id="h">73</int> <int id="z">20</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">224</int> </object> <object id="patch_dirt_2a_1331938656936"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-100</int> <int id="h">49</int> <int id="z">31</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1338</int> </object> <object id="patch_dirt_2a_1331938656938"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-94</int> <int id="h">49</int> <int id="z">33</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1240</int> </object> <object id="patch_mossy_2_1332176701160"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-41</int> <int id="h">37</int> <int id="z">93</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2346</int> </object> <object id="patch_mossy_2_1332176701159"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-53</int> <int id="h">37</int> <int id="z">92</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2225</int> </object> <object id="patch_dirt_2a_1331938656933"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-106</int> <int id="h">49</int> <int id="z">30</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1144</int> </object> <object id="patch_dirt_2a_1332176700938"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">7</int> <int id="h">49</int> <int id="z">51</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2635</int> </object> <object id="evenground_platform_long_1331848266393"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-35</int> <int id="h">73</int> <int id="z">16</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">2448</int> </object> <object id="groddle_bush1_1331938656863"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">-160</int> <int id="h">85</int> <int id="z">56</int> <int id="w">144</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2797</int> </object> <object id="patch_dirt_2a_1331938656932"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-116</int> <int id="h">49</int> <int id="z">29</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1254</int> </object> <object id="groddle_cover_clover2_1332176700986"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">-135</int> <int id="h">47</int> <int id="z">68</int> <int id="w">125</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">619</int> </object> <object id="patch_mossy_2_1332176701031"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-51</int> <int id="h">37</int> <int id="z">79</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-37</int> </object> <object id="evenground_horizon_1331848266402"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">-127</int> <int id="h">96</int> <int id="z">11</int> <int id="w">1272</int> <str id="sprite_class">evenground_horizon</str> <int id="x">2813</int> <int id="r">-2</int> </object> <object id="fox_brushing_preserve_sign_left_1334170968947"> <str id="name">fox_brushing_preserve_sign_left_1334170968947</str> <int id="y">-152</int> <int id="h">199</int> <int id="z">104</int> <int id="w">245</int> <str id="sprite_class">fox_brushing_preserve_sign_left</str> <int id="x">2027</int> </object> <object id="patch_mossy_2_1332176701026"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-7</int> <int id="h">37</int> <int id="z">74</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">428</int> </object> <object id="groddle_cover_clover2_1331938657097"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">-157</int> <int id="h">47</int> <int id="z">64</int> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2336</int> </object> <object id="patch_mossy_2_1332176701166"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-93</int> <int id="h">37</int> <int id="z">99</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2920</int> </object> <object id="evenground_horizon_1331845429796"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">-96</int> <int id="h">96</int> <bool id="h_flip">true</bool> <int id="z">4</int> <int id="w">1272</int> <str id="sprite_class">evenground_horizon</str> <int id="x">-2325</int> <int id="r">3</int> </object> <object id="groddle_grass_2_1332176700994"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">-144</int> <int id="h">61</int> <int id="z">25</int> <int id="w">76</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">194</int> </object> <object id="groddle_grass_2_1331917692565"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">-199</int> <int id="h">55</int> <int id="z">62</int> <int id="w">68</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">-1556</int> </object> <object id="flower_bush_5_1331938656858"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">-164</int> <int id="h">95</int> <int id="z">55</int> <int id="w">224</int> <str id="sprite_class">flower_bush_5</str> <int id="x">2966</int> </object> <object id="groddle_cover_clover2_1331938657096"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">-176</int> <int id="h">47</int> <int id="z">63</int> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2265</int> </object> <object id="patch_mossy_2_1332176701085"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-123</int> <int id="h">37</int> <int id="z">81</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-581</int> </object> <object id="groddle_grass_2_1331917692562"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">-222</int> <int id="h">55</int> <int id="z">59</int> <int id="w">68</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">-1133</int> </object> <object id="patch_mossy_2_1332176701165"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-99</int> <int id="h">37</int> <int id="z">98</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2771</int> </object> <object id="evenground_platform_long_1331848266386"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-78</int> <int id="h">68</int> <int id="z">22</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-190</int> </object> <object id="patch_dirt_2a_1332176701095"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-6</int> <int id="h">49</int> <int id="z">54</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-843</int> </object> <object id="evenground_platform_long_1331848266456"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">8</int> <int id="h">68</int> <int id="z">53</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-703</int> </object> <object id="groddle_grass_2_1331917692564"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">-219</int> <int id="h">45</int> <int id="z">60</int> <int id="w">56</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">-1618</int> </object> <object id="patch_dirt_2a_1331938656931"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-123</int> <int id="h">49</int> <int id="z">28</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1310</int> </object> <object id="patch_mossy_2_1332176701028"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">9</int> <int id="h">37</int> <int id="z">76</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">516</int> </object> <object id="patch_mossy_2_1332176701154"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-74</int> <int id="h">37</int> <int id="z">87</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2473</int> </object> <object id="patch_mossy_2_1332176701029"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-67</int> <int id="h">37</int> <int id="z">77</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-116</int> </object> <object id="patch_mossy_2_1332176701158"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-65</int> <int id="h">37</int> <int id="z">91</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2126</int> </object> <object id="patch_dirt_2a_1332176701019"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-5</int> <int id="h">49</int> <int id="z">48</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">792</int> </object> <object id="evenground_mound_1_1331932153007"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">-109</int> <int id="h">119</int> <int id="z">6</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">-3004</int> <int id="r">-4</int> </object> <object id="patch_mossy_2_1332176701161"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-27</int> <int id="h">37</int> <int id="z">94</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2281</int> </object> <object id="evenground_platform_long_1331932153004"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-102</int> <int id="h">68</int> <int id="z">23</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">911</int> </object> <object id="groddle_grass_2_1331917692566"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">-214</int> <int id="h">45</int> <int id="z">61</int> <int id="w">56</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">-1648</int> </object> <object id="evenground_platform_long_1331917692477"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">13</int> <int id="h">73</int> <int id="z">17</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">1352</int> </object> <object id="tree_deciduous2_1331938656800"> <str id="name">tree_deciduous2_1331848266528</str> <int id="y">-138</int> <int id="h">722</int> <int id="z">58</int> <int id="w">732</int> <str id="sprite_class">tree_deciduous2</str> <int id="x">-2557</int> </object> <object id="patch_dirt_2a_1332176700936"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-108</int> <int id="h">49</int> <int id="z">45</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2868</int> </object> <object id="flower_bush_5_1331938656859"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">-145</int> <int id="h">95</int> <int id="z">57</int> <int id="w">224</int> <str id="sprite_class">flower_bush_5</str> <int id="x">2864</int> </object> <object id="patch_dirt_2a_1332176701018"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-29</int> <int id="h">49</int> <int id="z">47</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">834</int> </object> <object id="patch_mossy_2_1332176701033"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-19</int> <int id="h">37</int> <int id="z">101</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-188</int> </object> <object id="patch_dirt_2a_1332176701169"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-11</int> <int id="h">49</int> <int id="z">38</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1834</int> </object> <object id="patch_mossy_2_1332176701164"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-109</int> <int id="h">37</int> <int id="z">97</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2871</int> </object> <object id="patch_dirt_2a_1332176701170"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">10</int> <int id="h">49</int> <int id="z">39</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1747</int> </object> <object id="patch_dirt_2a_1331938656937"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-98</int> <int id="h">42</int> <int id="z">32</int> <int id="w">243</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1625</int> </object> <object id="patch_mossy_2_1332176701156"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-62</int> <int id="h">37</int> <int id="z">89</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2360</int> </object> <object id="patch_mossy_2_1332176701086"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-115</int> <int id="h">37</int> <int id="z">82</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-474</int> </object> <object id="evenground_mound_1_1331848266379"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">-115</int> <int id="h">119</int> <int id="z">5</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">-1530</int> </object> <object id="evenground_platform_long_1331848266387"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-109</int> <int id="h">68</int> <int id="z">14</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">62</int> </object> <object id="patch_dirt_2a_1331938656852"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-25</int> <int id="h">49</int> <int id="z">43</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2451</int> </object> <object id="evenground_platform_long_1331932153002"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-42</int> <int id="h">68</int> <int id="z">21</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">205</int> </object> <object id="patch_dirt_2a_1331938656853"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-7</int> <int id="h">49</int> <int id="z">52</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2567</int> </object> <object id="evenground_platform_long_1331848266376"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-88</int> <int id="h">68</int> <int id="z">3</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-2492</int> </object> <object id="evenground_platform_long_1331932153005"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-143</int> <int id="h">68</int> <int id="z">10</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">984</int> <int id="r">-4</int> </object> <object id="evenground_platform_long_1331848266395"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-99</int> <int id="h">68</int> <int id="z">18</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">2697</int> </object> <object id="patch_mossy_2_1332176701089"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-131</int> <int id="h">37</int> <int id="z">85</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-993</int> </object> <object id="groddle_grass_2_1332176700993"> <str id="name">groddle_grass_2_1331938656823</str> <int id="y">-155</int> <int id="h">61</int> <int id="z">24</int> <int id="w">76</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">571</int> </object> <object id="patch_dirt_2a_1332176701021"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-22</int> <int id="h">49</int> <int id="z">50</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1009</int> </object> <object id="patch_mossy_2_1332176701162"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-12</int> <int id="h">37</int> <int id="z">95</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2224</int> </object> <object id="evenground_horizon_1331848266400"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">-138</int> <int id="h">96</int> <int id="z">9</int> <int id="w">1272</int> <str id="sprite_class">evenground_horizon</str> <int id="x">1971</int> <int id="r">2</int> </object> <object id="evenground_horizon_1331848266384"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">-121</int> <int id="h">96</int> <int id="z">8</int> <int id="w">1272</int> <str id="sprite_class">evenground_horizon</str> <int id="x">-418</int> <int id="r">5</int> </object> <object id="evenground_platform_long_1331848266385"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-139</int> <int id="h">68</int> <int id="z">13</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-953</int> </object> <object id="patch_dirt_2a_1332176701091"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-138</int> <int id="h">49</int> <int id="z">35</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1442</int> </object> <object id="groddle_cover_clover2_1331938657098"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">-132</int> <int id="h">47</int> <int id="z">65</int> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2958</int> </object> <object id="patch_dirt_2a_1331917692506"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-36</int> <int id="h">49</int> <int id="z">42</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2588</int> </object> <object id="patch_mossy_2_1332176701024"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-40</int> <int id="h">37</int> <int id="z">72</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">1717</int> </object> <object id="evenground_platform_long_1331932153006"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">12</int> <int id="h">68</int> <int id="z">37</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-1814</int> </object> <object id="patch_mossy_2_1332176701163"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">2</int> <int id="h">37</int> <int id="z">96</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-1614</int> </object> <object id="patch_dirt_2a_1332176700935"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-132</int> <int id="h">49</int> <int id="z">44</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2819</int> </object> <object id="evenground_platform_long_1331848266391"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-39</int> <int id="h">68</int> <int id="z">19</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">1307</int> </object> <object id="patch_mossy_2_1332176701087"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-99</int> <int id="h">37</int> <int id="z">83</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-543</int> </object> <object id="patch_mossy_2_1332176701032"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-35</int> <int id="h">37</int> <int id="z">80</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-130</int> </object> <object id="patch_mossy_2_1332176701027"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">10</int> <int id="h">37</int> <int id="z">75</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">333</int> </object> <object id="patch_mossy_2_1332176701157"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-72</int> <int id="h">37</int> <int id="z">90</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2230</int> </object> <object id="evenground_platform_long_1331848266375"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-43</int> <int id="h">68</int> <int id="z">2</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-2534</int> </object> <object id="bush_seethrough_01b_g1_1332264261683"> <str id="name">bush_seethrough_01b_g1_1332264261668</str> <int id="y">-166</int> <int id="h">88</int> <int id="z">103</int> <int id="w">218</int> <str id="sprite_class">bush_seethrough_01b_g1</str> <int id="x">882</int> </object> <object id="evenground_platform_long_1331848266392"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-95</int> <int id="h">68</int> <int id="z">15</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">1572</int> </object> <object id="groddle_cover_clover2_1332176700985"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">-127</int> <int id="h">47</int> <int id="z">67</int> <int id="w">125</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">249</int> </object> <object id="groddle_cover_clover2_1332176700984"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">-145</int> <int id="h">47</int> <int id="z">66</int> <int id="w">125</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">296</int> </object> <object id="evenground_platform_long_1331845429795"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">8</int> <int id="h">68</int> <int id="z">1</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-2536</int> </object> <object id="evenground_patch_3_1331938656789"> <str id="name">evenground_patch_3_1331938656789</str> <int id="y">-90</int> <int id="h">105</int> <int id="z">26</int> <int id="w">460</int> <str id="sprite_class">evenground_patch_3</str> <int id="x">1402</int> </object> <object id="evenground_platform_long_1331848266382"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-49</int> <int id="h">68</int> <int id="z">27</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-1385</int> </object> <object id="patch_mossy_2_1332176701030"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-48</int> <int id="h">37</int> <int id="z">78</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-168</int> </object> <object id="patch_dirt_2a_1332176701020"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">7</int> <int id="h">49</int> <int id="z">49</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">869</int> </object> <object id="patch_dirt_2a_1332176701092"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">-110</int> <int id="h">49</int> <int id="z">36</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1481</int> </object> <object id="evenground_platform_long_1331848266445"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-49</int> <int id="h">68</int> <int id="z">40</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-238</int> </object> <object id="patch_dirt_2a_1332176701167"> <str id="name">patch_dirt_2a_1331938656931</str> <int id="y">19</int> <int id="h">49</int> <int id="z">34</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2697</int> </object> <object id="patch_dirt_2a_1332176700937"> <str id="name">patch_dirt_2a_1331848266470</str> <int id="y">-35</int> <int id="h">49</int> <int id="z">46</int> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2273</int> </object> <object id="evenground_platform_long_1331848266380"> <str id="name">evenground_platform_long_1331845429795</str> <int id="y">-99</int> <int id="h">68</int> <int id="z">12</int> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-1325</int> </object> <object id="patch_mossy_2_1332176701153"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">-91</int> <int id="h">37</int> <int id="z">86</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">-2530</int> </object> <object id="patch_mossy_2_1332176701025"> <str id="name">patch_mossy_2_1332176701022</str> <int id="y">13</int> <int id="h">37</int> <int id="z">73</int> <int id="w">195</int> <str id="sprite_class">patch_mossy_2</str> <int id="x">1508</int> </object> </object> <int id="w">6000</int> <object id="walls"> <object id="wall_1332264261689"> <int id="w">0</int> <int id="y">-999</int> <int id="item_perm">-1</int> <int id="x">1803</int> <int id="h">828</int> <int id="pc_perm">0</int> </object> </object> <object id="targets"> </object> <object id="ladders"> </object> <object id="signposts"> <object id="signpost_1"> <int id="w">100</int> <int id="y">-119</int> <int id="h">200</int> <int id="x">2675</int> <object id="connects"> <object id="0"> <bool id="hidden">false</bool> <int id="y">-163</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1334365832.swf</str> <str id="mote_id">9</str> <str id="hub_id">120</str> <int id="x">1650</int> <objref id="target" tsid="LUVO82HBAKR2A9G" label="Nagam Truth"/> </object> </object> </object> </object> <int id="z">0</int> <int id="h">1000</int> <object id="boxes"> </object> <object id="filtersNEW"> <object id="brightness"> <int id="value">-20</int> </object> </object> </object> <object id="T_1331845429793"> <int id="w">5580</int> <str id="name">bg_1</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-22</int> </object> </object> <int id="h">1000</int> <object id="decos"> <object id="flower_bush_7_1331917692589"> <str id="name">flower_bush_7_1331917692419</str> <int id="y">772</int> <int id="h">73</int> <int id="z">87</int> <int id="w">115</int> <str id="sprite_class">flower_bush_7</str> <int id="x">3982</int> </object> <object id="groddle_grass_2_1331917692627"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">739</int> <int id="h">36</int> <int id="z">84</int> <int id="w">45</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4105</int> </object> <object id="groddle_bush1_1331917692708"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">726</int> <int id="h">48</int> <bool id="h_flip">true</bool> <int id="z">32</int> <int id="w">81</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3173</int> </object> <object id="groddle_bush1_1331925384793"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">762</int> <int id="h">51</int> <int id="z">117</int> <int id="w">87</int> <str id="sprite_class">groddle_bush1</str> <int id="x">5553</int> </object> <object id="groddle_bush1_1331925384791"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">743</int> <int id="h">51</int> <int id="z">61</int> <int id="w">87</int> <str id="sprite_class">groddle_bush1</str> <int id="x">5410</int> </object> <object id="tree_deciduous1_1332176700911"> <str id="name">tree_deciduous1_1331848266413</str> <int id="y">861</int> <int id="h">601</int> <int id="z">136</int> <int id="w">534</int> <str id="sprite_class">tree_deciduous1</str> <int id="x">1037</int> </object> <object id="groddle_bush1_1331917692711"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">750</int> <int id="h">59</int> <int id="z">31</int> <int id="w">99</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3030</int> </object> <object id="groddle_bush1_1331917692588"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">746</int> <int id="h">55</int> <bool id="h_flip">true</bool> <int id="z">85</int> <int id="w">94</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4017</int> </object> <object id="groddle_fern_1_1331917692591"> <str id="name">groddle_fern_1_1331917692425</str> <int id="y">717</int> <int id="h">55</int> <bool id="h_flip">true</bool> <int id="z">44</int> <int id="w">91</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">4008</int> </object> <object id="tree_deciduous2_1331938656788"> <str id="name">tree_deciduous2_1331848266528</str> <int id="y">767</int> <int id="h">392</int> <bool id="h_flip">true</bool> <int id="z">64</int> <int id="w">398</int> <str id="sprite_class">tree_deciduous2</str> <int id="x">4829</int> </object> <object id="groddle_bush1_1331917692583"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">740</int> <int id="h">60</int> <bool id="h_flip">true</bool> <int id="z">89</int> <int id="w">102</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3444</int> </object> <object id="groddle_bush1_1331917692646"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">767</int> <int id="h">60</int> <int id="z">53</int> <int id="w">102</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4530</int> </object> <object id="groddle_bush1_1331917692647"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">754</int> <int id="h">55</int> <bool id="h_flip">true</bool> <int id="z">52</int> <int id="w">94</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4647</int> </object> <object id="evenground_platform_long_1331848266524"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">774</int> <int id="h">38</int> <int id="z">4</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">5089</int> <int id="r">1</int> </object> <object id="groddle_bush1_1331938656911"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">830</int> <int id="h">85</int> <int id="z">114</int> <int id="w">144</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3458</int> </object> <object id="groddle_grass_2_1332176700921"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">825</int> <int id="h">39</int> <int id="z">69</int> <int id="w">49</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2878</int> </object> <object id="evenground_horizon_1331848266515"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">787</int> <int id="h">51</int> <bool id="h_flip">true</bool> <int id="z">19</int> <int id="w">1125</int> <str id="sprite_class">evenground_horizon</str> <int id="x">2318</int> </object> <object id="evenground_mound_1_1331848266525"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">765</int> <int id="h">72</int> <int id="z">48</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">4321</int> <int id="r">1</int> </object> <object id="tree_deciduous3_1331917692578"> <str id="name">tree_deciduous3_1331848266415</str> <int id="y">754</int> <int id="h">484</int> <int id="z">91</int> <int id="w">358</int> <str id="sprite_class">tree_deciduous3</str> <int id="x">3407</int> </object> <object id="evenground_mound_1_1332176700899"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">770</int> <int id="h">72</int> <int id="z">13</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">1582</int> <int id="r">-1</int> </object> <object id="groddle_cover_clover2_1331917692696"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">731</int> <int id="h">23</int> <int id="z">38</int> <int id="w">61</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3153</int> </object> <object id="evenground_horizon_1331917692400"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">804</int> <int id="h">51</int> <bool id="h_flip">true</bool> <int id="z">22</int> <int id="w">1125</int> <str id="sprite_class">evenground_horizon</str> <int id="x">3134</int> </object> <object id="flower_bush_5_1331938656982"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">775</int> <int id="h">73</int> <int id="z">126</int> <int id="w">171</int> <str id="sprite_class">flower_bush_5</str> <int id="x">250</int> </object> <object id="flower_bush_6_1331917692581"> <str id="name">flower_bush_6_1331848266447</str> <int id="y">759</int> <int id="h">65</int> <int id="z">90</int> <int id="w">131</int> <str id="sprite_class">flower_bush_6</str> <int id="x">3327</int> </object> <object id="groddle_bush1_1331938656838"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">798</int> <int id="h">60</int> <int id="z">116</int> <int id="w">102</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3301</int> </object> <object id="evenground_platform_long_1331848266521"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">758</int> <int id="h">38</int> <int id="z">3</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">4195</int> <int id="r">1</int> </object> <object id="tree_deciduous3_1332176700919"> <str id="name">tree_deciduous3_1331848266415</str> <int id="y">799</int> <int id="h">500</int> <int id="z">65</int> <int id="w">370</int> <str id="sprite_class">tree_deciduous3</str> <int id="x">2767</int> </object> <object id="flower_bush_5_1331917692392"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">775</int> <int id="h">73</int> <int id="z">101</int> <int id="w">171</int> <str id="sprite_class">flower_bush_5</str> <int id="x">1950</int> </object> <object id="groddle_grass_2_1331917692632"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">702</int> <int id="h">26</int> <int id="z">77</int> <int id="w">33</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4355</int> </object> <object id="flower_bush_5_1331917692394"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">739</int> <int id="h">73</int> <int id="z">57</int> <int id="w">171</int> <str id="sprite_class">flower_bush_5</str> <int id="x">1464</int> </object> <object id="flower_bush_6_1331917692582"> <str id="name">flower_bush_6_1331848266447</str> <int id="y">744</int> <int id="h">65</int> <int id="z">88</int> <int id="w">131</int> <str id="sprite_class">flower_bush_6</str> <int id="x">3383</int> </object> <object id="groddle_bush1_1331938657093"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">750</int> <int id="h">43</int> <int id="z">54</int> <int id="w">73</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4784</int> </object> <object id="groddle_grass_2_1331938657005"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">754</int> <int id="h">26</int> <int id="z">128</int> <int id="w">32</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2515</int> </object> <object id="groddle_grass_2_1331917692701"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">740</int> <int id="h">34</int> <int id="z">105</int> <int id="w">43</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3206</int> </object> <object id="groddle_bush1_1331917692587"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">736</int> <int id="h">54</int> <int id="z">72</int> <int id="w">92</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3954</int> </object> <object id="groddle_cover_clover2_1332176700925"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">839</int> <int id="h">37</int> <int id="z">138</int> <int id="w">96</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3230</int> </object> <object id="groddle_bush1_1331938656837"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">811</int> <int id="h">60</int> <int id="z">112</int> <int id="w">102</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3643</int> </object> <object id="groddle_bush1_1331925384792"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">739</int> <int id="h">51</int> <int id="z">62</int> <int id="w">87</int> <str id="sprite_class">groddle_bush1</str> <int id="x">5569</int> </object> <object id="groddle_grass_2_1331925384821"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">771</int> <int id="h">33</int> <int id="z">120</int> <int id="w">41</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2374</int> </object> <object id="groddle_grass_2_1331925384822"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">774</int> <int id="h">33</int> <int id="z">121</int> <int id="w">41</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2346</int> </object> <object id="groddle_cover_clover2_1331917692652"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">776</int> <int id="h">32</int> <int id="z">97</int> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4704</int> </object> <object id="groddle_bush1_1331917692707"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">720</int> <int id="h">48</int> <int id="z">27</int> <int id="w">81</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3116</int> </object> <object id="evenground_horizon_1331848266520"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">719</int> <int id="h">51</int> <bool id="h_flip">true</bool> <int id="z">26</int> <int id="w">1125</int> <str id="sprite_class">evenground_horizon</str> <int id="x">3847</int> <int id="r">2</int> </object> <object id="groddle_cover_clover2_1331917692624"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">728</int> <int id="h">29</int> <int id="z">75</int> <int id="w">77</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4215</int> </object> <object id="groddle_cover_clover2_1331917692626"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">765</int> <int id="h">32</int> <int id="z">103</int> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4302</int> </object> <object id="evenground_horizon_1331848266509"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">830</int> <int id="h">51</int> <bool id="h_flip">true</bool> <int id="z">10</int> <int id="w">1125</int> <str id="sprite_class">evenground_horizon</str> <int id="x">1137</int> <int id="r">-1</int> </object> <object id="groddle_bush1_1331917692590"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">730</int> <int id="h">55</int> <bool id="h_flip">true</bool> <int id="z">73</int> <int id="w">94</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4067</int> </object> <object id="flower_bush_5_1331917692391"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">755</int> <int id="h">73</int> <int id="z">100</int> <int id="w">171</int> <str id="sprite_class">flower_bush_5</str> <int id="x">1871</int> </object> <object id="tree_deciduous1_1331917692414"> <str id="name">tree_deciduous1_1331848266413</str> <int id="y">800</int> <int id="h">464</int> <int id="z">92</int> <int id="w">412</int> <str id="sprite_class">tree_deciduous1</str> <int id="x">4593</int> </object> <object id="groddle_cover_clover2_1331917692634"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">711</int> <int id="h">19</int> <int id="z">78</int> <int id="w">51</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4359</int> </object> <object id="groddle_fern_1_1331917692594"> <str id="name">groddle_fern_1_1331917692425</str> <int id="y">683</int> <int id="h">47</int> <bool id="h_flip">true</bool> <int id="z">47</int> <int id="w">78</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">3547</int> </object> <object id="groddle_grass_2_1332176700909"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">808</int> <int id="h">46</int> <int id="z">134</int> <int id="w">57</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">977</int> </object> <object id="flower_bush_7_1331917692621"> <str id="name">flower_bush_7_1331917692419</str> <int id="y">738</int> <int id="h">58</int> <int id="z">82</int> <int id="w">91</int> <str id="sprite_class">flower_bush_7</str> <int id="x">4080</int> </object> <object id="tree_deciduous1_1331917692577"> <str id="name">tree_deciduous1_1331848266413</str> <int id="y">735</int> <int id="h">412</int> <bool id="h_flip">true</bool> <int id="z">70</int> <int id="w">366</int> <str id="sprite_class">tree_deciduous1</str> <int id="x">3598</int> </object> <object id="flower_bush_5_1331938657021"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">752</int> <int id="h">64</int> <int id="z">50</int> <int id="w">151</int> <str id="sprite_class">flower_bush_5</str> <int id="x">4497</int> </object> <object id="groddle_grass_2_1331917692703"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">779</int> <int id="h">34</int> <int id="z">40</int> <int id="w">43</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2973</int> </object> <object id="groddle_grass_2_1332176700908"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">817</int> <int id="h">46</int> <int id="z">135</int> <int id="w">57</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">943</int> </object> <object id="groddle_cover_clover2_1331917692635"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">698</int> <int id="h">16</int> <int id="z">80</int> <int id="w">43</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4291</int> </object> <object id="evenground_mound_1_1331848266526"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">791</int> <int id="h">72</int> <int id="z">56</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">5416</int> <int id="r">1</int> </object> <object id="groddle_cover_clover2_1331917692653"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">785</int> <int id="h">32</int> <int id="z">98</int> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4759</int> </object> <object id="groddle_cover_clover2_1331917692694"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">772</int> <int id="h">27</int> <int id="z">36</int> <int id="w">73</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2715</int> </object> <object id="evenground_platform_long_1331848266522"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">789</int> <int id="h">38</int> <int id="z">6</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">4382</int> <int id="r">1</int> </object> <object id="groddle_grass_2_1331917692633"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">708</int> <int id="h">26</int> <int id="z">81</int> <int id="w">33</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4340</int> </object> <object id="flower_bush_6_1331917692580"> <str id="name">flower_bush_6_1331848266447</str> <int id="y">720</int> <int id="h">56</int> <int id="z">59</int> <int id="w">113</int> <str id="sprite_class">flower_bush_6</str> <int id="x">3524</int> </object> <object id="groddle_bush1_1331938656980"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">824</int> <int id="h">72</int> <bool id="h_flip">true</bool> <int id="z">29</int> <int id="w">121</int> <str id="sprite_class">groddle_bush1</str> <int id="x">792</int> </object> <object id="groddle_bush1_1332176700903"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">782</int> <int id="h">67</int> <int id="z">132</int> <int id="w">115</int> <str id="sprite_class">groddle_bush1</str> <int id="x">1984</int> </object> <object id="bush_3_1331938657157"> <str id="name">bush_3_1331938656871</str> <int id="y">753</int> <int id="h">63</int> <bool id="h_flip">true</bool> <int id="z">99</int> <int id="w">181</int> <str id="sprite_class">bush_3</str> <int id="x">1798</int> </object> <object id="flower_bush_7_1332176700913"> <str id="name">flower_bush_7_1331917692419</str> <int id="y">761</int> <int id="h">58</int> <int id="z">107</int> <int id="w">91</int> <str id="sprite_class">flower_bush_7</str> <int id="x">3053</int> </object> <object id="groddle_cover_clover2_1332176700924"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">825</int> <int id="h">37</int> <int id="z">137</int> <int id="w">96</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3261</int> </object> <object id="tree_deciduous2_1331848266528"> <str id="name">tree_deciduous2_1331848266528</str> <int id="y">763</int> <int id="h">437</int> <int id="z">60</int> <int id="w">444</int> <str id="sprite_class">tree_deciduous2</str> <int id="x">1425</int> </object> <object id="groddle_grass_2_1331938656915"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">777</int> <int id="h">36</int> <int id="z">123</int> <int id="w">46</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3375</int> </object> <object id="groddle_grass_2_1331925384820"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">752</int> <int id="h">33</int> <int id="z">119</int> <int id="w">41</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1445</int> </object> <object id="evenground_horizon_1331917692440"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">843</int> <int id="h">51</int> <bool id="h_flip">true</bool> <int id="z">23</int> <int id="w">1125</int> <str id="sprite_class">evenground_horizon</str> <int id="x">3046</int> </object> <object id="evenground_platform_long_1331932153020"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">855</int> <int id="h">38</int> <int id="z">2</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">294</int> </object> <object id="evenground_horizon_1331917692399"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">816</int> <int id="h">51</int> <bool id="h_flip">true</bool> <int id="z">21</int> <int id="w">1125</int> <str id="sprite_class">evenground_horizon</str> <int id="x">2127</int> </object> <object id="groddle_bush1_1331938656912"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">813</int> <int id="h">85</int> <bool id="h_flip">true</bool> <int id="z">113</int> <int id="w">144</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3543</int> </object> <object id="groddle_bush1_1332176700904"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">772</int> <int id="h">67</int> <bool id="h_flip">true</bool> <int id="z">131</int> <int id="w">115</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2056</int> </object> <object id="evenground_mound_1_1331848266517"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">751</int> <int id="h">72</int> <int id="z">17</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">3156</int> <int id="r">-2</int> </object> <object id="groddle_bush1_1331917692649"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">781</int> <int id="h">60</int> <int id="z">55</int> <int id="w">102</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4453</int> </object> <object id="groddle_grass_2_1332176700920"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">794</int> <int id="h">37</int> <int id="z">66</int> <int id="w">47</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2807</int> </object> <object id="groddle_cover_clover2_1331938657095"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">784</int> <int id="h">32</int> <int id="z">95</int> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4585</int> </object> <object id="evenground_platform_long_1331848266502"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">802</int> <int id="h">38</int> <int id="z">0</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">87</int> </object> <object id="groddle_cover_clover2_1331917692698"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">798</int> <int id="h">33</int> <int id="z">41</int> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2961</int> </object> <object id="groddle_cover_clover2_1331917692636"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">693</int> <int id="h">16</int> <int id="z">79</int> <int id="w">43</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4269</int> </object> <object id="evenground_horizon_1331917692442"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">812</int> <int id="h">51</int> <bool id="h_flip">true</bool> <int id="z">25</int> <int id="w">1125</int> <str id="sprite_class">evenground_horizon</str> <int id="x">3982</int> </object> <object id="groddle_bush1_1331938656979"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">804</int> <int id="h">62</int> <int id="z">28</int> <int id="w">104</int> <str id="sprite_class">groddle_bush1</str> <int id="x">707</int> <int id="r">4</int> </object> <object id="evenground_horizon_1331917692401"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">768</int> <int id="h">51</int> <bool id="h_flip">true</bool> <int id="z">24</int> <int id="w">1125</int> <str id="sprite_class">evenground_horizon</str> <int id="x">3555</int> </object> <object id="groddle_grass_2_1331917692700"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">777</int> <int id="h">37</int> <int id="z">104</int> <int id="w">47</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2711</int> </object> <object id="groddle_cover_clover2_1331917692693"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">764</int> <int id="h">27</int> <int id="z">33</int> <int id="w">73</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2774</int> </object> <object id="groddle_grass_2_1331917692631"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">731</int> <int id="h">36</int> <int id="z">76</int> <int id="w">45</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4174</int> </object> <object id="flower_bush_5_1331917692579"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">703</int> <int id="h">64</int> <int id="z">58</int> <int id="w">151</int> <str id="sprite_class">flower_bush_5</str> <int id="x">3630</int> </object> <object id="groddle_cover_clover2_1331917692695"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">779</int> <int id="h">27</int> <int id="z">37</int> <int id="w">73</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2753</int> </object> <object id="evenground_mound_1_1331848266514"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">791</int> <int id="h">72</int> <int id="z">15</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">1793</int> <int id="r">-2</int> </object> <object id="evenground_mound_1_1332176700898"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">787</int> <int id="h">72</int> <int id="z">14</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">1395</int> <int id="r">-2</int> </object> <object id="groddle_grass_2_1331917692699"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">779</int> <int id="h">37</int> <int id="z">35</int> <int id="w">47</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2805</int> </object> <object id="groddle_grass_2_1331938656916"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">802</int> <int id="h">36</int> <int id="z">124</int> <int id="w">46</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3301</int> </object> <object id="evenground_mound_1_1332176700897"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">819</int> <int id="h">72</int> <int id="z">12</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">1042</int> <int id="r">2</int> </object> <object id="evenground_platform_long_1331932153019"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">824</int> <int id="h">38</int> <int id="z">1</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">146</int> </object> <object id="groddle_grass_2_1331925384823"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">756</int> <int id="h">33</int> <int id="z">20</int> <int id="w">41</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2317</int> </object> <object id="groddle_cover_clover1_1331917692622"> <str id="name">groddle_cover_clover1_1331917692622</str> <int id="y">764</int> <int id="h">54</int> <int id="z">83</int> <int id="w">222</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">4210</int> </object> <object id="groddle_cover_clover2_1331917692705"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">813</int> <int id="h">33</int> <int id="z">43</int> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2935</int> </object> <object id="groddle_bush1_1331917692396"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">755</int> <int id="h">60</int> <int id="z">102</int> <int id="w">103</int> <str id="sprite_class">groddle_bush1</str> <int id="x">1372</int> </object> <object id="evenground_platform_long_1331848266523"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">799</int> <int id="h">38</int> <int id="z">7</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">5230</int> <int id="r">1</int> </object> <object id="groddle_cover_clover2_1331917692697"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">738</int> <int id="h">23</int> <int id="z">39</int> <int id="w">61</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3188</int> </object> <object id="groddle_cover_clover2_1332176700917"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">763</int> <int id="h">22</int> <int id="z">34</int> <int id="w">59</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2582</int> </object> <object id="groddle_bush1_1332176700900"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">833</int> <int id="h">72</int> <int id="z">30</int> <int id="w">121</int> <str id="sprite_class">groddle_bush1</str> <int id="x">739</int> </object> <object id="groddle_cover_clover2_1331917692704"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">814</int> <int id="h">39</int> <int id="z">42</int> <int id="w">101</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3015</int> </object> <object id="evenground_platform_long_1331848266507"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">854</int> <int id="h">38</int> <int id="z">8</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">1065</int> </object> <object id="groddle_grass_2_1331917692713"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">748</int> <int id="h">34</int> <int id="z">108</int> <int id="w">43</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3097</int> </object> <object id="tree_deciduous1_1331853485015"> <str id="name">tree_deciduous1_1331848266413</str> <int id="y">796</int> <int id="h">464</int> <int id="z">63</int> <int id="w">412</int> <str id="sprite_class">tree_deciduous1</str> <int id="x">2362</int> </object> <object id="groddle_cover_clover2_1331938657094"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">764</int> <int id="h">32</int> <int id="z">94</int> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4759</int> </object> <object id="flower_bush_5_1332176700910"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">807</int> <int id="h">85</int> <int id="z">133</int> <int id="w">200</int> <str id="sprite_class">flower_bush_5</str> <int id="x">1140</int> </object> <object id="tree_deciduous1_1331938656797"> <str id="name">tree_deciduous1_1331848266413</str> <int id="y">796</int> <int id="h">464</int> <int id="z">122</int> <int id="w">412</int> <str id="sprite_class">tree_deciduous1</str> <int id="x">169</int> </object> <object id="evenground_mound_1_1331848266518"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">732</int> <int id="h">72</int> <int id="z">18</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">3441</int> </object> <object id="groddle_bush1_1331917692709"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">743</int> <int id="h">48</int> <int id="z">106</int> <int id="w">81</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3085</int> </object> <object id="groddle_bush1_1331917692718"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">773</int> <int id="h">60</int> <int id="z">110</int> <int id="w">102</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3272</int> </object> <object id="groddle_bush1_1331917692586"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">768</int> <int id="h">60</int> <int id="z">86</int> <int id="w">102</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3907</int> </object> <object id="groddle_fern_1_1331938657092"> <str id="name">groddle_fern_1_1331917692425</str> <int id="y">749</int> <int id="h">55</int> <int id="z">49</int> <int id="w">91</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">4848</int> </object> <object id="groddle_bush1_1331917692585"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">724</int> <int id="h">60</int> <int id="z">71</int> <int id="w">102</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3561</int> </object> <object id="groddle_cover_clover2_1331917692654"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">766</int> <int id="h">32</int> <int id="z">96</int> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4801</int> </object> <object id="groddle_grass_2_1331938657004"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">767</int> <int id="h">33</int> <int id="z">129</int> <int id="w">41</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2537</int> </object> <object id="tree_canopy_1_1332176700902"> <str id="name">tree_canopy_1_1331938656803</str> <int id="y">805</int> <int id="h">528</int> <int id="z">130</int> <int id="w">673</int> <str id="sprite_class">tree_canopy_1</str> <int id="x">1723</int> </object> <object id="evenground_horizon_1331848266506"> <str id="name">evenground_horizon_1331845429796</str> <int id="y">790</int> <int id="h">51</int> <int id="z">9</int> <int id="w">1125</int> <str id="sprite_class">evenground_horizon</str> <int id="x">299</int> <int id="r">4</int> </object> <object id="evenground_mound_1_1331848266513"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">820</int> <int id="h">72</int> <int id="z">11</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">1556</int> <int id="r">-2</int> </object> <object id="groddle_grass_2_1331925384819"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">748</int> <int id="h">33</int> <int id="z">118</int> <int id="w">41</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1425</int> </object> <object id="groddle_grass_2_1331917692714"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">761</int> <int id="h">36</int> <int id="z">109</int> <int id="w">46</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3063</int> </object> <object id="tree_deciduous2_1332176700918"> <str id="name">tree_deciduous2_1331848266528</str> <int id="y">842</int> <int id="h">511</int> <bool id="h_flip">true</bool> <int id="z">67</int> <int id="w">518</int> <str id="sprite_class">tree_deciduous2</str> <int id="x">2894</int> </object> <object id="flower_bush_5_1331938656983"> <str id="name">flower_bush_5_1331848266437</str> <int id="y">801</int> <int id="h">73</int> <int id="z">127</int> <int id="w">171</int> <str id="sprite_class">flower_bush_5</str> <int id="x">322</int> </object> <object id="groddle_cover_clover2_1332176700922"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">832</int> <int id="h">37</int> <int id="z">68</int> <int id="w">96</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2834</int> </object> <object id="tree_deciduous1_1331938656787"> <str id="name">tree_deciduous1_1331848266413</str> <int id="y">780</int> <int id="h">464</int> <int id="z">93</int> <int id="w">412</int> <str id="sprite_class">tree_deciduous1</str> <int id="x">5469</int> </object> <object id="groddle_cover_clover2_1331917692623"> <str id="name">groddle_cover_clover2_1331917692420</str> <int id="y">729</int> <int id="h">29</int> <int id="z">74</int> <int id="w">77</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">4120</int> </object> <object id="evenground_platform_long_1331932153018"> <str id="name">evenground_platform_long_1331848266502</str> <int id="y">823</int> <int id="h">38</int> <int id="z">5</int> <int id="w">983</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">5148</int> <int id="r">1</int> </object> <object id="groddle_bush1_1331917692648"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">744</int> <int id="h">54</int> <int id="z">51</int> <int id="w">92</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4584</int> </object> <object id="evenground_mound_1_1331848266516"> <str id="name">evenground_mound_1_1331848266379</str> <int id="y">783</int> <int id="h">72</int> <int id="z">16</int> <int id="w">842</int> <str id="sprite_class">evenground_mound_1</str> <int id="x">2888</int> <int id="r">-2</int> </object> <object id="groddle_grass_2_1331938656917"> <str id="name">groddle_grass_2_1331848266436</str> <int id="y">807</int> <int id="h">48</int> <int id="z">125</int> <int id="w">61</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">3336</int> </object> <object id="groddle_bush1_1331917692717"> <str id="name">groddle_bush1_1331848266448</str> <int id="y">773</int> <int id="h">60</int> <int id="z">111</int> <int id="w">102</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3340</int> </object> </object> <int id="z">-1</int> </object> </object> <str id="music_file"></str> <int id="rookable_type">0</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1334365832.swf</str> <str id="tsid">LUVDU3H5COS2S4O</str> <null id="img_file_versioned"/> <null id="loading_label"/> <int id="ground_y">-232</int> <null id="physics"/> <object id="gradient"> <str id="top">62AD</str> <str id="bottom">FFDF5E</str> </object> <object id="sources"> <int id="LUVO82HBAKR2A9G">1</int> </object> <bool id="wall_jump">false</bool> <bool id="no_zoom">false</bool> </object> </game_object>
174,814
Common Lisp
.l
5,115
27.413099
209
0.559585
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
48698a7713dfbccadb016dcfbc6f0f34927fe737a629648e7862795d10986e9d
20,854
[ -1 ]
20,855
LA9T11KPMD82B1S.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA9T11KPMD82B1S transition_01-mixed composition/LA9T11KPMD82B1S.xml
<game_object tsid="LA9T11KPMD82B1S" ts="1364236515871" label="Matsua Mossy" class_tsid="town" hubid="97" moteid="9" letime="3g8ft14q" rbtime="28dmpkb1" upd_gs="gs6" load_time="2013-03-25 11:24:45.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-08-05/LA9T11KPMD82B1S_loading_1312592221.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <object id="image"> <str id="url">streets/2011-08-05/LA9T11KPMD82B1S_main_1312592222.jpg</str> <int id="w">720</int> <int id="h">120</int> </object> <object id="jobs"> <object id="598"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> <str id="title_override">Build Matsua Mossy in Muufo</str> <str id="desc_override">Expand Muufo by building a new street, Matsua Mossy.</str> <object id="connecting_streets"> <str id="0">LA9KL68C1D825IA</str> </object> </object> <object id="class_ids"> <object id="job_street_ph5_01"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Rise &amp; Shine</str> <str id="class_id">job_street_ph5_01</str> </object> <object id="job_street_ph2_02"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Supply &amp; Prepare</str> </object> <object id="job_street_ph5_03"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Veggie Adventure</str> </object> <object id="job_street_ph5_02"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Shindig</str> </object> </object> </object> <object id="599"> <object id="street_info"> <int id="type">2</int> <int id="is_hidden">0</int> <str id="title_override">Build Nira Nooks in Muufo</str> <str id="desc_override">Expand Muufo by building a new street, Nira Nooks.</str> <str id="target_street">LA9KLB7I1D822OL</str> </object> <object id="class_ids"> <object id="job_street_ph2_04"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Engineer &amp; Build</str> <str id="class_id">job_street_ph2_04</str> <objref id="instance" tsid="QA9O36S2HF92LKR"/> </object> <object id="job_street_ph1_08"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Get Dirty</str> <str id="class_id">job_street_ph1_08</str> <objref id="instance" tsid="QA98C44PPH9207H"/> </object> <object id="job_street_ph2_03"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Backyard BBQ</str> <str id="class_id">job_street_ph2_03</str> <objref id="instance" tsid="QA9KBI6DTH92CHO"/> </object> <object id="job_street_ph4_02"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Backroom Dealings</str> <str id="class_id">job_street_ph4_02</str> <objref id="instance" tsid="QA9V0IFD1I929A3"/> </object> </object> </object> </object> <bool id="jobs_is_locked">false</bool> <object id="delayed_sounds"> </object> <object id="action_requests"> </object> <object id="rook_status"> <bool id="rooked">false</bool> </object> <object id="stun_orbs"> </object> <object id="keys"> </object> <object id="qurazy"> </object> <object id="incantations"> <object id="PUVDGQG61EE28BB"> <int id="step">1</int> <int id="ts">1350438422</int> </object> <object id="PHVT7Q4O4O0236A"> <int id="step">1</int> <int id="ts">1350438515</int> </object> <object id="PHFA302213D2GRI"> <int id="step">2</int> <int id="ts">1350438536</int> </object> <object id="PUV2IF5R1LB3O7F"> <int id="step">1</int> <int id="ts">1350439509</int> </object> <object id="PUVS0VLJ9G93E96"> <int id="step">1</int> <int id="ts">1350439714</int> </object> <object id="PUVVE7C5HV93LDE"> <int id="step">2</int> <int id="ts">1350439718</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">3</int> <int id="ts">1350439719</int> </object> <object id="PUVVK2LRTDB3DVG"> <int id="step">1</int> <int id="ts">1350439862</int> </object> <object id="PUV73273RDB384B"> <int id="step">2</int> <int id="ts">1350439864</int> </object> <object id="PUVKVR5LSDB35CM"> <int id="step">3</int> <int id="ts">1350439870</int> </object> <object id="PUVS7GF5U6839O4"> <int id="step">1</int> <int id="ts">1350439896</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">1</int> <int id="ts">1350440254</int> </object> <object id="PUVTEISFLLB38P4"> <int id="step">2</int> <int id="ts">1350440255</int> </object> <object id="PUV1T4MF4FF2Q8S"> <int id="step">3</int> <int id="ts">1350440256</int> </object> <object id="PHFPRQPJJ2D2NKI"> <int id="step">1</int> <int id="ts">1350441156</int> </object> <object id="PHFIPVH38TC2PIV"> <int id="step">2</int> <int id="ts">1350441162</int> </object> <object id="PHVP4B1U0H22UNL"> <int id="step">3</int> <int id="ts">1350441163</int> </object> <object id="PUVS27VFH8K2F38"> <int id="step">1</int> <int id="ts">1350442034</int> </object> <object id="PHVGU6I056A2DL9"> <int id="step">2</int> <int id="ts">1350442036</int> </object> <object id="PHVR4QIMCOA205O"> <int id="step">3</int> <int id="ts">1350442039</int> </object> <object id="PUVGUSBSUSF297H"> <int id="step">1</int> <int id="ts">1350442364</int> </object> <object id="PUVFH6OPFTF2LF6"> <int id="step">2</int> <int id="ts">1350442365</int> </object> <object id="PUV2PCFUPSF2NBE"> <int id="step">3</int> <int id="ts">1350442367</int> </object> <object id="PIFMCP16DG63SAH"> <int id="step">1</int> <int id="ts">1350444429</int> </object> <object id="PIFTI697KF63DUO"> <int id="step">2</int> <int id="ts">1350444429</int> </object> <object id="PIFH4KS85L63D4V"> <int id="step">3</int> <int id="ts">1350444431</int> </object> <object id="PIFV8NHUC063V2D"> <int id="step">1</int> <int id="ts">1350444508</int> </object> <object id="PUVKTD8OIP73FK9"> <int id="step">2</int> <int id="ts">1350444517</int> </object> <object id="PHVR3SACH38205T"> <int id="step">3</int> <int id="ts">1350444521</int> </object> <object id="PUV23CR4T8F22HA"> <int id="step">1</int> <int id="ts">1350444988</int> </object> <object id="PUVQC85P4U73FTO"> <int id="step">2</int> <int id="ts">1350444989</int> </object> <object id="PUVRPUE7RO73KNE"> <int id="step">3</int> <int id="ts">1350444991</int> </object> <object id="PHF2VPV503D26FE"> <int id="step">1</int> <int id="ts">1350447824</int> </object> <object id="PUVF7TDOFA93ATH"> <int id="step">2</int> <int id="ts">1350447873</int> </object> <object id="PUVICMAK8SJ2MAS"> <int id="step">3</int> <int id="ts">1350447882</int> </object> <object id="PLI16FSFK2I91"> <int id="step">1</int> <int id="ts">1350447885</int> </object> <object id="PHVR7F201F72EUM"> <int id="step">1</int> <int id="ts">1350449045</int> </object> <object id="PHFV3DRAV0D23TB"> <int id="step">2</int> <int id="ts">1350449047</int> </object> <object id="PHV3SOHNMB52ELG"> <int id="step">3</int> <int id="ts">1350449048</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">1</int> <int id="ts">1350449433</int> </object> <object id="PUVI4EDKGAJ207T"> <int id="step">1</int> <int id="ts">1350451636</int> </object> <object id="PHF7GOMJS1D24NC"> <int id="step">2</int> <int id="ts">1350451643</int> </object> <object id="PUVFUD1UJRE26GD"> <int id="step">3</int> <int id="ts">1350451645</int> </object> <object id="PUV24RND2U83B75"> <int id="step">1</int> <int id="ts">1350464869</int> </object> <object id="PHVL8BGEO752C3M"> <int id="step">2</int> <int id="ts">1350464873</int> </object> <object id="PUVSGG1ULJE2EBJ"> <int id="step">1</int> <int id="ts">1350468662</int> </object> <object id="PUVS2S2R0MB3R01"> <int id="step">2</int> <int id="ts">1350468664</int> </object> <object id="PIF9R57T8P53I85"> <int id="step">3</int> <int id="ts">1350468665</int> </object> <object id="PUVFVM8KG9B37F0"> <int id="step">1</int> <int id="ts">1350469959</int> </object> <object id="PUV7PU7B5JH2OP2"> <int id="step">2</int> <int id="ts">1350469963</int> </object> <object id="PUVEGG4T2FG2UCD"> <int id="step">3</int> <int id="ts">1350469966</int> </object> <object id="PHF91JD8M2D2EAU"> <int id="step">1</int> <int id="ts">1350470153</int> </object> <object id="PHF9L3JP5BD2R6D"> <int id="step">1</int> <int id="ts">1350470501</int> </object> <object id="PUV78NOA0G73MM9"> <int id="step">2</int> <int id="ts">1350470503</int> </object> <object id="PA9QA8RBRPD22NK"> <int id="step">3</int> <int id="ts">1350470504</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">1</int> <int id="ts">1350475420</int> </object> <object id="PUVSIC42BC73NO8"> <int id="step">1</int> <int id="ts">1350480948</int> </object> <object id="PIFOC6038Q53T2J"> <int id="step">1</int> <int id="ts">1350481160</int> </object> <object id="PHF7J0BE5BD2R2J"> <int id="step">2</int> <int id="ts">1350481163</int> </object> <object id="PUV160O6FLB3KF2"> <int id="step">3</int> <int id="ts">1350481164</int> </object> <object id="PUVN8RFT0J73V4A"> <int id="step">1</int> <int id="ts">1350481166</int> </object> <object id="PUVQ44T8D9832CL"> <int id="step">2</int> <int id="ts">1350481171</int> </object> <object id="PUVEF6G1K9831H3"> <int id="step">3</int> <int id="ts">1350481173</int> </object> <object id="PUVIS05FIIA3SBO"> <int id="step">1</int> <int id="ts">1350481279</int> </object> <object id="PHVK2FSFOT22C3I"> <int id="step">2</int> <int id="ts">1350481280</int> </object> <object id="PHFTTVBJQ2D2PP8"> <int id="step">3</int> <int id="ts">1350481281</int> </object> <object id="PUV70B01CBG27J4"> <int id="step">1</int> <int id="ts">1350483319</int> </object> <object id="PUVBTTFKSVE2QNB"> <int id="step">2</int> <int id="ts">1350484915</int> </object> <object id="PUVJMEF10BB3SHV"> <int id="step">1</int> <int id="ts">1350485459</int> </object> <object id="PHF7NSKA3AD2PU5"> <int id="step">1</int> <int id="ts">1350485495</int> </object> <object id="PUVK46QGM9G2ANO"> <int id="step">2</int> <int id="ts">1350485496</int> </object> <object id="PIFBU9CQQK53VSN"> <int id="step">3</int> <int id="ts">1350485497</int> </object> <object id="PA920DBMG0E2ASB"> <int id="step">1</int> <int id="ts">1350488551</int> </object> <object id="PUVTCVJQ2B73QL7"> <int id="step">2</int> <int id="ts">1350488554</int> </object> <object id="PUVKHBR4LCB3I8P"> <int id="step">3</int> <int id="ts">1350488555</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1350489167</int> </object> <object id="PHFVN17DD0D2G3V"> <int id="step">2</int> <int id="ts">1350489168</int> </object> <object id="PHFLM7KOU2D24PL"> <int id="step">3</int> <int id="ts">1350489171</int> </object> <object id="PUVT5TK2G6D28QU"> <int id="step">1</int> <int id="ts">1350490594</int> </object> <object id="PHFJAE8FQVC2RNH"> <int id="step">1</int> <int id="ts">1350490930</int> </object> <object id="PUVOLKOHC7F24F7"> <int id="step">2</int> <int id="ts">1350490934</int> </object> <object id="PUVCAJTDPFH203K"> <int id="step">3</int> <int id="ts">1350490935</int> </object> <object id="PUVH3TQBJS63O8M"> <int id="step">1</int> <int id="ts">1350492036</int> </object> <object id="PHFQRN9OP3D2PGV"> <int id="step">2</int> <int id="ts">1350492040</int> </object> <object id="PUVFDC083PE2F30"> <int id="step">3</int> <int id="ts">1350492042</int> </object> <object id="PUVBFKGAR9G2SOQ"> <int id="step">1</int> <int id="ts">1350492348</int> </object> <object id="PUV74EQ1PVE211F"> <int id="step">1</int> <int id="ts">1350494798</int> </object> <object id="PUVPBGSGGI9363H"> <int id="step">2</int> <int id="ts">1350495143</int> </object> <object id="PUVP72OSJ5A3FCK"> <int id="step">1</int> <int id="ts">1350495432</int> </object> <object id="PCRFLA5IKNS19P1"> <int id="step">1</int> <int id="ts">1350495909</int> </object> <object id="PCRF91L4KNS1SSI"> <int id="step">2</int> <int id="ts">1350495918</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">1</int> <int id="ts">1350497195</int> </object> <object id="PHFKGTOEK4D24VC"> <int id="step">1</int> <int id="ts">1350497771</int> </object> <object id="PA9U3JQ0CTD2448"> <int id="step">1</int> <int id="ts">1350500766</int> </object> <object id="PHVVS8IQOM92U22"> <int id="step">1</int> <int id="ts">1350502730</int> </object> <object id="PHFB9U6BRQC2IEB"> <int id="step">2</int> <int id="ts">1350502735</int> </object> <object id="PUVSESCKOOE2P8R"> <int id="step">1</int> <int id="ts">1350505561</int> </object> <object id="PUV9H4HP7PL2SLO"> <int id="step">1</int> <int id="ts">1350507473</int> </object> <object id="PUVMRHDRT483OEH"> <int id="step">2</int> <int id="ts">1350507475</int> </object> <object id="PUV5RUVCQLG2OO1"> <int id="step">3</int> <int id="ts">1350507476</int> </object> <object id="PHFU9TB1JVC2JE6"> <int id="step">1</int> <int id="ts">1350511139</int> </object> <object id="PIF1J1O8KL5362P"> <int id="step">1</int> <int id="ts">1350512152</int> </object> <object id="PHFDJ8UMK0D2JML"> <int id="step">1</int> <int id="ts">1350512196</int> </object> <object id="PHF20O01HRC21FP"> <int id="step">2</int> <int id="ts">1350512596</int> </object> <object id="PUVNJCEML7P2ES0"> <int id="step">1</int> <int id="ts">1350512705</int> </object> <object id="PUV3JOQHDGB322T"> <int id="step">2</int> <int id="ts">1350512706</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">3</int> <int id="ts">1350512708</int> </object> <object id="PCR45R93AUT1EMH"> <int id="step">1</int> <int id="ts">1350513239</int> </object> <object id="PUV4M2F46LL2DPA"> <int id="step">1</int> <int id="ts">1350513927</int> </object> <object id="PUVCK0THA3J2RTL"> <int id="step">2</int> <int id="ts">1350514519</int> </object> <object id="PA9J5LA451E2LSE"> <int id="step">1</int> <int id="ts">1350514761</int> </object> <object id="PHV52C0R3K72SEQ"> <int id="step">2</int> <int id="ts">1350514943</int> </object> <object id="PUV44OUN2L93PJG"> <int id="step">1</int> <int id="ts">1350517105</int> </object> <object id="PHVENFK7I3A2KIH"> <int id="step">1</int> <int id="ts">1350517291</int> </object> <object id="PUV9EUTOH6D2SD9"> <int id="step">1</int> <int id="ts">1350518396</int> </object> <object id="PUVCAD6F9A734MT"> <int id="step">2</int> <int id="ts">1350518397</int> </object> <object id="PIFMFNI3UT53QCC"> <int id="step">3</int> <int id="ts">1350518399</int> </object> <object id="PUVUCJ1BR4A3NOC"> <int id="step">1</int> <int id="ts">1350518685</int> </object> <object id="PIFHNV6QGM53L30"> <int id="step">1</int> <int id="ts">1350519019</int> </object> <object id="PA9AAQRSQ1E2VC8"> <int id="step">1</int> <int id="ts">1350519084</int> </object> <object id="PHV2N3G3AF825OC"> <int id="step">2</int> <int id="ts">1350519086</int> </object> <object id="PHVPD72CABA2UCJ"> <int id="step">3</int> <int id="ts">1350519087</int> </object> <object id="PHVVO7CASCB21O5"> <int id="step">1</int> <int id="ts">1350520155</int> </object> <object id="PUVPOBK0AB83DS9"> <int id="step">2</int> <int id="ts">1350520916</int> </object> <object id="PA9O3QNPFID2ENR"> <int id="step">1</int> <int id="ts">1350520981</int> </object> <object id="PA9CE3VGO4E2C79"> <int id="step">2</int> <int id="ts">1350521898</int> </object> </object> <int id="incantations_step">2</int> <object id="emotes"> <object id="25-05-26"> <int id="PA9AAQRSQ1E2VC8">1351274995</int> <int id="PUVQAVTGUBC3QUV">1351282463</int> <int id="PHFFO3VALUC2TAP">1351282465</int> </object> <object id="25-05-27"> <int id="PUVQV9H1VGC33S6">1351287266</int> </object> <object id="25-05-28"> <int id="PUVJ2UISFEC3J1N">1351305040</int> <int id="PUVSRKDKT993SB7">1351305041</int> <int id="PUVKAU5DJLF2NG2">1351309057</int> <int id="PUV3DS9H5IC3LGE">1351313980</int> </object> <object id="25-05-31"> <int id="PUVG0QGLK683S5N">1351347229</int> <int id="PUVSRKDKT993SB7">1351347263</int> <int id="PUV7L167GMC3P5P">1351349520</int> <int id="PUVTGEK865C3F0C">1351354108</int> <int id="PHFKGTOEK4D24VC">1351356392</int> </object> <object id="25-05-32"> </object> <object id="25-05-35"> </object> <object id="25-05-37"> </object> <object id="25-05-38"> </object> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PUV946699DF2CCH">1352338696</int> <int id="PUV3MOGR9P73IK4">1352338718</int> <int id="PUVUBU7O23D317B">1352339149</int> <int id="PUVKLU36GOC35IF">1352339351</int> <int id="PA9GNHK5C0E23D8">1352339380</int> <int id="PHV3J76JGS62RF5">1352339418</int> <int id="PHFQ9HM9E2D2M68">1352339445</int> <int id="PHFM0PHNTUC2S8E">1352339493</int> <int id="PUVQ68B4UVC30U0">1352339646</int> <int id="PUV811HCEAD38PB">1352339683</int> <int id="PUVBUM93BEE2TPP">1352339930</int> <int id="PUV2HGN6GFF2BCL">1352339944</int> <int id="PUVCBCBO7VC3IUR">1352339972</int> <int id="PHVV591MRV524E4">1352339986</int> <int id="PUVSS7LVKEC318S">1352340204</int> <int id="PHVAP23D7QA2PLS">1352340283</int> <int id="PHF2AAA7G2D2BAM">1352340391</int> <int id="PUVOEBKQLIB3DU3">1352340545</int> <int id="PUVK0E4JJD9306A">1352340640</int> <int id="PUVSRKDKT993SB7">1352340675</int> <int id="PUV8ID8UFNE2JD8">1352340804</int> <int id="PHFT66IJV2D29PS">1352340810</int> <int id="PUVEP1RCN9C35A2">1352340831</int> <int id="PHFINSK9JCD29H5">1352340981</int> <int id="PUVE36UNO7C3P52">1352341149</int> <int id="PUVUJR1UUTG2SJP">1352341169</int> <int id="PUVM7GMQUJC3CDG">1352341528</int> <int id="PUVPLDCEPPC3IJA">1352341648</int> <int id="PUVR4MQSVE8394R">1352341944</int> <int id="PUVI9DR31TC3VEU">1352341944</int> <int id="PHV6KOHGPP62TMB">1352342041</int> <int id="PHFUEM2NQ4D2BA4">1352342092</int> <int id="PHVNHAJEDK42187">1352342099</int> <int id="PUV7DBINAS73IFR">1352342123</int> <int id="PUVK4347KHE2JL8">1352342215</int> <int id="PHFFIBQRICD28H9">1352342245</int> <int id="PUVUBMB2MNB38K2">1352342253</int> <int id="PUV4KL8IOKG205V">1352342419</int> <int id="PUVEQ7MDMGJ2JKD">1352342428</int> <int id="PUVOS0AB2KC3PNA">1352342561</int> <int id="PA97I2RED7E2KE2">1352342848</int> <int id="PUV8AE45JLB3ULN">1352343279</int> <int id="PUV9R61JKH93OTT">1352343365</int> <int id="PUVPFNP2R1A3U7T">1352343365</int> <int id="PCR12K6MG5S14JV">1352343515</int> <int id="PUVKHLIG95D2671">1352343552</int> <int id="PHVERH6QNU621I8">1352343639</int> <int id="PHVSGKDV7SA2FK8">1352343738</int> <int id="PUVG2EDJV8G2ADK">1352343907</int> <int id="PUVG3MQRMMB3J88">1352344734</int> <int id="PUV7GA6T2V93JHU">1352344916</int> <int id="PCR42DQMSCV1P9O">1352345014</int> <int id="PA9SI3EOAND2BDK">1352345105</int> <int id="PUV192265H83TQL">1352345171</int> <int id="PUVICQS3A6G20OJ">1352345171</int> <int id="PUVVH2I5C8F2F9E">1352345171</int> <int id="PHV74M86TI82S2U">1352345171</int> <int id="PHFIS28II2D239P">1352345171</int> <int id="PUV6M92FD0H2KGM">1352345261</int> <int id="PUVSLPFE06D2FMT">1352345472</int> <int id="PIFO7TLUMS534NG">1352345521</int> <int id="PCRHG3QLKMN1BKH">1352346019</int> <int id="PUVGHHLMEPC3J18">1352346831</int> <int id="PUV4AHCDIDF25RF">1352346857</int> <int id="PUVSVDEIMTG26B0">1352347161</int> <int id="PHFP13C56FD2BL8">1352347219</int> <int id="PHF624MH10D2RFE">1352347251</int> <int id="PIF2NJ0S8J6320E">1352347281</int> <int id="PUVB8671QF93LQ1">1352347535</int> <int id="PUVHIS3DV5D20RQ">1352347598</int> <int id="PUV48BQ6JAG26EC">1352347703</int> <int id="PUV3S7CIG093V83">1352348154</int> <int id="PUVHT82E1AP2E7H">1352348405</int> <int id="PUV5E5K85LB37M1">1352348641</int> <int id="PIFGCNAO5663GCP">1352348645</int> <int id="PUVLS8OMVLB33CN">1352348772</int> <int id="PUVCJ3V3R7D2N88">1352349106</int> <int id="PUVKKRET75B328O">1352349672</int> <int id="PIFQJ8FJ1M63HN9">1352349738</int> <int id="PHVDQJMEEEC2497">1352349747</int> <int id="PUVRL3OSO7G2VV4">1352349808</int> <int id="PUVGK8HBCJB36GN">1352349812</int> <int id="PUV2831ETFB3LS5">1352350027</int> <int id="PUVUJVN9LQ63SKB">1352350587</int> <int id="PUVFEHU904J2T3U">1352350629</int> <int id="PHFMVJCKSVC2BRL">1352350638</int> </object> <object id="25-07-09"> <int id="PUVVTPI9J9C3P51">1352350846</int> <int id="PA9AAQRSQ1E2VC8">1352350997</int> <int id="PHFEVQHPITC2G4D">1352351123</int> <int id="PIFI4GLO8N531PL">1352351420</int> <int id="PIFFB6SQ2M33D9D">1352351422</int> <int id="PUV4J5VT8D93ATP">1352352043</int> <int id="PCRAFRDJFUT1PGB">1352352420</int> <int id="PCRDMHR3NDO1FVT">1352352757</int> <int id="PIFGCNAO5663GCP">1352353629</int> <int id="PHFINSK9JCD29H5">1352353781</int> <int id="PUVT4G8H1IB3FQA">1352354377</int> <int id="PUVSLPFE06D2FMT">1352354673</int> <int id="PUV2EGMNAHS2OQC">1352355327</int> <int id="PUVDMUQLO6A3LJE">1352356176</int> <int id="PUVN27LFLKC38I7">1352356411</int> <int id="PUVD2FVRMI83OV0">1352356546</int> <int id="PHFPBUKK93D26VU">1352356692</int> <int id="PUVOIO5NTF93QO1">1352356785</int> <int id="PUVV5HJ6RD93NIJ">1352356785</int> <int id="PUVEH5J81UC3JJG">1352356849</int> <int id="PHFF9HK602D2HPJ">1352356954</int> <int id="PUVT7ILABPA3R1N">1352356970</int> <int id="PUVVNUQRKC93AAB">1352357034</int> <int id="PHFJERMET9D2JTA">1352357070</int> <int id="PHVOB27OFM52R2J">1352357629</int> <int id="PHVPBUH9R3A23NS">1352357837</int> <int id="PUVFPTBQU7D2GI3">1352358207</int> <int id="PHF624MH10D2RFE">1352358489</int> <int id="PHVQRJ67Q742FCG">1352358490</int> <int id="PHVLEE66STA2M50">1352358654</int> <int id="PUVJ14GQK8D2BAC">1352358884</int> <int id="PHFCA0VG30D2LVR">1352359055</int> <int id="PUVIHJRJOKC3LP1">1352359246</int> <int id="PCRE2VRLINS18V4">1352359549</int> <int id="PA9NO43L7VD26VP">1352359894</int> <int id="PUVQDRLM9NB31K0">1352359917</int> <int id="PHFDJ8UMK0D2JML">1352360318</int> <int id="PHVT6IU22J82T5T">1352360374</int> <int id="PUVG9PRB1KC3GEA">1352360422</int> <int id="PUVD5EBBU8D2T48">1352360539</int> <int id="PUV979L46IB3HEE">1352360847</int> <int id="PUVDML8BPK93CKI">1352362142</int> <int id="PUVKBPJJIBD36P9">1352362648</int> <int id="PUVI0H2977A3G7K">1352362722</int> <int id="PCRR6HQFR0U1SRC">1352363656</int> <int id="PUV3HG2DOSC3JF4">1352364023</int> <int id="PUVHBE7V6HD3IS8">1352364126</int> <int id="PA984LGOCKD26UK">1352364371</int> <int id="PUV90CLC0NC37FF">1352365047</int> <int id="PIFQGDUUKK533HN">1352365108</int> </object> <object id="25-07-10"> <int id="PUVNCETP1JB3AHM">1352365452</int> <int id="PA9MTNTQ1ND29LQ">1352365534</int> <int id="PUVG9PRB1KC3GEA">1352366474</int> <int id="PUVKBPJJIBD36P9">1352366536</int> <int id="PUV28UJF0PC34PD">1352366855</int> <int id="PUVD1R35GNC3PP0">1352366971</int> <int id="PUVLC1FVGH739H1">1352367186</int> <int id="PHVPBUH9R3A23NS">1352367617</int> <int id="PIFIN0ITTI63G9H">1352370472</int> <int id="PUVHGT5JDLB30F7">1352371944</int> <int id="PUV6FUO75V93AII">1352371944</int> <int id="PUVHKHKSFDC3H9E">1352371944</int> <int id="PUV4TOO3O1D32TP">1352371944</int> <int id="PA9VHKNCKQD2LUN">1352372604</int> <int id="PUVHPAD7L5N292B">1352372604</int> <int id="PHFN8I5UBCD2C6Q">1352372604</int> <int id="PUVC54T9FQC3TSD">1352373036</int> <int id="PUVH72G5OCG2GO3">1352373293</int> <int id="PCRFLA5IKNS19P1">1352374384</int> <int id="PUVGC4ADU8C3V82">1352374500</int> <int id="PUVO4DC282A3502">1352374921</int> <int id="PHVFSV9R04A2DO9">1352375123</int> <int id="PUVVLIPFM5D2UC5">1352375123</int> <int id="PUV2831ETFB3LS5">1352375128</int> <int id="PA9PPLUHPJD24UQ">1352375181</int> <int id="PUVAMIE2A8F2LGH">1352375300</int> <int id="PIFOC6038Q53T2J">1352375528</int> <int id="PUVRJVHGCMB3VRA">1352375528</int> <int id="PHFINSK9JCD29H5">1352376017</int> <int id="PUVS76IBB0S2R71">1352376069</int> <int id="PCR2JJS38PS1MON">1352376972</int> <int id="PHF31BRLV4D27G0">1352378004</int> <int id="PUVNJCEML7P2ES0">1352378425</int> <int id="PA9E9SC8Q0E2TV1">1352378907</int> <int id="PCR1JHCF89P1TP4">1352379345</int> </object> <object id="25-07-11"> <int id="PUVG1VDOFTC3TF8">1352382256</int> <int id="PUVFQDQDUC936QU">1352382924</int> <int id="PUVIKQGNDQ935NR">1352382992</int> <int id="PUVTI19CKTC3PCC">1352383279</int> <int id="PUVEO0HVO0B3E00">1352383345</int> <int id="PCRR6HQFR0U1SRC">1352383951</int> <int id="PA9N3O7N5PD2BP8">1352383958</int> <int id="PUVHGT5JDLB30F7">1352385001</int> <int id="PUV6FUO75V93AII">1352385001</int> <int id="PUVHKHKSFDC3H9E">1352385001</int> <int id="PA93VP2554E2H3R">1352385001</int> <int id="PCRD7E1BNAO16J6">1352385217</int> <int id="PCRD007C83N19S4">1352386088</int> <int id="PA98EALDUKD2CR9">1352386283</int> <int id="PUV22S2QJIF2GFM">1352386957</int> <int id="PHF624MH10D2RFE">1352387465</int> <int id="PCR6QLN3RVT1329">1352387637</int> <int id="PUV7GA6T2V93JHU">1352387687</int> <int id="PIFCN0H01L638B9">1352387754</int> <int id="PUVQV9G5RB838CE">1352388061</int> <int id="PHFJAE8FQVC2RNH">1352388073</int> <int id="PUV4UO1A0FB3VQ1">1352388077</int> <int id="PHFQF61M2CD2DOI">1352388077</int> <int id="PUVLDB76CBC3NI9">1352388438</int> <int id="PUVPR1I900A3GII">1352388691</int> <int id="PHVFSV9R04A2DO9">1352388950</int> <int id="PUV39DUPENE2ATB">1352389299</int> <int id="PHFINSK9JCD29H5">1352389651</int> <int id="PUVHPAD7L5N292B">1352389744</int> <int id="PUVAC4AFMDE2HDT">1352389968</int> <int id="PUVJ618HU9E2EFI">1352390249</int> <int id="PIFSMKNBOG63N0R">1352391025</int> <int id="PUVJNEJQ6EE2C1E">1352391293</int> <int id="PUVIQLROID83HIE">1352391847</int> <int id="PUVCEKPE31C3KPQ">1352391961</int> <int id="PUVBHA1C58C33PQ">1352392325</int> <int id="PUVM4P3TPBG2CTI">1352392325</int> <int id="PHVBQSO3LG22530">1352392325</int> <int id="PUV9EUTOH6D2SD9">1352392325</int> <int id="PUV9TAHHD9G289O">1352392325</int> <int id="PCR14AIGQJO1V4O">1352392331</int> <int id="PHFSE0A9D4D2NDB">1352392983</int> <int id="PA94HHTM66E2D8A">1352393035</int> </object> <object id="25-07-12"> <int id="PHFL7P0N83D2P1R">1352394208</int> <int id="PUVJNEJQ6EE2C1E">1352394542</int> <int id="PHFM0PHNTUC2S8E">1352395305</int> <int id="PUVUEFJABRG2LND">1352395544</int> <int id="PCR10CGI60N1LG6">1352395766</int> <int id="PUVG3KM6CF93F06">1352396293</int> <int id="PHV3SOHNMB52ELG">1352396825</int> <int id="PUVGJ23CR2C34R5">1352396841</int> <int id="PUVMD4ISJA93B18">1352396910</int> <int id="PHF624MH10D2RFE">1352397180</int> <int id="PUVNC9RNU6D2UK4">1352397389</int> <int id="PHVSGKDV7SA2FK8">1352397477</int> <int id="PUVUJR1UUTG2SJP">1352397614</int> <int id="PUVOLIB476A3RCG">1352397697</int> <int id="PUVFAHPFK9C3BF4">1352398192</int> <int id="PUVUCMK66OE2S7S">1352398720</int> <int id="PUVJU69IKJC3BOE">1352399058</int> <int id="PA9SEU1KQ5E2M49">1352399243</int> <int id="PA9VHKNCKQD2LUN">1352399408</int> <int id="PHFN8I5UBCD2C6Q">1352399408</int> <int id="PUVA2RGKSPK263G">1352400039</int> <int id="PUVFDC083PE2F30">1352400426</int> <int id="PHF5OTALG4D2QME">1352400620</int> <int id="PUVRL3OSO7G2VV4">1352400712</int> <int id="PHVENFK7I3A2KIH">1352402098</int> <int id="PUVTI19CKTC3PCC">1352402298</int> <int id="PHVNJ4LKTQ626HM">1352402322</int> <int id="PUV2PAADR773LO4">1352402458</int> <int id="PUV9QFOV3ME2DOV">1352403020</int> <int id="PUVHER8O0BA3OCL">1352403637</int> <int id="PUV4N87P8GG2EB6">1352403866</int> <int id="PUVPTF7N2DG203S">1352403866</int> <int id="PIFLC6T4UK63AKI">1352403866</int> <int id="PHVTIPH9I5A2DJI">1352404048</int> <int id="PHVSCM4AFS627EF">1352404283</int> <int id="PUVK851A2373SQM">1352404500</int> <int id="PUVH3D6VKFC37GA">1352404625</int> <int id="PUV4TOO3O1D32TP">1352404876</int> <int id="PUV22S2QJIF2GFM">1352405017</int> <int id="PUV9MDBBBQB3SPA">1352405158</int> <int id="PUVBCKHONKC33H5">1352405422</int> <int id="PUVJMUGHVLN2761">1352405542</int> <int id="PA9ILK2LRKD24VK">1352405684</int> <int id="PUVOQVJ074A3F6S">1352405826</int> <int id="PUV42LEOBAF2MKD">1352406000</int> <int id="PUVRINE0QJL2GOH">1352406325</int> <int id="PUV9FTMEOVB3HSE">1352406773</int> <int id="PUVRSHGF4IQ21VO">1352406897</int> <int id="PUVANK930CC3FME">1352407140</int> <int id="PUV2O7J6I9D207V">1352407149</int> <int id="PUVTTIURKLC3B30">1352407195</int> <int id="PUV5OOOV5FB3S0U">1352407276</int> <int id="PDO2V71MMAR2SER">1352407355</int> <int id="PDODTQK43DR27CB">1352407373</int> <int id="PUV9KOTM1KE2MNG">1352407396</int> <int id="PUVVP3Q1VKB3O0M">1352407469</int> <int id="PCRNH6RCVNS1072">1352407550</int> <int id="PCRCFKKOGUJ1Q7C">1352407724</int> <int id="PHVAI4B3TK82G0N">1352407727</int> <int id="PUVA6OS08S832L9">1352407888</int> <int id="PIF14GJO15D1P84">1352408089</int> <int id="PUV784CQDNB36LL">1352408118</int> <int id="PUVUR23INHC3EQE">1352408257</int> </object> <object id="25-07-13"> <int id="PUVNK0QP52936BH">1352408909</int> <int id="PUVHPAD7L5N292B">1352409126</int> <int id="PCR44OG2AUT12IH">1352409296</int> <int id="PUV17ANCPQB3GGU">1352409396</int> <int id="PUVN766OG5F2T0K">1352409665</int> <int id="PIFLF93LOD63T7I">1352409745</int> <int id="PUVNGV442HC3EQB">1352410363</int> <int id="PUVFEEVC6HE20MV">1352410744</int> <int id="PUVH20IS8T83G8M">1352410776</int> <int id="PUVEP1RCN9C35A2">1352410846</int> <int id="PUVLF6M40R73D3D">1352411122</int> <int id="PHF274E9E0D23V6">1352411200</int> <int id="PHV7FR190MB2I9S">1352411654</int> <int id="PUVANK930CC3FME">1352412619</int> <int id="PUVQVSP9HID3C62">1352412706</int> <int id="PUV2BCEC5CG2V5L">1352412815</int> <int id="PCRR6HQFR0U1SRC">1352412872</int> <int id="PUVJB07LBEE2M4G">1352413157</int> <int id="PCRETDAKJNS1E7V">1352413367</int> <int id="PUVDS7DSD0D38CN">1352413823</int> <int id="PHVB44TB7992134">1352414030</int> <int id="PHVR7F201F72EUM">1352414094</int> <int id="PCR4GK24TCV152E">1352414105</int> <int id="PHFT5IMBBTC2N16">1352414196</int> <int id="PUV6FUO75V93AII">1352414277</int> <int id="PUVHKHKSFDC3H9E">1352414277</int> <int id="PUVHGT5JDLB30F7">1352414277</int> <int id="PUV43JV649C3OI1">1352414328</int> <int id="PUVG0QGLK683S5N">1352414467</int> <int id="PIFO93NADL63839">1352414490</int> <int id="PUVEGG4T2FG2UCD">1352415556</int> <int id="PUV22H6M4NI2QLH">1352415556</int> <int id="PUV7PU7B5JH2OP2">1352415556</int> <int id="PUVU94EEQOH2155">1352415782</int> <int id="PUVSLPFE06D2FMT">1352415931</int> <int id="PCR4BJU0BUM1TUF">1352416274</int> <int id="PUV7U3V812C3S7H">1352416408</int> <int id="PUVUEFJABRG2LND">1352416474</int> <int id="PIFOQUSVOP532JF">1352416489</int> <int id="PUVVQVKJH993IU1">1352416619</int> <int id="PUVJU69IKJC3BOE">1352417274</int> <int id="PA9MTNTQ1ND29LQ">1352417369</int> <int id="PHVRLNSOM032AAO">1352417660</int> <int id="PUVGC4ADU8C3V82">1352418359</int> <int id="PUVMD4ISJA93B18">1352418594</int> <int id="PUV4DAEQGTH2M1R">1352418830</int> <int id="PA9UNV5QH7E2B0P">1352418856</int> <int id="PHFIS28II2D239P">1352420824</int> <int id="PUVSP7665OB31TB">1352421147</int> <int id="PA9VHKNCKQD2LUN">1352421433</int> <int id="PHFAQB5VH4D2OSK">1352421433</int> <int id="PUV14N2LA8D2JIJ">1352421506</int> <int id="PHFMVJCKSVC2BRL">1352421879</int> <int id="PUVA61627VC3S6D">1352421952</int> <int id="PHFLC1SRO2D2KJP">1352421988</int> <int id="PUVBCE59EGC3FK4">1352422024</int> <int id="PUVO3ML08IB38DL">1352422459</int> <int id="PUV9A16GNTC32U6">1352422570</int> <int id="PUV1N5QOSIB31E3">1352422607</int> <int id="PUV7GA6T2V93JHU">1352422676</int> <int id="PUVH3TQBJS63O8M">1352422724</int> </object> <object id="25-08-07"> <int id="PUVANK930CC3FME">1352510308</int> <int id="PHFOTIREL1D24VG">1352510359</int> <int id="PUV9EUTOH6D2SD9">1352510365</int> </object> <object id="25-08-11"> <int id="PUVIHJRJOKC3LP1">1352573269</int> </object> <object id="25-08-12"> <int id="PUVANK930CC3FME">1352591914</int> </object> <object id="25-08-18"> <int id="PUV27HCU39B3HUV">1352676224</int> </object> <object id="25-08-20"> <int id="PUV88HJU7OB3B8Q">1352704027</int> </object> <object id="25-08-25"> <int id="PUVHSL8BJA935EG">1352769394</int> </object> <object id="25-10-03"> <int id="PUV8S9J1PAD3RO7">1353062253</int> </object> <object id="25-10-17"> <int id="PUVTD2NVTID3NDN">1353264510</int> </object> <object id="25-10-19"> <int id="PUVM0NPD3QC3EDD">1353297295</int> </object> <object id="25-10-28"> <int id="PUV1D62CP6D2M64">1353423292</int> </object> <object id="25-10-31"> <int id="PUVBKAPJ6L93I5J">1353459868</int> <int id="PUVDU6QF35D3B6F">1353464560</int> </object> <object id="25-10-41"> <int id="PHVG5OB69952VP5">1353609495</int> </object> <object id="25-11-11"> <int id="PCRNH6RCVNS1072">1353860934</int> </object> <object id="26-01-13"> <int id="PUVST2RC0KA3HGV">1354050277</int> </object> <object id="26-01-23"> <int id="PUVJU4PU9RE2S5J">1354202541</int> </object> <object id="26-03-31"> <int id="PUV2Q3F51I935K5">1354780837</int> </object> <object id="26-03-41"> <int id="PUVJ86DSLSM2BDC">1354917779</int> </object> <object id="26-04-01"> <int id="PDOA3DM4VDT2AUE">1355111101</int> </object> </object> <object id="hi_sign_evasion_record_history"> <object id="version_9"> <str id="pc_tsid">PUVKGTF6GK932KM</str> <str id="pc_label">Knifesmith</str> <int id="secs">15</int> <int id="when">1352108011</int> <int id="version">9</int> </object> </object> <object id="hi_sign_evasion_record"> <str id="pc_tsid">PHF59CNC74D2QQL</str> <str id="pc_label">Emleigh</str> <int id="secs">55</int> <int id="when">1354034848</int> <int id="version">10</int> <str id="day_key">26-01-11</str> </object> <object id="hi_sign_daily_evasion_record"> <str id="pc_tsid">PHF59CNC74D2QQL</str> <str id="pc_label">Emleigh</str> <int id="secs">55</int> <int id="when">1354034848</int> <int id="version">10</int> <str id="day_key">26-01-11</str> </object> <object id="incantations_redux"> <object id="PUVJ86DSLSM2BDC"> <int id="step">1</int> <int id="ts">1354917683</int> </object> <object id="PDOQHB9V1AR2F84"> <int id="step">2</int> <int id="ts">1354917685</int> </object> <object id="PUVERUQUIIJ2TCI"> <int id="step">1</int> <int id="ts">1354917856</int> </object> <object id="PIFPKSLKNV53RHE"> <int id="step">2</int> <int id="ts">1354917858</int> </object> <object id="PUVS4SP1UHI26UI"> <int id="step">3</int> <int id="ts">1354917859</int> </object> <object id="PCRDJQTAHUM16HJ"> <int id="step">1</int> <int id="ts">1354918209</int> </object> <object id="PUV4ICBH7NB3R30"> <int id="step">2</int> <int id="ts">1354918211</int> </object> <object id="PCR60MIBKCO16AK"> <int id="step">3</int> <int id="ts">1354918212</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1354925272</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1354925273</int> </object> <object id="PUVP6M2EH9G2Q22"> <int id="step">3</int> <int id="ts">1354925295</int> </object> <object id="PUVQOVN59ME2QM9"> <int id="step">1</int> <int id="ts">1354926344</int> </object> <object id="PUVHT82E1AP2E7H"> <int id="step">2</int> <int id="ts">1354926353</int> </object> <object id="PUVL2EQ7J7D25OS"> <int id="step">3</int> <int id="ts">1354926357</int> </object> <object id="PUVE28P1PVC3AM7"> <int id="step">1</int> <int id="ts">1354927567</int> </object> <object id="PHFINSK9JCD29H5"> <int id="step">2</int> <int id="ts">1354927589</int> </object> <object id="PA9UNV5QH7E2B0P"> <int id="step">1</int> <int id="ts">1354928376</int> </object> <object id="PA9R43RJ84E2EKB"> <int id="step">2</int> <int id="ts">1354928378</int> </object> <object id="PA9PV1PN67E24FQ"> <int id="step">3</int> <int id="ts">1354928380</int> </object> <object id="PUVLQBGCGSM26QB"> <int id="step">1</int> <int id="ts">1354929484</int> </object> <object id="PUVKME5Q70E3SR1"> <int id="step">2</int> <int id="ts">1354929491</int> </object> <object id="PUVB6DVSMTM27ND"> <int id="step">3</int> <int id="ts">1354929497</int> </object> <object id="PUV1C9DM7JE2KRJ"> <int id="step">1</int> <int id="ts">1354933850</int> </object> <object id="PUVFEHU904J2T3U"> <int id="step">2</int> <int id="ts">1354933853</int> </object> <object id="PUVFDC083PE2F30"> <int id="step">1</int> <int id="ts">1354933897</int> </object> <object id="PUV5EVLD0KF2669"> <int id="step">1</int> <int id="ts">1354935018</int> </object> <object id="PUV4J86UJPC3TEN"> <int id="step">2</int> <int id="ts">1354935020</int> </object> <object id="PUVBHA1C58C33PQ"> <int id="step">3</int> <int id="ts">1354935021</int> </object> <object id="PUV6L7AB0JH22K3"> <int id="step">1</int> <int id="ts">1354942174</int> </object> <object id="PA97PHPM54E2M0U"> <int id="step">1</int> <int id="ts">1354948590</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">2</int> <int id="ts">1354948591</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">3</int> <int id="ts">1354948592</int> </object> <object id="PHFHEJT51CD298L"> <int id="step">1</int> <int id="ts">1354956548</int> </object> <object id="PHVR7F201F72EUM"> <int id="step">2</int> <int id="ts">1354973574</int> </object> <object id="PHF1GCHBE4D2KLM"> <int id="step">1</int> <int id="ts">1354980761</int> </object> <object id="PUVRL3OSO7G2VV4"> <int id="step">1</int> <int id="ts">1354983835</int> </object> <object id="PUVR861LOJC33QV"> <int id="step">2</int> <int id="ts">1354983837</int> </object> <object id="PUVGDDTPQMC3NJL"> <int id="step">3</int> <int id="ts">1354983838</int> </object> <object id="PUVM419U2NB3KIE"> <int id="step">1</int> <int id="ts">1354990339</int> </object> <object id="PHF3EMI4JDD2EUU"> <int id="step">2</int> <int id="ts">1354991616</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">1</int> <int id="ts">1354995312</int> </object> <object id="PUVPUDMQ3UC35NC"> <int id="step">1</int> <int id="ts">1354998585</int> </object> <object id="PHVFVM39VG227P5"> <int id="step">1</int> <int id="ts">1354999905</int> </object> <object id="PUVLDBAAO673ORE"> <int id="step">1</int> <int id="ts">1355000030</int> </object> <object id="PUVPVGQA5KL2MN3"> <int id="step">1</int> <int id="ts">1355000271</int> </object> <object id="PHFIN187QVC224H"> <int id="step">2</int> <int id="ts">1355000271</int> </object> <object id="PHVEAEQ55F72KLU"> <int id="step">3</int> <int id="ts">1355000272</int> </object> </object> </object> <objrefs id="items"> <objref tsid="IA9BP9A2M7G39FG" label="Patch"/> <objref tsid="IA9H0O86CF82O3P" label="Metal Rock"/> <objref tsid="IDOB8U3GOGQ25UQ" label="Qurazy marker"/> <objref tsid="IA9GNSB3CF82GSU" label="Quoin"/> <objref tsid="IA9HOUAGCF825RN" label="Quoin"/> <objref tsid="IA9HOQ6GCF82RP8" label="Quoin"/> <objref tsid="IA9GOFJ3CF82FIC" label="Quoin"/> <objref tsid="IA9GN763CF823MP" label="Quoin"/> <objref tsid="IA9HOK3GCF82DVK" label="Quoin"/> <objref tsid="IA9GLFF2CF82G4P" label="Shrine to Spriggan"/> <objref tsid="IA9GOVO3CF82654" label="Quoin"/> <objref tsid="IA9GPT44CF827LE" label="Street Spirit"/> <objref tsid="IA9HMT7FCF82699" label="Dullite Rock"/> </objrefs> <objrefs id="players"> <objref tsid="PHF5659F53D2KRU" label="Emir"/> <objref tsid="PUV99CCHRUD3SRA" label="AoiHaru"/> <objref tsid="PUVEVDDV0M93N05" label="jimmy jim jim"/> <objref tsid="PUV3H3KEHCC30KU" label="New Glitch 158308"/> <objref tsid="PUVP53AHF5G2UD2" label="Lacocopoboku"/> <objref tsid="PUVCQG89NNF2OE7" label="jaderborgmunchkin"/> <objref tsid="PUVG05DELBC333T" label="Charise"/> <objref tsid="PIFQAK8QJ953N78" label="Sir Nigel"/> <objref tsid="PUVQ41N1U4C3ULF" label="New Glitch 155156"/> <objref tsid="PUVEQTIQ96C3M8G" label="New Glitch 155578"/> <objref tsid="PUVFA8CLUSE2985" label="Foxy Dog"/> <objref tsid="PUVD64TJDQB3M8A" label="New Glitch 151718"/> <objref tsid="PUV8QA61ECB3VRJ" label="New Glitch 145432"/> <objref tsid="PUVM637OG783QGR" label="Lord of Skulls"/> <objref tsid="PUVM24U3PKC3FG9" label="Redss"/> <objref tsid="PUV25P685SC3HA0" label="New Glitch 164897"/> <objref tsid="PUVP5ORKR2F2ER6" label="nolagirl80"/> <objref tsid="PHVD1H7M3G52FU2" label="Nemesio"/> <objref tsid="PHFFS670I2D2DPI" label="dada-tw"/> <objref tsid="PUVP56CMC6E36IB" label="New Glitch 191176"/> <objref tsid="PUVDJ2VCL3F25R6" label="Charl3z523"/> <objref tsid="PUV97MCG1PB3F1L" label="New Glitch 150769"/> <objref tsid="PUV3KA3779G2AJG" label="waymellow"/> <objref tsid="PUVELT6LEGC36K0" label="New Glitch 160628"/> <objref tsid="PHFQOUC02AD2PDV" label="Lileh"/> <objref tsid="PIFB734D0R53TTK" label="FoxCZ"/> <objref tsid="PUVOOII327D3J3C" label="New Glitch 168726"/> <objref tsid="PUVSLTKKJMB3FOB" label="saroomba"/> <objref tsid="PUV287SMTIE2CRF" label="Dieselfish"/> <objref tsid="PHFF8KK56TC2M9O" label="OdinsDoppleGanger"/> <objref tsid="PUVTAQLCGCC3U88" label="New Glitch 158298"/> <objref tsid="PUV5543GK2C30IH" label="New Glitch 153837"/> <objref tsid="PUVTSOIRL9C3C7E" label="Speedy95"/> <objref tsid="PUVKEFKRO1B3HGE" label="New Glitch 142447"/> <objref tsid="PUVHLTF38GC340O" label="New Glitch 159653"/> <objref tsid="PHF8HHU1D3D22O9" label="Terrius"/> <objref tsid="PA91G9GF21E2N5E" label="Songbearer"/> <objref tsid="PUV6NSTRGJD3QMK" label="silasw"/> <objref tsid="PHFH7A44N0D2A0Q" label="Jeez Louize"/> <objref tsid="PUV61O5BQKA3VIR" label="SamiKapi"/> <objref tsid="PUVAND4NQTF2HDP" label="Tehed"/> <objref tsid="PUVFUE0FMFB3H14" label="sadmac"/> <objref tsid="PUVM61OO4OB3E0U" label="Elby"/> <objref tsid="PUVUMUIKT2C3MAD" label="WesleyRose"/> <objref tsid="PUVDNJ6O7GC3SB2" label="New Glitch 159595"/> <objref tsid="PUVGNN9Q7QH23FN" label="sassy_sophi"/> <objref tsid="PIFI742H9663FDR" label="Riffin"/> <objref tsid="PHFG3CNV0CD2OSD" label="Squeech"/> <objref tsid="PUV6NC2KLVC3KN4" label="Jash"/> <objref tsid="PIFE8AGJ1663478" label="Chalax"/> <objref tsid="PUVHSK8H1GC39F5" label="Gekate"/> <objref tsid="PUVT1KQ92CC391B" label="JoJo Binks"/> <objref tsid="PHVMBF2QBO42OO2" label="Life"/> <objref tsid="PUVODH0JO893S8D" label="SrdCios"/> <objref tsid="PHFFIBQA0UC2UME" label="Adrian.Macabre"/> <objref tsid="PUVDJUB0O4B3HTV" label="New Glitch 143432"/> <objref tsid="PUVOFPFKMKD35H8" label="New Glitch 173061"/> <objref tsid="PUVGAG9J23B34SB" label="New Glitch 143064"/> <objref tsid="PA9Q2M0TV5E2K9D" label="rullsrose"/> <objref tsid="PUV8Q2Q701B3EML" label="View"/> <objref tsid="PUVP464V4D93J35" label="Heebee"/> <objref tsid="PUVKL8JCT3C3P0O" label="New Glitch 154309"/> <objref tsid="PIF38B08R063AMS" label="Spades Slick"/> <objref tsid="PUVG1T10KLB3B0S" label="#Faith22#"/> <objref tsid="PUVJ72RLVVD3V8D" label="Lanoire"/> <objref tsid="PUVFA1NG3BD35KE" label="New Glitch 170282"/> </objrefs> </game_object>
46,436
Common Lisp
.l
1,356
29.669617
201
0.65854
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
1aab78ca4f7ca4cdd511dc37652d073319e8b6fd29708254336c8d5a8cafddc4
20,855
[ -1 ]
20,856
GA9T11KPMD82B1S.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA9T11KPMD82B1S transition_01-mixed composition/GA9T11KPMD82B1S.xml
<game_object tsid="GA9T11KPMD82B1S" ts="1336606478260" label="transition_01" class_tsid="" lastUpdateTime="1336606468047" upd_gs="gs7" load_time="2012-05-09 16:21:43.541" upd_time="2012-05-09 16:34:33.835"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id="b">0</int> <str id="label">transition_01</str> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="middleground"> <object id="walls"> </object> <object id="platforms"> </object> <str id="name">middleground</str> <object id="filtersNEW"> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">-10</int> </object> <object id="tintAmount"> <int id="value">0</int> </object> <object id="brightness"> <int id="value">-5</int> </object> <object id="saturation"> <int id="value">-10</int> </object> </object> <object id="doors"> </object> <object id="ladders"> </object> <int id="w">6000</int> <object id="decos"> <object id="heights_platform_4_1311379072573"> <int id="z">26</int> <int id="r">3</int> <int id="x">1430</int> <int id="y">-34</int> <str id="name">heights_platform_4_1311379072543</str> <int id="h">229</int> <str id="sprite_class">heights_platform_4</str> <int id="w">542</int> </object> <object id="heights_topper_stone_1_1312388917134"> <int id="z">153</int> <int id="r">-8</int> <int id="x">2178</int> <int id="y">-374</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">24</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">89</int> </object> <object id="patch_dirt_2a_1312303284873"> <int id="z">63</int> <int id="r">-1</int> <int id="x">-2935</int> <int id="y">-126</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">56</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">224</int> </object> <object id="heights_face_rock_2_1312388917111"> <int id="z">14</int> <int id="x">2440</int> <int id="y">-178</int> <str id="name">heights_face_rock_2_1312388917108</str> <int id="h">86</int> <str id="sprite_class">heights_face_rock_2</str> <int id="w">419</int> </object> <object id="patch_mossy_3_1312303284896"> <int id="z">105</int> <int id="x">-993</int> <int id="y">-143</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="gravel_2_1312310646712"> <int id="z">139</int> <int id="x">-2666</int> <int id="y">-49</int> <str id="name">gravel_2_1311803725061</str> <int id="h">14</int> <str id="sprite_class">gravel_2</str> <int id="w">25</int> </object> <object id="dirt_platform_long_1312388917080"> <int id="z">43</int> <int id="x">-77</int> <int id="y">-20</int> <str id="name">dirt_platform_long_1311803724967</str> <int id="h">73</int> <str id="sprite_class">dirt_platform_long</str> <int id="w">1036</int> </object> <object id="patch_dirt_2a_1312388917139"> <int id="z">32</int> <int id="r">-1</int> <int id="x">174</int> <int id="y">-169</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="patch_mossy_3_1312388917153"> <int id="z">60</int> <int id="x">-2404</int> <int id="y">-160</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="heights_face_1_1312337863287"> <int id="z">8</int> <int id="r">-19</int> <int id="x">2748</int> <int id="y">-243</int> <str id="name">heights_face_1_1311008164542</str> <int id="h">576</int> <str id="sprite_class">heights_face_1</str> <int id="w">842</int> </object> <object id="ug_rock_1_1312310646710"> <int id="z">138</int> <int id="r">-4</int> <int id="x">-2648</int> <int id="y">-51</int> <str id="name">ug_rock_1_1312303284980</str> <int id="h">36</int> <str id="sprite_class">ug_rock_1</str> <int id="w">55</int> </object> <object id="heights_face_rock_2_1312388917110"> <int id="z">19</int> <int id="x">2633</int> <int id="y">-178</int> <str id="name">heights_face_rock_2_1312388917108</str> <int id="h">121</int> <str id="sprite_class">heights_face_rock_2</str> <int id="w">503</int> </object> <object id="heights_platform_2_1312388917099"> <int id="z">144</int> <int id="x">2319</int> <int id="y">1</int> <str id="name">heights_platform_2_1311008164551</str> <int id="h">193</int> <str id="sprite_class">heights_platform_2</str> <int id="w">512</int> </object> <object id="heights_face_1_1311376174393"> <int id="z">12</int> <int id="r">1</int> <int id="x">2653</int> <int id="y">70</int> <str id="name">heights_face_1_1311008164542</str> <int id="h">576</int> <str id="sprite_class">heights_face_1</str> <int id="w">842</int> </object> <object id="patch_mossy_3_1312303284996"> <int id="z">52</int> <int id="x">-1242</int> <int id="y">-60</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="patch_mossy_3_1312303284893"> <int id="z">101</int> <int id="x">-473</int> <int id="y">-187</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="heights_mound_2_1311379072571"> <int id="z">7</int> <int id="r">19</int> <int id="x">1523</int> <int id="y">-184</int> <str id="name">heights_mound_2_1311008164544</str> <int id="h">206</int> <str id="sprite_class">heights_mound_2</str> <int id="w">294</int> </object> <object id="tree_base_root_2_1312388917172"> <int id="z">166</int> <int id="x">-2061</int> <int id="y">-142</int> <str id="name">tree_base_root_2_1312388917172</str> <int id="h">93</int> <str id="sprite_class">tree_base_root_2</str> <int id="w">125</int> </object> <object id="cliff_cover_5_1311803724978"> <int id="z">88</int> <int id="r">-9</int> <int id="x">364</int> <int id="y">-86</int> <str id="name">cliff_cover_5_1311803724972</str> <int id="h">184</int> <str id="sprite_class">cliff_cover_5</str> <int id="w">459</int> </object> <object id="heights_platform_4_1312388917097"> <int id="z">27</int> <int id="r">-4</int> <int id="x">2887</int> <int id="y">-305</int> <str id="name">heights_platform_4_1311379072543</str> <int id="h">229</int> <str id="sprite_class">heights_platform_4</str> <int id="w">542</int> </object> <object id="dirt_crosssection_short_3_1311986368052"> <int id="z">75</int> <int id="r">-2</int> <int id="x">-2905</int> <int id="y">74</int> <str id="name">dirt_crosssection_short_3_1311986368050</str> <int id="h">121</int> <str id="sprite_class">dirt_crosssection_short_3</str> <int id="w">614</int> </object> <object id="patch_dirt_2a_1312388917142"> <int id="z">39</int> <int id="r">-1</int> <int id="x">-29</int> <int id="y">-137</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="patch_mossy_3_1312303284999"> <int id="z">55</int> <int id="x">-985</int> <int id="y">-60</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="patch_mossy_3_1312303284916"> <int id="z">109</int> <int id="x">-1605</int> <int id="y">-156</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="heights_face_1_1312337863289"> <int id="z">9</int> <int id="r">-19</int> <int id="x">1637</int> <int id="y">267</int> <str id="name">heights_face_1_1311008164542</str> <int id="h">576</int> <str id="sprite_class">heights_face_1</str> <int id="w">842</int> </object> <object id="heights_mound_3_1311379072519"> <int id="z">3</int> <int id="r">-13</int> <int id="x">1358</int> <int id="y">-127</int> <str id="name">heights_mound_3_1311008164543</str> <int id="h">231</int> <str id="sprite_class">heights_mound_3</str> <int id="w">609</int> </object> <object id="heights_face_rock_2_1312388917113"> <int id="z">18</int> <int id="r">-8</int> <int id="x">2682</int> <int id="y">-486</int> <str id="name">heights_face_rock_2_1312388917108</str> <int id="h">226</int> <str id="sprite_class">heights_face_rock_2</str> <int id="w">607</int> </object> <object id="dirt_horizon_1311803724966"> <int id="z">30</int> <int id="r">-1</int> <int id="x">-362</int> <int id="y">-128</int> <str id="name">dirt_horizon_1311803724966</str> <int id="h">105</int> <bool id="h_flip">true</bool> <str id="sprite_class">dirt_horizon</str> <int id="w">1357</int> </object> <object id="tree_base_root_3_1312388917170"> <int id="z">165</int> <int id="x">-1891</int> <int id="y">-136</int> <str id="name">tree_base_root_3_1312388917170</str> <int id="h">88</int> <str id="sprite_class">tree_base_root_3</str> <int id="w">146</int> </object> <object id="patch_dirt_2a_1312388917145"> <int id="z">42</int> <int id="r">-1</int> <int id="x">-284</int> <int id="y">-105</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="gravel_2_1312303284991"> <int id="z">127</int> <int id="x">-269</int> <int id="y">-195</int> <str id="name">gravel_2_1312303284991</str> <int id="h">15</int> <str id="sprite_class">gravel_2</str> <int id="w">27</int> </object> <object id="heights_mound_2_1312388917116"> <int id="z">5</int> <int id="r">14</int> <int id="x">302</int> <int id="y">-170</int> <str id="name">heights_mound_2_1311008164544</str> <int id="h">206</int> <str id="sprite_class">heights_mound_2</str> <int id="w">294</int> </object> <object id="heights_face_rock_2_1312388917109"> <int id="z">13</int> <int id="x">2875</int> <int id="y">-186</int> <str id="name">heights_face_rock_2_1312388917108</str> <int id="h">143</int> <str id="sprite_class">heights_face_rock_2</str> <int id="w">502</int> </object> <object id="heights_face_rock_2_1312388917112"> <int id="z">15</int> <int id="r">-3</int> <int id="x">2878</int> <int id="y">-509</int> <str id="name">heights_face_rock_2_1312388917108</str> <int id="h">246</int> <str id="sprite_class">heights_face_rock_2</str> <int id="w">661</int> </object> <object id="heights_topper_stone_1_1312388917132"> <int id="z">152</int> <int id="r">-8</int> <int id="x">2340</int> <int id="y">-409</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">32</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">140</int> </object> <object id="patch_mossy_3_1312303284894"> <int id="z">104</int> <int id="x">-1002</int> <int id="y">-159</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="patch_mossy_3_1312303284915"> <int id="z">106</int> <int id="x">-1729</int> <int id="y">-169</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="patch_dirt_2a_1312303285003"> <int id="z">68</int> <int id="r">-1</int> <int id="x">-2153</int> <int id="y">-141</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="patch_mossy_3_1312303284998"> <int id="z">54</int> <int id="x">-1385</int> <int id="y">-31</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="heights_platform_3_1312388917089"> <int id="z">74</int> <int id="r">9</int> <int id="x">880</int> <int id="y">-146</int> <str id="name">heights_platform_3_1311379072544</str> <int id="h">205</int> <bool id="h_flip">true</bool> <str id="sprite_class">heights_platform_3</str> <int id="w">236</int> </object> <object id="patch_mossy_1_1312303284903"> <int id="z">49</int> <int id="r">3</int> <int id="x">-457</int> <int id="y">-75</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">34</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">144</int> </object> <object id="heights_topper_1_1312388917106"> <int id="z">24</int> <int id="x">2662</int> <int id="y">-132</int> <str id="name">heights_topper_1_1312388917102</str> <int id="h">69</int> <str id="sprite_class">heights_topper_1</str> <int id="w">269</int> </object> <object id="dirt_crosssection_short_3_1311986368054"> <int id="z">77</int> <int id="r">1</int> <int id="x">-1706</int> <int id="y">58</int> <str id="name">dirt_crosssection_short_3_1311986368050</str> <int id="h">121</int> <str id="sprite_class">dirt_crosssection_short_3</str> <int id="w">614</int> </object> <object id="patch_dirt_2a_1312303285001"> <int id="z">66</int> <int id="r">-1</int> <int id="x">-2166</int> <int id="y">-92</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">48</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="dirt_crosssection_short_3_1312388917082"> <int id="z">80</int> <int id="r">-1</int> <int id="x">402</int> <int id="y">17</int> <str id="name">dirt_crosssection_short_3_1311986368050</str> <int id="h">142</int> <str id="sprite_class">dirt_crosssection_short_3</str> <int id="w">557</int> </object> <object id="heights_topper_stone_1_1312388917136"> <int id="z">155</int> <int id="r">-4</int> <int id="x">2407</int> <int id="y">-170</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">24</int> <bool id="h_flip">true</bool> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">89</int> </object> <object id="patch_mossy_1_1312303284899"> <int id="z">113</int> <int id="r">-2</int> <int id="x">-760</int> <int id="y">-173</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">34</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">144</int> </object> <object id="heights_topper_stone_1_1312388917130"> <int id="z">149</int> <int id="r">7</int> <int id="x">2832</int> <int id="y">-155</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">32</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">140</int> </object> <object id="patch_mossy_3_1312303284997"> <int id="z">53</int> <int id="x">-1363</int> <int id="y">-51</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="heights_face_rock_2_1312388917114"> <int id="z">16</int> <int id="r">-13</int> <int id="x">2374</int> <int id="y">-429</int> <str id="name">heights_face_rock_2_1312388917108</str> <int id="h">152</int> <str id="sprite_class">heights_face_rock_2</str> <int id="w">580</int> </object> <object id="heights_topper_stone_1_1312388917133"> <int id="z">151</int> <int id="r">-18</int> <int id="x">2411</int> <int id="y">-432</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">29</int> <bool id="h_flip">true</bool> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">127</int> </object> <object id="dirt_crosssection_short_3_1311986368055"> <int id="z">78</int> <int id="x">-1101</int> <int id="y">54</int> <str id="name">dirt_crosssection_short_3_1311986368050</str> <int id="h">121</int> <str id="sprite_class">dirt_crosssection_short_3</str> <int id="w">614</int> </object> <object id="patch_dirt_2a_1312303285000"> <int id="z">65</int> <int id="r">-1</int> <int id="x">-2246</int> <int id="y">-65</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">257</int> </object> <object id="dirt_platform_long_1311803724969"> <int id="z">44</int> <int id="x">-639</int> <int id="y">-18</int> <str id="name">dirt_platform_long_1311803724967</str> <int id="h">78</int> <str id="sprite_class">dirt_platform_long</str> <int id="w">1036</int> </object> <object id="heights_topper_1_1312388917103"> <int id="z">21</int> <int id="r">10</int> <int id="x">1710</int> <int id="y">-172</int> <str id="name">heights_topper_1_1312388917102</str> <int id="h">69</int> <str id="sprite_class">heights_topper_1</str> <int id="w">269</int> </object> <object id="tree_coniferous_fg_4_1312388917169"> <int id="z">161</int> <int id="x">-1996</int> <int id="y">-146</int> <str id="name">tree_coniferous_fg_4_1312388917169</str> <int id="h">1325</int> <str id="sprite_class">tree_coniferous_fg_4</str> <int id="w">665</int> </object> <object id="heights_topper_1_1312388917104"> <int id="z">22</int> <int id="r">10</int> <int id="x">2988</int> <int id="y">-134</int> <str id="name">heights_topper_1_1312388917102</str> <int id="h">69</int> <str id="sprite_class">heights_topper_1</str> <int id="w">269</int> </object> <object id="patch_mossy_1_1312310646718"> <int id="z">46</int> <int id="x">-195</int> <int id="y">-178</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">36</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">141</int> </object> <object id="patch_mossy_3_1312303284897"> <int id="z">102</int> <int id="r">-5</int> <int id="x">-782</int> <int id="y">-185</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="patch_dirt_2a_1312388917143"> <int id="z">40</int> <int id="r">-1</int> <int id="x">178</int> <int id="y">-98</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="heights_platform_1_1311379072575"> <int id="z">20</int> <int id="r">7</int> <int id="x">1084</int> <int id="y">-119</int> <str id="name">heights_platform_1_1311379072547</str> <int id="h">174</int> <str id="sprite_class">heights_platform_1</str> <int id="w">204</int> </object> <object id="patch_mossy_3_1312388917152"> <int id="z">59</int> <int id="x">-2787</int> <int id="y">-28</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="heights_topper_stone_1_1312388917129"> <int id="z">148</int> <int id="r">7</int> <int id="x">2758</int> <int id="y">-173</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">32</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">140</int> </object> <object id="heights_platform_3_1312388917101"> <int id="z">29</int> <int id="r">-14</int> <int id="x">2079</int> <int id="y">-188</int> <str id="name">heights_platform_3_1311379072544</str> <int id="h">200</int> <bool id="h_flip">true</bool> <str id="sprite_class">heights_platform_3</str> <int id="w">262</int> </object> <object id="gravel_2_1311803725061"> <int id="z">98</int> <int id="x">-2935</int> <int id="y">-170</int> <str id="name">gravel_2_1311803725061</str> <int id="h">14</int> <bool id="h_flip">true</bool> <str id="sprite_class">gravel_2</str> <int id="w">25</int> </object> <object id="heights_topper_1_1312388917107"> <int id="z">23</int> <int id="r">-5</int> <int id="x">2505</int> <int id="y">-127</int> <str id="name">heights_topper_1_1312388917102</str> <int id="h">69</int> <str id="sprite_class">heights_topper_1</str> <int id="w">269</int> </object> <object id="heights_face_1_1312337863288"> <int id="z">11</int> <int id="r">-19</int> <int id="x">2156</int> <int id="y">60</int> <str id="name">heights_face_1_1311008164542</str> <int id="h">576</int> <str id="sprite_class">heights_face_1</str> <int id="w">842</int> </object> <object id="patch_mossy_1_1312303284917"> <int id="z">107</int> <int id="r">-2</int> <int id="x">-1626</int> <int id="y">-178</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">34</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">144</int> </object> <object id="dirt_horizon_1311985127531"> <int id="z">36</int> <int id="r">-2</int> <int id="x">-2156</int> <int id="y">-98</int> <str id="name">dirt_horizon_1311803724966</str> <int id="h">96</int> <str id="sprite_class">dirt_horizon</str> <int id="w">1491</int> </object> <object id="heights_platform_2_1312388917085"> <int id="z">73</int> <int id="r">-4</int> <int id="x">599</int> <int id="y">-158</int> <str id="name">heights_platform_2_1311008164551</str> <int id="h">193</int> <bool id="h_flip">true</bool> <str id="sprite_class">heights_platform_2</str> <int id="w">512</int> </object> <object id="heights_topper_stone_1_1312388917135"> <int id="z">156</int> <int id="r">3</int> <int id="x">2347</int> <int id="y">-167</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">24</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">89</int> </object> <object id="heights_mound_3_1312388917086"> <int id="z">6</int> <int id="r">-27</int> <int id="x">525</int> <int id="y">-207</int> <str id="name">heights_mound_3_1311008164543</str> <int id="h">231</int> <str id="sprite_class">heights_mound_3</str> <int id="w">609</int> </object> <object id="patch_mossy_1_1312303284902"> <int id="z">45</int> <int id="r">3</int> <int id="x">-547</int> <int id="y">-95</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">34</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">144</int> </object> <object id="patch_mossy_3_1312303284895"> <int id="z">103</int> <int id="r">-8</int> <int id="x">-887</int> <int id="y">-171</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="patch_mossy_1_1312303284919"> <int id="z">84</int> <int id="r">2</int> <int id="x">-1530</int> <int id="y">-176</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">34</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">144</int> </object> <object id="patch_dirt_2a_1312303285002"> <int id="z">67</int> <int id="r">-1</int> <int id="x">-2085</int> <int id="y">-120</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="dirt_platform_long_1311803724968"> <int id="z">38</int> <int id="x">-103</int> <int id="y">-86</int> <str id="name">dirt_platform_long_1311803724967</str> <int id="h">73</int> <str id="sprite_class">dirt_platform_long</str> <int id="w">1036</int> </object> <object id="gravel_2_1312388917146"> <int id="z">160</int> <int id="x">-684</int> <int id="y">-81</int> <str id="name">gravel_2_1312303284991</str> <int id="h">15</int> <str id="sprite_class">gravel_2</str> <int id="w">27</int> </object> <object id="heights_face_1_1312337863290"> <int id="z">10</int> <int id="r">11</int> <int id="x">854</int> <int id="y">128</int> <str id="name">heights_face_1_1311008164542</str> <int id="h">576</int> <str id="sprite_class">heights_face_1</str> <int id="w">842</int> </object> <object id="heights_topper_stone_1_1312388917137"> <int id="z">154</int> <int id="r">-8</int> <int id="x">2654</int> <int id="y">-462</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">24</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">89</int> </object> <object id="patch_dirt_2a_1312303285006"> <int id="z">62</int> <int id="r">-1</int> <int id="x">-2554</int> <int id="y">-40</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="gravel_2_1312303285013"> <int id="z">134</int> <int id="x">-2237</int> <int id="y">-168</int> <str id="name">gravel_2_1311803725061</str> <int id="h">20</int> <bool id="h_flip">true</bool> <str id="sprite_class">gravel_2</str> <int id="w">35</int> </object> <object id="patch_dirt_2a_1312303285004"> <int id="z">69</int> <int id="r">-1</int> <int id="x">-2123</int> <int id="y">-58</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="dirt_crosssection_short_3_1311986368056"> <int id="z">79</int> <int id="x">-616</int> <int id="y">34</int> <str id="name">dirt_crosssection_short_3_1311986368050</str> <int id="h">121</int> <str id="sprite_class">dirt_crosssection_short_3</str> <int id="w">614</int> </object> <object id="dirt_platform_long_1311985127527"> <int id="z">57</int> <int id="r">-1</int> <int id="x">-2461</int> <int id="y">-32</int> <str id="name">dirt_platform_long_1311803724967</str> <int id="h">88</int> <str id="sprite_class">dirt_platform_long</str> <int id="w">1153</int> </object> <object id="patch_mossy_3_1311985127530"> <int id="z">100</int> <int id="x">-582</int> <int id="y">-193</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="patch_dirt_2a_1312388917140"> <int id="z">33</int> <int id="r">-1</int> <int id="x">41</int> <int id="y">-164</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="heights_platform_2_1312388917100"> <int id="z">145</int> <int id="r">3</int> <int id="x">1892</int> <int id="y">-17</int> <str id="name">heights_platform_2_1311008164551</str> <int id="h">203</int> <str id="sprite_class">heights_platform_2</str> <int id="w">512</int> </object> <object id="heights_mound_2_1312388917095"> <int id="z">0</int> <int id="r">14</int> <int id="x">2275</int> <int id="y">-457</int> <str id="name">heights_mound_2_1311008164544</str> <int id="h">206</int> <str id="sprite_class">heights_mound_2</str> <int id="w">294</int> </object> <object id="heights_topper_stone_1_1312388917127"> <int id="z">146</int> <int id="x">2951</int> <int id="y">-171</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">38</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">140</int> </object> <object id="patch_dirt_2a_1312388917138"> <int id="z">31</int> <int id="r">-1</int> <int id="x">102</int> <int id="y">-191</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="heights_mound_1_1311803725015"> <int id="z">70</int> <int id="r">7</int> <int id="x">313</int> <int id="y">-204</int> <str id="name">heights_mound_1_1311803725014</str> <int id="h">128</int> <str id="sprite_class">heights_mound_1</str> <int id="w">381</int> </object> <object id="patch_mossy_3_1312303284995"> <int id="z">56</int> <int id="x">-1115</int> <int id="y">-44</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="patch_mossy_1_1312303284901"> <int id="z">50</int> <int id="r">3</int> <int id="x">-602</int> <int id="y">-78</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">34</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">144</int> </object> <object id="dirt_crosssection_short_3_1311986368053"> <int id="z">76</int> <int id="r">1</int> <int id="x">-2308</int> <int id="y">59</int> <str id="name">dirt_crosssection_short_3_1311986368050</str> <int id="h">121</int> <str id="sprite_class">dirt_crosssection_short_3</str> <int id="w">614</int> </object> <object id="patch_dirt_2a_1312388917144"> <int id="z">41</int> <int id="r">-1</int> <int id="x">-208</int> <int id="y">-82</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">45</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">255</int> </object> <object id="dirt_horizon_1311985127532"> <int id="z">37</int> <int id="r">-1</int> <int id="x">-2590</int> <int id="y">-92</int> <str id="name">dirt_horizon_1311803724966</str> <int id="h">103</int> <str id="sprite_class">dirt_horizon</str> <int id="w">1284</int> </object> <object id="patch_mossy_3_1312388917154"> <int id="z">61</int> <int id="x">-2369</int> <int id="y">-142</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="heights_topper_stone_1_1312388917131"> <int id="z">150</int> <int id="r">7</int> <int id="x">2589</int> <int id="y">-135</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">32</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">140</int> </object> <object id="heights_face_rock_2_1312388917115"> <int id="z">17</int> <int id="r">-13</int> <int id="x">2128</int> <int id="y">-372</int> <str id="name">heights_face_rock_2_1312388917108</str> <int id="h">106</int> <str id="sprite_class">heights_face_rock_2</str> <int id="w">397</int> </object> <object id="patch_mossy_1_1312337863292"> <int id="z">48</int> <int id="x">-168</int> <int id="y">-169</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">36</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">141</int> </object> <object id="heights_mound_2_1312388917093"> <int id="z">2</int> <int id="r">-1</int> <int id="x">2930</int> <int id="y">-726</int> <str id="name">heights_mound_2_1311008164544</str> <int id="h">206</int> <str id="sprite_class">heights_mound_2</str> <int id="w">294</int> </object> <object id="patch_dirt_2a_1312303284874"> <int id="z">64</int> <int id="r">-1</int> <int id="x">-2878</int> <int id="y">-95</int> <str id="name">patch_dirt_2a_1312303284864</str> <int id="h">56</int> <str id="sprite_class">patch_dirt_2a</str> <int id="w">224</int> </object> <object id="patch_mossy_3_1312388917151"> <int id="z">58</int> <int id="x">-2686</int> <int id="y">-43</int> <str id="name">patch_mossy_3_1311803725043</str> <int id="h">37</int> <str id="sprite_class">patch_mossy_3</str> <int id="w">195</int> </object> <object id="heights_topper_1_1312388917105"> <int id="z">25</int> <int id="r">5</int> <int id="x">2807</int> <int id="y">-127</int> <str id="name">heights_topper_1_1312388917102</str> <int id="h">69</int> <str id="sprite_class">heights_topper_1</str> <int id="w">269</int> </object> <object id="patch_mossy_1_1312337863291"> <int id="z">47</int> <int id="x">-105</int> <int id="y">-190</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">36</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">141</int> </object> <object id="cliff_cover_5_1312388917083"> <int id="z">90</int> <int id="r">-9</int> <int id="x">585</int> <int id="y">113</int> <str id="name">cliff_cover_5_1311803724972</str> <int id="h">362</int> <str id="sprite_class">cliff_cover_5</str> <int id="w">751</int> </object> <object id="dirt_platform_long_1311985127526"> <int id="z">51</int> <int id="x">-1490</int> <int id="y">-37</int> <str id="name">dirt_platform_long_1311803724967</str> <int id="h">78</int> <str id="sprite_class">dirt_platform_long</str> <int id="w">1036</int> </object> <object id="heights_topper_stone_1_1312388917128"> <int id="z">147</int> <int id="r">7</int> <int id="x">2854</int> <int id="y">-171</int> <str id="name">heights_topper_stone_1_1312388917127</str> <int id="h">32</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="w">140</int> </object> <object id="cliff_cover_5_1312388917090"> <int id="z">91</int> <int id="r">14</int> <int id="x">1020</int> <int id="y">78</int> <str id="name">cliff_cover_5_1311803724972</str> <int id="h">260</int> <bool id="h_flip">true</bool> <str id="sprite_class">cliff_cover_5</str> <int id="w">472</int> </object> <object id="ug_rock_1_1312303284980"> <int id="z">124</int> <int id="r">-4</int> <int id="x">-196</int> <int id="y">-206</int> <str id="name">ug_rock_1_1312303284980</str> <int id="h">71</int> <str id="sprite_class">ug_rock_1</str> <int id="w">109</int> </object> <object id="heights_platform_2_1312388917098"> <int id="z">143</int> <int id="x">2768</int> <int id="y">11</int> <str id="name">heights_platform_2_1311008164551</str> <int id="h">193</int> <str id="sprite_class">heights_platform_2</str> <int id="w">512</int> </object> <object id="patch_mossy_1_1312388917081"> <int id="z">99</int> <int id="r">-2</int> <int id="x">-698</int> <int id="y">-194</int> <str id="name">patch_mossy_1_1312303284898</str> <int id="h">34</int> <str id="sprite_class">patch_mossy_1</str> <int id="w">144</int> </object> <object id="dirt_crosssection_short_3_1311986368057"> <int id="z">81</int> <int id="r">-1</int> <int id="x">-118</int> <int id="y">10</int> <str id="name">dirt_crosssection_short_3_1311986368050</str> <int id="h">121</int> <str id="sprite_class">dirt_crosssection_short_3</str> <int id="w">614</int> </object> <object id="heights_mound_2_1312388917117"> <int id="z">4</int> <int id="r">-36</int> <int id="x">260</int> <int id="y">-152</int> <str id="name">heights_mound_2_1311008164544</str> <int id="h">206</int> <str id="sprite_class">heights_mound_2</str> <int id="w">294</int> </object> <object id="heights_mound_2_1312388917094"> <int id="z">1</int> <int id="r">-16</int> <int id="x">2807</int> <int id="y">-710</int> <str id="name">heights_mound_2_1311008164544</str> <int id="h">206</int> <str id="sprite_class">heights_mound_2</str> <int id="w">294</int> </object> <object id="heights_platform_4_1312388917096"> <int id="z">28</int> <int id="r">-15</int> <int id="x">2461</int> <int id="y">-235</int> <str id="name">heights_platform_4_1311379072543</str> <int id="h">229</int> <str id="sprite_class">heights_platform_4</str> <int id="w">542</int> </object> <object id="dirt_horizon_1311985127529"> <int id="z">35</int> <int id="r">1</int> <int id="x">-1099</int> <int id="y">-81</int> <str id="name">dirt_horizon_1311803724966</str> <int id="h">119</int> <str id="sprite_class">dirt_horizon</str> <int id="w">1387</int> </object> <object id="groddle_grass_1_1311803725055"> <int id="z">92</int> <int id="x">-1238</int> <int id="y">-171</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_2_1311803725051"> <int id="z">141</int> <int id="x">-2527</int> <int id="y">-56</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">63</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">78</int> </object> <object id="groddle_bush1_1312303284891"> <int id="z">110</int> <int id="r">5</int> <int id="x">-488</int> <int id="y">-208</int> <str id="name">groddle_bush1_1312303284891</str> <int id="h">85</int> <str id="sprite_class">groddle_bush1</str> <int id="w">168</int> </object> <object id="groddle_plant_1_1312303285014"> <int id="z">131</int> <int id="x">-2093</int> <int id="y">-178</int> <str id="name">groddle_plant_1_1312303285014</str> <int id="h">105</int> <str id="sprite_class">groddle_plant_1</str> <int id="w">99</int> </object> <object id="groddle_bush4_1312303284892"> <int id="z">111</int> <int id="r">2</int> <int id="x">-365</int> <int id="y">-203</int> <str id="name">groddle_bush4_1312303284892</str> <int id="h">68</int> <str id="sprite_class">groddle_bush4</str> <int id="w">142</int> </object> <object id="groddle_fern_1_1312303284982"> <int id="z">118</int> <int id="x">62</int> <int id="y">-232</int> <str id="name">groddle_fern_1_1312303284982</str> <int id="h">80</int> <bool id="h_flip">true</bool> <str id="sprite_class">groddle_fern_1</str> <int id="w">133</int> </object> <object id="groddle_grass_1_1312388917148"> <int id="z">157</int> <int id="x">-650</int> <int id="y">-90</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">42</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">88</int> </object> <object id="groddle_grass_2_1312388917175"> <int id="z">162</int> <int id="x">-1808</int> <int id="y">-188</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">83</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">103</int> </object> <object id="groddle_grass_1_1312303284914"> <int id="z">86</int> <int id="x">-1416</int> <int id="y">-180</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_fern_1_1312303284985"> <int id="z">117</int> <int id="x">-46</int> <int id="y">-215</int> <str id="name">groddle_fern_1_1312303284982</str> <int id="h">110</int> <str id="sprite_class">groddle_fern_1</str> <int id="w">184</int> </object> <object id="groddle_grass_2_1312303284921"> <int id="z">108</int> <int id="x">-1569</int> <int id="y">-197</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">83</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">103</int> </object> <object id="groddle_grass_1_1312388917149"> <int id="z">159</int> <int id="x">-393</int> <int id="y">-88</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_2_1312303285012"> <int id="z">128</int> <int id="x">-2112</int> <int id="y">-182</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">83</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">103</int> </object> <object id="groddle_bush1_1312303284905"> <int id="z">82</int> <int id="r">1</int> <int id="x">-1189</int> <int id="y">-173</int> <str id="name">groddle_bush1_1312303284891</str> <int id="h">85</int> <str id="sprite_class">groddle_bush1</str> <int id="w">168</int> </object> <object id="groddle_fern_1_1312303284984"> <int id="z">126</int> <int id="r">-15</int> <int id="x">-169</int> <int id="y">-209</int> <str id="name">groddle_fern_1_1312303284982</str> <int id="h">64</int> <bool id="h_flip">true</bool> <str id="sprite_class">groddle_fern_1</str> <int id="w">107</int> </object> <object id="groddle_grass_2_1311803725060"> <int id="z">96</int> <int id="x">-2982</int> <int id="y">-176</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">52</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">64</int> </object> <object id="groddle_grass_1_1312388917121"> <int id="z">89</int> <int id="x">167</int> <int id="y">-131</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">34</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">50</int> </object> <object id="groddle_grass_2_1312303285009"> <int id="z">135</int> <int id="x">-2423</int> <int id="y">-179</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">83</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">103</int> </object> <object id="groddle_plant_1_1312388917176"> <int id="z">132</int> <int id="x">-2234</int> <int id="y">-173</int> <str id="name">groddle_plant_1_1312303285014</str> <int id="h">83</int> <str id="sprite_class">groddle_plant_1</str> <int id="w">78</int> </object> <object id="groddle_bush4_1312303284912"> <int id="z">83</int> <int id="r">5</int> <int id="x">-1340</int> <int id="y">-179</int> <str id="name">groddle_bush4_1312303284892</str> <int id="h">68</int> <str id="sprite_class">groddle_bush4</str> <int id="w">142</int> </object> <object id="groddle_grass_1_1311803725056"> <int id="z">97</int> <int id="x">-2883</int> <int id="y">-169</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_fern_1_1312303284983"> <int id="z">116</int> <int id="x">-144</int> <int id="y">-213</int> <str id="name">groddle_fern_1_1312303284982</str> <int id="h">110</int> <str id="sprite_class">groddle_fern_1</str> <int id="w">184</int> </object> <object id="groddle_grass_1_1312310646713"> <int id="z">93</int> <int id="x">-1439</int> <int id="y">-71</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_1_1312303284990"> <int id="z">125</int> <int id="x">-257</int> <int id="y">-198</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_2_1312303284987"> <int id="z">122</int> <int id="x">-245</int> <int id="y">-205</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">83</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">103</int> </object> <object id="groddle_grass_1_1312388917147"> <int id="z">158</int> <int id="x">-672</int> <int id="y">-84</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_1_1312388917125"> <int id="z">120</int> <int id="x">16</int> <int id="y">-219</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">47</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">72</int> </object> <object id="groddle_grass_2_1312303284988"> <int id="z">123</int> <int id="x">-293</int> <int id="y">-199</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">69</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">86</int> </object> <object id="groddle_grass_1_1312303284986"> <int id="z">121</int> <int id="x">-66</int> <int id="y">-210</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_bush1_1312303284906"> <int id="z">114</int> <int id="r">1</int> <int id="x">-1072</int> <int id="y">-176</int> <str id="name">groddle_bush1_1312303284891</str> <int id="h">68</int> <str id="sprite_class">groddle_bush1</str> <int id="w">162</int> </object> <object id="groddle_grass_1_1312388917174"> <int id="z">164</int> <int id="x">-1840</int> <int id="y">-180</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_1_1312303285016"> <int id="z">142</int> <int id="x">-2492</int> <int id="y">-52</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_1_1312388917120"> <int id="z">71</int> <int id="x">235</int> <int id="y">-208</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">52</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">75</int> </object> <object id="groddle_plant_1_1312388917177"> <int id="z">133</int> <int id="r">-20</int> <int id="x">-2239</int> <int id="y">-168</int> <str id="name">groddle_plant_1_1312303285014</str> <int id="h">79</int> <str id="sprite_class">groddle_plant_1</str> <int id="w">77</int> </object> <object id="groddle_grass_1_1312310646708"> <int id="z">137</int> <int id="x">-2583</int> <int id="y">-60</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">43</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">90</int> </object> <object id="groddle_grass_2_1311803725053"> <int id="z">87</int> <int id="x">-1270</int> <int id="y">-171</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">83</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">103</int> </object> <object id="groddle_bush4_1312303285010"> <int id="z">129</int> <int id="x">-2181</int> <int id="y">-176</int> <str id="name">groddle_bush4_1312303284892</str> <int id="h">50</int> <str id="sprite_class">groddle_bush4</str> <int id="w">137</int> </object> <object id="groddle_fern_1_1312388917123"> <int id="z">118</int> <int id="x">62</int> <int id="y">-232</int> <str id="name">groddle_fern_1_1312303284982</str> <int id="h">80</int> <bool id="h_flip">true</bool> <str id="sprite_class">groddle_fern_1</str> <int id="w">133</int> </object> <object id="groddle_bush4_1312303284913"> <int id="z">85</int> <int id="r">5</int> <int id="x">-1445</int> <int id="y">-189</int> <str id="name">groddle_bush4_1312303284892</str> <int id="h">68</int> <bool id="h_flip">true</bool> <str id="sprite_class">groddle_bush4</str> <int id="w">142</int> </object> <object id="groddle_plant_1_1312303285015"> <int id="z">131</int> <int id="x">-2093</int> <int id="y">-178</int> <str id="name">groddle_plant_1_1312303285014</str> <int id="h">105</int> <str id="sprite_class">groddle_plant_1</str> <int id="w">99</int> </object> <object id="groddle_grass_2_1312388917119"> <int id="z">34</int> <int id="x">115</int> <int id="y">-238</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">83</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">103</int> </object> <object id="groddle_grass_2_1311803725059"> <int id="z">95</int> <int id="x">-2949</int> <int id="y">-172</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">83</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">103</int> </object> <object id="groddle_grass_1_1312303284907"> <int id="z">115</int> <int id="x">-1001</int> <int id="y">-180</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_2_1312303284910"> <int id="z">112</int> <int id="x">-373</int> <int id="y">-200</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">83</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">103</int> </object> <object id="groddle_grass_1_1312310646714"> <int id="z">94</int> <int id="x">-1464</int> <int id="y">-58</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_1_1312388917122"> <int id="z">72</int> <int id="x">152</int> <int id="y">-136</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">44</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">93</int> </object> <object id="groddle_bush1_1312303285007"> <int id="z">130</int> <int id="r">6</int> <int id="x">-2312</int> <int id="y">-172</int> <str id="name">groddle_bush1_1312303284891</str> <int id="h">71</int> <str id="sprite_class">groddle_bush1</str> <int id="w">160</int> </object> <object id="groddle_grass_2_1312303285017"> <int id="z">141</int> <int id="x">-2527</int> <int id="y">-56</int> <str id="name">groddle_grass_2_1311803725051</str> <int id="h">63</int> <str id="sprite_class">groddle_grass_2</str> <int id="w">78</int> </object> <object id="groddle_grass_1_1312388917124"> <int id="z">119</int> <int id="x">39</int> <int id="y">-226</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_1_1312388917173"> <int id="z">163</int> <int id="x">-1859</int> <int id="y">-186</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_1_1312303285008"> <int id="z">136</int> <int id="x">-2412</int> <int id="y">-173</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">51</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">106</int> </object> <object id="groddle_grass_1_1312310646709"> <int id="z">140</int> <int id="x">-2615</int> <int id="y">-51</int> <str id="name">groddle_grass_1_1311803725055</str> <int id="h">50</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">105</int> </object> </object> <object id="signposts"> <object id="signpost_2"> <str id="id">signpost_2</str> <int id="x">-2778</int> <int id="h">200</int> <object id="connects"> <object id="0"> <str id="mote_id">9</str> <int id="x">-2685</int> <int id="y">-115</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1312591141.swf</str> <bool id="hidden">false</bool> <str id="hub_id">97</str> <objref id="target" tsid="LA9KL68C1D825IA" label="Salix Seach"/> </object> <object id="1"> <str id="mote_id">9</str> <int id="x">2715</int> <int id="y">-145</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1312591141.swf</str> <bool id="hidden">false</bool> <str id="hub_id">97</str> <objref id="target" tsid="LA9GLRKMQF82961" label="Kalware Mare"/> </object> </object> <int id="y">-136</int> <int id="w">100</int> </object> <object id="signpost_1"> <int id="x">2834</int> <int id="h">200</int> <object id="connects"> <object id="0"> <str id="mote_id">9</str> <int id="x">-2707</int> <int id="y">-362</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1312591141.swf</str> <bool id="hidden">false</bool> <str id="hub_id">97</str> <objref id="target" tsid="LA9KLB7I1D822OL" label="Nira Nooks"/> </object> <object id="1"> <str id="mote_id">9</str> <int id="x">2200</int> <int id="y">-587</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1312591141.swf</str> <bool id="hidden">false</bool> <str id="hub_id">97</str> <objref id="target" tsid="LA9KL81E1D82ABT" label="Bettano Testament"/> </object> </object> <int id="y">-510</int> <int id="w">100</int> </object> </object> <object id="platform_lines"> <object id="plat_1312388917188"> <object id="start"> <int id="x">-2100</int> <int id="y">-708</int> </object> <object id="end"> <int id="x">-2046</int> <int id="y">-706</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917183"> <object id="start"> <int id="x">-2252</int> <int id="y">-318</int> </object> <object id="end"> <int id="x">-2102</int> <int id="y">-407</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917187"> <object id="start"> <int id="x">-2229</int> <int id="y">-621</int> </object> <object id="end"> <int id="x">-2100</int> <int id="y">-708</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917211"> <object id="start"> <int id="x">1924</int> <int id="y">-318</int> </object> <object id="end"> <int id="x">1999</int> <int id="y">-343</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917204"> <object id="start"> <int id="x">1296</int> <int id="y">-238</int> </object> <object id="end"> <int id="x">1632</int> <int id="y">-207</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917193"> <object id="start"> <int id="x">-933</int> <int id="y">-124</int> </object> <object id="end"> <int id="x">-606</int> <int id="y">-160</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917203"> <object id="start"> <int id="x">976</int> <int id="y">-284</int> </object> <object id="end"> <int id="x">1296</int> <int id="y">-238</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917199"> <object id="start"> <int id="x">311</int> <int id="y">-302</int> </object> <object id="end"> <int id="x">546</int> <int id="y">-313</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917202"> <object id="start"> <int id="x">898</int> <int id="y">-326</int> </object> <object id="end"> <int id="x">976</int> <int id="y">-284</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917191"> <object id="start"> <int id="x">-1747</int> <int id="y">-118</int> </object> <object id="end"> <int id="x">-1449</int> <int id="y">-141</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917178"> <object id="start"> <int id="x">-2998</int> <int id="y">-109</int> </object> <object id="end"> <int id="x">-2526</int> <int id="y">-138</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917216"> <object id="start"> <int id="x">2657</int> <int id="y">-481</int> </object> <object id="end"> <int id="x">2999</int> <int id="y">-506</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917186"> <object id="start"> <int id="x">-1920</int> <int id="y">-553</int> </object> <object id="end"> <int id="x">-1694</int> <int id="y">-393</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917197"> <object id="start"> <int id="x">148</int> <int id="y">-228</int> </object> <object id="end"> <int id="x">217</int> <int id="y">-278</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917215"> <object id="start"> <int id="x">2454</int> <int id="y">-421</int> </object> <object id="end"> <int id="x">2657</int> <int id="y">-481</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917194"> <object id="start"> <int id="x">-606</int> <int id="y">-160</int> </object> <object id="end"> <int id="x">-72</int> <int id="y">-155</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917196"> <object id="start"> <int id="x">105</int> <int id="y">-198</int> </object> <object id="end"> <int id="x">148</int> <int id="y">-228</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917207"> <object id="start"> <int id="x">2129</int> <int id="y">-169</int> </object> <object id="end"> <int id="x">2393</int> <int id="y">-150</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917192"> <object id="start"> <int id="x">-1449</int> <int id="y">-141</int> </object> <object id="end"> <int id="x">-933</int> <int id="y">-124</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917185"> <object id="start"> <int id="x">-1992</int> <int id="y">-551</int> </object> <object id="end"> <int id="x">-1920</int> <int id="y">-553</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917200"> <object id="start"> <int id="x">546</int> <int id="y">-313</int> </object> <object id="end"> <int id="x">788</int> <int id="y">-339</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917213"> <object id="start"> <int id="x">2115</int> <int id="y">-340</int> </object> <object id="end"> <int id="x">2359</int> <int id="y">-403</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917206"> <object id="start"> <int id="x">1979</int> <int id="y">-171</int> </object> <object id="end"> <int id="x">2129</int> <int id="y">-169</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917210"> <object id="start"> <int id="x">2839</int> <int id="y">-137</int> </object> <object id="end"> <int id="x">2999</int> <int id="y">-145</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917198"> <object id="start"> <int id="x">217</int> <int id="y">-278</int> </object> <object id="end"> <int id="x">311</int> <int id="y">-302</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917180"> <object id="start"> <int id="x">-2300</int> <int id="y">-135</int> </object> <object id="end"> <int id="x">-2035</int> <int id="y">-108</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917189"> <object id="start"> <int id="x">-2020</int> <int id="y">-867</int> </object> <object id="end"> <int id="x">-1966</int> <int id="y">-876</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917190"> <object id="start"> <int id="x">-1966</int> <int id="y">-876</int> </object> <object id="end"> <int id="x">-1793</int> <int id="y">-779</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917182"> <object id="start"> <int id="x">-2289</int> <int id="y">-273</int> </object> <object id="end"> <int id="x">-2252</int> <int id="y">-318</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917205"> <object id="start"> <int id="x">1632</int> <int id="y">-207</int> </object> <object id="end"> <int id="x">1860</int> <int id="y">-205</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917219"> <object id="start"> <int id="x">1860</int> <int id="y">-205</int> </object> <object id="end"> <int id="x">1979</int> <int id="y">-171</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917181"> <object id="start"> <int id="x">-2035</int> <int id="y">-108</int> </object> <object id="end"> <int id="x">-1747</int> <int id="y">-118</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917179"> <object id="start"> <int id="x">-2526</int> <int id="y">-138</int> </object> <object id="end"> <int id="x">-2300</int> <int id="y">-135</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917208"> <object id="start"> <int id="x">2393</int> <int id="y">-150</int> </object> <object id="end"> <int id="x">2601</int> <int id="y">-156</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917212"> <object id="start"> <int id="x">1999</int> <int id="y">-343</int> </object> <object id="end"> <int id="x">2115</int> <int id="y">-340</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917195"> <object id="start"> <int id="x">-72</int> <int id="y">-155</int> </object> <object id="end"> <int id="x">105</int> <int id="y">-198</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917209"> <object id="start"> <int id="x">2601</int> <int id="y">-156</int> </object> <object id="end"> <int id="x">2849</int> <int id="y">-137</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917184"> <object id="start"> <int id="x">-2102</int> <int id="y">-407</int> </object> <object id="end"> <int id="x">-2023</int> <int id="y">-416</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917214"> <object id="start"> <int id="x">2359</int> <int id="y">-403</int> </object> <object id="end"> <int id="x">2454</int> <int id="y">-421</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1312388917201"> <object id="start"> <int id="x">788</int> <int id="y">-339</int> </object> <object id="end"> <int id="x">898</int> <int id="y">-326</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> </object> <object id="targets"> </object> <int id="z">0</int> <int id="h">1000</int> <object id="boxes"> </object> </object> <object id="T_1309388549233"> <int id="z">-1</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">-25</int> </object> <object id="tintAmount"> <int id="value">0</int> </object> <object id="brightness"> <int id="value">-20</int> </object> <object id="saturation"> <int id="value">-20</int> </object> </object> <int id="h">990</int> <str id="name">bg_1</str> <object id="decos"> <object id="bush_3_1312303284881"> <int id="z">31</int> <int id="r">-10</int> <int id="x">1403</int> <int id="y">778</int> <str id="name">bush_3_1309395818718</str> <int id="h">103</int> <str id="sprite_class">bush_3</str> <int id="w">294</int> </object> <object id="bush_3_1311379072496"> <int id="z">21</int> <int id="x">411</int> <int id="y">783</int> <str id="name">bush_3_1309395818718</str> <int id="h">105</int> <str id="sprite_class">bush_3</str> <int id="w">298</int> </object> <object id="bush_2_1311803725034"> <int id="z">43</int> <int id="x">2207</int> <int id="y">836</int> <str id="name">bush_2_1309395818733</str> <int id="h">84</int> <str id="sprite_class">bush_2</str> <int id="w">273</int> </object> <object id="alakol_grass_top_1312591276883"> <int id="z">17</int> <int id="r">1</int> <int id="x">4853</int> <int id="y">372</int> <str id="name">alakol_grass_top_1312586919642</str> <int id="h">29</int> <str id="sprite_class">alakol_grass_top</str> <int id="w">466</int> </object> <object id="pinecluster_mask_1_1312591276891"> <int id="z">18</int> <int id="x">4764</int> <int id="y">361</int> <str id="name">pinecluster_mask_1_1312591276891</str> <int id="h">70</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="w">180</int> </object> <object id="bush_1_1312303284883"> <int id="z">39</int> <int id="r">5</int> <int id="x">1472</int> <int id="y">809</int> <str id="name">bush_1_1309451846087</str> <int id="h">47</int> <str id="sprite_class">bush_1</str> <int id="w">104</int> </object> <object id="bush_1_1312303284882"> <int id="z">38</int> <int id="r">5</int> <int id="x">1425</int> <int id="y">793</int> <str id="name">bush_1_1309451846087</str> <int id="h">64</int> <str id="sprite_class">bush_1</str> <int id="w">105</int> </object> <object id="alakol_grass_top_1312591276878"> <int id="z">6</int> <int id="r">-3</int> <int id="x">4495</int> <int id="y">550</int> <str id="name">alakol_grass_top_1312586919642</str> <int id="h">24</int> <str id="sprite_class">alakol_grass_top</str> <int id="w">468</int> </object> <object id="pinecluster_mask_1_1312303284880"> <int id="z">30</int> <int id="r">-1</int> <int id="x">1084</int> <int id="y">796</int> <str id="name">pinecluster_mask_1_1309451846094</str> <int id="h">164</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="w">498</int> </object> <object id="alakol_cliff_2_1311379072513"> <int id="z">16</int> <int id="r">-1</int> <int id="x">4806</int> <int id="y">460</int> <str id="name">alakol_cliff_2_1311022275060</str> <int id="h">112</int> <str id="sprite_class">alakol_cliff_2</str> <int id="w">522</int> </object> <object id="bush_3_1311803725033"> <int id="z">40</int> <int id="r">4</int> <int id="x">1981</int> <int id="y">804</int> <str id="name">bush_3_1309395818718</str> <int id="h">103</int> <str id="sprite_class">bush_3</str> <int id="w">294</int> </object> <object id="tree_coniferous_fg_2_1311803725068"> <int id="z">44</int> <int id="r">5</int> <int id="x">88</int> <int id="y">842</int> <str id="name">tree_coniferous_fg_2_1309388549259</str> <int id="h">1020</int> <bool id="h_flip">true</bool> <str id="sprite_class">tree_coniferous_fg_2</str> <int id="w">495</int> </object> <object id="bush_2_1312591276887"> <int id="z">10</int> <int id="r">4</int> <int id="x">4468</int> <int id="y">582</int> <str id="name">bush_2_1312591276886</str> <int id="h">48</int> <bool id="h_flip">true</bool> <str id="sprite_class">bush_2</str> <int id="w">125</int> </object> <object id="bush_3_1312303284877"> <int id="z">42</int> <int id="r">1</int> <int id="x">2280</int> <int id="y">823</int> <str id="name">bush_3_1309395818718</str> <int id="h">103</int> <str id="sprite_class">bush_3</str> <int id="w">294</int> </object> <object id="tree_canopy_single_1_1312591276892"> <int id="z">19</int> <int id="x">4754</int> <int id="y">359</int> <str id="name">tree_canopy_single_1_1312591276892</str> <int id="h">156</int> <str id="sprite_class">tree_canopy_single_1</str> <int id="w">82</int> </object> <object id="dirt_horizon_1312303284854"> <int id="z">2</int> <int id="r">2</int> <int id="x">2060</int> <int id="y">840</int> <str id="name">dirt_horizon_1311803724966</str> <int id="h">88</int> <str id="sprite_class">dirt_horizon</str> <int id="w">1089</int> </object> <object id="bush_3_1312591276888"> <int id="z">12</int> <int id="x">4419</int> <int id="y">584</int> <str id="name">bush_3_1312586919644</str> <int id="h">44</int> <str id="sprite_class">bush_3</str> <int id="w">123</int> </object> <object id="alakol_grass_top_1312591276879"> <int id="z">7</int> <int id="r">2</int> <int id="x">4484</int> <int id="y">594</int> <str id="name">alakol_grass_top_1312586919642</str> <int id="h">52</int> <str id="sprite_class">alakol_grass_top</str> <int id="w">466</int> </object> <object id="pinecluster_mask_1_1312303284887"> <int id="z">23</int> <int id="r">-1</int> <int id="x">731</int> <int id="y">783</int> <str id="name">pinecluster_mask_1_1309451846094</str> <int id="h">155</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="w">387</int> </object> <object id="alakol_cliff_2_1312591276882"> <int id="z">5</int> <int id="r">3</int> <int id="x">4426</int> <int id="y">738</int> <str id="name">alakol_cliff_2_1311022275060</str> <int id="h">171</int> <str id="sprite_class">alakol_cliff_2</str> <int id="w">494</int> </object> <object id="tree_coniferous_fg_1_1311022275277"> <int id="z">27</int> <int id="x">433</int> <int id="y">810</int> <str id="name">tree_coniferous_fg_1_1311022275277</str> <int id="h">1037</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="w">467</int> </object> <object id="bush_1_1311376174401"> <int id="z">25</int> <int id="x">17</int> <int id="y">794</int> <str id="name">bush_1_1309451846087</str> <int id="h">54</int> <str id="sprite_class">bush_1</str> <int id="w">97</int> </object> <object id="tree_coniferous_fg_1_1312303284879"> <int id="z">28</int> <int id="x">1362</int> <int id="y">771</int> <str id="name">tree_coniferous_fg_1_1311022275277</str> <int id="h">1037</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="w">467</int> </object> <object id="alakol_cliff_2_1311379072512"> <int id="z">4</int> <int id="r">-1</int> <int id="x">4426</int> <int id="y">715</int> <str id="name">alakol_cliff_2_1311022275060</str> <int id="h">171</int> <str id="sprite_class">alakol_cliff_2</str> <int id="w">494</int> </object> <object id="alakol_cliff_1_1311379072511"> <int id="z">8</int> <int id="r">1</int> <int id="x">4681</int> <int id="y">604</int> <str id="name">alakol_cliff_1_1311379072499</str> <int id="h">165</int> <str id="sprite_class">alakol_cliff_1</str> <int id="w">774</int> </object> <object id="bush_1_1312303284886"> <int id="z">37</int> <int id="x">1531</int> <int id="y">801</int> <str id="name">bush_1_1309451846087</str> <int id="h">35</int> <str id="sprite_class">bush_1</str> <int id="w">68</int> </object> <object id="bush_1_1309451846142"> <int id="z">26</int> <int id="x">73</int> <int id="y">805</int> <str id="name">bush_1_1309451846087</str> <int id="h">52</int> <str id="sprite_class">bush_1</str> <int id="w">98</int> </object> <object id="bush_2_1312591276890"> <int id="z">11</int> <int id="x">4353</int> <int id="y">581</int> <str id="name">bush_2_1312591276886</str> <int id="h">48</int> <str id="sprite_class">bush_2</str> <int id="w">125</int> </object> <object id="bush_2_1311008164466"> <int id="z">20</int> <int id="r">-3</int> <int id="x">122</int> <int id="y">805</int> <str id="name">bush_2_1309395818733</str> <int id="h">90</int> <str id="sprite_class">bush_2</str> <int id="w">231</int> </object> <object id="bush_3_1312303284858"> <int id="z">22</int> <int id="r">-4</int> <int id="x">557</int> <int id="y">773</int> <str id="name">bush_3_1309395818718</str> <int id="h">105</int> <str id="sprite_class">bush_3</str> <int id="w">298</int> </object> <object id="bush_3_1312586919644"> <int id="z">46</int> <int id="x">4589</int> <int id="y">462</int> <str id="name">bush_3_1312586919644</str> <int id="h">44</int> <str id="sprite_class">bush_3</str> <int id="w">123</int> </object> <object id="tree_coniferous_fg_3_1312303284875"> <int id="z">33</int> <int id="r">5</int> <int id="x">1051</int> <int id="y">817</int> <str id="name">tree_coniferous_fg_3_1311022275104</str> <int id="h">947</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="w">416</int> </object> <object id="bush_3_1311008164465"> <int id="z">24</int> <int id="r">-9</int> <int id="x">287</int> <int id="y">798</int> <str id="name">bush_3_1309395818718</str> <int id="h">98</int> <str id="sprite_class">bush_3</str> <int id="w">279</int> </object> <object id="tree_group_bg2_1_1311022275278"> <int id="z">0</int> <int id="r">-4</int> <int id="x">155</int> <int id="y">877</int> <str id="name">tree_group_bg2_1_1311022275268</str> <int id="h">832</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="w">550</int> </object> <object id="bush_3_1311803725042"> <int id="z">41</int> <int id="x">2102</int> <int id="y">824</int> <str id="name">bush_3_1309395818718</str> <int id="h">103</int> <str id="sprite_class">bush_3</str> <int id="w">294</int> </object> <object id="bush_2_1312591276886"> <int id="z">13</int> <int id="x">4549</int> <int id="y">590</int> <str id="name">bush_2_1312591276886</str> <int id="h">48</int> <str id="sprite_class">bush_2</str> <int id="w">125</int> </object> <object id="bush_1_1312303284885"> <int id="z">36</int> <int id="r">-10</int> <int id="x">1583</int> <int id="y">786</int> <str id="name">bush_1_1309451846087</str> <int id="h">47</int> <str id="sprite_class">bush_1</str> <int id="w">89</int> </object> <object id="alakol_grass_top_1312586919642"> <int id="z">14</int> <int id="r">-3</int> <int id="x">4601</int> <int id="y">462</int> <str id="name">alakol_grass_top_1312586919642</str> <int id="h">52</int> <str id="sprite_class">alakol_grass_top</str> <int id="w">466</int> </object> <object id="pinecluster_2_1312586919645"> <int id="z">50</int> <int id="x">4807</int> <int id="y">660</int> <str id="name">pinecluster_2_1312586919645</str> <int id="h">315</int> <str id="sprite_class">pinecluster_2</str> <int id="w">542</int> </object> <object id="alakol_grass_top_1312586919643"> <int id="z">45</int> <int id="x">4625</int> <int id="y">474</int> <str id="name">alakol_grass_top_1312586919642</str> <int id="h">39</int> <str id="sprite_class">alakol_grass_top</str> <int id="w">466</int> </object> <object id="bush_3_1312388917155"> <int id="z">34</int> <int id="r">10</int> <int id="x">942</int> <int id="y">840</int> <str id="name">bush_3_1309395818718</str> <int id="h">95</int> <str id="sprite_class">bush_3</str> <int id="w">271</int> </object> <object id="dirt_horizon_1312303284856"> <int id="z">1</int> <int id="r">-3</int> <int id="x">426</int> <int id="y">836</int> <str id="name">dirt_horizon_1311803724966</str> <int id="h">84</int> <str id="sprite_class">dirt_horizon</str> <int id="w">1080</int> </object> <object id="tree_coniferous_fg_2_1312388917084"> <int id="z">32</int> <int id="r">-5</int> <int id="x">1556</int> <int id="y">810</int> <str id="name">tree_coniferous_fg_2_1309388549259</str> <int id="h">1020</int> <str id="sprite_class">tree_coniferous_fg_2</str> <int id="w">495</int> </object> <object id="pinecluster_mask_1_1311803725036"> <int id="z">29</int> <int id="r">-6</int> <int id="x">1771</int> <int id="y">771</int> <str id="name">pinecluster_mask_1_1309451846094</str> <int id="h">164</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="w">498</int> </object> <object id="alakol_grass_top_1312591276881"> <int id="z">9</int> <int id="r">5</int> <int id="x">4514</int> <int id="y">613</int> <str id="name">alakol_grass_top_1312586919642</str> <int id="h">41</int> <str id="sprite_class">alakol_grass_top</str> <int id="w">466</int> </object> <object id="bush_3_1312591276894"> <int id="z">48</int> <int id="x">4466</int> <int id="y">450</int> <str id="name">bush_3_1312586919644</str> <int id="h">44</int> <str id="sprite_class">bush_3</str> <int id="w">123</int> </object> <object id="dirt_horizon_1312303284855"> <int id="z">3</int> <int id="x">1308</int> <int id="y">835</int> <str id="name">dirt_horizon_1311803724966</str> <int id="h">84</int> <str id="sprite_class">dirt_horizon</str> <int id="w">1080</int> </object> <object id="bush_2_1312388917156"> <int id="z">35</int> <int id="r">-12</int> <int id="x">1132</int> <int id="y">837</int> <str id="name">bush_2_1309395818733</str> <int id="h">84</int> <str id="sprite_class">bush_2</str> <int id="w">273</int> </object> <object id="groddle_grass_1_1312591276899"> <int id="z">53</int> <int id="x">4426</int> <int id="y">586</int> <str id="name">groddle_grass_1_1312591276899</str> <int id="h">13</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">28</int> </object> <object id="groddle_fern_1_1312591276893"> <int id="z">51</int> <int id="x">4416</int> <int id="y">441</int> <str id="name">groddle_fern_1_1312591276893</str> <int id="h">22</int> <str id="sprite_class">groddle_fern_1</str> <int id="w">37</int> </object> <object id="groddle_grass_1_1312591276901"> <int id="z">55</int> <int id="x">4388</int> <int id="y">463</int> <str id="name">groddle_grass_1_1312591276899</str> <int id="h">13</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">28</int> </object> <object id="groddle_fern_1_1312591276895"> <int id="z">52</int> <int id="x">4402</int> <int id="y">444</int> <str id="name">groddle_fern_1_1312591276893</str> <int id="h">22</int> <bool id="h_flip">true</bool> <str id="sprite_class">groddle_fern_1</str> <int id="w">37</int> </object> <object id="groddle_grass_1_1312591276903"> <int id="z">49</int> <int id="x">4485</int> <int id="y">449</int> <str id="name">groddle_grass_1_1312591276899</str> <int id="h">13</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">28</int> </object> <object id="groddle_grass_1_1312591276900"> <int id="z">54</int> <int id="x">4297</int> <int id="y">561</int> <str id="name">groddle_grass_1_1312591276899</str> <int id="h">13</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">28</int> </object> <object id="groddle_fern_1_1312591276897"> <int id="z">15</int> <int id="x">4552</int> <int id="y">434</int> <str id="name">groddle_fern_1_1312591276893</str> <int id="h">22</int> <str id="sprite_class">groddle_fern_1</str> <int id="w">37</int> </object> <object id="groddle_grass_1_1312591276902"> <int id="z">56</int> <int id="x">4495</int> <int id="y">582</int> <str id="name">groddle_grass_1_1312591276899</str> <int id="h">13</int> <str id="sprite_class">groddle_grass_1</str> <int id="w">28</int> </object> <object id="groddle_fern_1_1312591276898"> <int id="z">47</int> <int id="x">4512</int> <int id="y">428</int> <str id="name">groddle_fern_1_1312591276893</str> <int id="h">22</int> <str id="sprite_class">groddle_fern_1</str> <int id="w">37</int> </object> </object> <int id="w">5580</int> </object> <object id="T_1309388549234"> <int id="z">-2</int> <object id="filtersNEW"> <object id="contrast"> <int id="value">-30</int> </object> <object id="brightness"> <int id="value">-20</int> </object> <object id="saturation"> <int id="value">-30</int> </object> </object> <int id="h">980</int> <str id="name">bg_2</str> <object id="decos"> <object id="bush_3_1312337863276"> <int id="z">21</int> <int id="x">2493</int> <int id="y">794</int> <str id="name">bush_3_1309395818718</str> <int id="h">69</int> <str id="sprite_class">bush_3</str> <int id="w">196</int> </object> <object id="tree_group_bg2_1_1312337863281"> <int id="z">0</int> <int id="x">2267</int> <int id="y">765</int> <str id="name">tree_group_bg2_1_1311022275268</str> <int id="h">199</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="w">152</int> </object> <object id="tree_group_bg2_1_1312388917159"> <int id="z">1</int> <int id="x">2206</int> <int id="y">767</int> <str id="name">tree_group_bg2_1_1311022275268</str> <int id="h">266</int> <bool id="h_flip">true</bool> <str id="sprite_class">tree_group_bg2_1</str> <int id="w">203</int> </object> <object id="tree_coniferous_fg_1_1312303284888"> <int id="z">9</int> <int id="x">637</int> <int id="y">932</int> <str id="name">tree_coniferous_fg_1_1311022275277</str> <int id="h">797</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="w">324</int> </object> <object id="bush_3_1312388917157"> <int id="z">17</int> <int id="x">2984</int> <int id="y">763</int> <str id="name">bush_3_1309395818718</str> <int id="h">69</int> <str id="sprite_class">bush_3</str> <int id="w">196</int> </object> <object id="tree_group_bg2_1_1312388917160"> <int id="z">2</int> <int id="x">2101</int> <int id="y">789</int> <str id="name">tree_group_bg2_1_1311022275268</str> <int id="h">385</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="w">294</int> </object> <object id="heights_bush_4_1312388917168"> <int id="z">6</int> <int id="x">1919</int> <int id="y">780</int> <str id="name">heights_bush_4_1312388917165</str> <int id="h">120</int> <str id="sprite_class">heights_bush_4</str> <int id="w">729</int> </object> <object id="tree_group_bg2_1_1312388917163"> <int id="z">5</int> <int id="x">1834</int> <int id="y">795</int> <str id="name">tree_group_bg2_1_1311022275268</str> <int id="h">638</int> <bool id="h_flip">true</bool> <str id="sprite_class">tree_group_bg2_1</str> <int id="w">468</int> </object> <object id="tree_wallpaper_1a_1311379072504"> <int id="z">4</int> <int id="x">955</int> <int id="y">887</int> <str id="name">tree_wallpaper_1a_1309388549250</str> <int id="h">798</int> <str id="sprite_class">tree_wallpaper_1a</str> <int id="w">2161</int> </object> <object id="pinecluster_2_1312337863286"> <int id="z">10</int> <int id="r">-4</int> <int id="x">2893</int> <int id="y">750</int> <str id="name">pinecluster_2_1310523231572</str> <int id="h">140</int> <str id="sprite_class">pinecluster_2</str> <int id="w">361</int> </object> <object id="tree_group_bg2_1_1311803724955"> <int id="z">7</int> <int id="x">985</int> <int id="y">849</int> <str id="name">tree_group_bg2_1_1311022275268</str> <int id="h">763</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="w">584</int> </object> <object id="bush_3_1312337863277"> <int id="z">20</int> <int id="r">-10</int> <int id="x">2381</int> <int id="y">801</int> <str id="name">bush_3_1309395818718</str> <int id="h">65</int> <str id="sprite_class">bush_3</str> <int id="w">185</int> </object> <object id="pinecluster_1_1312337863283"> <int id="z">13</int> <int id="r">-15</int> <int id="x">2314</int> <int id="y">787</int> <str id="name">pinecluster_1_1311022275179</str> <int id="h">136</int> <bool id="h_flip">true</bool> <str id="sprite_class">pinecluster_1</str> <int id="w">248</int> </object> <object id="bush_2_1312337863279"> <int id="z">16</int> <int id="x">2884</int> <int id="y">756</int> <str id="name">bush_2_1309395818733</str> <int id="h">54</int> <str id="sprite_class">bush_2</str> <int id="w">138</int> </object> <object id="pinecluster_1_1312337863284"> <int id="z">12</int> <int id="x">2459</int> <int id="y">784</int> <str id="name">pinecluster_1_1311022275179</str> <int id="h">136</int> <bool id="h_flip">true</bool> <str id="sprite_class">pinecluster_1</str> <int id="w">248</int> </object> <object id="pinecluster_mask_1_1312337863278"> <int id="z">18</int> <int id="r">-3</int> <int id="x">2698</int> <int id="y">768</int> <str id="name">pinecluster_mask_1_1309451846094</str> <int id="h">85</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="w">323</int> </object> <object id="tree_group_bg2_1_1312388917161"> <int id="z">3</int> <int id="x">1974</int> <int id="y">823</int> <str id="name">tree_group_bg2_1_1311022275268</str> <int id="h">559</int> <bool id="h_flip">true</bool> <str id="sprite_class">tree_group_bg2_1</str> <int id="w">410</int> </object> <object id="tree_coniferous_1_1311986368058"> <int id="z">8</int> <int id="x">1937</int> <int id="y">749</int> <str id="name">tree_coniferous_1_1309818313361</str> <int id="h">640</int> <bool id="h_flip">true</bool> <str id="sprite_class">tree_coniferous_1</str> <int id="w">262</int> </object> <object id="pinecluster_2_1312337863285"> <int id="z">11</int> <int id="r">-4</int> <int id="x">2667</int> <int id="y">769</int> <str id="name">pinecluster_2_1310523231572</str> <int id="h">139</int> <str id="sprite_class">pinecluster_2</str> <int id="w">341</int> </object> <object id="pinecluster_mask_1_1312388917158"> <int id="z">19</int> <int id="r">-6</int> <int id="x">3204</int> <int id="y">747</int> <str id="name">pinecluster_mask_1_1309451846094</str> <int id="h">85</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="w">323</int> </object> <object id="dirt_horizon_1312337863280"> <int id="z">15</int> <int id="r">-3</int> <int id="x">3016</int> <int id="y">809</int> <str id="name">dirt_horizon_1311803724966</str> <int id="h">83</int> <bool id="h_flip">true</bool> <str id="sprite_class">dirt_horizon</str> <int id="w">1359</int> </object> <object id="pinecluster_2_1312337863282"> <int id="z">14</int> <int id="r">-2</int> <int id="x">3164</int> <int id="y">750</int> <str id="name">pinecluster_2_1310523231572</str> <int id="h">139</int> <str id="sprite_class">pinecluster_2</str> <int id="w">341</int> </object> </object> <int id="w">5160</int> </object> <object id="T_1311022275144"> <int id="z">-3</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">-40</int> </object> <object id="brightness"> <int id="value">0</int> </object> <object id="saturation"> <int id="value">-40</int> </object> </object> <int id="h">950</int> <str id="name">bg_3</str> <object id="decos"> <object id="pinehills_2_1311022275146"> <int id="z">5</int> <int id="r">4</int> <int id="x">2810</int> <int id="y">810</int> <str id="name">pinehills_2_1310523231569</str> <int id="h">265</int> <str id="sprite_class">pinehills_2</str> <int id="w">878</int> </object> <object id="pinehills_2_1311379072533"> <int id="z">2</int> <int id="x">2212</int> <int id="y">831</int> <str id="name">pinehills_2_1310523231569</str> <int id="h">265</int> <str id="sprite_class">pinehills_2</str> <int id="w">878</int> </object> <object id="pinehills_2_1311022275149"> <int id="z">4</int> <int id="x">2417</int> <int id="y">820</int> <str id="name">pinehills_2_1310523231569</str> <int id="h">265</int> <str id="sprite_class">pinehills_2</str> <int id="w">878</int> </object> <object id="pinehills_2_1311022275145"> <int id="z">6</int> <int id="r">-1</int> <int id="x">3348</int> <int id="y">770</int> <str id="name">pinehills_2_1310523231569</str> <int id="h">265</int> <str id="sprite_class">pinehills_2</str> <int id="w">878</int> </object> <object id="pinehills_2_1311022275150"> <int id="z">1</int> <int id="x">3039</int> <int id="y">779</int> <str id="name">pinehills_2_1310523231569</str> <int id="h">265</int> <str id="sprite_class">pinehills_2</str> <int id="w">878</int> </object> <object id="pinehills_2_1311022275151"> <int id="z">0</int> <int id="x">3722</int> <int id="y">741</int> <str id="name">pinehills_2_1310523231569</str> <int id="h">265</int> <str id="sprite_class">pinehills_2</str> <int id="w">878</int> </object> <object id="pinehills_2_1311986368060"> <int id="z">3</int> <int id="r">6</int> <int id="x">1802</int> <int id="y">788</int> <str id="name">pinehills_2_1310523231569</str> <int id="h">265</int> <str id="sprite_class">pinehills_2</str> <int id="w">878</int> </object> </object> <int id="w">4860</int> </object> <object id="T_1311008164522"> <int id="z">-4</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">16777164</int> </object> <object id="contrast"> <int id="value">-40</int> </object> <object id="tintAmount"> <int id="value">13</int> </object> <object id="brightness"> <int id="value">30</int> </object> <object id="saturation"> <int id="value">-40</int> </object> </object> <int id="h">940</int> <str id="name">mtn</str> <object id="decos"> <object id="mountain_trees_darker_1_1311008164606"> <int id="z">0</int> <int id="r">-3</int> <int id="x">3738</int> <int id="y">661</int> <str id="name">mountain_trees_darker_1_1311008164605</str> <int id="h">404</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="w">935</int> </object> <object id="mountain_trees_darker_1_1311022275093"> <int id="z">8</int> <int id="r">-3</int> <int id="x">2781</int> <int id="y">643</int> <str id="name">mountain_trees_darker_1_1311008164605</str> <int id="h">248</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="w">572</int> </object> <object id="mountain_trees_darker_1_1311986368061"> <int id="z">6</int> <int id="r">-3</int> <int id="x">1346</int> <int id="y">747</int> <str id="name">mountain_trees_darker_1_1311008164605</str> <int id="h">395</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="w">1198</int> </object> <object id="cloud_fluffy_2_1312388917126"> <int id="z">12</int> <int id="x">4141</int> <int id="y">228</int> <str id="name">cloud_fluffy_2_1311986368048</str> <int id="h">139</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="w">940</int> </object> <object id="mountain_trees_darker_1_1311022275092"> <int id="z">2</int> <int id="r">-3</int> <int id="x">3017</int> <int id="y">657</int> <str id="name">mountain_trees_darker_1_1311008164605</str> <int id="h">294</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="w">892</int> </object> <object id="mountain_trees_darker_1_1311008164607"> <int id="z">3</int> <int id="r">-3</int> <int id="x">3325</int> <int id="y">613</int> <str id="name">mountain_trees_darker_1_1311008164605</str> <int id="h">252</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="w">997</int> </object> <object id="cloud_fluffy_1_1311986368049"> <int id="z">10</int> <int id="x">2643</int> <int id="y">399</int> <str id="name">cloud_fluffy_1_1311986368049</str> <int id="h">124</int> <str id="sprite_class">cloud_fluffy_1</str> <int id="w">687</int> </object> <object id="mountain_trees_darker_1_1312388917092"> <int id="z">1</int> <int id="r">-3</int> <int id="x">4184</int> <int id="y">687</int> <str id="name">mountain_trees_darker_1_1311008164605</str> <int id="h">536</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="w">1029</int> </object> <object id="cloud_fluffy_1_1312303284945"> <int id="z">11</int> <int id="x">956</int> <int id="y">252</int> <str id="name">cloud_fluffy_1_1311986368049</str> <int id="h">171</int> <str id="sprite_class">cloud_fluffy_1</str> <int id="w">1067</int> </object> <object id="cloud_fluffy_2_1311986368048"> <int id="z">9</int> <int id="x">1828</int> <int id="y">324</int> <str id="name">cloud_fluffy_2_1311986368048</str> <int id="h">139</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="w">940</int> </object> <object id="mountain_trees_darker_1_1311022275094"> <int id="z">7</int> <int id="r">-1</int> <int id="x">2450</int> <int id="y">656</int> <str id="name">mountain_trees_darker_1_1311008164605</str> <int id="h">224</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="w">854</int> </object> <object id="mountain_trees_darker_1_1311022275095"> <int id="z">4</int> <int id="r">2</int> <int id="x">2133</int> <int id="y">742</int> <str id="name">mountain_trees_darker_1_1311008164605</str> <int id="h">374</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="w">903</int> </object> <object id="mountain_trees_darker_1_1311986368059"> <int id="z">5</int> <int id="r">2</int> <int id="x">1659</int> <int id="y">758</int> <str id="name">mountain_trees_darker_1_1311008164605</str> <int id="h">430</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="w">1096</int> </object> </object> <int id="w">4620</int> </object> <object id="T_1311386031998"> <int id="z">1</int> <object id="filtersNEW"> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">-10</int> </object> <object id="brightness"> <int id="value">-5</int> </object> <object id="saturation"> <int id="value">-10</int> </object> </object> <int id="h">1000</int> <str id="name">middleplus</str> <object id="decos"> <object id="tree_coniferous_fg_4_1312388917217"> <int id="z">0</int> <int id="x">4985</int> <int id="y">1544</int> <str id="name">tree_coniferous_fg_4_1312388917169</str> <int id="h">1325</int> <str id="sprite_class">tree_coniferous_fg_4</str> <int id="w">560</int> </object> <object id="tree_coniferous_fg_3_1312388917218"> <int id="z">1</int> <int id="r">5</int> <int id="x">4592</int> <int id="y">1270</int> <str id="name">tree_coniferous_fg_3_1311022275104</str> <int id="h">1194</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="w">452</int> </object> </object> <int id="w">6480</int> </object> </object> <str id="music_file"></str> <null id="img_file_versioned"/> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1312591141.swf</str> <null id="physics"/> <str id="tsid">LA9T11KPMD82B1S</str> <null id="loading_label"/> <int id="ground_y">-256</int> <int id="rookable_type">0</int> <object id="gradient"> <str id="bottom">FFC252</str> <str id="top">5FA3D4</str> </object> <object id="sources"> <int id="LA9GLRKMQF82961">1</int> <int id="LA9KLB7I1D822OL">1</int> <int id="LA9KL81E1D82ABT">1</int> <int id="LA9KL68C1D825IA">1</int> <int id="LHVHDUF7PVC2D3E">1</int> </object> </object> </game_object>
109,213
Common Lisp
.l
3,319
26.128653
206
0.543817
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
a4154e98e035ff508544131a01807dc5556a5239d9cfc0cc7d7d5c842f9c41f8
20,856
[ -1 ]
20,857
GHV2547JP9B2AG0.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV2547JP9B2AG0 Baddam Haddam-double arch rocks 1038 elements/GHV2547JP9B2AG0.xml
<game_object tsid="GHV2547JP9B2AG0" ts="1331769527573" label="Baddam Haddam" class_tsid="" lastUpdateTime="1331769517537" upd_gs="gs10" load_time="2012-03-14 13:25:21.900" upd_time="2012-03-14 16:48:58.445"> <object id="dynamic"> <int id="l">-2500</int> <int id="r">2500</int> <int id="t">-1500</int> <int id="b">0</int> <str id="label">Baddam Haddam</str> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="T_1314039143685"> <str id="name">Middleplus</str> <object id="decos"> </object> <int id="w">5000</int> <int id="h">1500</int> <int id="z">1</int> <object id="filtersNEW"> <object id="saturation"> <int id="value">-20</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">20</int> </object> <object id="brightness"> <int id="value">5</int> </object> </object> </object> <object id="T_1314039143686"> <str id="name">BG1</str> <object id="decos"> <object id="snow_splotch_2_1314918560096"> <int id="w">215</int> <int id="z">115</int> <int id="h">26</int> <bool id="h_flip">true</bool> <int id="y">1077</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1842</int> </object> <object id="snow_splotch_1_1315005144808"> <int id="w">165</int> <int id="z">164</int> <int id="h">21</int> <int id="y">943</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-684</int> </object> <object id="lens_grass_1_1314996459040"> <int id="w">902</int> <int id="z">34</int> <int id="h">125</int> <int id="y">1019</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">-109</int> </object> <object id="snow_splotch_2_1315344184393"> <int id="w">215</int> <int id="z">240</int> <int id="r">10</int> <int id="h">26</int> <int id="y">681</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1366</int> </object> <object id="heights_topper_1_1314996459056"> <int id="w">226</int> <int id="z">23</int> <int id="r">65</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">823</int> <str id="name">heights_topper_1_1314742482589</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1150</int> </object> <object id="lens_grass_1_1314918560032"> <int id="w">902</int> <int id="z">54</int> <int id="h">125</int> <int id="y">1140</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3154</int> </object> <object id="lens_grass_1_1315343217808"> <int id="w">376</int> <int id="z">227</int> <int id="r">-1</int> <int id="h">68</int> <int id="y">835</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2351</int> </object> <object id="cliff_cover_3_1315344184362"> <int id="w">218</int> <int id="z">222</int> <int id="r">15</int> <int id="h">121</int> <int id="y">852</int> <str id="name">cliff_cover_3_1315333415625</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">1450</int> </object> <object id="cliff_cover_5_1314996459055"> <int id="w">332</int> <int id="z">127</int> <int id="r">30</int> <int id="h">144</int> <bool id="h_flip">true</bool> <int id="y">1014</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1258</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511839"> <int id="w">206</int> <int id="z">13</int> <int id="h">66</int> <int id="y">919</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">1735</int> </object> <object id="cliff_cover_5_1315344184359"> <int id="w">339</int> <int id="z">199</int> <int id="r">10</int> <int id="h">147</int> <bool id="h_flip">true</bool> <int id="y">838</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1539</int> </object> <object id="snow_patch_5_1314918560105"> <int id="w">567</int> <int id="z">43</int> <int id="h">80</int> <int id="y">1006</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">233</int> </object> <object id="dirt_mountain_snow_cap_1_1314918560020"> <int id="w">150</int> <int id="z">25</int> <int id="r">2</int> <int id="h">248</int> <int id="y">758</int> <str id="name">dirt_mountain_snow_cap_1_1314918560015</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">942</int> </object> <object id="lens_grass_1_1315414556963"> <int id="w">902</int> <int id="z">59</int> <int id="h">125</int> <int id="y">1110</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">4235</int> </object> <object id="snow_splotch_1_1314918560082"> <int id="w">165</int> <int id="z">105</int> <int id="h">21</int> <int id="y">1119</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1641</int> </object> <object id="cliff_cover_5_1314742482587"> <int id="w">469</int> <int id="z">16</int> <int id="r">-70</int> <int id="h">204</int> <bool id="h_flip">true</bool> <int id="y">906</int> <str id="name">cliff_cover_5_1314637852556</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">961</int> </object> <object id="snow_splotch_1_1315005144805"> <int id="w">165</int> <int id="z">161</int> <int id="h">21</int> <int id="y">930</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-304</int> </object> <object id="snow_splotch_2_1315333415737"> <int id="w">156</int> <int id="z">206</int> <int id="r">2</int> <int id="h">20</int> <int id="y">1016</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2608</int> </object> <object id="snow_splotch_1_1314918560058"> <int id="w">165</int> <int id="z">76</int> <int id="h">21</int> <int id="y">1033</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">567</int> </object> <object id="cliff_cover_3_1315343217799"> <int id="w">253</int> <int id="z">221</int> <int id="r">-10</int> <int id="h">141</int> <int id="y">920</int> <str id="name">cliff_cover_3_1315333415625</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">2276</int> </object> <object id="snow_splotch_1_1314918560073"> <int id="w">165</int> <int id="z">88</int> <int id="h">21</int> <int id="y">1090</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1515</int> </object> <object id="snow_splotch_2_1314918560063"> <int id="w">215</int> <int id="z">47</int> <int id="h">26</int> <int id="y">996</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1273</int> </object> <object id="cliff_cover_5_1314918560128"> <int id="w">332</int> <int id="z">126</int> <int id="r">-15</int> <int id="h">144</int> <int id="y">976</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">997</int> </object> <object id="snow_splotch_1_1314918560068"> <int id="w">165</int> <int id="z">81</int> <int id="h">21</int> <bool id="h_flip">true</bool> <int id="y">1068</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1453</int> </object> <object id="snow_splotch_2_1315343217809"> <int id="w">224</int> <int id="z">228</int> <int id="r">-2</int> <int id="h">32</int> <int id="y">804</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2328</int> </object> <object id="heights_topper_1_1314742482590"> <int id="w">269</int> <int id="z">18</int> <int id="r">-60</int> <int id="h">69</int> <int id="y">543</int> <str id="name">heights_topper_1_1314742482589</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1006</int> </object> <object id="cliff_cover_5_1315333415654"> <int id="w">472</int> <int id="z">194</int> <int id="r">-5</int> <int id="h">204</int> <int id="y">1099</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1770</int> </object> <object id="snow_splotch_2_1314983511788"> <int id="w">215</int> <int id="z">143</int> <int id="h">26</int> <int id="y">991</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3391</int> </object> <object id="snow_splotch_2_1314983511792"> <int id="w">215</int> <int id="z">147</int> <int id="h">26</int> <int id="y">1003</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3248</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511767"> <int id="w">294</int> <int id="z">238</int> <int id="r">2</int> <int id="h">88</int> <int id="y">862</int> <str id="name">dirt_mountain_snow_cap_1_1314983511767</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">968</int> </object> <object id="snow_splotch_1_1315005144804"> <int id="w">165</int> <int id="z">158</int> <int id="h">21</int> <int id="y">909</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-214</int> </object> <object id="snow_splotch_2_1315005144904"> <int id="w">215</int> <int id="z">94</int> <int id="h">26</int> <bool id="h_flip">true</bool> <int id="y">1112</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">846</int> </object> <object id="snow_splotch_1_1314983511781"> <int id="w">165</int> <int id="z">138</int> <int id="h">21</int> <int id="y">1049</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3578</int> </object> <object id="snow_patch_5_1314918560107"> <int id="w">567</int> <int id="z">46</int> <int id="h">80</int> <int id="y">1007</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1296</int> </object> <object id="snow_splotch_1_1315005144821"> <int id="w">165</int> <int id="z">175</int> <int id="h">21</int> <int id="y">917</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-71</int> </object> <object id="cliff_cover_3_1314637852583"> <int id="w">487</int> <int id="z">15</int> <int id="r">115</int> <int id="h">248</int> <int id="y">775</int> <str id="name">cliff_cover_3_1314637852583</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">881</int> </object> <object id="cliff_cover_5_1314637852582"> <int id="w">630</int> <int id="z">14</int> <int id="r">85</int> <int id="h">274</int> <int id="y">727</int> <str id="name">cliff_cover_5_1314637852556</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">924</int> </object> <object id="cliff_cover_5_1315343217775"> <int id="w">345</int> <int id="z">220</int> <int id="r">-10</int> <int id="h">150</int> <int id="y">1017</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2885</int> </object> <object id="cliff_cover_5_1314742482597"> <int id="w">630</int> <int id="z">10</int> <int id="r">15</int> <int id="h">274</int> <bool id="h_flip">true</bool> <int id="y">1130</int> <str id="name">cliff_cover_5_1314637852556</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1948</int> </object> <object id="cliff_cover_3_1315344184363"> <int id="w">218</int> <int id="z">223</int> <int id="r">15</int> <int id="h">121</int> <int id="y">903</int> <str id="name">cliff_cover_3_1315333415625</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">1613</int> </object> <object id="gravel_1_1315344184331"> <int id="w">274</int> <int id="z">9</int> <int id="h">49</int> <int id="y">1012</int> <str id="name">gravel_1_1314996458932</str> <str id="sprite_class">gravel_1</str> <int id="x">2446</int> </object> <object id="cliff_cover_5_1315343217774"> <int id="w">345</int> <int id="z">213</int> <int id="r">-10</int> <int id="h">150</int> <int id="y">1099</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2746</int> </object> <object id="snow_splotch_1_1314918560085"> <int id="w">165</int> <int id="z">108</int> <int id="h">21</int> <int id="y">1052</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1755</int> </object> <object id="snow_patch_5_1315005144921"> <int id="w">261</int> <int id="z">192</int> <int id="h">33</int> <int id="y">1055</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1475</int> </object> <object id="snow_splotch_2_1314918560051"> <int id="w">215</int> <int id="z">65</int> <int id="h">26</int> <int id="y">993</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">471</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511838"> <int id="w">370</int> <int id="z">12</int> <int id="h">94</int> <int id="y">934</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">1965</int> </object> <object id="snow_splotch_1_1315005144836"> <int id="w">165</int> <int id="z">187</int> <int id="h">21</int> <int id="y">1026</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">150</int> </object> <object id="snow_splotch_2_1314918560087"> <int id="w">215</int> <int id="z">106</int> <int id="h">26</int> <int id="y">1037</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1847</int> </object> <object id="snow_splotch_2_1314918560072"> <int id="w">215</int> <int id="z">83</int> <int id="h">26</int> <int id="y">1041</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1704</int> </object> <object id="snow_splotch_1_1314918560079"> <int id="w">165</int> <int id="z">102</int> <int id="h">21</int> <bool id="h_flip">true</bool> <int id="y">1109</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1336</int> </object> <object id="snow_splotch_1_1315005144813"> <int id="w">165</int> <int id="z">165</int> <int id="h">21</int> <int id="y">985</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-783</int> </object> <object id="snow_splotch_2_1314918560057"> <int id="w">215</int> <int id="z">71</int> <int id="h">26</int> <int id="y">1013</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">308</int> </object> <object id="snow_splotch_2_1314918560066"> <int id="w">215</int> <int id="z">77</int> <int id="h">26</int> <int id="y">1022</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1473</int> </object> <object id="cliff_cover_5_1314918560129"> <int id="w">332</int> <int id="z">128</int> <int id="r">5</int> <int id="h">144</int> <bool id="h_flip">true</bool> <int id="y">1071</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1168</int> </object> <object id="snow_splotch_2_1314918560043"> <int id="w">215</int> <int id="z">50</int> <int id="h">26</int> <int id="y">988</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">642</int> </object> <object id="snow_splotch_1_1314918560062"> <int id="w">165</int> <int id="z">48</int> <int id="h">21</int> <int id="y">1012</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1380</int> </object> <object id="snow_splotch_1_1315005144822"> <int id="w">165</int> <int id="z">174</int> <int id="h">21</int> <int id="y">926</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-200</int> </object> <object id="cliff_cover_5_1315343217803"> <int id="w">308</int> <int id="z">217</int> <int id="r">-10</int> <int id="h">134</int> <int id="y">924</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2836</int> </object> <object id="heights_topper_1_1314742482594"> <int id="w">226</int> <int id="z">22</int> <int id="r">65</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">698</int> <str id="name">heights_topper_1_1314742482589</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1120</int> </object> <object id="lens_grass_1_1315344184368"> <int id="w">455</int> <int id="z">244</int> <int id="r">1</int> <int id="h">70</int> <int id="y">1008</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1921</int> </object> <object id="snow_splotch_1_1315005144802"> <int id="w">165</int> <int id="z">156</int> <int id="h">21</int> <int id="y">896</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-290</int> </object> <object id="snow_splotch_1_1314918560088"> <int id="w">165</int> <int id="z">111</int> <int id="h">21</int> <int id="y">1065</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1945</int> </object> <object id="snow_splotch_2_1314983511794"> <int id="w">215</int> <int id="z">149</int> <int id="h">26</int> <int id="y">1015</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3276</int> </object> <object id="snow_patch_5_1315005144801"> <int id="w">467</int> <int id="z">44</int> <int id="h">58</int> <int id="y">971</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">-532</int> </object> <object id="snow_splotch_2_1314983511796"> <int id="w">215</int> <int id="z">151</int> <int id="h">26</int> <int id="y">990</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3514</int> </object> <object id="snow_splotch_2_1315344184396"> <int id="w">215</int> <int id="z">243</int> <int id="r">10</int> <int id="h">26</int> <bool id="h_flip">true</bool> <int id="y">789</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1662</int> </object> <object id="snow_patch_4_1314825578653"> <int id="w">507</int> <int id="z">36</int> <int id="h">74</int> <int id="y">1039</int> <str id="name">snow_patch_4_1314825578653</str> <str id="sprite_class">snow_patch_4</str> <int id="x">1086</int> </object> <object id="snow_patch_5_1315005144915"> <int id="w">383</int> <int id="z">133</int> <int id="h">48</int> <int id="y">1075</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1008</int> </object> <object id="cliff_cover_3_1315343217804"> <int id="w">253</int> <int id="z">224</int> <int id="r">-5</int> <int id="h">141</int> <int id="y">900</int> <str id="name">cliff_cover_3_1315333415625</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">2430</int> </object> <object id="snow_splotch_1_1314918560086"> <int id="w">165</int> <int id="z">107</int> <int id="h">21</int> <int id="y">1053</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1954</int> </object> <object id="lens_grass_1_1314983511806"> <int id="w">902</int> <int id="z">58</int> <int id="h">125</int> <int id="y">1275</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3335</int> </object> <object id="snow_splotch_1_1314918560065"> <int id="w">165</int> <int id="z">78</int> <int id="h">21</int> <int id="y">1038</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1580</int> </object> <object id="snow_splotch_1_1314918560074"> <int id="w">165</int> <int id="z">87</int> <int id="h">21</int> <int id="y">1091</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1714</int> </object> <object id="snow_splotch_1_1315005144908"> <int id="w">165</int> <int id="z">98</int> <int id="h">21</int> <int id="y">1081</int> <str id="name">snow_splotch_1_1315005144907</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1015</int> </object> <object id="heights_topper_1_1314742482592"> <int id="w">226</int> <int id="z">20</int> <int id="r">-70</int> <int id="h">74</int> <int id="y">698</int> <str id="name">heights_topper_1_1314742482589</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1006</int> </object> <object id="lens_grass_1_1314996459037"> <int id="w">902</int> <int id="z">31</int> <int id="h">125</int> <int id="y">1015</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">-620</int> </object> <object id="snow_splotch_1_1314918560094"> <int id="w">165</int> <int id="z">117</int> <int id="h">21</int> <int id="y">1092</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1750</int> </object> <object id="snow_splotch_1_1315005144834"> <int id="w">165</int> <int id="z">183</int> <int id="h">21</int> <int id="y">1038</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-709</int> </object> <object id="cliff_cover_1_1315344184364"> <int id="w">236</int> <int id="z">232</int> <int id="r">15</int> <int id="h">156</int> <int id="y">864</int> <str id="name">cliff_cover_1_1315344184364</str> <str id="sprite_class">cliff_cover_1</str> <int id="x">1110</int> </object> <object id="lens_grass_1_1314918560039"> <int id="w">902</int> <int id="z">29</int> <int id="h">125</int> <int id="y">1146</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">567</int> </object> <object id="snow_splotch_2_1315344184395"> <int id="w">215</int> <int id="z">242</int> <int id="r">10</int> <int id="h">26</int> <int id="y">763</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1601</int> </object> <object id="snow_splotch_1_1315005144816"> <int id="w">165</int> <int id="z">168</int> <int id="h">21</int> <int id="y">951</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-274</int> </object> <object id="snow_splotch_1_1315005144835"> <int id="w">165</int> <int id="z">188</int> <int id="h">21</int> <int id="y">1035</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">21</int> </object> <object id="lens_grass_1_1315344184366"> <int id="w">416</int> <int id="z">235</int> <int id="r">16</int> <int id="h">86</int> <int id="y">818</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1607</int> </object> <object id="snow_splotch_2_1315344184398"> <int id="w">215</int> <int id="z">247</int> <int id="h">26</int> <int id="y">971</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1971</int> </object> <object id="snow_splotch_1_1314918560097"> <int id="w">165</int> <int id="z">120</int> <int id="h">21</int> <int id="y">1099</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1987</int> </object> <object id="heights_topper_1_1314996459057"> <int id="w">226</int> <int id="z">155</int> <int id="r">30</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">898</int> <str id="name">heights_topper_1_1314742482589</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1228</int> </object> <object id="snow_splotch_2_1315333415743"> <int id="w">156</int> <int id="z">212</int> <int id="r">2</int> <int id="h">20</int> <int id="y">1046</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2641</int> </object> <object id="cliff_cover_5_1315343217797"> <int id="w">273</int> <int id="z">201</int> <int id="r">-5</int> <int id="h">118</int> <int id="y">962</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2118</int> </object> <object id="snow_patch_5_1315005144916"> <int id="w">383</int> <int id="z">134</int> <int id="h">48</int> <int id="y">1089</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">811</int> </object> <object id="snow_splotch_1_1314918560056"> <int id="w">165</int> <int id="z">72</int> <int id="h">21</int> <int id="y">1029</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">415</int> </object> <object id="snow_splotch_1_1314918560049"> <int id="w">165</int> <int id="z">67</int> <int id="h">21</int> <int id="y">1008</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">379</int> </object> <object id="snow_splotch_2_1315005144903"> <int id="w">215</int> <int id="z">93</int> <int id="h">26</int> <int id="y">1109</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">961</int> </object> <object id="snow_splotch_1_1314918560095"> <int id="w">165</int> <int id="z">116</int> <int id="h">21</int> <int id="y">1093</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1949</int> </object> <object id="snow_splotch_1_1315005144820"> <int id="w">165</int> <int id="z">176</int> <int id="h">21</int> <int id="y">939</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-124</int> </object> <object id="snow_splotch_2_1315333415739"> <int id="w">156</int> <int id="z">204</int> <int id="r">2</int> <int id="h">20</int> <bool id="h_flip">true</bool> <int id="y">1005</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2534</int> </object> <object id="snow_splotch_2_1315333415745"> <int id="w">156</int> <int id="z">210</int> <int id="r">2</int> <int id="h">20</int> <int id="y">1035</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2567</int> </object> <object id="snow_patch_5_1314918560100"> <int id="w">814</int> <int id="z">37</int> <int id="h">80</int> <int id="y">941</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">492</int> </object> <object id="lens_grass_1_1314918560027"> <int id="w">902</int> <int id="z">35</int> <int id="h">125</int> <int id="y">1134</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1813</int> </object> <object id="cliff_cover_5_1315344184358"> <int id="w">339</int> <int id="z">198</int> <int id="r">10</int> <int id="h">147</int> <bool id="h_flip">true</bool> <int id="y">883</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1656</int> </object> <object id="snow_splotch_1_1315005144812"> <int id="w">165</int> <int id="z">166</int> <int id="h">21</int> <int id="y">976</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-654</int> </object> <object id="snow_splotch_2_1315333415735"> <int id="w">156</int> <int id="z">6</int> <int id="r">2</int> <int id="h">20</int> <int id="y">989</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2891</int> </object> <object id="cliff_cover_5_1315344184357"> <int id="w">339</int> <int id="z">197</int> <int id="r">10</int> <int id="h">147</int> <bool id="h_flip">true</bool> <int id="y">959</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1765</int> </object> <object id="cliff_cover_5_1314918560127"> <int id="w">332</int> <int id="z">124</int> <int id="r">-15</int> <int id="h">144</int> <int id="y">1083</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">916</int> </object> <object id="snow_splotch_1_1314918560050"> <int id="w">165</int> <int id="z">66</int> <int id="h">21</int> <int id="y">1009</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">578</int> </object> <object id="cliff_cover_5_1315343217802"> <int id="w">308</int> <int id="z">216</int> <int id="r">-10</int> <int id="h">134</int> <int id="y">900</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2633</int> </object> <object id="snow_splotch_1_1314918560083"> <int id="w">165</int> <int id="z">104</int> <int id="h">21</int> <int id="y">1120</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1840</int> </object> <object id="cliff_cover_5_1315344184355"> <int id="w">302</int> <int id="z">195</int> <int id="r">-5</int> <int id="h">131</int> <int id="y">821</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1096</int> </object> <object id="snow_splotch_2_1315333415738"> <int id="w">156</int> <int id="z">205</int> <int id="r">2</int> <int id="h">20</int> <int id="y">1001</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2636</int> </object> <object id="snow_splotch_1_1315005144909"> <int id="w">165</int> <int id="z">99</int> <int id="h">21</int> <int id="y">1118</int> <str id="name">snow_splotch_1_1315005144907</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1150</int> </object> <object id="lens_grass_1_1315344184367"> <int id="w">303</int> <int id="z">236</int> <int id="r">9</int> <int id="h">58</int> <int id="y">911</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1782</int> </object> <object id="cliff_cover_5_1315333415655"> <int id="w">418</int> <int id="z">202</int> <int id="r">10</int> <int id="h">181</int> <bool id="h_flip">true</bool> <int id="y">1115</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2199</int> </object> <object id="snow_patch_5_1314918560106"> <int id="w">567</int> <int id="z">45</int> <int id="h">80</int> <int id="y">975</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1051</int> </object> <object id="dirt_mountain_snow_cap_1_1314918560019"> <int id="w">228</int> <int id="z">24</int> <int id="h">377</int> <int id="y">682</int> <str id="name">dirt_mountain_snow_cap_1_1314918560015</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">1031</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511837"> <int id="w">259</int> <int id="z">11</int> <int id="h">66</int> <int id="y">896</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">1869</int> </object> <object id="lens_grass_1_1315343217807"> <int id="w">435</int> <int id="z">226</int> <int id="r">4</int> <int id="h">75</int> <int id="y">825</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2617</int> </object> <object id="cliff_cover_3_1315344184361"> <int id="w">218</int> <int id="z">231</int> <int id="r">-30</int> <int id="h">121</int> <int id="y">962</int> <str id="name">cliff_cover_3_1315333415625</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">1705</int> </object> <object id="snow_splotch_2_1315343217811"> <int id="w">224</int> <int id="z">230</int> <int id="r">-2</int> <int id="h">32</int> <int id="y">801</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2660</int> </object> <object id="heights_topper_1_1314742482589"> <int id="w">269</int> <int id="z">17</int> <int id="r">-55</int> <int id="h">69</int> <int id="y">706</int> <str id="name">heights_topper_1_1314742482589</str> <str id="sprite_class">heights_topper_1</str> <int id="x">937</int> </object> <object id="snow_splotch_2_1314918560093"> <int id="w">215</int> <int id="z">112</int> <int id="h">26</int> <int id="y">1040</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2236</int> </object> <object id="snow_splotch_2_1314918560078"> <int id="w">215</int> <int id="z">89</int> <int id="h">26</int> <int id="y">1089</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1243</int> </object> <object id="snow_splotch_2_1314918560075"> <int id="w">215</int> <int id="z">86</int> <int id="h">26</int> <bool id="h_flip">true</bool> <int id="y">1075</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1607</int> </object> <object id="snow_splotch_2_1314983511786"> <int id="w">215</int> <int id="z">141</int> <int id="h">26</int> <int id="y">1040</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3135</int> </object> <object id="snow_splotch_1_1314983511779"> <int id="w">165</int> <int id="z">136</int> <int id="h">21</int> <int id="y">1024</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3706</int> </object> <object id="snow_splotch_1_1314918560061"> <int id="w">165</int> <int id="z">49</int> <int id="h">21</int> <int id="y">1011</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1181</int> </object> <object id="snow_splotch_1_1314918560089"> <int id="w">165</int> <int id="z">110</int> <int id="h">21</int> <int id="y">1066</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">2144</int> </object> <object id="lens_grass_1_1314918560030"> <int id="w">902</int> <int id="z">4</int> <int id="h">125</int> <int id="y">1085</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2860</int> </object> <object id="snow_splotch_2_1314918560090"> <int id="w">215</int> <int id="z">109</int> <int id="h">26</int> <bool id="h_flip">true</bool> <int id="y">1050</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2037</int> </object> <object id="snow_splotch_1_1314918560044"> <int id="w">165</int> <int id="z">51</int> <int id="h">21</int> <int id="y">1004</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">749</int> </object> <object id="snow_splotch_2_1314983511798"> <int id="w">215</int> <int id="z">153</int> <int id="h">26</int> <int id="y">1093</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3535</int> </object> <object id="snow_patch_5_1314918560104"> <int id="w">567</int> <int id="z">42</int> <int id="h">80</int> <int id="y">968</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">130</int> </object> <object id="snow_patch_5_1315005144917"> <int id="w">261</int> <int id="z">189</int> <int id="h">33</int> <int id="y">1036</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1309</int> </object> <object id="snow_splotch_2_1315005144906"> <int id="w">215</int> <int id="z">96</int> <int id="h">26</int> <bool id="h_flip">true</bool> <int id="y">1138</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">916</int> </object> <object id="snow_patch_5_1314918560103"> <int id="w">567</int> <int id="z">41</int> <int id="h">80</int> <int id="y">999</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">815</int> </object> <object id="snow_splotch_1_1314918560064"> <int id="w">165</int> <int id="z">79</int> <int id="h">21</int> <int id="y">1037</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1381</int> </object> <object id="snow_splotch_1_1314918560055"> <int id="w">165</int> <int id="z">73</int> <int id="h">21</int> <int id="y">1028</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">216</int> </object> <object id="snow_splotch_1_1315005144815"> <int id="w">165</int> <int id="z">169</int> <int id="h">21</int> <int id="y">942</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-145</int> </object> <object id="snow_splotch_1_1315005144814"> <int id="w">165</int> <int id="z">170</int> <int id="h">21</int> <int id="y">964</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-198</int> </object> <object id="snow_splotch_2_1315333415736"> <int id="w">156</int> <int id="z">7</int> <int id="r">2</int> <int id="h">20</int> <int id="y">1002</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2837</int> </object> <object id="snow_splotch_1_1314983511795"> <int id="w">165</int> <int id="z">152</int> <int id="h">21</int> <int id="y">1006</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3621</int> </object> <object id="snow_splotch_2_1314983511780"> <int id="w">215</int> <int id="z">135</int> <int id="h">26</int> <int id="y">1008</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3599</int> </object> <object id="snow_splotch_1_1314918560077"> <int id="w">165</int> <int id="z">90</int> <int id="h">21</int> <int id="y">1105</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1350</int> </object> <object id="cliff_cover_3_1315343217806"> <int id="w">253</int> <int id="z">0</int> <int id="r">5</int> <int id="h">141</int> <int id="y">940</int> <str id="name">cliff_cover_3_1315333415625</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">2761</int> </object> <object id="snow_splotch_1_1315005144910"> <int id="w">165</int> <int id="z">100</int> <int id="h">21</int> <int id="y">1158</int> <str id="name">snow_splotch_1_1315005144907</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">842</int> </object> <object id="lens_grass_1_1315414556965"> <int id="w">902</int> <int id="z">61</int> <int id="h">125</int> <int id="y">1245</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">4008</int> </object> <object id="snow_splotch_2_1314918560060"> <int id="w">215</int> <int id="z">74</int> <int id="h">26</int> <int id="y">1018</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">659</int> </object> <object id="snow_splotch_1_1315005144830"> <int id="w">165</int> <int id="z">181</int> <int id="h">21</int> <int id="y">967</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-120</int> </object> <object id="snow_splotch_2_1314918560081"> <int id="w">215</int> <int id="z">92</int> <int id="h">26</int> <int id="y">1094</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1428</int> </object> <object id="lens_grass_1_1314918560031"> <int id="w">902</int> <int id="z">3</int> <int id="h">125</int> <int id="y">1086</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3470</int> </object> <object id="snow_splotch_2_1315343217810"> <int id="w">224</int> <int id="z">229</int> <int id="r">-2</int> <int id="h">32</int> <int id="y">786</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2546</int> </object> <object id="snow_splotch_2_1314983511782"> <int id="w">215</int> <int id="z">137</int> <int id="h">26</int> <int id="y">1033</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3471</int> </object> <object id="cloud_fluffy_1_1315005144914"> <int id="w">1959</int> <int id="z">245</int> <int id="h">463</int> <int id="y">1064</int> <str id="name">cloud_fluffy_1_1314983511840</str> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">1863</int> </object> <object id="snow_splotch_2_1315333415734"> <int id="w">156</int> <int id="z">5</int> <int id="r">2</int> <int id="h">20</int> <bool id="h_flip">true</bool> <int id="y">991</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2763</int> </object> <object id="snow_splotch_1_1315005144828"> <int id="w">165</int> <int id="z">179</int> <int id="h">21</int> <int id="y">1002</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-622</int> </object> <object id="snow_splotch_1_1314918560070"> <int id="w">165</int> <int id="z">85</int> <int id="h">21</int> <int id="y">1056</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1612</int> </object> <object id="snow_splotch_2_1315333415744"> <int id="w">156</int> <int id="z">211</int> <int id="r">2</int> <int id="h">20</int> <int id="y">1031</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2669</int> </object> <object id="snow_splotch_1_1314983511787"> <int id="w">165</int> <int id="z">144</int> <int id="h">21</int> <int id="y">1007</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3498</int> </object> <object id="cliff_cover_5_1315428417749"> <int id="w">308</int> <int id="z">218</int> <int id="r">25</int> <int id="h">134</int> <bool id="h_flip">true</bool> <int id="y">963</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3001</int> </object> <object id="snow_splotch_1_1314983511797"> <int id="w">165</int> <int id="z">154</int> <int id="h">21</int> <int id="y">1109</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3642</int> </object> <object id="snow_splotch_1_1314918560080"> <int id="w">165</int> <int id="z">101</int> <int id="h">21</int> <int id="y">1110</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1535</int> </object> <object id="lens_grass_1_1314918560038"> <int id="w">902</int> <int id="z">28</int> <int id="h">125</int> <int id="y">1106</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">335</int> </object> <object id="cliff_cover_1_1315344184400"> <int id="w">236</int> <int id="z">233</int> <int id="r">30</int> <int id="h">156</int> <bool id="h_flip">true</bool> <int id="y">931</int> <str id="name">cliff_cover_1_1315344184364</str> <str id="sprite_class">cliff_cover_1</str> <int id="x">1251</int> </object> <object id="snow_patch_5_1314983511766"> <int id="w">205</int> <int id="z">130</int> <int id="r">-7</int> <int id="h">35</int> <int id="y">965</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">771</int> </object> <object id="snow_splotch_2_1315343217795"> <int id="w">224</int> <int id="z">250</int> <int id="r">-2</int> <int id="h">32</int> <int id="y">980</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2791</int> </object> <object id="snow_patch_5_1315005145032"> <int id="w">275</int> <int id="z">131</int> <int id="r">3</int> <int id="h">47</int> <int id="y">908</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">981</int> </object> <object id="snow_splotch_1_1315005144827"> <int id="w">165</int> <int id="z">178</int> <int id="h">21</int> <int id="y">993</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-493</int> </object> <object id="cliff_cover_5_1315344184360"> <int id="w">339</int> <int id="z">200</int> <int id="h">147</int> <bool id="h_flip">true</bool> <int id="y">814</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1395</int> </object> <object id="cliff_cover_5_1315428417752"> <int id="w">418</int> <int id="z">248</int> <int id="r">15</int> <int id="h">182</int> <bool id="h_flip">true</bool> <int id="y">1127</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3077</int> </object> <object id="snow_splotch_1_1315005144826"> <int id="w">165</int> <int id="z">177</int> <int id="h">21</int> <int id="y">1015</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-546</int> </object> <object id="snow_splotch_1_1315005144832"> <int id="w">165</int> <int id="z">185</int> <int id="h">21</int> <int id="y">1025</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-785</int> </object> <object id="snow_splotch_1_1314983511791"> <int id="w">165</int> <int id="z">148</int> <int id="h">21</int> <int id="y">1092</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3379</int> </object> <object id="snow_splotch_1_1315005144811"> <int id="w">165</int> <int id="z">167</int> <int id="h">21</int> <int id="y">998</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-707</int> </object> <object id="lens_grass_1_1315343217791"> <int id="w">286</int> <int id="z">249</int> <int id="r">-7</int> <int id="h">56</int> <int id="y">1002</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2793</int> </object> <object id="snow_patch_5_1315005145033"> <int id="w">205</int> <int id="z">193</int> <int id="r">8</int> <int id="h">24</int> <int id="y">1005</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1298</int> </object> <object id="cliff_cover_5_1314918560126"> <int id="w">332</int> <int id="z">123</int> <int id="r">-15</int> <int id="h">144</int> <int id="y">965</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">878</int> </object> <object id="snow_splotch_1_1315005144810"> <int id="w">165</int> <int id="z">162</int> <int id="h">21</int> <int id="y">930</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-760</int> </object> <object id="cliff_cover_5_1315344184356"> <int id="w">302</int> <int id="z">196</int> <int id="h">131</int> <int id="y">774</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1214</int> </object> <object id="cliff_cover_5_1314983511765"> <int id="w">332</int> <int id="z">129</int> <int id="r">30</int> <int id="h">144</int> <bool id="h_flip">true</bool> <int id="y">931</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1049</int> </object> <object id="lens_grass_1_1314918560035"> <int id="w">902</int> <int id="z">63</int> <int id="h">125</int> <int id="y">1195</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2131</int> </object> <object id="snow_splotch_2_1314918560084"> <int id="w">215</int> <int id="z">103</int> <int id="h">26</int> <bool id="h_flip">true</bool> <int id="y">1104</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1734</int> </object> <object id="snow_splotch_2_1315333415742"> <int id="w">156</int> <int id="z">207</int> <int id="r">2</int> <int id="h">20</int> <int id="y">1021</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2714</int> </object> <object id="snow_splotch_1_1315005144837"> <int id="w">165</int> <int id="z">186</int> <int id="h">21</int> <int id="y">1048</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">97</int> </object> <object id="cliff_cover_5_1314918560125"> <int id="w">332</int> <int id="z">122</int> <int id="r">-15</int> <int id="h">144</int> <int id="y">1075</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">743</int> </object> <object id="snow_splotch_1_1315005144829"> <int id="w">165</int> <int id="z">182</int> <int id="h">21</int> <int id="y">976</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-249</int> </object> <object id="snow_splotch_1_1314918560059"> <int id="w">165</int> <int id="z">75</int> <int id="h">21</int> <int id="y">1034</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">766</int> </object> <object id="lens_grass_1_1314918560036"> <int id="w">902</int> <int id="z">64</int> <int id="h">125</int> <int id="y">1181</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1395</int> </object> <object id="cliff_cover_5_1315333415681"> <int id="w">418</int> <int id="z">125</int> <int id="r">10</int> <int id="h">181</int> <bool id="h_flip">true</bool> <int id="y">1097</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2243</int> </object> <object id="cliff_cover_5_1315343217801"> <int id="w">308</int> <int id="z">215</int> <int id="r">-10</int> <int id="h">134</int> <int id="y">870</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2487</int> </object> <object id="lens_grass_1_1314918560040"> <int id="w">902</int> <int id="z">30</int> <int id="h">125</int> <int id="y">1210</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">462</int> </object> <object id="snow_splotch_2_1315344184399"> <int id="w">215</int> <int id="z">246</int> <int id="h">26</int> <int id="y">967</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1836</int> </object> <object id="lens_grass_1_1314918560026"> <int id="w">902</int> <int id="z">26</int> <int id="h">125</int> <int id="y">1096</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1231</int> </object> <object id="lens_grass_1_1315344184365"> <int id="w">455</int> <int id="z">234</int> <int id="r">9</int> <int id="h">70</int> <int id="y">726</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1399</int> </object> <object id="snow_splotch_1_1314918560098"> <int id="w">165</int> <int id="z">119</int> <int id="h">21</int> <int id="y">1100</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">2186</int> </object> <object id="snow_splotch_2_1315344184394"> <int id="w">215</int> <int id="z">241</int> <int id="r">10</int> <int id="h">26</int> <int id="y">719</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1511</int> </object> <object id="snow_splotch_1_1315005144819"> <int id="w">165</int> <int id="z">171</int> <int id="h">21</int> <int id="y">891</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-97</int> </object> <object id="snow_splotch_1_1315005144818"> <int id="w">165</int> <int id="z">172</int> <int id="h">21</int> <int id="y">882</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">32</int> </object> <object id="snow_splotch_1_1315005144806"> <int id="w">165</int> <int id="z">160</int> <int id="h">21</int> <int id="y">908</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-251</int> </object> <object id="snow_splotch_2_1315333415741"> <int id="w">156</int> <int id="z">208</int> <int id="r">2</int> <int id="h">20</int> <int id="y">1017</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2816</int> </object> <object id="snow_splotch_1_1315005144807"> <int id="w">165</int> <int id="z">159</int> <int id="h">21</int> <int id="y">917</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-380</int> </object> <object id="lens_grass_1_1315414556964"> <int id="w">902</int> <int id="z">60</int> <int id="h">125</int> <int id="y">1166</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">4371</int> </object> <object id="snow_patch_5_1315005144919"> <int id="w">261</int> <int id="z">191</int> <int id="h">33</int> <int id="y">1079</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1243</int> </object> <object id="snow_patch_5_1315005144918"> <int id="w">261</int> <int id="z">190</int> <int id="h">33</int> <int id="y">1054</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1207</int> </object> <object id="snow_splotch_2_1314918560054"> <int id="w">215</int> <int id="z">68</int> <int id="h">26</int> <int id="y">987</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">832</int> </object> <object id="snow_splotch_1_1314918560071"> <int id="w">165</int> <int id="z">84</int> <int id="h">21</int> <int id="y">1057</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1811</int> </object> <object id="snow_splotch_1_1314918560053"> <int id="w">165</int> <int id="z">69</int> <int id="h">21</int> <int id="y">1003</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">939</int> </object> <object id="snow_splotch_1_1315005144831"> <int id="w">165</int> <int id="z">180</int> <int id="h">21</int> <int id="y">989</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-173</int> </object> <object id="cliff_cover_5_1315428417750"> <int id="w">308</int> <int id="z">219</int> <int id="r">25</int> <int id="h">134</int> <bool id="h_flip">true</bool> <int id="y">1051</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3075</int> </object> <object id="lens_grass_1_1314996459039"> <int id="w">902</int> <int id="z">33</int> <int id="h">125</int> <int id="y">1085</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">-826</int> </object> <object id="snow_splotch_2_1315333415740"> <int id="w">156</int> <int id="z">209</int> <int id="r">2</int> <int id="h">20</int> <bool id="h_flip">true</bool> <int id="y">1032</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2788</int> </object> <object id="snow_splotch_1_1315005144809"> <int id="w">165</int> <int id="z">163</int> <int id="h">21</int> <int id="y">921</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-631</int> </object> <object id="snow_splotch_2_1314983511784"> <int id="w">215</int> <int id="z">139</int> <int id="h">26</int> <int id="y">1070</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3681</int> </object> <object id="snow_patch_5_1314918560102"> <int id="w">567</int> <int id="z">40</int> <int id="h">80</int> <int id="y">985</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">501</int> </object> <object id="snow_splotch_2_1315005144905"> <int id="w">215</int> <int id="z">95</int> <int id="h">26</int> <int id="y">1135</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1036</int> </object> <object id="snow_patch_5_1314918560101"> <int id="w">567</int> <int id="z">39</int> <int id="h">80</int> <int id="y">953</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">763</int> </object> <object id="snow_splotch_1_1314918560091"> <int id="w">165</int> <int id="z">114</int> <int id="h">21</int> <int id="y">1055</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">2144</int> </object> <object id="snow_splotch_2_1314983511790"> <int id="w">215</int> <int id="z">145</int> <int id="h">26</int> <int id="y">1055</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3386</int> </object> <object id="snow_splotch_1_1314918560052"> <int id="w">165</int> <int id="z">70</int> <int id="h">21</int> <int id="y">1002</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">740</int> </object> <object id="cliff_cover_5_1315343217800"> <int id="w">308</int> <int id="z">214</int> <int id="r">-10</int> <int id="h">134</int> <int id="y">859</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2336</int> </object> <object id="snow_splotch_2_1314918560069"> <int id="w">215</int> <int id="z">80</int> <int id="h">26</int> <int id="y">1052</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1345</int> </object> <object id="snow_patch_5_1314918560108"> <int id="w">567</int> <int id="z">121</int> <int id="h">80</int> <int id="y">1034</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1651</int> </object> <object id="heights_topper_1_1314742482591"> <int id="w">226</int> <int id="z">19</int> <int id="r">-70</int> <int id="h">74</int> <int id="y">550</int> <str id="name">heights_topper_1_1314742482589</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1042</int> </object> <object id="snow_splotch_1_1314983511783"> <int id="w">165</int> <int id="z">140</int> <int id="h">21</int> <int id="y">1086</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3788</int> </object> <object id="snow_splotch_1_1314918560092"> <int id="w">165</int> <int id="z">113</int> <int id="h">21</int> <int id="y">1056</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">2343</int> </object> <object id="snow_splotch_1_1314983511789"> <int id="w">165</int> <int id="z">146</int> <int id="h">21</int> <int id="y">1071</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3493</int> </object> <object id="lens_grass_1_1315005144902"> <int id="w">902</int> <int id="z">2</int> <int id="h">125</int> <int id="y">1244</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">920</int> </object> <object id="snow_splotch_1_1314918560067"> <int id="w">165</int> <int id="z">82</int> <int id="h">21</int> <int id="y">1067</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1253</int> </object> <object id="lens_grass_1_1314983511805"> <int id="w">902</int> <int id="z">57</int> <int id="h">125</int> <int id="y">1234</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3289</int> </object> <object id="lens_grass_1_1315414556966"> <int id="w">902</int> <int id="z">62</int> <int id="h">125</int> <int id="y">1255</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">4595</int> </object> <object id="snow_splotch_2_1314918560099"> <int id="w">215</int> <int id="z">118</int> <int id="h">26</int> <int id="y">1084</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2079</int> </object> <object id="cliff_cover_3_1315343217805"> <int id="w">253</int> <int id="z">225</int> <int id="r">19</int> <int id="h">141</int> <int id="y">915</int> <str id="name">cliff_cover_3_1315333415625</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">2593</int> </object> <object id="snow_splotch_1_1314918560045"> <int id="w">165</int> <int id="z">52</int> <int id="h">21</int> <int id="y">1003</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">550</int> </object> <object id="snow_splotch_1_1315005144817"> <int id="w">165</int> <int id="z">173</int> <int id="h">21</int> <int id="y">904</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-21</int> </object> <object id="heights_topper_1_1314742482593"> <int id="w">226</int> <int id="z">21</int> <int id="r">-70</int> <int id="h">74</int> <int id="y">708</int> <str id="name">heights_topper_1_1314742482589</str> <str id="sprite_class">heights_topper_1</str> <int id="x">979</int> </object> <object id="snow_splotch_1_1314983511785"> <int id="w">165</int> <int id="z">142</int> <int id="h">21</int> <int id="y">1056</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3242</int> </object> <object id="snow_splotch_1_1315005144833"> <int id="w">165</int> <int id="z">184</int> <int id="h">21</int> <int id="y">1016</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-656</int> </object> <object id="lens_grass_1_1315005144901"> <int id="w">902</int> <int id="z">1</int> <int id="h">125</int> <int id="y">1184</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1010</int> </object> <object id="lens_grass_1_1314996459038"> <int id="w">902</int> <int id="z">32</int> <int id="h">125</int> <int id="y">973</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">-54</int> </object> <object id="lens_grass_1_1314918560037"> <int id="w">902</int> <int id="z">27</int> <int id="h">125</int> <int id="y">1079</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">675</int> </object> <object id="snow_patch_5_1315333415682"> <int id="w">275</int> <int id="z">132</int> <int id="r">3</int> <int id="h">47</int> <int id="y">967</int> <str id="name">snow_patch_5_1314918560100</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1161</int> </object> <object id="snow_splotch_2_1315344184397"> <int id="w">215</int> <int id="z">237</int> <int id="r">10</int> <int id="h">26</int> <int id="y">877</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1785</int> </object> <object id="gravel_1_1315344184443"> <int id="w">302</int> <int id="z">38</int> <int id="h">55</int> <int id="y">926</int> <str id="name">gravel_1_1315344184442</str> <str id="sprite_class">gravel_1</str> <int id="x">551</int> </object> <object id="snow_splotch_1_1314983511793"> <int id="w">165</int> <int id="z">150</int> <int id="h">21</int> <int id="y">1031</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3383</int> </object> <object id="lens_grass_1_1314918560028"> <int id="w">902</int> <int id="z">8</int> <int id="h">125</int> <int id="y">1072</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2223</int> </object> <object id="snow_splotch_1_1314918560076"> <int id="w">165</int> <int id="z">91</int> <int id="h">21</int> <int id="y">1104</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1151</int> </object> <object id="lens_grass_1_1314918560034"> <int id="w">902</int> <int id="z">56</int> <int id="h">125</int> <int id="y">1189</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2771</int> </object> <object id="cliff_cover_5_1315343217796"> <int id="w">400</int> <int id="z">239</int> <int id="r">-5</int> <int id="h">173</int> <int id="y">1142</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2007</int> </object> <object id="snow_splotch_1_1315005144803"> <int id="w">165</int> <int id="z">157</int> <int id="h">21</int> <int id="y">887</int> <str id="name">snow_splotch_1_1314918560044</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-161</int> </object> <object id="lens_grass_1_1314918560033"> <int id="w">902</int> <int id="z">55</int> <int id="h">125</int> <int id="y">1182</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3554</int> </object> <object id="cliff_cover_5_1315343217798"> <int id="w">273</int> <int id="z">203</int> <int id="r">-5</int> <int id="h">118</int> <int id="y">899</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2234</int> </object> <object id="snow_splotch_1_1315005144907"> <int id="w">165</int> <int id="z">97</int> <int id="h">21</int> <int id="y">1133</int> <str id="name">snow_splotch_1_1315005144907</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">765</int> </object> <object id="lens_grass_1_1314918560029"> <int id="w">902</int> <int id="z">53</int> <int id="h">125</int> <int id="y">1133</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2383</int> </object> </object> <int id="w">4500</int> <int id="h">1485</int> <int id="z">-1</int> <object id="filtersNEW"> <object id="blur"> <int id="value">2</int> </object> <object id="saturation"> <int id="value">-40</int> </object> <object id="tintColor"> <int id="value">16777215</int> </object> <object id="contrast"> <int id="value">20</int> </object> <object id="tintAmount"> <int id="value">0</int> </object> <object id="brightness"> <int id="value">19</int> </object> </object> </object> <object id="T_1314039143687"> <str id="name">BG2</str> <object id="decos"> <object id="dirt_mountain_1_1315344184374"> <int id="w">223</int> <int id="z">73</int> <int id="h">367</int> <int id="y">773</int> <str id="name">dirt_mountain_1_1315344184370</str> <str id="sprite_class">dirt_mountain_1</str> <int id="x">635</int> </object> <object id="cliff_cover_5_1315428417800"> <int id="w">365</int> <int id="z">105</int> <int id="r">-10</int> <int id="h">159</int> <int id="y">835</int> <str id="name">cliff_cover_5_1315428417799</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3750</int> </object> <object id="lens_grass_1_1315418218310"> <int id="w">902</int> <int id="z">6</int> <int id="h">125</int> <int id="y">1015</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3894</int> </object> <object id="cliff_cover_5_1314996459052"> <int id="w">394</int> <int id="z">59</int> <int id="r">15</int> <int id="h">172</int> <bool id="h_flip">true</bool> <int id="y">1002</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">661</int> </object> <object id="dirt_mountain_snow_cap_1_1315344184390"> <int id="w">108</int> <int id="z">92</int> <int id="h">179</int> <int id="y">791</int> <str id="name">dirt_mountain_snow_cap_1_1315344184390</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2000</int> </object> <object id="dirt_mountain_1_1315344184373"> <int id="w">223</int> <int id="z">72</int> <int id="h">367</int> <int id="y">980</int> <str id="name">dirt_mountain_1_1315344184370</str> <str id="sprite_class">dirt_mountain_1</str> <int id="x">555</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511836"> <int id="w">377</int> <int id="z">68</int> <int id="h">104</int> <int id="y">872</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">1945</int> </object> <object id="lens_grass_1_1315333415679"> <int id="w">913</int> <int id="z">9</int> <int id="h">56</int> <int id="y">894</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2315</int> </object> <object id="cliff_cover_5_1314996459054"> <int id="w">394</int> <int id="z">60</int> <int id="r">15</int> <int id="h">172</int> <bool id="h_flip">true</bool> <int id="y">1010</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">417</int> </object> <object id="snow_splotch_2_1315428417760"> <int id="w">125</int> <int id="z">16</int> <int id="h">15</int> <int id="y">963</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2175</int> </object> <object id="snow_splotch_1_1315428417766"> <int id="w">165</int> <int id="z">24</int> <int id="h">21</int> <int id="y">954</int> <str id="name">snow_splotch_1_1315428417765</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">2358</int> </object> <object id="heights_coniferous_1_1315428417818"> <int id="w">145</int> <int id="z">132</int> <int id="h">353</int> <int id="y">982</int> <str id="name">heights_coniferous_1_1315428417818</str> <str id="sprite_class">heights_coniferous_1</str> <int id="x">3849</int> </object> <object id="dirt_mountain_1_1315344184387"> <int id="w">223</int> <int id="z">74</int> <int id="h">367</int> <int id="y">1033</int> <str id="name">dirt_mountain_1_1315344184370</str> <str id="sprite_class">dirt_mountain_1</str> <int id="x">1671</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511818"> <int id="w">78</int> <int id="z">44</int> <int id="r">-20</int> <int id="h">129</int> <int id="y">919</int> <str id="name">dirt_mountain_snow_cap_1_1314983511809</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3222</int> </object> <object id="lens_grass_1_1315428417757"> <int id="w">913</int> <int id="z">13</int> <int id="h">56</int> <int id="y">964</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2462</int> </object> <object id="heights_coniferous_4_1315428417817"> <int id="w">142</int> <int id="z">125</int> <int id="h">252</int> <int id="y">951</int> <str id="name">heights_coniferous_4_1315428417817</str> <str id="sprite_class">heights_coniferous_4</str> <int id="x">3682</int> </object> <object id="gravel_1_1314996458933"> <int id="w">280</int> <int id="z">53</int> <int id="h">51</int> <int id="y">843</int> <str id="name">gravel_1_1314996458932</str> <str id="sprite_class">gravel_1</str> <int id="x">1632</int> </object> <object id="snow_splotch_2_1315428417771"> <int id="w">125</int> <int id="z">121</int> <int id="h">15</int> <int id="y">919</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2192</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511821"> <int id="w">190</int> <int id="z">46</int> <int id="h">98</int> <int id="y">868</int> <str id="name">dirt_mountain_snow_cap_1_1314983511809</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2871</int> </object> <object id="dirt_mountain_snow_cap_2_1315344184382"> <int id="w">58</int> <int id="z">90</int> <int id="h">91</int> <int id="y">780</int> <str id="name">dirt_mountain_snow_cap_2_1315344184382</str> <str id="sprite_class">dirt_mountain_snow_cap_2</str> <int id="x">418</int> </object> <object id="snow_patch_6_1315418218314"> <int id="w">636</int> <int id="z">104</int> <int id="h">78</int> <int id="y">890</int> <str id="name">snow_patch_6_1315418218314</str> <str id="sprite_class">snow_patch_6</str> <int id="x">3775</int> </object> <object id="lens_grass_1_1315418218309"> <int id="w">902</int> <int id="z">5</int> <int id="h">125</int> <int id="y">971</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3535</int> </object> <object id="heights_coniferous_2_1315428417816"> <int id="w">106</int> <int id="z">114</int> <int id="h">190</int> <int id="y">911</int> <str id="name">heights_coniferous_2_1315428417816</str> <str id="sprite_class">heights_coniferous_2</str> <int id="x">3927</int> </object> <object id="lens_grass_1_1315428417756"> <int id="w">913</int> <int id="z">12</int> <int id="h">56</int> <int id="y">951</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2189</int> </object> <object id="dirt_mountain_snow_cap_1_1315005144787"> <int id="w">586</int> <int id="z">61</int> <int id="h">104</int> <int id="y">875</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">-91</int> </object> <object id="snow_splotch_1_1315428417822"> <int id="w">165</int> <int id="z">129</int> <int id="h">21</int> <int id="y">980</int> <str id="name">snow_splotch_1_1315428417821</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3749</int> </object> <object id="cliff_cover_5_1315428417804"> <int id="w">365</int> <int id="z">107</int> <int id="r">-25</int> <int id="h">159</int> <int id="y">917</int> <str id="name">cliff_cover_5_1315428417799</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3832</int> </object> <object id="heights_bush_1_1315428417810"> <int id="w">47</int> <int id="z">116</int> <int id="h">28</int> <int id="y">923</int> <str id="name">heights_bush_1_1315428417806</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3510</int> </object> <object id="snow_splotch_1_1315428417823"> <int id="w">165</int> <int id="z">130</int> <int id="h">21</int> <int id="y">935</int> <str id="name">snow_splotch_1_1315428417821</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3409</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511809"> <int id="w">352</int> <int id="z">42</int> <int id="h">339</int> <int id="y">737</int> <str id="name">dirt_mountain_snow_cap_1_1314983511809</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2926</int> </object> <object id="heights_topper_1_1314233768757"> <int id="w">191</int> <int id="z">32</int> <int id="r">10</int> <int id="h">50</int> <bool id="h_flip">true</bool> <int id="y">717</int> <str id="name">heights_topper_1_1314231624073</str> <str id="sprite_class">heights_topper_1</str> <int id="x">2864</int> </object> <object id="gravel_1_1314996458938"> <int id="w">218</int> <int id="z">55</int> <int id="h">39</int> <bool id="h_flip">true</bool> <int id="y">977</int> <str id="name">gravel_1_1314996458932</str> <str id="sprite_class">gravel_1</str> <int id="x">3050</int> </object> <object id="dirt_mountain_snow_cap_1_1315344184381"> <int id="w">74</int> <int id="z">81</int> <int id="h">126</int> <int id="y">713</int> <str id="name">dirt_mountain_snow_cap_1_1315344184380</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">323</int> </object> <object id="snow_splotch_1_1315428417824"> <int id="w">165</int> <int id="z">131</int> <int id="h">21</int> <int id="y">991</int> <str id="name">snow_splotch_1_1315428417821</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3991</int> </object> <object id="heights_topper_1_1314233768758"> <int id="w">158</int> <int id="z">31</int> <int id="r">-5</int> <int id="h">41</int> <int id="y">651</int> <str id="name">heights_topper_1_1314231624073</str> <str id="sprite_class">heights_topper_1</str> <int id="x">2804</int> </object> <object id="snow_splotch_1_1315428417767"> <int id="w">165</int> <int id="z">124</int> <int id="h">21</int> <int id="y">918</int> <str id="name">snow_splotch_1_1315428417765</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">2294</int> </object> <object id="cliff_cover_5_1315428417801"> <int id="w">365</int> <int id="z">102</int> <int id="r">-10</int> <int id="h">159</int> <int id="y">765</int> <str id="name">cliff_cover_5_1315428417799</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3921</int> </object> <object id="dirt_mountain_snow_cap_1_1315005144796"> <int id="w">586</int> <int id="z">64</int> <int id="h">104</int> <int id="y">959</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">-300</int> </object> <object id="cliff_cover_5_1315333415671"> <int id="w">518</int> <int id="z">27</int> <int id="r">30</int> <int id="h">244</int> <bool id="h_flip">true</bool> <int id="y">979</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3097</int> </object> <object id="lens_grass_1_1315428417758"> <int id="w">913</int> <int id="z">14</int> <int id="h">56</int> <int id="y">978</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2211</int> </object> <object id="dirt_mountain_snow_cap_1_1315344184383"> <int id="w">74</int> <int id="z">82</int> <int id="h">126</int> <int id="y">849</int> <str id="name">dirt_mountain_snow_cap_1_1315344184380</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">248</int> </object> <object id="dirt_mountain_1_1315344184388"> <int id="w">223</int> <int id="z">75</int> <int id="h">367</int> <int id="y">1074</int> <str id="name">dirt_mountain_1_1315344184370</str> <str id="sprite_class">dirt_mountain_1</str> <int id="x">1818</int> </object> <object id="snow_splotch_2_1315428417773"> <int id="w">125</int> <int id="z">86</int> <int id="h">15</int> <int id="y">927</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2111</int> </object> <object id="heights_bush_1_1315428417808"> <int id="w">47</int> <int id="z">111</int> <int id="h">28</int> <int id="y">896</int> <str id="name">heights_bush_1_1315428417806</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3969</int> </object> <object id="lens_grass_1_1315418218311"> <int id="w">902</int> <int id="z">7</int> <int id="h">125</int> <int id="y">1028</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3254</int> </object> <object id="dirt_mountain_snow_cap_1_1315344184392"> <int id="w">108</int> <int id="z">94</int> <int id="h">179</int> <int id="y">832</int> <str id="name">dirt_mountain_snow_cap_1_1315344184390</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">1671</int> </object> <object id="snow_splotch_2_1315428417763"> <int id="w">125</int> <int id="z">19</int> <int id="h">15</int> <int id="y">943</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2144</int> </object> <object id="snow_splotch_2_1315414556948"> <int id="w">215</int> <int id="z">100</int> <int id="h">26</int> <int id="y">932</int> <str id="name">snow_splotch_2_1315414556948</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">949</int> </object> <object id="snow_splotch_1_1315414556946"> <int id="w">165</int> <int id="z">97</int> <int id="h">21</int> <int id="y">910</int> <str id="name">snow_splotch_1_1315414556943</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1084</int> </object> <object id="heights_bush_1_1315428417807"> <int id="w">47</int> <int id="z">110</int> <int id="h">28</int> <int id="y">901</int> <str id="name">heights_bush_1_1315428417806</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3882</int> </object> <object id="snow_splotch_1_1315428417821"> <int id="w">165</int> <int id="z">128</int> <int id="h">21</int> <int id="y">957</int> <str id="name">snow_splotch_1_1315428417821</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3674</int> </object> <object id="dirt_mountain_dirt_cap_1_1315344184377"> <int id="w">117</int> <int id="z">78</int> <int id="h">193</int> <int id="y">916</int> <str id="name">dirt_mountain_dirt_cap_1_1315344184376</str> <str id="sprite_class">dirt_mountain_dirt_cap_1</str> <int id="x">249</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511817"> <int id="w">113</int> <int id="z">43</int> <int id="h">187</int> <int id="y">875</int> <str id="name">dirt_mountain_snow_cap_1_1314983511809</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3135</int> </object> <object id="snow_patch_5_1314983511803"> <int id="w">474</int> <int id="z">40</int> <int id="h">51</int> <int id="y">1013</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">3360</int> </object> <object id="dirt_mountain_dirt_cap_1_1315344184376"> <int id="w">57</int> <int id="z">77</int> <int id="h">94</int> <int id="y">732</int> <str id="name">dirt_mountain_dirt_cap_1_1315344184376</str> <str id="sprite_class">dirt_mountain_dirt_cap_1</str> <int id="x">171</int> </object> <object id="cliff_cover_5_1315428417799"> <int id="w">365</int> <int id="z">106</int> <int id="r">-10</int> <int id="h">159</int> <int id="y">938</int> <str id="name">cliff_cover_5_1315428417799</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3600</int> </object> <object id="snow_patch_5_1314983511830"> <int id="w">572</int> <int id="z">49</int> <int id="h">66</int> <int id="y">866</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1775</int> </object> <object id="snow_patch_5_1314983511801"> <int id="w">474</int> <int id="z">37</int> <int id="h">51</int> <int id="y">976</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">3190</int> </object> <object id="lens_grass_1_1315344184369"> <int id="w">902</int> <int id="z">67</int> <int id="h">125</int> <int id="y">1035</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1756</int> </object> <object id="lens_grass_1_1315428417754"> <int id="w">913</int> <int id="z">10</int> <int id="h">56</int> <int id="y">919</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2279</int> </object> <object id="cliff_cover_5_1314996459043"> <int id="w">394</int> <int id="z">34</int> <int id="r">15</int> <int id="h">172</int> <bool id="h_flip">true</bool> <int id="y">1000</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">132</int> </object> <object id="dirt_mountain_snow_cap_1_1315344184385"> <int id="w">666</int> <int id="z">84</int> <int id="h">90</int> <int id="y">904</int> <str id="name">dirt_mountain_snow_cap_1_1315344184380</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">117</int> </object> <object id="snow_splotch_2_1315428417819"> <int id="w">215</int> <int id="z">126</int> <int id="h">26</int> <int id="y">940</int> <str id="name">snow_splotch_2_1315428417819</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3920</int> </object> <object id="heights_bush_1_1315428417809"> <int id="w">47</int> <int id="z">115</int> <int id="h">28</int> <int id="y">920</int> <str id="name">heights_bush_1_1315428417806</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3779</int> </object> <object id="snow_patch_4_1315428417774"> <int id="w">148</int> <int id="z">88</int> <int id="h">22</int> <int id="y">940</int> <str id="name">snow_patch_4_1315428417774</str> <str id="sprite_class">snow_patch_4</str> <int id="x">2312</int> </object> <object id="gravel_1_1314996458937"> <int id="w">218</int> <int id="z">54</int> <int id="h">39</int> <bool id="h_flip">true</bool> <int id="y">960</int> <str id="name">gravel_1_1314996458932</str> <str id="sprite_class">gravel_1</str> <int id="x">2918</int> </object> <object id="dirt_mountain_snow_cap_1_1315005144794"> <int id="w">586</int> <int id="z">63</int> <int id="h">104</int> <int id="y">878</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">-66</int> </object> <object id="snow_patch_5_1314983511831"> <int id="w">572</int> <int id="z">50</int> <int id="h">66</int> <int id="y">904</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1759</int> </object> <object id="snow_splotch_1_1315428417826"> <int id="w">165</int> <int id="z">23</int> <int id="h">21</int> <int id="y">884</int> <str id="name">snow_splotch_1_1315428417821</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3413</int> </object> <object id="heights_bush_1_1315428417811"> <int id="w">47</int> <int id="z">117</int> <int id="h">28</int> <int id="y">935</int> <str id="name">heights_bush_1_1315428417806</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3675</int> </object> <object id="lens_grass_1_1315418218312"> <int id="w">902</int> <int id="z">4</int> <int id="h">125</int> <int id="y">933</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">4026</int> </object> <object id="heights_bush_1_1315428417806"> <int id="w">47</int> <int id="z">109</int> <int id="h">28</int> <int id="y">893</int> <str id="name">heights_bush_1_1315428417806</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3943</int> </object> <object id="cliff_cover_5_1314996459045"> <int id="w">394</int> <int id="z">57</int> <int id="r">-15</int> <int id="h">172</int> <int id="y">982</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-377</int> </object> <object id="dirt_mountain_snow_cap_1_1315005144797"> <int id="w">586</int> <int id="z">65</int> <int id="h">104</int> <int id="y">917</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">5</int> </object> <object id="snow_splotch_2_1315428417762"> <int id="w">125</int> <int id="z">18</int> <int id="h">15</int> <int id="y">955</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2256</int> </object> <object id="lens_grass_1_1315333415680"> <int id="w">902</int> <int id="z">8</int> <int id="h">125</int> <int id="y">1007</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1054</int> </object> <object id="snow_patch_5_1314983511800"> <int id="w">474</int> <int id="z">36</int> <int id="h">51</int> <int id="y">987</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">3463</int> </object> <object id="dirt_mountain_snow_cap_1_1315344184384"> <int id="w">175</int> <int id="z">83</int> <int id="h">298</int> <int id="y">677</int> <str id="name">dirt_mountain_snow_cap_1_1315344184380</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">637</int> </object> <object id="snow_patch_5_1314983511833"> <int id="w">572</int> <int id="z">52</int> <int id="h">66</int> <int id="y">858</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1577</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511810"> <int id="w">177</int> <int id="z">48</int> <int id="r">25</int> <int id="h">293</int> <int id="y">808</int> <str id="name">dirt_mountain_snow_cap_1_1314983511809</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2712</int> </object> <object id="dirt_mountain_1_1315344184372"> <int id="w">223</int> <int id="z">71</int> <int id="h">367</int> <int id="y">1065</int> <str id="name">dirt_mountain_1_1315344184370</str> <str id="sprite_class">dirt_mountain_1</str> <int id="x">416</int> </object> <object id="snow_splotch_1_1315414556947"> <int id="w">165</int> <int id="z">98</int> <int id="h">21</int> <int id="y">934</int> <str id="name">snow_splotch_1_1315414556943</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1129</int> </object> <object id="dirt_mountain_1_1315344184375"> <int id="w">223</int> <int id="z">76</int> <int id="h">367</int> <int id="y">920</int> <str id="name">dirt_mountain_1_1315344184370</str> <str id="sprite_class">dirt_mountain_1</str> <int id="x">697</int> </object> <object id="cliff_cover_5_1315428417805"> <int id="w">365</int> <int id="z">108</int> <int id="r">-25</int> <int id="h">159</int> <int id="y">886</int> <str id="name">cliff_cover_5_1315428417799</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">4042</int> </object> <object id="snow_splotch_1_1315428417825"> <int id="w">165</int> <int id="z">22</int> <int id="h">21</int> <int id="y">910</int> <str id="name">snow_splotch_1_1315428417821</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3320</int> </object> <object id="lens_grass_1_1315428417755"> <int id="w">913</int> <int id="z">11</int> <int id="h">56</int> <int id="y">935</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2379</int> </object> <object id="snow_patch_5_1314983511802"> <int id="w">474</int> <int id="z">39</int> <int id="h">51</int> <int id="y">967</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">2885</int> </object> <object id="snow_splotch_2_1315414556949"> <int id="w">215</int> <int id="z">101</int> <int id="h">26</int> <int id="y">960</int> <str id="name">snow_splotch_2_1315414556948</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1015</int> </object> <object id="lens_grass_1_1315428417833"> <int id="w">575</int> <int id="z">1</int> <int id="h">80</int> <int id="y">941</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1252</int> </object> <object id="heights_bush_1_1315428417812"> <int id="w">47</int> <int id="z">118</int> <int id="h">28</int> <int id="y">937</int> <str id="name">heights_bush_1_1315428417806</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3714</int> </object> <object id="heights_topper_1_1314233768741"> <int id="w">191</int> <int id="z">33</int> <int id="r">5</int> <int id="h">50</int> <int id="y">748</int> <str id="name">heights_topper_1_1314231624073</str> <str id="sprite_class">heights_topper_1</str> <int id="x">2875</int> </object> <object id="snow_splotch_2_1315428417820"> <int id="w">215</int> <int id="z">127</int> <int id="h">26</int> <int id="y">960</int> <str id="name">snow_splotch_2_1315428417819</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">3860</int> </object> <object id="lens_grass_1_1315428417831"> <int id="w">582</int> <int id="z">2</int> <int id="h">81</int> <int id="y">972</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1517</int> </object> <object id="snow_splotch_2_1315428417764"> <int id="w">125</int> <int id="z">20</int> <int id="h">15</int> <int id="y">947</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2497</int> </object> <object id="gravel_1_1315344184445"> <int id="w">207</int> <int id="z">85</int> <int id="h">38</int> <int id="y">869</int> <str id="name">gravel_1_1315344184442</str> <str id="sprite_class">gravel_1</str> <int id="x">-266</int> </object> <object id="snow_splotch_2_1315414556950"> <int id="w">215</int> <int id="z">103</int> <int id="h">26</int> <int id="y">963</int> <str id="name">snow_splotch_2_1315414556948</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1216</int> </object> <object id="snow_splotch_2_1315428417761"> <int id="w">125</int> <int id="z">17</int> <int id="h">15</int> <int id="y">974</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2280</int> </object> <object id="cliff_cover_2_1314233768765"> <int id="w">297</int> <int id="z">30</int> <int id="r">90</int> <int id="h">457</int> <int id="y">844</int> <str id="name">cliff_cover_2_1314223536592</str> <str id="sprite_class">cliff_cover_2</str> <int id="x">2684</int> </object> <object id="lens_grass_1_1315428417832"> <int id="w">575</int> <int id="z">0</int> <int id="h">80</int> <int id="y">922</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">989</int> </object> <object id="cliff_cover_5_1314233768771"> <int id="w">518</int> <int id="z">28</int> <int id="r">-30</int> <int id="h">244</int> <int id="y">805</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2880</int> </object> <object id="dirt_mountain_dirt_cap_1_1315344184379"> <int id="w">125</int> <int id="z">79</int> <int id="h">280</int> <int id="y">941</int> <str id="name">dirt_mountain_dirt_cap_1_1315344184376</str> <str id="sprite_class">dirt_mountain_dirt_cap_1</str> <int id="x">698</int> </object> <object id="lens_grass_1_1315418218313"> <int id="w">902</int> <int id="z">3</int> <int id="h">125</int> <int id="y">952</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3358</int> </object> <object id="snow_splotch_2_1315428417769"> <int id="w">125</int> <int id="z">122</int> <int id="h">15</int> <int id="y">911</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2433</int> </object> <object id="cliff_cover_5_1314233768770"> <int id="w">393</int> <int id="z">29</int> <int id="r">40</int> <int id="h">199</int> <bool id="h_flip">true</bool> <int id="y">736</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2935</int> </object> <object id="snow_splotch_1_1315414556945"> <int id="w">165</int> <int id="z">95</int> <int id="h">21</int> <int id="y">922</int> <str id="name">snow_splotch_1_1315414556943</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1222</int> </object> <object id="dirt_mountain_1_1315344184370"> <int id="w">167</int> <int id="z">69</int> <int id="h">275</int> <int id="y">933</int> <str id="name">dirt_mountain_1_1315344184370</str> <str id="sprite_class">dirt_mountain_1</str> <int id="x">172</int> </object> <object id="dirt_mountain_1_1315344184371"> <int id="w">223</int> <int id="z">70</int> <int id="h">367</int> <int id="y">969</int> <str id="name">dirt_mountain_1_1315344184370</str> <str id="sprite_class">dirt_mountain_1</str> <int id="x">324</int> </object> <object id="lens_grass_1_1315428417759"> <int id="w">913</int> <int id="z">15</int> <int id="h">56</int> <int id="y">992</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2425</int> </object> <object id="heights_topper_1_1314898648645"> <int id="w">155</int> <int id="z">35</int> <int id="r">-50</int> <int id="h">45</int> <int id="y">894</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">608</int> </object> <object id="snow_splotch_2_1315428417772"> <int id="w">125</int> <int id="z">120</int> <int id="h">15</int> <int id="y">938</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2216</int> </object> <object id="gravel_1_1314996458936"> <int id="w">218</int> <int id="z">38</int> <int id="h">39</int> <int id="y">968</int> <str id="name">gravel_1_1314996458932</str> <str id="sprite_class">gravel_1</str> <int id="x">3218</int> </object> <object id="gravel_1_1314996458939"> <int id="w">218</int> <int id="z">56</int> <int id="h">39</int> <bool id="h_flip">true</bool> <int id="y">989</int> <str id="name">gravel_1_1314996458932</str> <str id="sprite_class">gravel_1</str> <int id="x">3438</int> </object> <object id="snow_patch_5_1314983511832"> <int id="w">572</int> <int id="z">51</int> <int id="h">66</int> <int id="y">888</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1358</int> </object> <object id="snow_splotch_2_1315428417770"> <int id="w">125</int> <int id="z">87</int> <int id="h">15</int> <int id="y">907</int> <str id="name">snow_splotch_2_1315428417760</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2080</int> </object> <object id="dirt_mountain_snow_cap_1_1315344184380"> <int id="w">66</int> <int id="z">80</int> <int id="h">126</int> <int id="y">754</int> <str id="name">dirt_mountain_snow_cap_1_1315344184380</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">170</int> </object> <object id="dirt_mountain_1_1315344184389"> <int id="w">223</int> <int id="z">91</int> <int id="h">367</int> <int id="y">999</int> <str id="name">dirt_mountain_1_1315344184370</str> <str id="sprite_class">dirt_mountain_1</str> <int id="x">2003</int> </object> <object id="snow_splotch_1_1315428417768"> <int id="w">165</int> <int id="z">123</int> <int id="h">21</int> <int id="y">939</int> <str id="name">snow_splotch_1_1315428417765</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">2378</int> </object> <object id="gravel_1_1315344184444"> <int id="w">207</int> <int id="z">89</int> <int id="h">38</int> <int id="y">852</int> <str id="name">gravel_1_1315344184442</str> <str id="sprite_class">gravel_1</str> <int id="x">71</int> </object> <object id="snow_patch_5_1314983511804"> <int id="w">474</int> <int id="z">41</int> <int id="h">51</int> <int id="y">999</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">3027</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511819"> <int id="w">113</int> <int id="z">47</int> <int id="r">-15</int> <int id="h">187</int> <int id="y">811</int> <str id="name">dirt_mountain_snow_cap_1_1314983511809</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3141</int> </object> <object id="snow_splotch_1_1315414556951"> <int id="w">165</int> <int id="z">96</int> <int id="r">-5</int> <int id="h">21</int> <int id="y">909</int> <str id="name">snow_splotch_1_1315414556943</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">936</int> </object> <object id="heights_bush_2_1315428417814"> <int id="w">49</int> <int id="z">112</int> <int id="h">23</int> <int id="y">933</int> <str id="name">heights_bush_2_1315428417813</str> <str id="sprite_class">heights_bush_2</str> <int id="x">3646</int> </object> <object id="heights_bush_2_1315428417815"> <int id="w">49</int> <int id="z">113</int> <int id="h">23</int> <int id="y">917</int> <str id="name">heights_bush_2_1315428417813</str> <str id="sprite_class">heights_bush_2</str> <int id="x">3844</int> </object> <object id="dirt_mountain_snow_cap_1_1315005144793"> <int id="w">586</int> <int id="z">62</int> <int id="h">104</int> <int id="y">916</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">-270</int> </object> <object id="cliff_cover_5_1315428417802"> <int id="w">365</int> <int id="z">99</int> <int id="r">-10</int> <int id="h">159</int> <int id="y">662</int> <str id="name">cliff_cover_5_1315428417799</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">4091</int> </object> <object id="heights_bush_2_1315428417813"> <int id="w">49</int> <int id="z">119</int> <int id="h">23</int> <int id="y">929</int> <str id="name">heights_bush_2_1315428417813</str> <str id="sprite_class">heights_bush_2</str> <int id="x">3541</int> </object> <object id="dirt_mountain_snow_cap_1_1315005144790"> <int id="w">274</int> <int id="z">66</int> <int id="h">98</int> <int id="y">877</int> <str id="name">dirt_mountain_snow_cap_1_1314983511809</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">-355</int> </object> <object id="snow_splotch_1_1315428417765"> <int id="w">165</int> <int id="z">21</int> <int id="h">21</int> <int id="y">975</int> <str id="name">snow_splotch_1_1315428417765</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">2442</int> </object> <object id="dirt_mountain_snow_cap_1_1314983511820"> <int id="w">190</int> <int id="z">45</int> <int id="r">15</int> <int id="h">98</int> <int id="y">897</int> <str id="name">dirt_mountain_snow_cap_1_1314983511809</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2644</int> </object> <object id="cliff_cover_5_1314233768773"> <int id="w">518</int> <int id="z">26</int> <int id="r">-20</int> <int id="h">244</int> <int id="y">1016</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2719</int> </object> <object id="dirt_mountain_snow_cap_1_1315344184391"> <int id="w">108</int> <int id="z">93</int> <int id="h">179</int> <int id="y">875</int> <str id="name">dirt_mountain_snow_cap_1_1315344184390</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">1817</int> </object> <object id="cliff_cover_5_1314996459046"> <int id="w">394</int> <int id="z">58</int> <int id="r">-15</int> <int id="h">172</int> <int id="y">998</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-187</int> </object> <object id="cloud_fluffy_1_1314137830556"> <int id="w">1269</int> <int id="z">25</int> <int id="h">236</int> <int id="y">170</int> <str id="name">cloud_fluffy_1_1314137830555</str> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">23</int> </object> </object> <int id="w">4000</int> <int id="h">1470</int> <int id="z">-2</int> <object id="filtersNEW"> <object id="blur"> <int id="value">3</int> </object> <object id="saturation"> <int id="value">-45</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">27</int> </object> <object id="brightness"> <int id="value">36</int> </object> </object> </object> <object id="T_1314039143683"> <str id="name">Sky</str> <object id="decos"> <object id="lens_grass_1_1314637852636"> <int id="w">378</int> <int id="z">77</int> <int id="h">29</int> <int id="y">923</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2217</int> </object> <object id="pampas_2_1315418218147"> <int id="w">16</int> <int id="z">182</int> <int id="h">24</int> <int id="y">810</int> <str id="name">pampas_2_1314233768604</str> <str id="sprite_class">pampas_2</str> <int id="x">5086</int> </object> <object id="heights_moss_3_1314233768733"> <int id="w">79</int> <int id="z">11</int> <int id="h">30</int> <int id="y">840</int> <str id="name">heights_moss_3_1314137830441</str> <str id="sprite_class">heights_moss_3</str> <int id="x">4859</int> </object> <object id="heights_bush_1_1314233768653"> <int id="w">36</int> <int id="z">46</int> <int id="h">21</int> <int id="y">656</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3961</int> </object> <object id="cliff_cover_5_1315418218189"> <int id="w">296</int> <int id="z">140</int> <int id="r">35</int> <int id="h">150</int> <bool id="h_flip">true</bool> <int id="y">804</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">5094</int> </object> <object id="lens_grass_1_1314637852618"> <int id="w">378</int> <int id="z">3</int> <int id="h">29</int> <int id="y">889</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1612</int> </object> <object id="lens_grass_1_1315428417789"> <int id="w">133</int> <int id="z">337</int> <int id="h">19</int> <int id="y">758</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3173</int> </object> <object id="cliff_cover_5_1315418218202"> <int id="w">238</int> <int id="z">318</int> <int id="r">-30</int> <int id="h">96</int> <int id="y">717</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3154</int> </object> <object id="heights_moss_2_1315418218163"> <int id="w">69</int> <int id="z">166</int> <int id="r">-15</int> <int id="h">15</int> <int id="y">657</int> <str id="name">heights_moss_2_1314231624100</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5067</int> </object> <object id="heights_bush_1_1314233768692"> <int id="w">29</int> <int id="z">28</int> <int id="h">17</int> <int id="y">813</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3967</int> </object> <object id="heights_topper_1_1315418218236"> <int id="w">148</int> <int id="z">280</int> <int id="r">-50</int> <int id="h">38</int> <int id="y">680</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1092</int> </object> <object id="heights_topper_1_1314233768663"> <int id="w">97</int> <int id="z">36</int> <int id="h">25</int> <int id="y">661</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4014</int> </object> <object id="heights_topper_1_1315418218239"> <int id="w">148</int> <int id="z">277</int> <int id="r">60</int> <int id="h">38</int> <int id="y">590</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1097</int> </object> <object id="heights_topper_2_1315418218289"> <int id="w">62</int> <int id="z">222</int> <int id="r">15</int> <int id="h">21</int> <int id="y">692</int> <str id="name">heights_topper_2_1314231624103</str> <str id="sprite_class">heights_topper_2</str> <int id="x">5009</int> </object> <object id="lens_grass_1_1315418218245"> <int id="w">378</int> <int id="z">266</int> <int id="h">29</int> <int id="y">777</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2957</int> </object> <object id="cliff_cover_5_1315418218207"> <int id="w">244</int> <int id="z">312</int> <int id="r">85</int> <int id="h">73</int> <int id="y">678</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3205</int> </object> <object id="lens_grass_1_1315428417797"> <int id="w">378</int> <int id="z">271</int> <int id="r">1</int> <int id="h">29</int> <int id="y">811</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2769</int> </object> <object id="cliff_cover_5_1315333415723"> <int id="w">242</int> <int id="z">105</int> <int id="r">20</int> <int id="h">98</int> <bool id="h_flip">true</bool> <int id="y">924</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2700</int> </object> <object id="heights_bush_2_1314233768687"> <int id="w">44</int> <int id="z">32</int> <int id="h">21</int> <int id="y">821</int> <str id="name">heights_bush_2_1314223536547</str> <str id="sprite_class">heights_bush_2</str> <int id="x">3955</int> </object> <object id="cliff_cover_5_1315418218113"> <int id="w">183</int> <int id="z">197</int> <int id="r">75</int> <int id="h">74</int> <int id="y">731</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3672</int> </object> <object id="heights_moss_1_1315418218160"> <int id="w">72</int> <int id="z">169</int> <int id="r">-10</int> <int id="h">39</int> <int id="y">973</int> <str id="name">heights_moss_1_1314233768598</str> <str id="sprite_class">heights_moss_1</str> <int id="x">5929</int> </object> <object id="lens_grass_1_1315418218254"> <int id="w">378</int> <int id="z">257</int> <int id="r">2</int> <int id="h">29</int> <int id="y">757</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3732</int> </object> <object id="cliff_cover_5_1315418218228"> <int id="w">244</int> <int id="z">291</int> <int id="r">85</int> <int id="h">73</int> <int id="y">566</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3397</int> </object> <object id="lens_grass_1_1314637852646"> <int id="w">378</int> <int id="z">6</int> <int id="h">29</int> <int id="y">913</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1146</int> </object> <object id="heights_moss_1_1315418218271"> <int id="w">72</int> <int id="z">240</int> <int id="r">-10</int> <int id="h">39</int> <int id="y">838</int> <str id="name">heights_moss_1_1314233768598</str> <str id="sprite_class">heights_moss_1</str> <int id="x">5835</int> </object> <object id="snow_splotch_1_1315428417791"> <int id="w">130</int> <int id="z">340</int> <int id="h">17</int> <int id="y">760</int> <str id="name">snow_splotch_1_1315428417790</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3227</int> </object> <object id="dirt_mountain_snow_cap_1_1315333415729"> <int id="w">247</int> <int id="z">112</int> <int id="h">91</int> <int id="y">863</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2544</int> </object> <object id="heights_moss_1_1315418218266"> <int id="w">72</int> <int id="z">245</int> <int id="r">-10</int> <int id="h">39</int> <int id="y">722</int> <str id="name">heights_moss_1_1314233768598</str> <str id="sprite_class">heights_moss_1</str> <int id="x">5788</int> </object> <object id="heights_topper_1_1315418218237"> <int id="w">148</int> <int id="z">279</int> <int id="r">60</int> <int id="h">38</int> <int id="y">659</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1115</int> </object> <object id="heights_topper_1_1315418218127"> <int id="w">148</int> <int id="z">191</int> <int id="r">60</int> <int id="h">38</int> <int id="y">764</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1207</int> </object> <object id="heights_moss_2_1314233768645"> <int id="w">82</int> <int id="z">50</int> <int id="r">-10</int> <int id="h">18</int> <int id="y">825</int> <str id="name">heights_moss_2_1314233768602</str> <str id="sprite_class">heights_moss_2</str> <int id="x">4811</int> </object> <object id="lens_grass_1_1315418218243"> <int id="w">378</int> <int id="z">268</int> <int id="r">1</int> <int id="h">29</int> <int id="y">793</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3459</int> </object> <object id="heights_bush_2_1315418218153"> <int id="w">44</int> <int id="z">176</int> <int id="h">21</int> <int id="y">965</int> <str id="name">heights_bush_2_1314223536547</str> <str id="sprite_class">heights_bush_2</str> <int id="x">5857</int> </object> <object id="pampas_2_1314233768617"> <int id="w">16</int> <int id="z">60</int> <int id="h">24</int> <int id="y">815</int> <str id="name">pampas_2_1314233768604</str> <str id="sprite_class">pampas_2</str> <int id="x">3988</int> </object> <object id="heights_topper_2_1315418218288"> <int id="w">62</int> <int id="z">223</int> <int id="r">15</int> <int id="h">19</int> <int id="y">719</int> <str id="name">heights_topper_2_1314231624103</str> <str id="sprite_class">heights_topper_2</str> <int id="x">5049</int> </object> <object id="snow_patch_3_1314983511768"> <int id="w">150</int> <int id="z">88</int> <int id="h">20</int> <int id="y">873</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">1848</int> </object> <object id="lens_grass_1_1314637852629"> <int id="w">378</int> <int id="z">70</int> <int id="h">29</int> <int id="y">903</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2066</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218103"> <int id="w">247</int> <int id="z">201</int> <int id="h">65</int> <int id="y">859</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3742</int> </object> <object id="stalagmite_base_2_1314233768736"> <int id="w">103</int> <int id="z">8</int> <int id="r">2</int> <int id="h">16</int> <int id="y">901</int> <str id="name">stalagmite_base_2_1314137830443</str> <str id="sprite_class">stalagmite_base_2</str> <int id="x">4850</int> </object> <object id="cliff_cover_1_1314233768698"> <int id="w">209</int> <int id="z">22</int> <int id="r">-25</int> <int id="h">139</int> <int id="y">824</int> <str id="name">cliff_cover_1_1314223536504</str> <str id="sprite_class">cliff_cover_1</str> <int id="x">3982</int> </object> <object id="heights_moss_2_1315418218268"> <int id="w">82</int> <int id="z">243</int> <int id="r">-10</int> <int id="h">18</int> <int id="y">685</int> <str id="name">heights_moss_2_1314233768602</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5815</int> </object> <object id="cliff_cover_5_1315418218226"> <int id="w">244</int> <int id="z">293</int> <int id="r">-80</int> <int id="h">73</int> <bool id="h_flip">true</bool> <int id="y">680</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3388</int> </object> <object id="heights_topper_1_1314233768662"> <int id="w">97</int> <int id="z">37</int> <int id="h">25</int> <int id="y">672</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">3975</int> </object> <object id="pampas_2_1315418218148"> <int id="w">17</int> <int id="z">181</int> <int id="h">26</int> <int id="y">644</int> <str id="name">pampas_2_1314233768604</str> <str id="sprite_class">pampas_2</str> <int id="x">5858</int> </object> <object id="heights_topper_1_1315418218173"> <int id="w">141</int> <int id="z">156</int> <int id="r">-10</int> <int id="h">36</int> <int id="y">947</int> <str id="name">heights_topper_1_1314233768587</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5976</int> </object> <object id="lens_grass_1_1314637852622"> <int id="w">378</int> <int id="z">66</int> <int id="r">-3</int> <int id="h">29</int> <int id="y">890</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1847</int> </object> <object id="dirt_mountain_snow_cap_1_1315333415730"> <int id="w">247</int> <int id="z">113</int> <int id="h">65</int> <int id="y">864</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2644</int> </object> <object id="lens_grass_1_1315418218247"> <int id="w">378</int> <int id="z">264</int> <int id="h">29</int> <int id="y">777</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3515</int> </object> <object id="heights_topper_1_1315418218281"> <int id="w">97</int> <int id="z">230</int> <int id="h">25</int> <int id="y">532</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4979</int> </object> <object id="heights_topper_1_1315418218269"> <int id="w">141</int> <int id="z">242</int> <int id="r">-15</int> <int id="h">36</int> <int id="y">689</int> <str id="name">heights_topper_1_1314233768587</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5870</int> </object> <object id="lens_grass_1_1314637852640"> <int id="w">378</int> <int id="z">4</int> <int id="h">29</int> <int id="y">894</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1237</int> </object> <object id="snow_patch_5_1314983511775"> <int id="w">474</int> <int id="z">95</int> <int id="h">29</int> <int id="y">894</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1129</int> </object> <object id="cliff_cover_5_1315428417784"> <int id="w">184</int> <int id="z">333</int> <int id="r">15</int> <int id="h">80</int> <int id="y">827</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3263</int> </object> <object id="lens_grass_1_1314637852621"> <int id="w">378</int> <int id="z">74</int> <int id="h">29</int> <int id="y">907</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1765</int> </object> <object id="cliff_cover_5_1315333415710"> <int id="w">233</int> <int id="z">123</int> <int id="r">-90</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="y">743</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2296</int> </object> <object id="cliff_cover_5_1315333415694"> <int id="w">183</int> <int id="z">109</int> <int id="r">-30</int> <int id="h">74</int> <int id="y">899</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2402</int> </object> <object id="cliff_cover_5_1315428417793"> <int id="w">233</int> <int id="z">315</int> <int id="r">35</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="y">819</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3307</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218214"> <int id="w">247</int> <int id="z">305</int> <int id="h">65</int> <int id="y">724</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3648</int> </object> <object id="heights_topper_1_1315418218158"> <int id="w">141</int> <int id="z">171</int> <int id="r">-15</int> <int id="h">36</int> <int id="y">824</int> <str id="name">heights_topper_1_1314233768587</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5964</int> </object> <object id="cliff_cover_1_1314233768700"> <int id="w">342</int> <int id="z">20</int> <int id="h">227</int> <int id="y">1071</int> <str id="name">cliff_cover_1_1314223536504</str> <str id="sprite_class">cliff_cover_1</str> <int id="x">3887</int> </object> <object id="heights_bush_1_1314233768635"> <int id="w">50</int> <int id="z">55</int> <int id="h">29</int> <int id="y">633</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">4812</int> </object> <object id="heights_topper_1_1315418218276"> <int id="w">97</int> <int id="z">235</int> <int id="r">10</int> <int id="h">25</int> <int id="y">695</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5094</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218215"> <int id="w">247</int> <int id="z">304</int> <int id="h">91</int> <int id="y">723</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3548</int> </object> <object id="pampas_2_1315418218258"> <int id="w">16</int> <int id="z">253</int> <int id="h">24</int> <int id="y">675</int> <str id="name">pampas_2_1314233768604</str> <str id="sprite_class">pampas_2</str> <int id="x">4992</int> </object> <object id="cliff_cover_5_1315333415721"> <int id="w">242</int> <int id="z">107</int> <int id="r">-65</int> <int id="h">98</int> <bool id="h_flip">true</bool> <int id="y">789</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2567</int> </object> <object id="cliff_cover_5_1315418218224"> <int id="w">183</int> <int id="z">295</int> <int id="r">75</int> <int id="h">74</int> <int id="y">596</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3578</int> </object> <object id="cliff_cover_5_1314233768727"> <int id="w">391</int> <int id="z">15</int> <int id="r">45</int> <int id="h">198</int> <bool id="h_flip">true</bool> <int id="y">990</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">4034</int> </object> <object id="heights_moss_3_1315418218193"> <int id="w">79</int> <int id="z">136</int> <int id="h">30</int> <int id="y">835</int> <str id="name">heights_moss_3_1314137830441</str> <str id="sprite_class">heights_moss_3</str> <int id="x">5957</int> </object> <object id="lens_grass_1_1315428417796"> <int id="w">378</int> <int id="z">270</int> <int id="r">1</int> <int id="h">29</int> <int id="y">798</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2815</int> </object> <object id="heights_moss_2_1315418218260"> <int id="w">82</int> <int id="z">251</int> <int id="r">-10</int> <int id="h">18</int> <int id="y">672</int> <str id="name">heights_moss_2_1314233768602</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5866</int> </object> <object id="alakol_water_rock_2_1314233768732"> <int id="w">101</int> <int id="z">12</int> <int id="h">39</int> <int id="y">919</int> <str id="name">alakol_water_rock_2_1314137830435</str> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">4882</int> </object> <object id="heights_moss_3_1315418218166"> <int id="w">89</int> <int id="z">163</int> <int id="r">-25</int> <int id="h">34</int> <int id="y">697</int> <str id="name">heights_moss_3_1314231624110</str> <str id="sprite_class">heights_moss_3</str> <int id="x">5027</int> </object> <object id="cliff_cover_5_1315418218229"> <int id="w">244</int> <int id="z">290</int> <int id="r">85</int> <int id="h">73</int> <int id="y">592</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3437</int> </object> <object id="cliff_cover_5_1315333415706"> <int id="w">238</int> <int id="z">125</int> <int id="r">-30</int> <int id="h">96</int> <int id="y">857</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2150</int> </object> <object id="pampas_2_1315418218257"> <int id="w">16</int> <int id="z">254</int> <int id="h">24</int> <int id="y">513</int> <str id="name">pampas_2_1314233768604</str> <str id="sprite_class">pampas_2</str> <int id="x">5011</int> </object> <object id="dirt_mountain_snow_cap_1_1315333415705"> <int id="w">139</int> <int id="z">126</int> <int id="h">259</int> <int id="y">890</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2221</int> </object> <object id="cliff_cover_5_1314898648602"> <int id="w">341</int> <int id="z">0</int> <int id="r">-85</int> <int id="h">149</int> <bool id="h_flip">true</bool> <int id="y">932</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1368</int> </object> <object id="cliff_cover_5_1315418218241"> <int id="w">208</int> <int id="z">275</int> <int id="r">-85</int> <int id="h">91</int> <bool id="h_flip">true</bool> <int id="y">672</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1097</int> </object> <object id="lens_grass_1_1314637852639"> <int id="w">378</int> <int id="z">65</int> <int id="r">2</int> <int id="h">29</int> <int id="y">897</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2728</int> </object> <object id="heights_moss_2_1315418218194"> <int id="w">115</int> <int id="z">135</int> <int id="h">21</int> <int id="y">813</int> <str id="name">heights_moss_2_1314137830455</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5927</int> </object> <object id="cliff_cover_5_1315418218210"> <int id="w">183</int> <int id="z">309</int> <int id="r">35</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">721</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3172</int> </object> <object id="heights_moss_3_1314233768658"> <int id="w">89</int> <int id="z">41</int> <int id="r">-25</int> <int id="h">34</int> <int id="y">702</int> <str id="name">heights_moss_3_1314231624110</str> <str id="sprite_class">heights_moss_3</str> <int id="x">3929</int> </object> <object id="heights_moss_2_1315418218274"> <int id="w">69</int> <int id="z">237</int> <int id="r">-15</int> <int id="h">15</int> <int id="y">522</int> <str id="name">heights_moss_2_1314231624100</str> <str id="sprite_class">heights_moss_2</str> <int id="x">4973</int> </object> <object id="cliff_cover_5_1315418218130"> <int id="w">208</int> <int id="z">188</int> <int id="r">-85</int> <int id="h">91</int> <bool id="h_flip">true</bool> <int id="y">807</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1191</int> </object> <object id="alakol_water_rock_2_1315418218192"> <int id="w">101</int> <int id="z">137</int> <int id="h">39</int> <int id="y">914</int> <str id="name">alakol_water_rock_2_1314137830435</str> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">5980</int> </object> <object id="lens_grass_1_1315418218252"> <int id="w">378</int> <int id="z">259</int> <int id="h">29</int> <int id="y">754</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3248</int> </object> <object id="cliff_cover_5_1315418218283"> <int id="w">189</int> <int id="z">228</int> <int id="r">-40</int> <int id="h">96</int> <int id="y">547</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">4961</int> </object> <object id="cliff_cover_5_1315333415712"> <int id="w">233</int> <int id="z">124</int> <int id="r">-90</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="y">779</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2346</int> </object> <object id="lens_grass_1_1315418218135"> <int id="w">378</int> <int id="z">186</int> <int id="h">29</int> <int id="y">917</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3877</int> </object> <object id="heights_platform_4_1314380318919"> <int id="w">222</int> <int id="z">2</int> <int id="h">94</int> <int id="y">1015</int> <str id="name">heights_platform_4_1314380318914</str> <str id="sprite_class">heights_platform_4</str> <int id="x">3719</int> </object> <object id="cliff_cover_5_1315418218219"> <int id="w">183</int> <int id="z">300</int> <int id="r">35</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">757</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3499</int> </object> <object id="stalagmite_base_2_1315418218195"> <int id="w">82</int> <int id="z">134</int> <int id="r">-3</int> <int id="h">16</int> <int id="y">900</int> <str id="name">stalagmite_base_2_1314137830443</str> <str id="sprite_class">stalagmite_base_2</str> <int id="x">5976</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218201"> <int id="w">139</int> <int id="z">319</int> <int id="h">259</int> <int id="y">750</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3225</int> </object> <object id="heights_topper_1_1315418218128"> <int id="w">148</int> <int id="z">190</int> <int id="r">60</int> <int id="h">38</int> <int id="y">725</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1191</int> </object> <object id="lens_grass_1_1315418218137"> <int id="w">378</int> <int id="z">185</int> <int id="h">29</int> <int id="y">902</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3820</int> </object> <object id="cliff_cover_1_1315418218296"> <int id="w">209</int> <int id="z">215</int> <int id="r">-25</int> <int id="h">139</int> <int id="y">684</int> <str id="name">cliff_cover_1_1314223536504</str> <str id="sprite_class">cliff_cover_1</str> <int id="x">4986</int> </object> <object id="heights_topper_1_1315418218168"> <int id="w">97</int> <int id="z">161</int> <int id="r">-15</int> <int id="h">25</int> <int id="y">696</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5015</int> </object> <object id="heights_topper_2_1315418218150"> <int id="w">57</int> <int id="z">179</int> <int id="r">-15</int> <int id="h">24</int> <int id="y">822</int> <str id="name">heights_topper_2_1314233768594</str> <str id="sprite_class">heights_topper_2</str> <int id="x">5965</int> </object> <object id="pampas_2_1314233768618"> <int id="w">17</int> <int id="z">59</int> <int id="h">26</int> <int id="y">649</int> <str id="name">pampas_2_1314233768604</str> <str id="sprite_class">pampas_2</str> <int id="x">4760</int> </object> <object id="heights_bush_1_1315418218272"> <int id="w">36</int> <int id="z">239</int> <int id="h">21</int> <int id="y">516</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">4965</int> </object> <object id="alakol_water_rock_2_1315418218303"> <int id="w">101</int> <int id="z">208</int> <int id="h">39</int> <int id="y">779</int> <str id="name">alakol_water_rock_2_1314137830435</str> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">5886</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218086"> <int id="w">106</int> <int id="z">203</int> <int id="h">202</int> <int id="y">788</int> <str id="name">dirt_mountain_snow_cap_1_1315344184380</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">1183</int> </object> <object id="heights_bush_2_1315418218175"> <int id="w">44</int> <int id="z">154</int> <int id="h">21</int> <int id="y">816</int> <str id="name">heights_bush_2_1314223536547</str> <str id="sprite_class">heights_bush_2</str> <int id="x">5053</int> </object> <object id="cliff_cover_5_1315333415716"> <int id="w">183</int> <int id="z">102</int> <int id="r">-75</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">730</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2582</int> </object> <object id="heights_bush_1_1315418218290"> <int id="w">29</int> <int id="z">221</int> <int id="h">17</int> <int id="y">673</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">4971</int> </object> <object id="cliff_cover_5_1315418218110"> <int id="w">242</int> <int id="z">200</int> <int id="r">75</int> <int id="h">98</int> <int id="y">804</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3615</int> </object> <object id="heights_moss_2_1315418218157"> <int id="w">82</int> <int id="z">172</int> <int id="r">-10</int> <int id="h">18</int> <int id="y">820</int> <str id="name">heights_moss_2_1314233768602</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5909</int> </object> <object id="cliff_cover_5_1315418218114"> <int id="w">183</int> <int id="z">196</int> <int id="r">-75</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">725</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3680</int> </object> <object id="heights_topper_1_1314898648626"> <int id="w">148</int> <int id="z">87</int> <int id="r">-65</int> <int id="h">38</int> <int id="y">831</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">97</int> </object> <object id="cliff_cover_5_1315418218301"> <int id="w">391</int> <int id="z">210</int> <int id="r">45</int> <int id="h">198</int> <bool id="h_flip">true</bool> <int id="y">850</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">5038</int> </object> <object id="heights_bush_1_1315418218151"> <int id="w">36</int> <int id="z">178</int> <int id="h">21</int> <int id="y">634</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5883</int> </object> <object id="cliff_cover_1_1315418218185"> <int id="w">209</int> <int id="z">144</int> <int id="r">-25</int> <int id="h">139</int> <int id="y">819</int> <str id="name">cliff_cover_1_1314223536504</str> <str id="sprite_class">cliff_cover_1</str> <int id="x">5080</int> </object> <object id="dirt_mountain_snow_cap_1_1315344184425"> <int id="w">106</int> <int id="z">132</int> <int id="h">202</int> <int id="y">793</int> <str id="name">dirt_mountain_snow_cap_1_1315344184380</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">85</int> </object> <object id="lens_grass_1_1314637852624"> <int id="w">378</int> <int id="z">7</int> <int id="h">29</int> <int id="y">895</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1552</int> </object> <object id="heights_moss_2_1314233768695"> <int id="w">69</int> <int id="z">25</int> <int id="r">-15</int> <int id="h">15</int> <int id="y">830</int> <str id="name">heights_moss_2_1314231624100</str> <str id="sprite_class">heights_moss_2</str> <int id="x">3914</int> </object> <object id="snow_patch_3_1315418218234"> <int id="w">150</int> <int id="z">282</int> <int id="h">20</int> <int id="y">757</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">2797</int> </object> <object id="snow_patch_3_1315418218232"> <int id="w">150</int> <int id="z">285</int> <int id="h">20</int> <int id="y">735</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">2952</int> </object> <object id="heights_moss_2_1315418218305"> <int id="w">115</int> <int id="z">206</int> <int id="h">21</int> <int id="y">678</int> <str id="name">heights_moss_2_1314137830455</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5833</int> </object> <object id="cliff_cover_5_1314898648598"> <int id="w">208</int> <int id="z">80</int> <int id="r">85</int> <int id="h">91</int> <int id="y">762</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">35</int> </object> <object id="cliff_cover_5_1315418218203"> <int id="w">233</int> <int id="z">317</int> <int id="r">-90</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="y">639</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3350</int> </object> <object id="lens_grass_1_1314637852632"> <int id="w">378</int> <int id="z">73</int> <int id="h">29</int> <int id="y">917</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2511</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218197"> <int id="w">106</int> <int id="z">323</int> <int id="h">202</int> <int id="y">653</int> <str id="name">dirt_mountain_snow_cap_1_1315344184380</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">1089</int> </object> <object id="heights_topper_1_1315418218171"> <int id="w">97</int> <int id="z">158</int> <int id="h">25</int> <int id="y">656</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5112</int> </object> <object id="heights_moss_2_1315418218278"> <int id="w">63</int> <int id="z">233</int> <int id="r">-30</int> <int id="h">14</int> <int id="y">538</int> <str id="name">heights_moss_2_1314231624111</str> <str id="sprite_class">heights_moss_2</str> <int id="x">4922</int> </object> <object id="heights_bush_1_1315418218162"> <int id="w">50</int> <int id="z">167</int> <int id="h">29</int> <int id="y">645</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5086</int> </object> <object id="dirt_mountain_snow_cap_1_1315333415728"> <int id="w">247</int> <int id="z">111</int> <int id="h">91</int> <int id="y">838</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2426</int> </object> <object id="heights_topper_2_1314233768623"> <int id="w">57</int> <int id="z">57</int> <int id="r">-15</int> <int id="h">24</int> <int id="y">827</int> <str id="name">heights_topper_2_1314233768594</str> <str id="sprite_class">heights_topper_2</str> <int id="x">4867</int> </object> <object id="dirt_mountain_snow_cap_2_1315333415719"> <int id="w">898</int> <int id="z">130</int> <int id="h">71</int> <int id="y">884</int> <str id="name">dirt_mountain_snow_cap_2_1315333415718</str> <str id="sprite_class">dirt_mountain_snow_cap_2</str> <int id="x">2524</int> </object> <object id="heights_bush_2_1315418218286"> <int id="w">44</int> <int id="z">225</int> <int id="h">21</int> <int id="y">681</int> <str id="name">heights_bush_2_1314223536547</str> <str id="sprite_class">heights_bush_2</str> <int id="x">4959</int> </object> <object id="cliff_cover_5_1315418218206"> <int id="w">244</int> <int id="z">313</int> <int id="r">-80</int> <int id="h">73</int> <bool id="h_flip">true</bool> <int id="y">679</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3243</int> </object> <object id="heights_topper_1_1315418218170"> <int id="w">97</int> <int id="z">159</int> <int id="h">25</int> <int id="y">667</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5073</int> </object> <object id="heights_topper_1_1315418218174"> <int id="w">141</int> <int id="z">155</int> <int id="r">-10</int> <int id="h">36</int> <int id="y">969</int> <str id="name">heights_topper_1_1314233768587</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5923</int> </object> <object id="heights_moss_1_1314233768642"> <int id="w">72</int> <int id="z">52</int> <int id="r">-10</int> <int id="h">39</int> <int id="y">862</int> <str id="name">heights_moss_1_1314233768598</str> <str id="sprite_class">heights_moss_1</str> <int id="x">4784</int> </object> <object id="snow_patch_5_1315414556941"> <int id="w">474</int> <int id="z">96</int> <int id="h">29</int> <int id="y">893</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1257</int> </object> <object id="heights_topper_1_1315418218279"> <int id="w">97</int> <int id="z">232</int> <int id="r">-15</int> <int id="h">25</int> <int id="y">561</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4921</int> </object> <object id="lens_grass_1_1315428417787"> <int id="w">133</int> <int id="z">336</int> <int id="h">19</int> <int id="y">721</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3055</int> </object> <object id="cliff_cover_5_1315333415722"> <int id="w">242</int> <int id="z">106</int> <int id="r">75</int> <int id="h">98</int> <int id="y">809</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2517</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218200"> <int id="w">67</int> <int id="z">320</int> <int id="h">179</int> <int id="y">670</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3305</int> </object> <object id="dirt_mountain_snow_cap_2_1315333415718"> <int id="w">898</int> <int id="z">129</int> <int id="h">71</int> <int id="y">867</int> <str id="name">dirt_mountain_snow_cap_2_1315333415718</str> <str id="sprite_class">dirt_mountain_snow_cap_2</str> <int id="x">2092</int> </object> <object id="heights_bush_1_1314233768644"> <int id="w">50</int> <int id="z">51</int> <int id="h">29</int> <int id="y">945</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">4816</int> </object> <object id="lens_grass_1_1315428417786"> <int id="w">133</int> <int id="z">335</int> <int id="h">19</int> <int id="y">715</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3106</int> </object> <object id="heights_bush_1_1315418218263"> <int id="w">50</int> <int id="z">248</int> <int id="h">29</int> <int id="y">493</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5816</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218102"> <int id="w">127</int> <int id="z">202</int> <int id="h">225</int> <int id="y">769</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3682</int> </object> <object id="dirt_mountain_snow_cap_1_1315333415713"> <int id="w">99</int> <int id="z">128</int> <int id="h">179</int> <int id="y">760</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2256</int> </object> <object id="cliff_cover_2_1315418218298"> <int id="w">91</int> <int id="z">213</int> <int id="r">-275</int> <int id="h">140</int> <int id="y">594</int> <str id="name">cliff_cover_2_1314231624107</str> <str id="sprite_class">cliff_cover_2</str> <int id="x">4905</int> </object> <object id="heights_topper_1_1314233768668"> <int id="w">141</int> <int id="z">34</int> <int id="r">-10</int> <int id="h">36</int> <int id="y">952</int> <str id="name">heights_topper_1_1314233768587</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4878</int> </object> <object id="cliff_cover_1_1315418218186"> <int id="w">342</int> <int id="z">143</int> <int id="r">15</int> <int id="h">227</int> <bool id="h_flip">true</bool> <int id="y">1063</int> <str id="name">cliff_cover_1_1314223536504</str> <str id="sprite_class">cliff_cover_1</str> <int id="x">5150</int> </object> <object id="cliff_cover_5_1315333415717"> <int id="w">183</int> <int id="z">103</int> <int id="r">75</int> <int id="h">74</int> <int id="y">736</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2574</int> </object> <object id="cliff_cover_5_1314233768723"> <int id="w">296</int> <int id="z">17</int> <int id="r">-40</int> <int id="h">150</int> <int id="y">832</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3939</int> </object> <object id="heights_bush_2_1314233768637"> <int id="w">44</int> <int id="z">54</int> <int id="h">21</int> <int id="y">970</int> <str id="name">heights_bush_2_1314223536547</str> <str id="sprite_class">heights_bush_2</str> <int id="x">4759</int> </object> <object id="heights_topper_1_1314898648625"> <int id="w">148</int> <int id="z">86</int> <int id="r">-50</int> <int id="h">38</int> <int id="y">820</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">88</int> </object> <object id="cliff_cover_5_1315418218221"> <int id="w">242</int> <int id="z">298</int> <int id="r">75</int> <int id="h">98</int> <int id="y">669</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3521</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218199"> <int id="w">99</int> <int id="z">321</int> <int id="h">179</int> <int id="y">620</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3260</int> </object> <object id="heights_topper_1_1314898648624"> <int id="w">148</int> <int id="z">85</int> <int id="r">60</int> <int id="h">38</int> <int id="y">799</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">111</int> </object> <object id="heights_topper_1_1314233768696"> <int id="w">121</int> <int id="z">24</int> <int id="h">31</int> <int id="y">840</int> <str id="name">heights_topper_1_1314231624094</str> <str id="sprite_class">heights_topper_1</str> <int id="x">3949</int> </object> <object id="heights_bush_2_1315418218159"> <int id="w">44</int> <int id="z">170</int> <int id="h">21</int> <int id="y">642</int> <str id="name">heights_bush_2_1314223536547</str> <str id="sprite_class">heights_bush_2</str> <int id="x">5122</int> </object> <object id="cliff_cover_5_1315418218223"> <int id="w">242</int> <int id="z">296</int> <int id="r">75</int> <int id="h">98</int> <int id="y">635</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3564</int> </object> <object id="cliff_cover_5_1315418218180"> <int id="w">255</int> <int id="z">149</int> <int id="r">65</int> <int id="h">129</int> <bool id="h_flip">true</bool> <int id="y">783</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">5057</int> </object> <object id="heights_bush_1_1314233768654"> <int id="w">50</int> <int id="z">45</int> <int id="h">29</int> <int id="y">650</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3988</int> </object> <object id="snow_patch_5_1315418218231"> <int id="w">474</int> <int id="z">288</int> <int id="h">29</int> <int id="y">735</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">3207</int> </object> <object id="heights_topper_1_1315418218129"> <int id="w">146</int> <int id="z">189</int> <int id="r">-60</int> <int id="h">38</int> <int id="y">734</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1166</int> </object> <object id="lens_grass_1_1314637852627"> <int id="w">378</int> <int id="z">68</int> <int id="h">29</int> <int id="y">894</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2244</int> </object> <object id="cliff_cover_5_1315428417782"> <int id="w">184</int> <int id="z">331</int> <int id="r">15</int> <int id="h">80</int> <int id="y">825</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3128</int> </object> <object id="snow_patch_3_1315418218233"> <int id="w">150</int> <int id="z">284</int> <int id="h">20</int> <int id="y">727</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">3008</int> </object> <object id="dirt_mountain_snow_cap_2_1315333415725"> <int id="w">898</int> <int id="z">131</int> <int id="h">71</int> <int id="y">909</int> <str id="name">dirt_mountain_snow_cap_2_1315333415718</str> <str id="sprite_class">dirt_mountain_snow_cap_2</str> <int id="x">2759</int> </object> <object id="heights_bush_1_1315418218262"> <int id="w">36</int> <int id="z">249</int> <int id="h">21</int> <int id="y">499</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5789</int> </object> <object id="cliff_cover_5_1315333415692"> <int id="w">244</int> <int id="z">100</int> <int id="r">-80</int> <int id="h">73</int> <bool id="h_flip">true</bool> <int id="y">727</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2430</int> </object> <object id="heights_moss_2_1314233768694"> <int id="w">69</int> <int id="z">26</int> <int id="r">-15</int> <int id="h">15</int> <int id="y">826</int> <str id="name">heights_moss_2_1314231624100</str> <str id="sprite_class">heights_moss_2</str> <int id="x">3952</int> </object> <object id="heights_moss_2_1315418218302"> <int id="w">109</int> <int id="z">209</int> <int id="h">24</int> <int id="y">789</int> <str id="name">heights_moss_2_1314137830436</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5835</int> </object> <object id="cliff_cover_5_1315418218111"> <int id="w">242</int> <int id="z">199</int> <int id="r">20</int> <int id="h">98</int> <bool id="h_flip">true</bool> <int id="y">919</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3798</int> </object> <object id="lens_grass_1_1315418218143"> <int id="w">378</int> <int id="z">184</int> <int id="r">2</int> <int id="h">29</int> <int id="y">892</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3826</int> </object> <object id="heights_topper_2_1314233768689"> <int id="w">62</int> <int id="z">30</int> <int id="r">15</int> <int id="h">19</int> <int id="y">859</int> <str id="name">heights_topper_2_1314231624103</str> <str id="sprite_class">heights_topper_2</str> <int id="x">4045</int> </object> <object id="cliff_cover_5_1315418218212"> <int id="w">244</int> <int id="z">307</int> <int id="r">85</int> <int id="h">73</int> <int id="y">632</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3108</int> </object> <object id="lens_grass_1_1314637852620"> <int id="w">378</int> <int id="z">63</int> <int id="h">29</int> <int id="y">875</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2082</int> </object> <object id="cliff_cover_5_1315333415707"> <int id="w">233</int> <int id="z">122</int> <int id="r">35</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="y">906</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2280</int> </object> <object id="heights_topper_1_1314898648621"> <int id="w">146</int> <int id="z">82</int> <int id="r">-60</int> <int id="h">38</int> <int id="y">739</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">68</int> </object> <object id="heights_bush_1_1315418218154"> <int id="w">50</int> <int id="z">175</int> <int id="h">29</int> <int id="y">953</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5878</int> </object> <object id="heights_topper_1_1315418218240"> <int id="w">146</int> <int id="z">276</int> <int id="r">-60</int> <int id="h">38</int> <int id="y">599</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1072</int> </object> <object id="lens_grass_1_1314637852630"> <int id="w">378</int> <int id="z">71</int> <int id="h">29</int> <int id="y">913</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2236</int> </object> <object id="heights_topper_1_1314898648623"> <int id="w">148</int> <int id="z">84</int> <int id="r">60</int> <int id="h">38</int> <int id="y">769</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">109</int> </object> <object id="cliff_cover_5_1315418218172"> <int id="w">189</int> <int id="z">157</int> <int id="r">-40</int> <int id="h">96</int> <int id="y">682</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">5055</int> </object> <object id="cliff_cover_5_1315418218205"> <int id="w">233</int> <int id="z">314</int> <int id="r">35</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="y">766</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3284</int> </object> <object id="heights_topper_1_1315418218285"> <int id="w">141</int> <int id="z">226</int> <int id="r">-10</int> <int id="h">36</int> <int id="y">834</int> <str id="name">heights_topper_1_1314233768587</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5829</int> </object> <object id="dirt_mountain_snow_cap_1_1315333415695"> <int id="w">92</int> <int id="z">119</int> <int id="h">204</int> <int id="y">811</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2126</int> </object> <object id="cliff_cover_5_1315428417783"> <int id="w">184</int> <int id="z">332</int> <int id="r">15</int> <int id="h">80</int> <int id="y">851</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3095</int> </object> <object id="heights_topper_1_1315418218183"> <int id="w">121</int> <int id="z">146</int> <int id="h">31</int> <int id="y">835</int> <str id="name">heights_topper_1_1314231624094</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5047</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218208"> <int id="w">92</int> <int id="z">311</int> <int id="h">204</int> <int id="y">671</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3130</int> </object> <object id="heights_topper_1_1315418218126"> <int id="w">148</int> <int id="z">192</int> <int id="r">60</int> <int id="h">38</int> <int id="y">794</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1209</int> </object> <object id="cliff_cover_1_1315418218297"> <int id="w">342</int> <int id="z">214</int> <int id="r">15</int> <int id="h">227</int> <bool id="h_flip">true</bool> <int id="y">928</int> <str id="name">cliff_cover_1_1314223536504</str> <str id="sprite_class">cliff_cover_1</str> <int id="x">5056</int> </object> <object id="snow_patch_5_1315414556942"> <int id="w">474</int> <int id="z">97</int> <int id="h">29</int> <int id="y">886</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1517</int> </object> <object id="cliff_cover_5_1315333415693"> <int id="w">183</int> <int id="z">108</int> <int id="r">35</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">897</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2495</int> </object> <object id="heights_bush_1_1314233768639"> <int id="w">50</int> <int id="z">53</int> <int id="h">29</int> <int id="y">958</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">4780</int> </object> <object id="snow_patch_3_1315428417828"> <int id="w">150</int> <int id="z">286</int> <int id="h">20</int> <int id="y">749</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">2861</int> </object> <object id="lens_grass_1_1315418218244"> <int id="w">378</int> <int id="z">267</int> <int id="h">29</int> <int id="y">783</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3221</int> </object> <object id="snow_patch_3_1314983511770"> <int id="w">150</int> <int id="z">90</int> <int id="h">20</int> <int id="y">881</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">1956</int> </object> <object id="lens_grass_1_1314637852631"> <int id="w">378</int> <int id="z">72</int> <int id="h">29</int> <int id="y">907</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2722</int> </object> <object id="lens_grass_1_1314637852637"> <int id="w">378</int> <int id="z">78</int> <int id="r">1</int> <int id="h">29</int> <int id="y">933</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2455</int> </object> <object id="heights_topper_1_1315418218184"> <int id="w">121</int> <int id="z">145</int> <int id="h">31</int> <int id="y">844</int> <str id="name">heights_topper_1_1314231624094</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5016</int> </object> <object id="heights_bush_1_1315418218273"> <int id="w">50</int> <int id="z">238</int> <int id="h">29</int> <int id="y">510</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">4992</int> </object> <object id="cliff_cover_5_1315428417779"> <int id="w">184</int> <int id="z">329</int> <int id="r">-5</int> <int id="h">80</int> <int id="y">803</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3046</int> </object> <object id="mountain_blue_1_1314825578670"> <int id="w">824</int> <int id="z">79</int> <int id="h">275</int> <int id="y">911</int> <str id="name">mountain_blue_1_1314825578669</str> <str id="sprite_class">mountain_blue_1</str> <int id="x">200</int> </object> <object id="heights_topper_2_1315418218177"> <int id="w">62</int> <int id="z">152</int> <int id="r">15</int> <int id="h">19</int> <int id="y">854</int> <str id="name">heights_topper_2_1314231624103</str> <str id="sprite_class">heights_topper_2</str> <int id="x">5143</int> </object> <object id="lens_grass_1_1314637852625"> <int id="w">378</int> <int id="z">64</int> <int id="r">2</int> <int id="h">29</int> <int id="y">883</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2325</int> </object> <object id="heights_topper_1_1315418218238"> <int id="w">148</int> <int id="z">278</int> <int id="r">60</int> <int id="h">38</int> <int id="y">629</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1113</int> </object> <object id="heights_bush_1_1315418218156"> <int id="w">50</int> <int id="z">173</int> <int id="h">29</int> <int id="y">940</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5914</int> </object> <object id="heights_topper_1_1314233768660"> <int id="w">97</int> <int id="z">39</int> <int id="r">-15</int> <int id="h">25</int> <int id="y">701</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">3917</int> </object> <object id="heights_bush_1_1315418218265"> <int id="w">50</int> <int id="z">246</int> <int id="h">29</int> <int id="y">818</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5784</int> </object> <object id="snow_patch_3_1314983511769"> <int id="w">150</int> <int id="z">89</int> <int id="h">20</int> <int id="y">867</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">2004</int> </object> <object id="cliff_cover_5_1315418218225"> <int id="w">183</int> <int id="z">294</int> <int id="r">-75</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">590</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3586</int> </object> <object id="pampas_2_1315418218259"> <int id="w">17</int> <int id="z">252</int> <int id="h">26</int> <int id="y">509</int> <str id="name">pampas_2_1314233768604</str> <str id="sprite_class">pampas_2</str> <int id="x">5764</int> </object> <object id="heights_moss_3_1315418218277"> <int id="w">89</int> <int id="z">234</int> <int id="r">-25</int> <int id="h">34</int> <int id="y">562</int> <str id="name">heights_moss_3_1314231624110</str> <str id="sprite_class">heights_moss_3</str> <int id="x">4933</int> </object> <object id="cliff_cover_5_1314233768728"> <int id="w">383</int> <int id="z">14</int> <int id="r">-30</int> <int id="h">194</int> <int id="y">1011</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3891</int> </object> <object id="heights_topper_1_1314233768661"> <int id="w">97</int> <int id="z">38</int> <int id="r">-15</int> <int id="h">25</int> <int id="y">688</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">3932</int> </object> <object id="lens_grass_1_1315428417788"> <int id="w">133</int> <int id="z">339</int> <int id="h">19</int> <int id="y">765</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3242</int> </object> <object id="cliff_cover_5_1315428417778"> <int id="w">184</int> <int id="z">330</int> <int id="r">-5</int> <int id="h">80</int> <int id="y">851</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2987</int> </object> <object id="cliff_cover_5_1315418218299"> <int id="w">189</int> <int id="z">212</int> <int id="r">45</int> <int id="h">96</int> <bool id="h_flip">true</bool> <int id="y">533</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">4993</int> </object> <object id="heights_topper_1_1315418218169"> <int id="w">97</int> <int id="z">160</int> <int id="r">-15</int> <int id="h">25</int> <int id="y">683</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5030</int> </object> <object id="cliff_cover_5_1314233768722"> <int id="w">189</int> <int id="z">18</int> <int id="r">45</int> <int id="h">96</int> <bool id="h_flip">true</bool> <int id="y">673</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3989</int> </object> <object id="cliff_cover_5_1315418218204"> <int id="w">233</int> <int id="z">316</int> <int id="r">-90</int> <int id="h">94</int> <bool id="h_flip">true</bool> <int id="y">603</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3300</int> </object> <object id="snow_patch_3_1315428417827"> <int id="w">150</int> <int id="z">283</int> <int id="h">20</int> <int id="y">765</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">2906</int> </object> <object id="stalagmite_base_2_1315418218306"> <int id="w">82</int> <int id="z">205</int> <int id="r">-3</int> <int id="h">16</int> <int id="y">765</int> <str id="name">stalagmite_base_2_1314137830443</str> <str id="sprite_class">stalagmite_base_2</str> <int id="x">5882</int> </object> <object id="heights_topper_1_1314898648622"> <int id="w">148</int> <int id="z">83</int> <int id="r">60</int> <int id="h">38</int> <int id="y">730</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">93</int> </object> <object id="lens_grass_1_1314637852633"> <int id="w">378</int> <int id="z">75</int> <int id="h">29</int> <int id="y">922</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2779</int> </object> <object id="lens_grass_1_1314637852623"> <int id="w">378</int> <int id="z">67</int> <int id="r">-3</int> <int id="h">29</int> <int id="y">892</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1999</int> </object> <object id="cliff_cover_5_1315418218220"> <int id="w">242</int> <int id="z">299</int> <int id="r">-65</int> <int id="h">98</int> <bool id="h_flip">true</bool> <int id="y">649</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3571</int> </object> <object id="dirt_mountain_snow_cap_1_1315333415711"> <int id="w">67</int> <int id="z">127</int> <int id="h">179</int> <int id="y">810</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2301</int> </object> <object id="heights_moss_2_1314233768621"> <int id="w">82</int> <int id="z">58</int> <int id="r">-10</int> <int id="h">18</int> <int id="y">812</int> <str id="name">heights_moss_2_1314233768602</str> <str id="sprite_class">heights_moss_2</str> <int id="x">4862</int> </object> <object id="cliff_cover_5_1315418218190"> <int id="w">391</int> <int id="z">139</int> <int id="r">45</int> <int id="h">198</int> <bool id="h_flip">true</bool> <int id="y">985</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">5132</int> </object> <object id="pampas_2_1315418218146"> <int id="w">16</int> <int id="z">183</int> <int id="h">24</int> <int id="y">648</int> <str id="name">pampas_2_1314233768604</str> <str id="sprite_class">pampas_2</str> <int id="x">5105</int> </object> <object id="lens_grass_1_1315418218249"> <int id="w">378</int> <int id="z">262</int> <int id="h">29</int> <int id="y">773</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3240</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218213"> <int id="w">127</int> <int id="z">306</int> <int id="h">225</int> <int id="y">634</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3588</int> </object> <object id="dirt_mountain_snow_cap_1_1315333415715"> <int id="w">127</int> <int id="z">114</int> <int id="h">225</int> <int id="y">774</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2584</int> </object> <object id="heights_moss_2_1314233768731"> <int id="w">109</int> <int id="z">13</int> <int id="h">24</int> <int id="y">929</int> <str id="name">heights_moss_2_1314137830436</str> <str id="sprite_class">heights_moss_2</str> <int id="x">4831</int> </object> <object id="heights_moss_2_1315418218292"> <int id="w">69</int> <int id="z">219</int> <int id="r">-15</int> <int id="h">15</int> <int id="y">686</int> <str id="name">heights_moss_2_1314231624100</str> <str id="sprite_class">heights_moss_2</str> <int id="x">4956</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218216"> <int id="w">247</int> <int id="z">303</int> <int id="h">91</int> <int id="y">698</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3430</int> </object> <object id="heights_moss_1_1314233768656"> <int id="w">60</int> <int id="z">43</int> <int id="h">32</int> <int id="y">844</int> <str id="name">heights_moss_1_1314231624099</str> <str id="sprite_class">heights_moss_1</str> <int id="x">4081</int> </object> <object id="lens_grass_1_1315418218250"> <int id="w">378</int> <int id="z">261</int> <int id="h">29</int> <int id="y">763</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3070</int> </object> <object id="heights_topper_2_1314233768691"> <int id="w">62</int> <int id="z">29</int> <int id="r">15</int> <int id="h">21</int> <int id="y">832</int> <str id="name">heights_topper_2_1314231624103</str> <str id="sprite_class">heights_topper_2</str> <int id="x">4005</int> </object> <object id="lens_grass_1_1314637852619"> <int id="w">378</int> <int id="z">62</int> <int id="r">-5</int> <int id="h">29</int> <int id="y">886</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1774</int> </object> <object id="cliff_cover_5_1314898648599"> <int id="w">208</int> <int id="z">81</int> <int id="r">-85</int> <int id="h">91</int> <bool id="h_flip">true</bool> <int id="y">812</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">93</int> </object> <object id="cliff_cover_5_1315428417777"> <int id="w">184</int> <int id="z">324</int> <int id="r">-5</int> <int id="h">80</int> <int id="y">759</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3084</int> </object> <object id="lens_grass_1_1315418218251"> <int id="w">378</int> <int id="z">260</int> <int id="h">29</int> <int id="y">764</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3431</int> </object> <object id="heights_moss_2_1314233768659"> <int id="w">63</int> <int id="z">40</int> <int id="r">-30</int> <int id="h">14</int> <int id="y">678</int> <str id="name">heights_moss_2_1314231624111</str> <str id="sprite_class">heights_moss_2</str> <int id="x">3918</int> </object> <object id="cliff_cover_5_1315418218209"> <int id="w">183</int> <int id="z">310</int> <int id="r">-30</int> <int id="h">74</int> <int id="y">723</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3079</int> </object> <object id="stalagmite_base_2_1314233768735"> <int id="w">82</int> <int id="z">9</int> <int id="r">-3</int> <int id="h">16</int> <int id="y">905</int> <str id="name">stalagmite_base_2_1314137830443</str> <str id="sprite_class">stalagmite_base_2</str> <int id="x">4878</int> </object> <object id="heights_topper_1_1315418218294"> <int id="w">121</int> <int id="z">217</int> <int id="h">31</int> <int id="y">700</int> <str id="name">heights_topper_1_1314231624094</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4953</int> </object> <object id="heights_topper_1_1314233768657"> <int id="w">97</int> <int id="z">42</int> <int id="r">10</int> <int id="h">25</int> <int id="y">835</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4090</int> </object> <object id="heights_bush_2_1314233768651"> <int id="w">44</int> <int id="z">48</int> <int id="h">21</int> <int id="y">647</int> <str id="name">heights_bush_2_1314223536547</str> <str id="sprite_class">heights_bush_2</str> <int id="x">4024</int> </object> <object id="dirt_mountain_snow_cap_1_1315418218217"> <int id="w">121</int> <int id="z">302</int> <int id="h">229</int> <int id="y">605</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">3441</int> </object> <object id="cliff_cover_5_1315418218242"> <int id="w">208</int> <int id="z">274</int> <int id="r">85</int> <int id="h">91</int> <int id="y">622</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1039</int> </object> <object id="cliff_cover_1_1314233768699"> <int id="w">342</int> <int id="z">21</int> <int id="r">15</int> <int id="h">227</int> <bool id="h_flip">true</bool> <int id="y">1068</int> <str id="name">cliff_cover_1_1314223536504</str> <str id="sprite_class">cliff_cover_1</str> <int id="x">4052</int> </object> <object id="heights_topper_1_1315418218124"> <int id="w">148</int> <int id="z">194</int> <int id="r">-65</int> <int id="h">38</int> <int id="y">826</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1195</int> </object> <object id="heights_bush_2_1315418218264"> <int id="w">44</int> <int id="z">247</int> <int id="h">21</int> <int id="y">830</int> <str id="name">heights_bush_2_1314223536547</str> <str id="sprite_class">heights_bush_2</str> <int id="x">5763</int> </object> <object id="snow_splotch_1_1315428417790"> <int id="w">130</int> <int id="z">338</int> <int id="h">17</int> <int id="y">707</int> <str id="name">snow_splotch_1_1315428417790</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">3102</int> </object> <object id="heights_moss_1_1315418218155"> <int id="w">72</int> <int id="z">174</int> <int id="r">-10</int> <int id="h">39</int> <int id="y">857</int> <str id="name">heights_moss_1_1314233768598</str> <str id="sprite_class">heights_moss_1</str> <int id="x">5882</int> </object> <object id="lens_grass_1_1315418218248"> <int id="w">378</int> <int id="z">263</int> <int id="h">29</int> <int id="y">767</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3726</int> </object> <object id="heights_moss_2_1315418218149"> <int id="w">82</int> <int id="z">180</int> <int id="r">-10</int> <int id="h">18</int> <int id="y">807</int> <str id="name">heights_moss_2_1314233768602</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5960</int> </object> <object id="heights_topper_1_1315418218125"> <int id="w">148</int> <int id="z">193</int> <int id="r">-50</int> <int id="h">38</int> <int id="y">815</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1186</int> </object> <object id="cliff_cover_5_1315418218300"> <int id="w">296</int> <int id="z">211</int> <int id="r">35</int> <int id="h">150</int> <bool id="h_flip">true</bool> <int id="y">669</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">5000</int> </object> <object id="heights_topper_1_1315418218235"> <int id="w">148</int> <int id="z">281</int> <int id="r">-65</int> <int id="h">38</int> <int id="y">691</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1101</int> </object> <object id="cliff_cover_5_1315428417775"> <int id="w">184</int> <int id="z">326</int> <int id="r">-25</int> <int id="h">80</int> <int id="y">825</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2944</int> </object> <object id="snow_patch_3_1315428417829"> <int id="w">150</int> <int id="z">287</int> <int id="h">20</int> <int id="y">741</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">2896</int> </object> <object id="heights_moss_2_1315418218181"> <int id="w">69</int> <int id="z">148</int> <int id="r">-15</int> <int id="h">15</int> <int id="y">821</int> <str id="name">heights_moss_2_1314231624100</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5050</int> </object> <object id="lens_grass_1_1315428417795"> <int id="w">378</int> <int id="z">269</int> <int id="r">1</int> <int id="h">29</int> <int id="y">787</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2832</int> </object> <object id="heights_moss_2_1315418218167"> <int id="w">63</int> <int id="z">162</int> <int id="r">-30</int> <int id="h">14</int> <int id="y">673</int> <str id="name">heights_moss_2_1314231624111</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5016</int> </object> <object id="heights_moss_1_1314233768652"> <int id="w">72</int> <int id="z">47</int> <int id="r">-10</int> <int id="h">39</int> <int id="y">978</int> <str id="name">heights_moss_1_1314233768598</str> <str id="sprite_class">heights_moss_1</str> <int id="x">4831</int> </object> <object id="heights_topper_2_1315418218178"> <int id="w">62</int> <int id="z">151</int> <int id="r">15</int> <int id="h">21</int> <int id="y">827</int> <str id="name">heights_topper_2_1314231624103</str> <str id="sprite_class">heights_topper_2</str> <int id="x">5103</int> </object> <object id="heights_bush_1_1315418218161"> <int id="w">36</int> <int id="z">168</int> <int id="h">21</int> <int id="y">651</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5059</int> </object> <object id="cliff_cover_5_1315418218188"> <int id="w">189</int> <int id="z">141</int> <int id="r">45</int> <int id="h">96</int> <bool id="h_flip">true</bool> <int id="y">668</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">5087</int> </object> <object id="cliff_cover_5_1315418218227"> <int id="w">244</int> <int id="z">292</int> <int id="r">-80</int> <int id="h">73</int> <bool id="h_flip">true</bool> <int id="y">587</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3434</int> </object> <object id="stalagmite_base_2_1315418218196"> <int id="w">103</int> <int id="z">133</int> <int id="r">2</int> <int id="h">16</int> <int id="y">896</int> <str id="name">stalagmite_base_2_1314137830443</str> <str id="sprite_class">stalagmite_base_2</str> <int id="x">5948</int> </object> <object id="cliff_cover_5_1315333415698"> <int id="w">244</int> <int id="z">116</int> <int id="r">-80</int> <int id="h">73</int> <bool id="h_flip">true</bool> <int id="y">773</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2142</int> </object> <object id="heights_moss_2_1315418218182"> <int id="w">69</int> <int id="z">147</int> <int id="r">-15</int> <int id="h">15</int> <int id="y">825</int> <str id="name">heights_moss_2_1314231624100</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5012</int> </object> <object id="heights_topper_2_1315418218261"> <int id="w">57</int> <int id="z">250</int> <int id="r">-15</int> <int id="h">24</int> <int id="y">687</int> <str id="name">heights_topper_2_1314233768594</str> <str id="sprite_class">heights_topper_2</str> <int id="x">5871</int> </object> <object id="cliff_cover_5_1315333415724"> <int id="w">244</int> <int id="z">99</int> <int id="r">85</int> <int id="h">73</int> <int id="y">706</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2393</int> </object> <object id="dirt_mountain_snow_cap_2_1315418218198"> <int id="w">898</int> <int id="z">322</int> <int id="h">71</int> <int id="y">744</int> <str id="name">dirt_mountain_snow_cap_2_1315333415718</str> <str id="sprite_class">dirt_mountain_snow_cap_2</str> <int id="x">3528</int> </object> <object id="cliff_cover_5_1315333415709"> <int id="w">244</int> <int id="z">120</int> <int id="r">85</int> <int id="h">73</int> <int id="y">818</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2201</int> </object> <object id="gravel_1_1314996458934"> <int id="w">138</int> <int id="z">93</int> <int id="h">25</int> <int id="y">884</int> <str id="name">gravel_1_1314996458932</str> <str id="sprite_class">gravel_1</str> <int id="x">2427</int> </object> <object id="stalagmite_base_2_1315418218307"> <int id="w">103</int> <int id="z">204</int> <int id="r">2</int> <int id="h">16</int> <int id="y">761</int> <str id="name">stalagmite_base_2_1314137830443</str> <str id="sprite_class">stalagmite_base_2</str> <int id="x">5854</int> </object> <object id="heights_bush_1_1315418218176"> <int id="w">29</int> <int id="z">153</int> <int id="h">17</int> <int id="y">827</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">4983</int> </object> <object id="heights_moss_2_1315418218293"> <int id="w">69</int> <int id="z">218</int> <int id="r">-15</int> <int id="h">15</int> <int id="y">690</int> <str id="name">heights_moss_2_1314231624100</str> <str id="sprite_class">heights_moss_2</str> <int id="x">4918</int> </object> <object id="heights_bush_1_1315418218287"> <int id="w">29</int> <int id="z">224</int> <int id="h">17</int> <int id="y">692</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">4889</int> </object> <object id="pampas_2_1314233768616"> <int id="w">16</int> <int id="z">61</int> <int id="h">24</int> <int id="y">653</int> <str id="name">pampas_2_1314233768604</str> <str id="sprite_class">pampas_2</str> <int id="x">4007</int> </object> <object id="heights_topper_1_1314233768669"> <int id="w">141</int> <int id="z">33</int> <int id="r">-10</int> <int id="h">36</int> <int id="y">974</int> <str id="name">heights_topper_1_1314233768587</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4825</int> </object> <object id="cliff_cover_5_1315333415708"> <int id="w">244</int> <int id="z">121</int> <int id="r">-80</int> <int id="h">73</int> <bool id="h_flip">true</bool> <int id="y">819</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2239</int> </object> <object id="heights_bush_1_1314233768688"> <int id="w">29</int> <int id="z">31</int> <int id="h">17</int> <int id="y">832</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">3885</int> </object> <object id="cliff_cover_5_1315418218112"> <int id="w">242</int> <int id="z">198</int> <int id="r">75</int> <int id="h">98</int> <int id="y">770</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3658</int> </object> <object id="lens_grass_1_1315428417785"> <int id="w">133</int> <int id="z">334</int> <int id="h">19</int> <int id="y">709</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3074</int> </object> <object id="cliff_cover_2_1315418218187"> <int id="w">91</int> <int id="z">142</int> <int id="r">-275</int> <int id="h">140</int> <int id="y">729</int> <str id="name">cliff_cover_2_1314231624107</str> <str id="sprite_class">cliff_cover_2</str> <int id="x">4999</int> </object> <object id="cliff_cover_5_1315428417776"> <int id="w">184</int> <int id="z">325</int> <int id="r">-20</int> <int id="h">80</int> <int id="y">785</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3016</int> </object> <object id="cliff_cover_5_1314233768664"> <int id="w">189</int> <int id="z">35</int> <int id="r">-40</int> <int id="h">96</int> <int id="y">687</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3957</int> </object> <object id="snow_patch_5_1314983511771"> <int id="w">474</int> <int id="z">91</int> <int id="h">29</int> <int id="y">875</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">2203</int> </object> <object id="gravel_1_1315418218230"> <int id="w">138</int> <int id="z">289</int> <int id="h">25</int> <int id="y">744</int> <str id="name">gravel_1_1314996458932</str> <str id="sprite_class">gravel_1</str> <int id="x">3431</int> </object> <object id="lens_grass_1_1315418218256"> <int id="w">378</int> <int id="z">255</int> <int id="h">29</int> <int id="y">735</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3086</int> </object> <object id="cliff_cover_5_1315333415758"> <int id="w">244</int> <int id="z">101</int> <int id="r">-80</int> <int id="h">73</int> <bool id="h_flip">true</bool> <int id="y">820</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2384</int> </object> <object id="snow_patch_5_1315333415674"> <int id="w">474</int> <int id="z">92</int> <int id="h">29</int> <int id="y">929</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">2928</int> </object> <object id="heights_moss_2_1314233768655"> <int id="w">69</int> <int id="z">44</int> <int id="r">-15</int> <int id="h">15</int> <int id="y">662</int> <str id="name">heights_moss_2_1314231624100</str> <str id="sprite_class">heights_moss_2</str> <int id="x">3969</int> </object> <object id="snow_patch_5_1314983511774"> <int id="w">474</int> <int id="z">94</int> <int id="h">29</int> <int id="y">915</int> <str id="name">snow_patch_5_1314983511771</str> <str id="sprite_class">snow_patch_5</str> <int id="x">1988</int> </object> <object id="heights_bush_1_1315418218152"> <int id="w">50</int> <int id="z">177</int> <int id="h">29</int> <int id="y">628</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5910</int> </object> <object id="lens_grass_1_1315418218255"> <int id="w">378</int> <int id="z">256</int> <int id="r">2</int> <int id="h">29</int> <int id="y">743</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3329</int> </object> <object id="heights_moss_2_1314233768734"> <int id="w">115</int> <int id="z">10</int> <int id="h">21</int> <int id="y">818</int> <str id="name">heights_moss_2_1314137830455</str> <str id="sprite_class">heights_moss_2</str> <int id="x">4829</int> </object> <object id="heights_moss_3_1315418218304"> <int id="w">79</int> <int id="z">207</int> <int id="h">30</int> <int id="y">700</int> <str id="name">heights_moss_3_1314137830441</str> <str id="sprite_class">heights_moss_3</str> <int id="x">5863</int> </object> <object id="lens_grass_1_1314637852628"> <int id="w">378</int> <int id="z">69</int> <int id="h">29</int> <int id="y">904</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2427</int> </object> <object id="cliff_cover_5_1315428417781"> <int id="w">184</int> <int id="z">328</int> <int id="r">15</int> <int id="h">80</int> <int id="y">813</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3189</int> </object> <object id="cliff_cover_5_1315333415696"> <int id="w">183</int> <int id="z">118</int> <int id="r">-30</int> <int id="h">74</int> <int id="y">863</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2075</int> </object> <object id="heights_moss_1_1315418218275"> <int id="w">60</int> <int id="z">236</int> <int id="h">32</int> <int id="y">704</int> <str id="name">heights_moss_1_1314231624099</str> <str id="sprite_class">heights_moss_1</str> <int id="x">5085</int> </object> <object id="snow_patch_3_1315418218123"> <int id="w">150</int> <int id="z">195</int> <int id="h">20</int> <int id="y">868</int> <str id="name">snow_patch_3_1314983511768</str> <str id="sprite_class">snow_patch_3</str> <int id="x">2946</int> </object> <object id="heights_topper_1_1315418218165"> <int id="w">97</int> <int id="z">164</int> <int id="r">10</int> <int id="h">25</int> <int id="y">830</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5188</int> </object> <object id="heights_topper_1_1315418218284"> <int id="w">141</int> <int id="z">227</int> <int id="r">-10</int> <int id="h">36</int> <int id="y">812</int> <str id="name">heights_topper_1_1314233768587</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5882</int> </object> <object id="cliff_cover_2_1314233768713"> <int id="w">91</int> <int id="z">19</int> <int id="r">-275</int> <int id="h">140</int> <int id="y">734</int> <str id="name">cliff_cover_2_1314231624107</str> <str id="sprite_class">cliff_cover_2</str> <int id="x">3901</int> </object> <object id="dirt_mountain_snow_cap_1_1315333415690"> <int id="w">121</int> <int id="z">110</int> <int id="h">229</int> <int id="y">754</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2437</int> </object> <object id="cliff_cover_5_1315418218131"> <int id="w">208</int> <int id="z">187</int> <int id="r">85</int> <int id="h">91</int> <int id="y">757</int> <str id="name">cliff_cover_5_1314898648594</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1133</int> </object> <object id="cliff_cover_5_1315333415699"> <int id="w">244</int> <int id="z">115</int> <int id="r">85</int> <int id="h">73</int> <int id="y">772</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2104</int> </object> <object id="cliff_cover_5_1315418218218"> <int id="w">183</int> <int id="z">301</int> <int id="r">-30</int> <int id="h">74</int> <int id="y">759</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3406</int> </object> <object id="heights_moss_2_1315418218191"> <int id="w">109</int> <int id="z">138</int> <int id="h">24</int> <int id="y">924</int> <str id="name">heights_moss_2_1314137830436</str> <str id="sprite_class">heights_moss_2</str> <int id="x">5929</int> </object> <object id="lens_grass_1_1315428417798"> <int id="w">378</int> <int id="z">272</int> <int id="r">1</int> <int id="h">29</int> <int id="y">821</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">2793</int> </object> <object id="cliff_cover_5_1314233768724"> <int id="w">296</int> <int id="z">16</int> <int id="r">35</int> <int id="h">150</int> <bool id="h_flip">true</bool> <int id="y">809</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3996</int> </object> <object id="heights_bush_2_1315418218270"> <int id="w">44</int> <int id="z">241</int> <int id="h">21</int> <int id="y">507</int> <str id="name">heights_bush_2_1314223536547</str> <str id="sprite_class">heights_bush_2</str> <int id="x">5028</int> </object> <object id="heights_bush_1_1315418218179"> <int id="w">29</int> <int id="z">150</int> <int id="h">17</int> <int id="y">808</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5065</int> </object> <object id="heights_bush_1_1315418218267"> <int id="w">50</int> <int id="z">244</int> <int id="h">29</int> <int id="y">805</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">5820</int> </object> <object id="lens_grass_1_1315418218253"> <int id="w">378</int> <int id="z">258</int> <int id="r">-3</int> <int id="h">29</int> <int id="y">752</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3003</int> </object> <object id="lens_grass_1_1315428417792"> <int id="w">378</int> <int id="z">273</int> <int id="r">1</int> <int id="h">29</int> <int id="y">808</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3473</int> </object> <object id="cliff_cover_5_1315428417780"> <int id="w">184</int> <int id="z">327</int> <int id="r">15</int> <int id="h">80</int> <int id="y">778</int> <str id="name">cliff_cover_5_1315428417775</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3131</int> </object> <object id="lens_grass_1_1315418218246"> <int id="w">378</int> <int id="z">265</int> <int id="h">29</int> <int id="y">782</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">3783</int> </object> <object id="cliff_cover_5_1315333415720"> <int id="w">242</int> <int id="z">104</int> <int id="r">75</int> <int id="h">98</int> <int id="y">775</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2560</int> </object> <object id="heights_topper_1_1314233768697"> <int id="w">121</int> <int id="z">23</int> <int id="h">31</int> <int id="y">849</int> <str id="name">heights_topper_1_1314231624094</str> <str id="sprite_class">heights_topper_1</str> <int id="x">3918</int> </object> <object id="heights_topper_1_1315418218295"> <int id="w">121</int> <int id="z">216</int> <int id="h">31</int> <int id="y">709</int> <str id="name">heights_topper_1_1314231624094</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4922</int> </object> <object id="heights_bush_1_1314233768633"> <int id="w">36</int> <int id="z">56</int> <int id="h">21</int> <int id="y">639</int> <str id="name">heights_bush_1_1314223536546</str> <str id="sprite_class">heights_bush_1</str> <int id="x">4785</int> </object> <object id="cliff_cover_5_1315418218222"> <int id="w">242</int> <int id="z">297</int> <int id="r">20</int> <int id="h">98</int> <bool id="h_flip">true</bool> <int id="y">784</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3704</int> </object> <object id="heights_topper_1_1315418218282"> <int id="w">97</int> <int id="z">229</int> <int id="h">25</int> <int id="y">521</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">5018</int> </object> <object id="heights_topper_1_1314233768647"> <int id="w">141</int> <int id="z">49</int> <int id="r">-15</int> <int id="h">36</int> <int id="y">829</int> <str id="name">heights_topper_1_1314233768587</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4866</int> </object> <object id="heights_moss_1_1315418218164"> <int id="w">60</int> <int id="z">165</int> <int id="h">32</int> <int id="y">839</int> <str id="name">heights_moss_1_1314231624099</str> <str id="sprite_class">heights_moss_1</str> <int id="x">5179</int> </object> <object id="cliff_cover_5_1315333415697"> <int id="w">183</int> <int id="z">117</int> <int id="r">35</int> <int id="h">74</int> <bool id="h_flip">true</bool> <int id="y">861</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2168</int> </object> <object id="heights_topper_1_1314898648632"> <int id="w">148</int> <int id="z">1</int> <int id="r">60</int> <int id="h">38</int> <int id="y">917</int> <str id="name">heights_topper_1_1314898648606</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1277</int> </object> <object id="cliff_cover_5_1315333415691"> <int id="w">244</int> <int id="z">98</int> <int id="r">85</int> <int id="h">73</int> <int id="y">732</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2433</int> </object> <object id="cliff_cover_5_1315418218291"> <int id="w">255</int> <int id="z">220</int> <int id="r">65</int> <int id="h">129</int> <bool id="h_flip">true</bool> <int id="y">648</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">4963</int> </object> <object id="cliff_cover_5_1315418218211"> <int id="w">244</int> <int id="z">308</int> <int id="r">-80</int> <int id="h">73</int> <bool id="h_flip">true</bool> <int id="y">633</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3146</int> </object> <object id="heights_topper_1_1315418218280"> <int id="w">97</int> <int id="z">231</int> <int id="r">-15</int> <int id="h">25</int> <int id="y">548</int> <str id="name">heights_topper_1_1314231624096</str> <str id="sprite_class">heights_topper_1</str> <int id="x">4936</int> </object> <object id="cliff_cover_5_1314233768693"> <int id="w">255</int> <int id="z">27</int> <int id="r">65</int> <int id="h">129</int> <bool id="h_flip">true</bool> <int id="y">788</int> <str id="name">cliff_cover_5_1314223536508</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">3959</int> </object> <object id="lens_grass_1_1314637852643"> <int id="w">378</int> <int id="z">5</int> <int id="h">29</int> <int id="y">902</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1108</int> </object> <object id="lens_grass_1_1314637852635"> <int id="w">378</int> <int id="z">76</int> <int id="h">29</int> <int id="y">917</int> <str id="name">lens_grass_1_1314637852610</str> <str id="sprite_class">lens_grass_1</str> <int id="x">1953</int> </object> </object> <int id="w">3600</int> <int id="h">1455</int> <int id="z">-4</int> <object id="filtersNEW"> <object id="blur"> <int id="value">5</int> </object> <object id="saturation"> <int id="value">-50</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">30</int> </object> <object id="brightness"> <int id="value">20</int> </object> </object> </object> <object id="T_1314637852598"> <str id="name">Skyplus</str> <object id="decos"> <object id="dirt_mountain_snow_cap_1_1315005144765"> <int id="w">261</int> <int id="z">5</int> <int id="h">115</int> <int id="y">887</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2173</int> </object> <object id="cloud_fluffy_1_1314637852685"> <int id="w">1080</int> <int id="z">0</int> <int id="h">317</int> <int id="y">957</int> <str id="name">cloud_fluffy_1_1314637852683</str> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">2545</int> </object> <object id="dirt_mountain_snow_cap_1_1315005144766"> <int id="w">196</int> <int id="z">6</int> <int id="h">109</int> <int id="y">879</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2395</int> </object> <object id="mountain_blue_1_1314637852603"> <int id="w">824</int> <int id="z">2</int> <int id="h">275</int> <int id="y">1002</int> <str id="name">mountain_blue_1_1314637852599</str> <str id="sprite_class">mountain_blue_1</str> <int id="x">2224</int> </object> <object id="cloud_fluffy_1_1314637852688"> <int id="w">1080</int> <int id="z">1</int> <int id="h">317</int> <int id="y">732</int> <str id="name">cloud_fluffy_1_1314637852683</str> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">4303</int> </object> <object id="mountain_blue_1_1314637852605"> <int id="w">1239</int> <int id="z">7</int> <int id="h">275</int> <int id="y">926</int> <str id="name">mountain_blue_1_1314637852599</str> <str id="sprite_class">mountain_blue_1</str> <int id="x">1096</int> </object> <object id="mountain_blue_1_1315418218308"> <int id="w">1702</int> <int id="z">9</int> <int id="h">345</int> <int id="y">911</int> <str id="name">mountain_blue_1_1314918560134</str> <str id="sprite_class">mountain_blue_1</str> <int id="x">3000</int> </object> <object id="mountain_blue_1_1315333415668"> <int id="w">824</int> <int id="z">3</int> <int id="h">275</int> <int id="y">1025</int> <str id="name">mountain_blue_1_1314637852599</str> <str id="sprite_class">mountain_blue_1</str> <int id="x">2680</int> </object> <object id="dirt_mountain_snow_cap_1_1315005144764"> <int id="w">261</int> <int id="z">4</int> <int id="h">115</int> <int id="y">836</int> <str id="name">dirt_mountain_snow_cap_1_1314983511834</str> <str id="sprite_class">dirt_mountain_snow_cap_1</str> <int id="x">2296</int> </object> <object id="mountain_blue_1_1314918560136"> <int id="w">1702</int> <int id="z">8</int> <int id="h">345</int> <int id="y">906</int> <str id="name">mountain_blue_1_1314918560134</str> <str id="sprite_class">mountain_blue_1</str> <int id="x">427</int> </object> </object> <int id="w">3500</int> <int id="h">1500</int> <int id="z">-5</int> <object id="filtersNEW"> <object id="blur"> <int id="value">5</int> </object> </object> </object> <object id="middleground"> <str id="name">middleground</str> <object id="filtersNEW"> <object id="saturation"> <int id="value">-20</int> </object> <object id="tintColor"> <int id="value">10027008</int> </object> <object id="contrast"> <int id="value">20</int> </object> <object id="tintAmount"> <int id="value">0</int> </object> <object id="brightness"> <int id="value">1</int> </object> </object> <object id="doors"> </object> <int id="h">1500</int> <object id="targets"> </object> <object id="signposts"> <object id="signpost_1"> <int id="y">-461</int> <int id="h">200</int> <int id="w">100</int> <object id="connects"> <object id="0"> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1330461352.swf</str> <int id="x">2169</int> <int id="y">-331</int> <str id="mote_id">9</str> <str id="hub_id">101</str> <objref id="target" tsid="LHVLG51LV6B22AO" label="Chavila Checker"/> </object> <object id="1"> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1330461352.swf</str> <int id="x">2595</int> <int id="y">-650</int> <str id="mote_id">9</str> <str id="hub_id">101</str> <objref id="target" tsid="LHVPJPLE4TA27LD" label="Totakuru Trample"/> </object> </object> <int id="x">-2289</int> </object> </object> <object id="decos"> <object id="cliff_cover_3_1315428417583"> <int id="w">417</int> <int id="z">16</int> <int id="r">-120</int> <int id="h">213</int> <int id="y">-739</int> <str id="name">cliff_cover_3_1315428417583</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">1366</int> </object> <object id="snow_splotch_2_1315344184421"> <int id="w">281</int> <int id="z">123</int> <int id="h">38</int> <int id="y">-474</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-2346</int> </object> <object id="heights_topper_1_1315428417874"> <int id="w">207</int> <int id="z">37</int> <int id="r">-9</int> <int id="h">67</int> <int id="y">-352</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1937</int> </object> <object id="cliff_cover_3_1315428417633"> <int id="w">544</int> <int id="z">171</int> <int id="h">277</int> <bool id="h_flip">true</bool> <int id="y">-1050</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">-813</int> </object> <object id="heights_ladderbed_1_1315428417667"> <int id="w">136</int> <int id="z">205</int> <int id="h">147</int> <int id="y">-636</int> <str id="name">heights_ladderbed_1_1315428417666</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">-1635</int> </object> <object id="cliff_cover_5_1315428417523"> <int id="w">595</int> <int id="z">19</int> <int id="r">20</int> <int id="h">259</int> <bool id="h_flip">true</bool> <int id="y">-299</int> <str id="name">cliff_cover_5_1315428417523</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1591</int> </object> <object id="lens_grass_2_1315428417729"> <int id="w">359</int> <int id="z">244</int> <int id="r">15</int> <int id="h">66</int> <int id="y">-966</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1042</int> </object> <object id="cliff_cover_3_1315428417632"> <int id="w">544</int> <int id="z">170</int> <int id="r">15</int> <int id="h">277</int> <bool id="h_flip">true</bool> <int id="y">-1045</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">-639</int> </object> <object id="snow_splotch_2_1315005145009"> <int id="w">281</int> <int id="z">115</int> <int id="h">38</int> <int id="y">-317</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-1466</int> </object> <object id="heights_topper_1_1315428417683"> <int id="w">269</int> <int id="z">231</int> <int id="r">10</int> <int id="h">69</int> <int id="y">-1173</int> <str id="name">heights_topper_1_1315428417679</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-246</int> </object> <object id="heights_topper_1_1315428417539"> <int id="w">269</int> <int id="z">148</int> <int id="h">69</int> <int id="y">-329</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">2103</int> </object> <object id="cliff_cover_5_1314996458989"> <int id="w">657</int> <int id="z">56</int> <int id="r">-15</int> <int id="h">285</int> <int id="y">52</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">981</int> </object> <object id="heights_face_rock_1_1315428417891"> <int id="w">274</int> <int id="z">154</int> <int id="r">-5</int> <int id="h">87</int> <int id="y">-315</int> <str id="name">heights_face_rock_1_1315428417891</str> <str id="sprite_class">heights_face_rock_1</str> <int id="x">1331</int> </object> <object id="heights_topper_1_1315428417655"> <int id="w">269</int> <int id="z">216</int> <int id="r">-15</int> <int id="h">69</int> <bool id="h_flip">true</bool> <int id="y">-1046</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1223</int> </object> <object id="lens_grass_2_1315414557026"> <int id="w">538</int> <int id="z">91</int> <int id="r">10</int> <int id="h">71</int> <int id="y">-139</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1451</int> </object> <object id="lens_grass_2_1315428417692"> <int id="w">457</int> <int id="z">251</int> <int id="r">-5</int> <int id="h">65</int> <int id="y">-912</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1325</int> </object> <object id="heights_topper_1_1315005144864"> <int id="w">269</int> <int id="z">77</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-203</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">85</int> </object> <object id="heights_topper_1_1315428417537"> <int id="w">269</int> <int id="z">144</int> <int id="h">69</int> <int id="y">-336</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">2252</int> </object> <object id="heights_topper_1_1315005144863"> <int id="w">269</int> <int id="z">76</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-207</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-90</int> </object> <object id="heights_topper_1_1315428417542"> <int id="w">269</int> <int id="z">157</int> <int id="r">-5</int> <int id="h">69</int> <bool id="h_flip">true</bool> <int id="y">-376</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1351</int> </object> <object id="cliff_cover_5_1315428417704"> <int id="w">515</int> <int id="z">2</int> <int id="h">224</int> <int id="y">-1039</int> <str id="name">cliff_cover_5_1315428417704</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-323</int> </object> <object id="cliff_cover_5_1314996458964"> <int id="w">651</int> <int id="z">31</int> <int id="r">-15</int> <int id="h">283</int> <int id="y">85</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1739</int> </object> <object id="cliff_cover_3_1315428417528"> <int id="w">467</int> <int id="z">167</int> <int id="r">10</int> <int id="h">238</int> <bool id="h_flip">true</bool> <int id="y">-786</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">914</int> </object> <object id="snow_splotch_2_1315428417861"> <int id="w">238</int> <int id="z">289</int> <int id="h">29</int> <int id="y">-411</int> <str id="name">snow_splotch_2_1315428417860</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1333</int> </object> <object id="cliff_cover_5_1315428417640"> <int id="w">662</int> <int id="z">3</int> <int id="r">-15</int> <int id="h">288</int> <int id="y">-993</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1176</int> </object> <object id="cliff_cover_5_1314996458972"> <int id="w">657</int> <int id="z">47</int> <int id="r">-15</int> <int id="h">285</int> <int id="y">63</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-390</int> </object> <object id="heights_topper_1_1315333415590"> <int id="w">207</int> <int id="z">106</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-414</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2256</int> </object> <object id="snow_patch_3_1315428417856"> <int id="w">282</int> <int id="z">296</int> <int id="r">5</int> <int id="h">37</int> <int id="y">-1309</int> <str id="name">snow_patch_3_1315428417856</str> <str id="sprite_class">snow_patch_3</str> <int id="x">-617</int> </object> <object id="cliff_cover_5_1314996458975"> <int id="w">657</int> <int id="z">48</int> <int id="r">-15</int> <int id="h">285</int> <int id="y">61</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-12</int> </object> <object id="snow_splotch_1_1315428417844"> <int id="w">224</int> <int id="z">275</int> <int id="h">29</int> <int id="y">-1252</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-299</int> </object> <object id="heights_topper_1_1315428417648"> <int id="w">269</int> <int id="z">218</int> <int id="r">-5</int> <int id="h">69</int> <int id="y">-881</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1208</int> </object> <object id="heights_topper_1_1315428417653"> <int id="w">269</int> <int id="z">212</int> <int id="r">-5</int> <int id="h">69</int> <bool id="h_flip">true</bool> <int id="y">-1092</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1062</int> </object> <object id="snow_splotch_2_1315005145015"> <int id="w">224</int> <int id="z">133</int> <int id="r">2</int> <int id="h">32</int> <int id="y">-327</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-164</int> </object> <object id="gravel_2_1314122787113"> <int id="w">39</int> <int id="z">22</int> <int id="h">22</int> <int id="y">-419</int> <str id="name">gravel_2_1314122787113</str> <str id="sprite_class">gravel_2</str> <int id="x">-2667</int> </object> <object id="snow_patch_5_1315428417849"> <int id="w">446</int> <int id="z">281</int> <int id="r">10</int> <int id="h">63</int> <bool id="h_flip">true</bool> <int id="y">-923</int> <str id="name">snow_patch_5_1315428417849</str> <str id="sprite_class">snow_patch_5</str> <int id="x">239</int> </object> <object id="lens_grass_2_1315414557051"> <int id="w">675</int> <int id="z">132</int> <int id="h">110</int> <int id="y">34</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">2109</int> </object> <object id="heights_topper_1_1315428417543"> <int id="w">269</int> <int id="z">164</int> <int id="r">-10</int> <int id="h">69</int> <int id="y">-280</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1612</int> </object> <object id="cliff_cover_5_1314996458979"> <int id="w">601</int> <int id="z">35</int> <int id="r">5</int> <int id="h">261</int> <bool id="h_flip">true</bool> <int id="y">115</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">735</int> </object> <object id="snow_splotch_2_1315005145011"> <int id="w">281</int> <int id="z">117</int> <int id="h">38</int> <int id="y">-338</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-580</int> </object> <object id="cliff_cover_5_1315428417526"> <int id="w">657</int> <int id="z">52</int> <int id="r">-80</int> <int id="h">285</int> <int id="y">-399</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1361</int> </object> <object id="snow_splotch_2_1315428417838"> <int id="w">215</int> <int id="z">274</int> <int id="h">26</int> <int id="y">-1330</int> <str id="name">snow_splotch_2_1315428417836</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-794</int> </object> <object id="cliff_cover_5_1315428417637"> <int id="w">662</int> <int id="z">9</int> <int id="r">20</int> <int id="h">288</int> <bool id="h_flip">true</bool> <int id="y">-290</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1342</int> </object> <object id="cliff_cover_5_1315414557053"> <int id="w">659</int> <int id="z">58</int> <int id="r">-10</int> <int id="h">286</int> <int id="y">108</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1697</int> </object> <object id="cliff_cover_3_1315428417589"> <int id="w">467</int> <int id="z">15</int> <int id="r">-115</int> <int id="h">238</int> <int id="y">-579</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">302</int> </object> <object id="heights_topper_1_1315428417534"> <int id="w">269</int> <int id="z">163</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-321</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1723</int> </object> <object id="heights_topper_1_1315342350563"> <int id="w">207</int> <int id="z">112</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-348</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2432</int> </object> <object id="heights_topper_1_1315428417869"> <int id="w">207</int> <int id="z">38</int> <int id="r">11</int> <int id="h">67</int> <int id="y">-315</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1957</int> </object> <object id="cliff_cover_5_1315428417690"> <int id="w">675</int> <int id="z">201</int> <int id="r">20</int> <int id="h">294</int> <bool id="h_flip">true</bool> <int id="y">-315</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1348</int> </object> <object id="cliff_cover_5_1315333415640"> <int id="w">712</int> <int id="z">29</int> <int id="r">-15</int> <int id="h">300</int> <int id="y">59</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-2081</int> </object> <object id="cliff_cover_5_1314996458970"> <int id="w">601</int> <int id="z">32</int> <int id="r">-15</int> <int id="h">261</int> <int id="y">-68</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1237</int> </object> <object id="snow_splotch_2_1315344184422"> <int id="w">281</int> <int id="z">124</int> <int id="r">3</int> <int id="h">38</int> <int id="y">-458</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-2023</int> </object> <object id="snow_splotch_1_1315418217914"> <int id="w">270</int> <int id="z">141</int> <int id="r">10</int> <int id="h">34</int> <int id="y">-123</int> <str id="name">snow_splotch_1_1315418217910</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1384</int> </object> <object id="lens_grass_2_1315428417735"> <int id="w">335</int> <int id="z">263</int> <int id="r">-17</int> <int id="h">62</int> <int id="y">-337</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1668</int> </object> <object id="heights_topper_1_1315428417871"> <int id="w">207</int> <int id="z">40</int> <int id="r">16</int> <int id="h">67</int> <int id="y">-255</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1667</int> </object> <object id="cliff_cover_5_1315428417592"> <int id="w">659</int> <int id="z">12</int> <int id="r">-20</int> <int id="h">286</int> <int id="y">-303</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-101</int> </object> <object id="snow_splotch_1_1315418217913"> <int id="w">270</int> <int id="z">140</int> <int id="r">5</int> <int id="h">34</int> <int id="y">-88</int> <str id="name">snow_splotch_1_1315418217910</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1671</int> </object> <object id="heights_topper_1_1315428417650"> <int id="w">269</int> <int id="z">202</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-894</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1541</int> </object> <object id="cliff_cover_5_1315428417834"> <int id="w">783</int> <int id="z">0</int> <int id="r">-10</int> <int id="h">341</int> <int id="y">-370</int> <str id="name">cliff_cover_5_1315428417834</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2689</int> </object> <object id="heights_topper_1_1315428417576"> <int id="w">269</int> <int id="z">178</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-960</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">888</int> </object> <object id="lens_grass_2_1315005144841"> <int id="w">675</int> <int id="z">66</int> <int id="h">110</int> <int id="y">-256</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1016</int> </object> <object id="lens_grass_2_1315428417693"> <int id="w">457</int> <int id="z">240</int> <int id="h">65</int> <int id="y">-923</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1382</int> </object> <object id="lens_grass_2_1315428417699"> <int id="w">457</int> <int id="z">255</int> <int id="r">5</int> <int id="h">65</int> <int id="y">-1307</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-758</int> </object> <object id="snow_splotch_2_1315428417862"> <int id="w">238</int> <int id="z">290</int> <int id="h">29</int> <int id="y">-417</int> <str id="name">snow_splotch_2_1315428417860</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2177</int> </object> <object id="heights_topper_1_1315428417645"> <int id="w">269</int> <int id="z">207</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-878</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1608</int> </object> <object id="snow_splotch_2_1315418217917"> <int id="w">299</int> <int id="z">137</int> <int id="r">5</int> <int id="h">36</int> <int id="y">-251</int> <str id="name">snow_splotch_2_1315418217909</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">738</int> </object> <object id="heights_topper_1_1315414557000"> <int id="w">269</int> <int id="z">83</int> <int id="r">10</int> <int id="h">69</int> <int id="y">-65</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1234</int> </object> <object id="heights_topper_1_1315428417680"> <int id="w">269</int> <int id="z">228</int> <int id="r">10</int> <int id="h">69</int> <int id="y">-1259</int> <str id="name">heights_topper_1_1315428417679</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-885</int> </object> <object id="heights_face_rock_1_1315428417887"> <int id="w">267</int> <int id="z">225</int> <int id="r">5</int> <int id="h">85</int> <int id="y">-1133</int> <str id="name">heights_face_rock_1_1315428417885</str> <str id="sprite_class">heights_face_rock_1</str> <int id="x">-246</int> </object> <object id="lens_grass_2_1315428417700"> <int id="w">457</int> <int id="z">258</int> <int id="r">5</int> <int id="h">65</int> <int id="y">-1223</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-304</int> </object> <object id="heights_topper_1_1315428417649"> <int id="w">269</int> <int id="z">209</int> <int id="h">69</int> <int id="y">-886</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1313</int> </object> <object id="snow_splotch_2_1315005145010"> <int id="w">281</int> <int id="z">116</int> <int id="h">38</int> <int id="y">-301</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-1238</int> </object> <object id="heights_ladder_1_1315428417607"> <int id="w">73</int> <int id="z">192</int> <int id="h">79</int> <int id="y">-561</int> <str id="name">heights_ladder_1_1315428417570</str> <str id="sprite_class">heights_ladder_1</str> <int id="x">16</int> </object> <object id="cliff_cover_5_1315428417586"> <int id="w">563</int> <int id="z">182</int> <int id="r">178</int> <int id="h">245</int> <int id="y">-962</int> <str id="name">cliff_cover_5_1315428417586</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">250</int> </object> <object id="lens_grass_2_1315428417737"> <int id="w">570</int> <int id="z">260</int> <int id="r">-2</int> <int id="h">105</int> <int id="y">-376</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">2152</int> </object> <object id="lens_grass_2_1315414557050"> <int id="w">675</int> <int id="z">131</int> <int id="h">110</int> <int id="y">38</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">2454</int> </object> <object id="lens_grass_2_1315344184418"> <int id="w">521</int> <int id="z">120</int> <int id="r">1</int> <int id="h">74</int> <int id="y">-439</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-2310</int> </object> <object id="heights_topper_1_1315428417563"> <int id="w">269</int> <int id="z">159</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-725</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1351</int> </object> <object id="heights_topper_1_1315428417687"> <int id="w">269</int> <int id="z">232</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-1171</int> <str id="name">heights_topper_1_1315428417679</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-101</int> </object> <object id="heights_topper_1_1315428417596"> <int id="w">269</int> <int id="z">190</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-883</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">248</int> </object> <object id="heights_ladder_1_1315428417609"> <int id="w">73</int> <int id="z">196</int> <int id="h">79</int> <int id="y">-394</int> <str id="name">heights_ladder_1_1315428417570</str> <str id="sprite_class">heights_ladder_1</str> <int id="x">18</int> </object> <object id="heights_topper_1_1315428417577"> <int id="w">269</int> <int id="z">180</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-984</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">668</int> </object> <object id="lens_grass_2_1315414557024"> <int id="w">538</int> <int id="z">98</int> <int id="h">88</int> <int id="y">-73</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">2187</int> </object> <object id="heights_topper_1_1315428417532"> <int id="w">269</int> <int id="z">161</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-322</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">2392</int> </object> <object id="pampas_1_1315439379295"> <int id="w">52</int> <int id="z">300</int> <int id="h">76</int> <int id="y">-336</int> <str id="name">pampas_1_1315439379295</str> <str id="sprite_class">pampas_1</str> <int id="x">-1285</int> </object> <object id="snow_splotch_2_1315418217911"> <int id="w">299</int> <int id="z">135</int> <int id="h">36</int> <int id="y">-54</int> <str id="name">snow_splotch_2_1315418217909</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2064</int> </object> <object id="snow_splotch_1_1315418217915"> <int id="w">270</int> <int id="z">142</int> <int id="r">5</int> <int id="h">34</int> <int id="y">-176</int> <str id="name">snow_splotch_1_1315418217910</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1126</int> </object> <object id="heights_topper_1_1315428417541"> <int id="w">269</int> <int id="z">146</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-361</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1301</int> </object> <object id="snow_splotch_2_1315418217909"> <int id="w">299</int> <int id="z">134</int> <int id="h">36</int> <int id="y">-72</int> <str id="name">snow_splotch_2_1315418217909</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2351</int> </object> <object id="cliff_cover_3_1315428417584"> <int id="w">619</int> <int id="z">172</int> <int id="h">315</int> <bool id="h_flip">true</bool> <int id="y">-903</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">225</int> </object> <object id="lens_grass_2_1315428417734"> <int id="w">570</int> <int id="z">261</int> <int id="r">-2</int> <int id="h">105</int> <int id="y">-360</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1958</int> </object> <object id="lens_grass_2_1315005144848"> <int id="w">675</int> <int id="z">90</int> <int id="h">110</int> <int id="y">-240</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">353</int> </object> <object id="lens_grass_2_1314991486328"> <int id="w">521</int> <int id="z">43</int> <int id="r">7</int> <int id="h">74</int> <int id="y">-389</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1814</int> </object> <object id="heights_ladder_2_1315428417571"> <int id="w">70</int> <int id="z">175</int> <int id="h">87</int> <int id="y">-480</int> <str id="name">heights_ladder_2_1315428417569</str> <str id="sprite_class">heights_ladder_2</str> <int id="x">1363</int> </object> <object id="lens_grass_2_1315005144844"> <int id="w">675</int> <int id="z">67</int> <int id="h">110</int> <int id="y">-251</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-457</int> </object> <object id="cliff_cover_5_1314996458966"> <int id="w">679</int> <int id="z">45</int> <int id="r">-15</int> <int id="h">295</int> <int id="y">69</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1065</int> </object> <object id="snow_patch_4_1315428417864"> <int id="w">507</int> <int id="z">292</int> <int id="h">74</int> <int id="y">-116</int> <str id="name">snow_patch_4_1315428417864</str> <str id="sprite_class">snow_patch_4</str> <int id="x">2011</int> </object> <object id="heights_topper_1_1315428417870"> <int id="w">207</int> <int id="z">39</int> <int id="r">11</int> <int id="h">67</int> <int id="y">-282</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1819</int> </object> <object id="snow_splotch_1_1315428417842"> <int id="w">224</int> <int id="z">273</int> <int id="r">5</int> <int id="h">29</int> <int id="y">-1129</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-958</int> </object> <object id="lens_grass_2_1315005144911"> <int id="w">675</int> <int id="z">20</int> <int id="h">110</int> <int id="y">-286</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-540</int> </object> <object id="heights_topper_1_1315428417562"> <int id="w">269</int> <int id="z">158</int> <int id="r">25</int> <int id="h">69</int> <int id="y">-725</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1396</int> </object> <object id="cliff_cover_5_1315428417642"> <int id="w">662</int> <int id="z">5</int> <int id="r">-15</int> <int id="h">288</int> <int id="y">-651</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1695</int> </object> <object id="snow_splotch_1_1315428417840"> <int id="w">224</int> <int id="z">270</int> <int id="h">29</int> <int id="y">-1317</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-970</int> </object> <object id="heights_ladderbed_1_1315428417669"> <int id="w">136</int> <int id="z">236</int> <int id="h">147</int> <int id="y">-431</int> <str id="name">heights_ladderbed_1_1315428417666</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">-1633</int> </object> <object id="cliff_cover_5_1315428417641"> <int id="w">662</int> <int id="z">4</int> <int id="r">-15</int> <int id="h">288</int> <int id="y">-830</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1420</int> </object> <object id="lens_grass_2_1315428417697"> <int id="w">457</int> <int id="z">256</int> <int id="r">-5</int> <int id="h">65</int> <int id="y">-1295</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-958</int> </object> <object id="cliff_cover_5_1314810401349"> <int id="w">601</int> <int id="z">26</int> <int id="r">-15</int> <int id="h">261</int> <int id="y">-171</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1932</int> </object> <object id="heights_topper_1_1315428417598"> <int id="w">269</int> <int id="z">189</int> <int id="r">10</int> <int id="h">69</int> <int id="y">-885</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">146</int> </object> <object id="heights_topper_1_1315428417536"> <int id="w">269</int> <int id="z">166</int> <int id="r">10</int> <int id="h">69</int> <int id="y">-306</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">2029</int> </object> <object id="lens_grass_2_1315428417695"> <int id="w">292</int> <int id="z">249</int> <int id="h">41</int> <int id="y">-1107</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-931</int> </object> <object id="cliff_cover_5_1315428417638"> <int id="w">662</int> <int id="z">8</int> <int id="r">40</int> <int id="h">288</int> <bool id="h_flip">true</bool> <int id="y">-532</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1462</int> </object> <object id="snow_splotch_1_1315418217910"> <int id="w">270</int> <int id="z">139</int> <int id="h">34</int> <int id="y">-97</int> <str id="name">snow_splotch_1_1315418217910</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">1834</int> </object> <object id="snow_splotch_2_1315344184423"> <int id="w">281</int> <int id="z">125</int> <int id="r">8</int> <int id="h">38</int> <int id="y">-392</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-1711</int> </object> <object id="snow_splotch_2_1315428417865"> <int id="w">360</int> <int id="z">293</int> <int id="h">44</int> <int id="y">-111</int> <str id="name">snow_splotch_2_1315428417865</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2522</int> </object> <object id="snow_splotch_1_1315428417850"> <int id="w">224</int> <int id="z">279</int> <int id="h">29</int> <int id="y">-1213</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">192</int> </object> <object id="lens_grass_2_1315428417701"> <int id="w">457</int> <int id="z">259</int> <int id="h">65</int> <int id="y">-1197</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">100</int> </object> <object id="snow_splotch_2_1315428417860"> <int id="w">287</int> <int id="z">288</int> <int id="h">35</int> <int id="y">-399</int> <str id="name">snow_splotch_2_1315428417860</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2393</int> </object> <object id="cliff_cover_5_1315428417689"> <int id="w">602</int> <int id="z">200</int> <int id="r">25</int> <int id="h">262</int> <bool id="h_flip">true</bool> <int id="y">-428</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1404</int> </object> <object id="lens_grass_2_1315428417694"> <int id="w">389</int> <int id="z">242</int> <int id="r">-10</int> <int id="h">55</int> <int id="y">-1097</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1142</int> </object> <object id="heights_face_rock_1_1315428417892"> <int id="w">406</int> <int id="z">155</int> <int id="r">-5</int> <int id="h">129</int> <int id="y">-232</int> <str id="name">heights_face_rock_1_1315428417891</str> <str id="sprite_class">heights_face_rock_1</str> <int id="x">2360</int> </object> <object id="cliff_cover_5_1314996458967"> <int id="w">663</int> <int id="z">46</int> <int id="r">-15</int> <int id="h">288</int> <int id="y">51</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-742</int> </object> <object id="lens_grass_2_1315414557019"> <int id="w">474</int> <int id="z">96</int> <int id="r">5</int> <int id="h">77</int> <int id="y">-94</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1685</int> </object> <object id="heights_topper_1_1315428417656"> <int id="w">269</int> <int id="z">208</int> <int id="r">-5</int> <int id="h">69</int> <bool id="h_flip">true</bool> <int id="y">-896</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1411</int> </object> <object id="snow_splotch_1_1315428417846"> <int id="w">224</int> <int id="z">277</int> <int id="h">29</int> <int id="y">-1249</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-65</int> </object> <object id="cliff_cover_5_1314996458976"> <int id="w">601</int> <int id="z">34</int> <int id="r">-15</int> <int id="h">261</int> <int id="y">-83</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-241</int> </object> <object id="heights_ladderbed_1_1315428417559"> <int id="w">136</int> <int id="z">150</int> <int id="h">147</int> <int id="y">-425</int> <str id="name">heights_ladderbed_1_1315428417559</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">1360</int> </object> <object id="heights_topper_1_1315005144862"> <int id="w">269</int> <int id="z">75</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-204</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-310</int> </object> <object id="snow_splotch_2_1315418217916"> <int id="w">299</int> <int id="z">136</int> <int id="h">36</int> <int id="y">-216</int> <str id="name">snow_splotch_2_1315418217909</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">990</int> </object> <object id="snow_splotch_2_1315428417854"> <int id="w">215</int> <int id="z">294</int> <int id="r">10</int> <int id="h">26</int> <int id="y">-1027</int> <str id="name">snow_splotch_2_1315428417836</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">907</int> </object> <object id="heights_ladderbed_1_1315428417560"> <int id="w">136</int> <int id="z">152</int> <int id="h">147</int> <bool id="h_flip">true</bool> <int id="y">-563</int> <str id="name">heights_ladderbed_1_1315428417559</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">1372</int> </object> <object id="heights_topper_1_1315333415596"> <int id="w">207</int> <int id="z">113</int> <int id="r">6</int> <int id="h">57</int> <int id="y">-419</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2340</int> </object> <object id="lens_grass_2_1315428417703"> <int id="w">654</int> <int id="z">253</int> <int id="r">5</int> <int id="h">65</int> <int id="y">-1233</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-223</int> </object> <object id="heights_ladderbed_1_1315428417666"> <int id="w">136</int> <int id="z">204</int> <int id="h">147</int> <int id="y">-769</int> <str id="name">heights_ladderbed_1_1315428417666</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">-1630</int> </object> <object id="heights_topper_1_1315414557001"> <int id="w">269</int> <int id="z">84</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-43</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1338</int> </object> <object id="heights_topper_1_1315428417681"> <int id="w">269</int> <int id="z">229</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-1236</int> <str id="name">heights_topper_1_1315428417679</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-659</int> </object> <object id="heights_ladder_1_1315428417677"> <int id="w">73</int> <int id="z">238</int> <int id="h">79</int> <int id="y">-587</int> <str id="name">heights_ladder_1_1315428417570</str> <str id="sprite_class">heights_ladder_1</str> <int id="x">-1631</int> </object> <object id="heights_ladder_2_1315428417672"> <int id="w">70</int> <int id="z">239</int> <int id="h">87</int> <int id="y">-504</int> <str id="name">heights_ladder_2_1315428417569</str> <str id="sprite_class">heights_ladder_2</str> <int id="x">-1626</int> </object> <object id="heights_topper_1_1315428417685"> <int id="w">269</int> <int id="z">235</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-1156</int> <str id="name">heights_topper_1_1315428417679</str> <str id="sprite_class">heights_topper_1</str> <int id="x">230</int> </object> <object id="lens_grass_2_1315428417698"> <int id="w">457</int> <int id="z">257</int> <int id="r">5</int> <int id="h">65</int> <int id="y">-1271</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-642</int> </object> <object id="heights_ladder_1_1315428417604"> <int id="w">73</int> <int id="z">195</int> <int id="h">79</int> <int id="y">-735</int> <str id="name">heights_ladder_1_1315428417570</str> <str id="sprite_class">heights_ladder_1</str> <int id="x">16</int> </object> <object id="heights_ladderbed_1_1315428417600"> <int id="w">136</int> <int id="z">183</int> <int id="h">147</int> <int id="y">-788</int> <str id="name">heights_ladderbed_1_1315428417559</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">17</int> </object> <object id="cliff_cover_5_1314996458978"> <int id="w">657</int> <int id="z">49</int> <int id="r">-15</int> <int id="h">285</int> <int id="y">51</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">296</int> </object> <object id="heights_ladder_1_1315428417573"> <int id="w">73</int> <int id="z">151</int> <int id="h">79</int> <int id="y">-396</int> <str id="name">heights_ladder_1_1315428417570</str> <str id="sprite_class">heights_ladder_1</str> <int id="x">1357</int> </object> <object id="snow_splotch_2_1315428417836"> <int id="w">215</int> <int id="z">269</int> <int id="h">26</int> <int id="y">-955</int> <str id="name">snow_splotch_2_1315428417836</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-1384</int> </object> <object id="heights_topper_1_1315428417575"> <int id="w">269</int> <int id="z">177</int> <int id="r">25</int> <int id="h">69</int> <int id="y">-910</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1112</int> </object> <object id="snow_splotch_1_1315428417841"> <int id="w">224</int> <int id="z">272</int> <int id="r">-10</int> <int id="h">29</int> <int id="y">-1104</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-1177</int> </object> <object id="heights_topper_1_1315414556999"> <int id="w">269</int> <int id="z">82</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-93</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1027</int> </object> <object id="cliff_cover_5_1315414557012"> <int id="w">659</int> <int id="z">62</int> <int id="r">-20</int> <int id="h">286</int> <int id="y">-51</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1967</int> </object> <object id="pampas_2_1315349711039"> <int id="w">57</int> <int id="z">128</int> <int id="h">94</int> <int id="y">-375</int> <str id="name">pampas_2_1314121713572</str> <str id="sprite_class">pampas_2</str> <int id="x">-125</int> </object> <object id="heights_topper_1_1315428417619"> <int id="w">269</int> <int id="z">179</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-1011</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">519</int> </object> <object id="lens_grass_2_1315428417691"> <int id="w">521</int> <int id="z">250</int> <int id="r">2</int> <int id="h">74</int> <int id="y">-908</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1460</int> </object> <object id="cliff_cover_5_1315428417527"> <int id="w">483</int> <int id="z">50</int> <int id="r">35</int> <int id="h">210</int> <bool id="h_flip">true</bool> <int id="y">-736</int> <str id="name">cliff_cover_5_1315428417527</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1131</int> </object> <object id="heights_ladder_1_1315428417673"> <int id="w">73</int> <int id="z">237</int> <int id="h">79</int> <int id="y">-428</int> <str id="name">heights_ladder_1_1315428417570</str> <str id="sprite_class">heights_ladder_1</str> <int id="x">-1628</int> </object> <object id="heights_topper_1_1315428417872"> <int id="w">207</int> <int id="z">42</int> <int id="r">11</int> <int id="h">67</int> <int id="y">-235</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1481</int> </object> <object id="snow_splotch_1_1315428417847"> <int id="w">224</int> <int id="z">278</int> <int id="h">29</int> <int id="y">-960</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">76</int> </object> <object id="cliff_cover_3_1315428417591"> <int id="w">467</int> <int id="z">14</int> <int id="r">-245</int> <int id="h">238</int> <int id="y">-913</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">138</int> </object> <object id="lens_grass_2_1315414557025"> <int id="w">538</int> <int id="z">99</int> <int id="h">88</int> <int id="y">-69</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">2359</int> </object> <object id="heights_ladder_2_1315428417569"> <int id="w">70</int> <int id="z">174</int> <int id="h">87</int> <int id="y">-656</int> <str id="name">heights_ladder_2_1315428417569</str> <str id="sprite_class">heights_ladder_2</str> <int id="x">1360</int> </object> <object id="cliff_cover_5_1314996458974"> <int id="w">601</int> <int id="z">27</int> <int id="r">-15</int> <int id="h">261</int> <int id="y">-116</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1696</int> </object> <object id="heights_topper_1_1315428417595"> <int id="w">269</int> <int id="z">191</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-844</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">392</int> </object> <object id="heights_topper_1_1315428417684"> <int id="w">269</int> <int id="z">233</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-1162</int> <str id="name">heights_topper_1_1315428417679</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-21</int> </object> <object id="cliff_cover_3_1315428417590"> <int id="w">467</int> <int id="z">13</int> <int id="r">-130</int> <int id="h">238</int> <int id="y">-478</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">278</int> </object> <object id="lens_grass_2_1315428417739"> <int id="w">280</int> <int id="z">266</int> <int id="r">12</int> <int id="h">52</int> <int id="y">-752</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1378</int> </object> <object id="lens_grass_2_1315428417707"> <int id="w">340</int> <int id="z">248</int> <int id="r">5</int> <int id="h">48</int> <bool id="h_flip">true</bool> <int id="y">-925</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">41</int> </object> <object id="lens_grass_2_1315428417705"> <int id="w">1090</int> <int id="z">254</int> <int id="r">5</int> <int id="h">81</int> <int id="y">-1233</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-241</int> </object> <object id="heights_face_rock_1_1315428417888"> <int id="w">267</int> <int id="z">213</int> <int id="h">85</int> <int id="y">-1042</int> <str id="name">heights_face_rock_1_1315428417885</str> <str id="sprite_class">heights_face_rock_1</str> <int id="x">-962</int> </object> <object id="heights_bush_1_1315428417866"> <int id="w">160</int> <int id="z">297</int> <int id="r">5</int> <int id="h">94</int> <int id="y">-141</int> <str id="name">heights_bush_1_1315428417866</str> <str id="sprite_class">heights_bush_1</str> <int id="x">1677</int> </object> <object id="lens_grass_2_1315414557004"> <int id="w">675</int> <int id="z">94</int> <int id="r">5</int> <int id="h">110</int> <int id="y">-143</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1142</int> </object> <object id="heights_face_rock_1_1315428417886"> <int id="w">267</int> <int id="z">227</int> <int id="r">5</int> <int id="h">85</int> <int id="y">-1178</int> <str id="name">heights_face_rock_1_1315428417885</str> <str id="sprite_class">heights_face_rock_1</str> <int id="x">-477</int> </object> <object id="heights_topper_1_1315428417686"> <int id="w">269</int> <int id="z">234</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-1161</int> <str id="name">heights_topper_1_1315428417679</str> <str id="sprite_class">heights_topper_1</str> <int id="x">108</int> </object> <object id="heights_ladder_2_1315428417608"> <int id="w">70</int> <int id="z">197</int> <int id="h">87</int> <int id="y">-478</int> <str id="name">heights_ladder_2_1315428417569</str> <str id="sprite_class">heights_ladder_2</str> <int id="x">24</int> </object> <object id="heights_topper_1_1315414556998"> <int id="w">269</int> <int id="z">81</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-132</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">795</int> </object> <object id="snow_splotch_1_1315428417835"> <int id="w">224</int> <int id="z">267</int> <int id="h">29</int> <int id="y">-942</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-1560</int> </object> <object id="snow_splotch_1_1315418217918"> <int id="w">270</int> <int id="z">143</int> <int id="r">5</int> <int id="h">34</int> <int id="y">-297</int> <str id="name">snow_splotch_1_1315418217910</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">467</int> </object> <object id="lens_grass_2_1315428417702"> <int id="w">578</int> <int id="z">252</int> <int id="r">10</int> <int id="h">65</int> <int id="y">-1263</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-458</int> </object> <object id="cliff_cover_5_1315428417525"> <int id="w">595</int> <int id="z">17</int> <int id="r">30</int> <int id="h">259</int> <bool id="h_flip">true</bool> <int id="y">-501</int> <str id="name">cliff_cover_5_1315428417523</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1405</int> </object> <object id="heights_bush_2_1315428417867"> <int id="w">142</int> <int id="z">298</int> <int id="r">-5</int> <int id="h">68</int> <int id="y">-373</int> <str id="name">heights_bush_2_1315428417867</str> <str id="sprite_class">heights_bush_2</str> <int id="x">-247</int> </object> <object id="heights_topper_1_1315005144865"> <int id="w">269</int> <int id="z">78</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-191</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">227</int> </object> <object id="snow_splotch_1_1315428417837"> <int id="w">224</int> <int id="z">268</int> <int id="h">29</int> <int id="y">-928</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-1348</int> </object> <object id="heights_ladderbed_1_1315428417561"> <int id="w">136</int> <int id="z">153</int> <int id="h">147</int> <int id="y">-650</int> <str id="name">heights_ladderbed_1_1315428417559</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">1363</int> </object> <object id="snow_splotch_1_1315428417839"> <int id="w">224</int> <int id="z">271</int> <int id="h">29</int> <int id="y">-1301</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">-643</int> </object> <object id="lens_grass_2_1315428417878"> <int id="w">675</int> <int id="z">89</int> <int id="r">5</int> <int id="h">110</int> <int id="y">-174</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">936</int> </object> <object id="heights_bush_2_1315439379297"> <int id="w">142</int> <int id="z">302</int> <int id="r">5</int> <int id="h">68</int> <int id="y">-319</int> <str id="name">heights_bush_2_1315439379297</str> <str id="sprite_class">heights_bush_2</str> <int id="x">-1152</int> </object> <object id="cliff_cover_5_1314996458995"> <int id="w">657</int> <int id="z">59</int> <int id="r">-15</int> <int id="h">285</int> <int id="y">-136</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1298</int> </object> <object id="heights_topper_1_1315428417646"> <int id="w">269</int> <int id="z">210</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-874</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1450</int> </object> <object id="heights_ladderbed_1_1315428417601"> <int id="w">136</int> <int id="z">184</int> <int id="h">147</int> <int id="y">-649</int> <str id="name">heights_ladderbed_1_1315428417559</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">17</int> </object> <object id="snow_splotch_1_1315428417859"> <int id="w">225</int> <int id="z">287</int> <int id="h">29</int> <int id="y">-446</int> <str id="name">snow_splotch_1_1315428417859</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">2175</int> </object> <object id="cliff_cover_3_1315428417631"> <int id="w">467</int> <int id="z">169</int> <int id="r">30</int> <int id="h">238</int> <bool id="h_flip">true</bool> <int id="y">-969</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">-369</int> </object> <object id="lens_grass_2_1315428417732"> <int id="w">570</int> <int id="z">1</int> <int id="r">10</int> <int id="h">105</int> <int id="y">-986</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">818</int> </object> <object id="cliff_cover_5_1314996458984"> <int id="w">659</int> <int id="z">57</int> <int id="r">-10</int> <int id="h">286</int> <int id="y">110</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1273</int> </object> <object id="heights_topper_1_1315428417876"> <int id="w">269</int> <int id="z">71</int> <int id="r">10</int> <int id="h">69</int> <int id="y">-188</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-938</int> </object> <object id="lens_grass_2_1315414557020"> <int id="w">538</int> <int id="z">100</int> <int id="h">88</int> <int id="y">-43</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1996</int> </object> <object id="heights_face_rock_1_1315428417885"> <int id="w">267</int> <int id="z">226</int> <int id="r">10</int> <int id="h">85</int> <int id="y">-1200</int> <str id="name">heights_face_rock_1_1315428417885</str> <str id="sprite_class">heights_face_rock_1</str> <int id="x">-719</int> </object> <object id="lens_grass_2_1315005144846"> <int id="w">675</int> <int id="z">74</int> <int id="h">110</int> <int id="y">-230</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-980</int> </object> <object id="heights_topper_1_1315428417652"> <int id="w">269</int> <int id="z">217</int> <int id="r">-5</int> <int id="h">69</int> <bool id="h_flip">true</bool> <int id="y">-1074</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-911</int> </object> <object id="heights_topper_1_1315005144859"> <int id="w">269</int> <int id="z">69</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-182</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-853</int> </object> <object id="cliff_cover_5_1314996458973"> <int id="w">601</int> <int id="z">33</int> <int id="r">-15</int> <int id="h">261</int> <int id="y">-79</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-547</int> </object> <object id="heights_topper_1_1315428417540"> <int id="w">269</int> <int id="z">149</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-336</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1829</int> </object> <object id="heights_ladderbed_1_1315428417603"> <int id="w">136</int> <int id="z">186</int> <int id="h">147</int> <int id="y">-383</int> <str id="name">heights_ladderbed_1_1315428417559</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">22</int> </object> <object id="cliff_cover_5_1315428417644"> <int id="w">662</int> <int id="z">7</int> <int id="r">-15</int> <int id="h">288</int> <int id="y">-333</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1863</int> </object> <object id="heights_topper_1_1315342350564"> <int id="w">207</int> <int id="z">105</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-375</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2077</int> </object> <object id="heights_topper_1_1315005144861"> <int id="w">269</int> <int id="z">72</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-210</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-501</int> </object> <object id="cliff_cover_5_1315414557015"> <int id="w">659</int> <int id="z">65</int> <int id="r">-35</int> <int id="h">286</int> <int id="y">-46</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2472</int> </object> <object id="lens_grass_2_1315414557047"> <int id="w">675</int> <int id="z">97</int> <int id="r">8</int> <int id="h">110</int> <int id="y">-37</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1569</int> </object> <object id="lens_grass_2_1315428417736"> <int id="w">335</int> <int id="z">264</int> <int id="r">-2</int> <int id="h">62</int> <int id="y">-357</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1909</int> </object> <object id="cliff_cover_5_1315414557013"> <int id="w">659</int> <int id="z">63</int> <int id="r">-25</int> <int id="h">286</int> <int id="y">-38</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2073</int> </object> <object id="heights_ladderbed_1_1315428417712"> <int id="w">136</int> <int id="z">220</int> <int id="h">147</int> <int id="y">-1159</int> <str id="name">heights_ladderbed_1_1315428417712</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">-1072</int> </object> <object id="snow_splotch_2_1315428417857"> <int id="w">232</int> <int id="z">285</int> <int id="r">15</int> <int id="h">28</int> <int id="y">-765</int> <str id="name">snow_splotch_2_1315428417836</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1390</int> </object> <object id="cliff_cover_5_1315428417618"> <int id="w">510</int> <int id="z">18</int> <int id="r">45</int> <int id="h">222</int> <bool id="h_flip">true</bool> <int id="y">-295</int> <str id="name">cliff_cover_5_1315428417618</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">159</int> </object> <object id="cliff_cover_5_1314996458969"> <int id="w">601</int> <int id="z">30</int> <int id="r">-15</int> <int id="h">261</int> <int id="y">-104</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1488</int> </object> <object id="heights_topper_1_1315428417599"> <int id="w">269</int> <int id="z">187</int> <int id="h">69</int> <int id="y">-910</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-5</int> </object> <object id="heights_ladder_2_1315428417606"> <int id="w">70</int> <int id="z">193</int> <int id="h">87</int> <int id="y">-821</int> <str id="name">heights_ladder_2_1315428417569</str> <str id="sprite_class">heights_ladder_2</str> <int id="x">19</int> </object> <object id="heights_ladder_1_1315428417674"> <int id="w">73</int> <int id="z">222</int> <int id="h">79</int> <int id="y">-744</int> <str id="name">heights_ladder_1_1315428417570</str> <str id="sprite_class">heights_ladder_1</str> <int id="x">-1632</int> </object> <object id="lens_grass_2_1315005144912"> <int id="w">947</int> <int id="z">21</int> <int id="h">110</int> <int id="y">-284</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-117</int> </object> <object id="heights_topper_1_1315333415591"> <int id="w">207</int> <int id="z">107</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-388</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2291</int> </object> <object id="heights_topper_1_1315333415592"> <int id="w">207</int> <int id="z">108</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-374</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2185</int> </object> <object id="heights_topper_1_1315414557021"> <int id="w">269</int> <int id="z">85</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-11</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1536</int> </object> <object id="heights_platform_3_1314810401352"> <int id="w">236</int> <int id="z">23</int> <int id="h">205</int> <bool id="h_flip">true</bool> <int id="y">-70</int> <str id="name">heights_platform_3_1314137830538</str> <str id="sprite_class">heights_platform_3</str> <int id="x">-1814</int> </object> <object id="snow_patch_3_1315428417879"> <int id="w">344</int> <int id="z">299</int> <int id="r">5</int> <int id="h">45</int> <int id="y">-303</int> <str id="name">snow_patch_3_1315428417879</str> <str id="sprite_class">snow_patch_3</str> <int id="x">319</int> </object> <object id="lens_grass_2_1315005144845"> <int id="w">675</int> <int id="z">68</int> <int id="h">110</int> <int id="y">-263</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-720</int> </object> <object id="lens_grass_2_1315414557046"> <int id="w">675</int> <int id="z">95</int> <int id="r">8</int> <int id="h">110</int> <int id="y">-124</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1038</int> </object> <object id="heights_ladderbed_1_1315428417668"> <int id="w">136</int> <int id="z">206</int> <int id="h">147</int> <int id="y">-502</int> <str id="name">heights_ladderbed_1_1315428417666</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">-1636</int> </object> <object id="heights_topper_1_1315005144866"> <int id="w">269</int> <int id="z">79</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-181</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">426</int> </object> <object id="cliff_cover_5_1315428417643"> <int id="w">662</int> <int id="z">6</int> <int id="r">-15</int> <int id="h">288</int> <int id="y">-451</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1950</int> </object> <object id="heights_topper_1_1315005144897"> <int id="w">207</int> <int id="z">104</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-396</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2061</int> </object> <object id="heights_topper_1_1315333415594"> <int id="w">207</int> <int id="z">110</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-394</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2429</int> </object> <object id="pampas_1_1315439379296"> <int id="w">52</int> <int id="z">301</int> <int id="h">76</int> <int id="y">-330</int> <str id="name">pampas_1_1315439379295</str> <str id="sprite_class">pampas_1</str> <int id="x">-1252</int> </object> <object id="cliff_cover_5_1315428417594"> <int id="w">659</int> <int id="z">10</int> <int id="r">-105</int> <int id="h">286</int> <int id="y">-940</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">19</int> </object> <object id="heights_topper_1_1315414557022"> <int id="w">269</int> <int id="z">86</int> <int id="r">15</int> <int id="h">69</int> <int id="y">21</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1732</int> </object> <object id="cliff_cover_5_1315414557014"> <int id="w">659</int> <int id="z">64</int> <int id="r">-15</int> <int id="h">286</int> <int id="y">-84</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">2313</int> </object> <object id="lens_grass_2_1315005144839"> <int id="w">675</int> <int id="z">119</int> <int id="h">110</int> <int id="y">-272</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1396</int> </object> <object id="snow_splotch_2_1315344184424"> <int id="w">281</int> <int id="z">126</int> <int id="r">8</int> <int id="h">38</int> <int id="y">-332</int> <str id="name">snow_splotch_2_1314918560043</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-1468</int> </object> <object id="cliff_cover_5_1314991486327"> <int id="w">476</int> <int id="z">24</int> <int id="r">-9</int> <int id="h">183</int> <int id="y">-201</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-2540</int> </object> <object id="cliff_cover_5_1314996458965"> <int id="w">601</int> <int id="z">36</int> <int id="r">-15</int> <int id="h">261</int> <int id="y">46</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1379</int> </object> <object id="heights_topper_1_1315428417679"> <int id="w">269</int> <int id="z">224</int> <int id="h">69</int> <int id="y">-1252</int> <str id="name">heights_topper_1_1315428417679</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1076</int> </object> <object id="heights_topper_1_1315333415595"> <int id="w">207</int> <int id="z">111</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-363</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2463</int> </object> <object id="heights_topper_1_1315005144860"> <int id="w">269</int> <int id="z">73</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-195</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-685</int> </object> <object id="heights_topper_1_1315428417873"> <int id="w">207</int> <int id="z">41</int> <int id="r">21</int> <int id="h">67</int> <int id="y">-233</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1370</int> </object> <object id="cliff_cover_5_1315428417593"> <int id="w">659</int> <int id="z">11</int> <int id="r">-40</int> <int id="h">286</int> <int id="y">-531</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">70</int> </object> <object id="lens_grass_2_1315344184420"> <int id="w">521</int> <int id="z">122</int> <int id="r">-3</int> <int id="h">74</int> <int id="y">-404</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-2316</int> </object> <object id="cliff_cover_5_1315333415641"> <int id="w">801</int> <int id="z">28</int> <int id="r">-15</int> <int id="h">348</int> <int id="y">95</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-2455</int> </object> <object id="lens_grass_2_1315330972768"> <int id="w">521</int> <int id="z">118</int> <int id="r">-3</int> <int id="h">74</int> <int id="y">-320</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1639</int> </object> <object id="cliff_cover_5_1315414557011"> <int id="w">659</int> <int id="z">61</int> <int id="r">-15</int> <int id="h">286</int> <int id="y">-65</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1748</int> </object> <object id="snow_splotch_2_1315428417852"> <int id="w">215</int> <int id="z">283</int> <int id="h">26</int> <int id="y">-1226</int> <str id="name">snow_splotch_2_1315428417836</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">20</int> </object> <object id="heights_topper_1_1315428417875"> <int id="w">269</int> <int id="z">70</int> <int id="r">10</int> <int id="h">69</int> <int id="y">-199</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1157</int> </object> <object id="heights_topper_1_1315428417538"> <int id="w">269</int> <int id="z">145</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-337</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">2452</int> </object> <object id="snow_splotch_1_1315428417848"> <int id="w">224</int> <int id="z">280</int> <int id="h">29</int> <int id="y">-1052</int> <str id="name">snow_splotch_1_1315428417835</str> <str id="sprite_class">snow_splotch_1</str> <int id="x">514</int> </object> <object id="lens_grass_2_1315428417738"> <int id="w">280</int> <int id="z">265</int> <int id="r">-3</int> <int id="h">52</int> <int id="y">-401</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1333</int> </object> <object id="cliff_cover_5_1315428417636"> <int id="w">662</int> <int id="z">199</int> <int id="r">-30</int> <int id="h">288</int> <bool id="h_flip">true</bool> <int id="y">-663</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1336</int> </object> <object id="heights_topper_1_1315428417654"> <int id="w">269</int> <int id="z">215</int> <int id="r">-10</int> <int id="h">69</int> <bool id="h_flip">true</bool> <int id="y">-1073</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1136</int> </object> <object id="cliff_cover_5_1314996459008"> <int id="w">657</int> <int id="z">54</int> <int id="r">-20</int> <int id="h">285</int> <int id="y">-217</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1039</int> </object> <object id="lens_grass_2_1315428417706"> <int id="w">389</int> <int id="z">247</int> <int id="r">10</int> <int id="h">55</int> <int id="y">-896</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">323</int> </object> <object id="snow_splotch_2_1315428417863"> <int id="w">238</int> <int id="z">291</int> <int id="r">-10</int> <int id="h">29</int> <int id="y">-413</int> <str id="name">snow_splotch_2_1315428417860</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1850</int> </object> <object id="lens_grass_2_1315428417733"> <int id="w">570</int> <int id="z">262</int> <int id="r">-5</int> <int id="h">105</int> <int id="y">-367</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">2330</int> </object> <object id="lens_grass_2_1315414557049"> <int id="w">675</int> <int id="z">130</int> <int id="h">110</int> <int id="y">9</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">2201</int> </object> <object id="snow_splotch_2_1315428417853"> <int id="w">215</int> <int id="z">284</int> <int id="r">10</int> <int id="h">26</int> <int id="y">-981</int> <str id="name">snow_splotch_2_1315428417836</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">1056</int> </object> <object id="lens_grass_2_1315428417730"> <int id="w">359</int> <int id="z">245</int> <int id="r">-5</int> <int id="h">66</int> <int id="y">-1032</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">543</int> </object> <object id="heights_topper_1_1315428417868"> <int id="w">207</int> <int id="z">109</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-363</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2337</int> </object> <object id="heights_topper_1_1315428417533"> <int id="w">269</int> <int id="z">162</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-310</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">2220</int> </object> <object id="heights_topper_1_1315005144896"> <int id="w">207</int> <int id="z">103</int> <int id="r">6</int> <int id="h">67</int> <int id="y">-403</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2165</int> </object> <object id="lens_grass_2_1315428417731"> <int id="w">348</int> <int id="z">246</int> <int id="r">5</int> <int id="h">64</int> <int id="y">-1008</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">760</int> </object> <object id="heights_ladder_2_1315428417676"> <int id="w">70</int> <int id="z">219</int> <int id="h">87</int> <int id="y">-821</int> <str id="name">heights_ladder_2_1315428417569</str> <str id="sprite_class">heights_ladder_2</str> <int id="x">-1628</int> </object> <object id="lens_grass_2_1315414557023"> <int id="w">538</int> <int id="z">101</int> <int id="h">88</int> <int id="y">-43</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">2361</int> </object> <object id="lens_grass_2_1315428417708"> <int id="w">469</int> <int id="z">243</int> <int id="r">5</int> <int id="h">66</int> <int id="y">-923</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">170</int> </object> <object id="heights_face_rock_1_1315428417893"> <int id="w">274</int> <int id="z">156</int> <int id="h">87</int> <int id="y">-257</int> <str id="name">heights_face_rock_1_1315428417891</str> <str id="sprite_class">heights_face_rock_1</str> <int id="x">2070</int> </object> <object id="snow_splotch_2_1315418217912"> <int id="w">299</int> <int id="z">138</int> <int id="h">36</int> <int id="y">-29</int> <str id="name">snow_splotch_2_1315418217909</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">2459</int> </object> <object id="pampas_1_1315349711040"> <int id="w">60</int> <int id="z">127</int> <int id="h">87</int> <int id="y">-385</int> <str id="name">pampas_1_1314121713571</str> <str id="sprite_class">pampas_1</str> <int id="x">-146</int> </object> <object id="heights_ladder_2_1315428417675"> <int id="w">70</int> <int id="z">221</int> <int id="h">87</int> <int id="y">-660</int> <str id="name">heights_ladder_2_1315428417569</str> <str id="sprite_class">heights_ladder_2</str> <int id="x">-1626</int> </object> <object id="cliff_cover_3_1315428417531"> <int id="w">467</int> <int id="z">160</int> <int id="r">10</int> <int id="h">196</int> <bool id="h_flip">true</bool> <int id="y">-857</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">699</int> </object> <object id="heights_topper_1_1315428417647"> <int id="w">269</int> <int id="z">211</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-858</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1358</int> </object> <object id="cliff_cover_3_1315428417529"> <int id="w">368</int> <int id="z">51</int> <int id="r">20</int> <int id="h">188</int> <bool id="h_flip">true</bool> <int id="y">-736</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">1080</int> </object> <object id="lens_grass_2_1315428417696"> <int id="w">384</int> <int id="z">241</int> <int id="h">54</int> <int id="y">-1118</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1016</int> </object> <object id="heights_topper_1_1315428417651"> <int id="w">269</int> <int id="z">203</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-882</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-1411</int> </object> <object id="cliff_cover_3_1315428417530"> <int id="w">467</int> <int id="z">168</int> <int id="r">10</int> <int id="h">238</int> <bool id="h_flip">true</bool> <int id="y">-831</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">537</int> </object> <object id="lens_grass_2_1315414557048"> <int id="w">675</int> <int id="z">129</int> <int id="r">3</int> <int id="h">110</int> <int id="y">13</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1926</int> </object> <object id="lens_grass_2_1315005144847"> <int id="w">675</int> <int id="z">87</int> <int id="h">110</int> <int id="y">-255</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-168</int> </object> <object id="lens_grass_2_1315428417877"> <int id="w">675</int> <int id="z">88</int> <int id="r">5</int> <int id="h">110</int> <int id="y">-230</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">614</int> </object> <object id="heights_topper_1_1315428417544"> <int id="w">269</int> <int id="z">147</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-339</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1963</int> </object> <object id="cliff_cover_5_1315428417635"> <int id="w">662</int> <int id="z">198</int> <int id="r">-20</int> <int id="h">288</int> <bool id="h_flip">true</bool> <int id="y">-880</int> <str id="name">cliff_cover_5_1315428417635</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-1051</int> </object> <object id="snow_splotch_2_1315428417845"> <int id="w">215</int> <int id="z">282</int> <int id="h">26</int> <int id="y">-1273</int> <str id="name">snow_splotch_2_1315428417836</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-176</int> </object> <object id="heights_topper_1_1315005144895"> <int id="w">207</int> <int id="z">102</int> <int id="r">6</int> <int id="h">51</int> <int id="y">-432</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2066</int> </object> <object id="heights_ladder_2_1315428417713"> <int id="w">70</int> <int id="z">223</int> <int id="h">87</int> <int id="y">-1182</int> <str id="name">heights_ladder_2_1315428417569</str> <str id="sprite_class">heights_ladder_2</str> <int id="x">-1077</int> </object> <object id="lens_grass_2_1315414557003"> <int id="w">675</int> <int id="z">92</int> <int id="r">5</int> <int id="h">110</int> <int id="y">-190</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">722</int> </object> <object id="heights_topper_1_1315428417682"> <int id="w">269</int> <int id="z">230</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-1201</int> <str id="name">heights_topper_1_1315428417679</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-444</int> </object> <object id="cliff_cover_3_1315428417585"> <int id="w">467</int> <int id="z">173</int> <int id="r">-40</int> <int id="h">238</int> <int id="y">-611</int> <str id="name">cliff_cover_3_1315428417528</str> <str id="sprite_class">cliff_cover_3</str> <int id="x">247</int> </object> <object id="snow_splotch_2_1315428417855"> <int id="w">215</int> <int id="z">295</int> <int id="h">26</int> <int id="y">-1067</int> <str id="name">snow_splotch_2_1315428417836</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">649</int> </object> <object id="heights_topper_1_1315414556997"> <int id="w">269</int> <int id="z">80</int> <int id="r">15</int> <int id="h">69</int> <int id="y">-168</int> <str id="name">heights_topper_1_1315005144853</str> <str id="sprite_class">heights_topper_1</str> <int id="x">601</int> </object> <object id="heights_topper_1_1315428417578"> <int id="w">269</int> <int id="z">181</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-987</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">461</int> </object> <object id="heights_ladderbed_1_1315428417602"> <int id="w">136</int> <int id="z">185</int> <int id="h">147</int> <int id="y">-511</int> <str id="name">heights_ladderbed_1_1315428417559</str> <str id="sprite_class">heights_ladderbed_1</str> <int id="x">21</int> </object> <object id="lens_grass_2_1314991486329"> <int id="w">521</int> <int id="z">44</int> <int id="r">-3</int> <int id="h">74</int> <int id="y">-353</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-1775</int> </object> <object id="cliff_cover_5_1315414557010"> <int id="w">659</int> <int id="z">60</int> <int id="r">-25</int> <int id="h">286</int> <int id="y">-51</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1520</int> </object> <object id="snow_splotch_2_1315428417843"> <int id="w">215</int> <int id="z">276</int> <int id="h">26</int> <int id="y">-1280</int> <str id="name">snow_splotch_2_1315428417836</str> <str id="sprite_class">snow_splotch_2</str> <int id="x">-489</int> </object> <object id="cliff_cover_5_1314996458990"> <int id="w">657</int> <int id="z">55</int> <int id="r">-15</int> <int id="h">285</int> <int id="y">70</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">574</int> </object> <object id="heights_face_rock_1_1315428417889"> <int id="w">267</int> <int id="z">214</int> <int id="r">-10</int> <int id="h">85</int> <int id="y">-1008</int> <str id="name">heights_face_rock_1_1315428417885</str> <str id="sprite_class">heights_face_rock_1</str> <int id="x">-1187</int> </object> <object id="lens_grass_2_1315414557052"> <int id="w">538</int> <int id="z">93</int> <int id="h">88</int> <int id="y">-83</int> <str id="name">lens_grass_2_1315005144838</str> <str id="sprite_class">lens_grass_2</str> <int id="x">1909</int> </object> <object id="heights_topper_1_1315428417535"> <int id="w">269</int> <int id="z">165</int> <int id="r">5</int> <int id="h">69</int> <int id="y">-322</int> <str id="name">heights_topper_1_1315428417532</str> <str id="sprite_class">heights_topper_1</str> <int id="x">1934</int> </object> <object id="lens_grass_2_1315344184419"> <int id="w">521</int> <int id="z">121</int> <int id="r">1</int> <int id="h">74</int> <int id="y">-424</int> <str id="name">lens_grass_2_1314742482539</str> <str id="sprite_class">lens_grass_2</str> <int id="x">-2019</int> </object> <object id="heights_topper_1_1315428417597"> <int id="w">269</int> <int id="z">188</int> <int id="h">69</int> <int id="y">-901</int> <str id="name">heights_topper_1_1315428417575</str> <str id="sprite_class">heights_topper_1</str> <int id="x">59</int> </object> <object id="heights_topper_1_1315333415619"> <int id="w">207</int> <int id="z">114</int> <int id="r">6</int> <int id="h">57</int> <int id="y">-422</int> <str id="name">heights_topper_1_1315005144885</str> <str id="sprite_class">heights_topper_1</str> <int id="x">-2475</int> </object> <object id="heights_ladder_2_1315428417605"> <int id="w">70</int> <int id="z">194</int> <int id="h">87</int> <int id="y">-645</int> <str id="name">heights_ladder_2_1315428417569</str> <str id="sprite_class">heights_ladder_2</str> <int id="x">22</int> </object> <object id="cliff_cover_5_1314996459025"> <int id="w">710</int> <int id="z">25</int> <int id="r">-9</int> <int id="h">274</int> <int id="y">-185</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">-2299</int> </object> <object id="heights_ladder_1_1315428417570"> <int id="w">73</int> <int id="z">176</int> <int id="h">79</int> <int id="y">-570</int> <str id="name">heights_ladder_1_1315428417570</str> <str id="sprite_class">heights_ladder_1</str> <int id="x">1357</int> </object> <object id="cliff_cover_5_1315428417524"> <int id="w">657</int> <int id="z">53</int> <int id="r">-35</int> <int id="h">285</int> <int id="y">-273</int> <str id="name">cliff_cover_5_1314637852505</str> <str id="sprite_class">cliff_cover_5</str> <int id="x">1112</int> </object> <object id="snow_patch_5_1315428417858"> <int id="w">474</int> <int id="z">286</int> <int id="h">67</int> <int id="y">-436</int> <str id="name">snow_patch_5_1315428417858</str> <str id="sprite_class">snow_patch_5</str> <int id="x">2427</int> </object> </object> <int id="w">5000</int> <object id="ladders"> <object id="ladder_1315428417720"> <int id="y">-1159</int> <int id="w">50</int> <int id="h">150</int> <int id="x">-1070</int> </object> <object id="ladder_1315428417574"> <int id="y">-435</int> <int id="w">50</int> <int id="h">345</int> <int id="x">1360</int> </object> <object id="ladder_1315428417623"> <int id="y">-358</int> <int id="w">50</int> <int id="h">585</int> <int id="x">19</int> </object> <object id="ladder_1315428417678"> <int id="y">-401</int> <int id="w">50</int> <int id="h">529</int> <int id="x">-1627</int> </object> </object> <object id="walls"> </object> <object id="platform_lines"> <object id="plat_1315428417565"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-781</int> <int id="x">1272</int> </object> <object id="end"> <int id="y">-769</int> <int id="x">1316</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417568"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-765</int> <int id="x">1446</int> </object> <object id="end"> <int id="y">-735</int> <int id="x">1507</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417718"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1331</int> <int id="x">-797</int> </object> <object id="end"> <int id="y">-1306</int> <int id="x">-579</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1331768687907"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-426</int> <int id="x">-2499</int> </object> <object id="end"> <int id="y">-418</int> <int id="x">-2435</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417723"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1125</int> <int id="x">-1197</int> </object> <object id="end"> <int id="y">-1145</int> <int id="x">-1103</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417611"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-946</int> <int id="x">-62</int> </object> <object id="end"> <int id="y">-934</int> <int id="x">-27</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417727"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1227</int> <int id="x">264</int> </object> <object id="end"> <int id="y">-1209</int> <int id="x">305</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417670"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-936</int> <int id="x">-1712</int> </object> <object id="end"> <int id="y">-924</int> <int id="x">-1675</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417742"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1067</int> <int id="x">492</int> </object> <object id="end"> <int id="y">-1070</int> <int id="x">599</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315414557064"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-108</int> <int id="x">2139</int> </object> <object id="end"> <int id="y">-98</int> <int id="x">2323</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417555"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-410</int> <int id="x">2449</int> </object> <object id="end"> <int id="y">-412</int> <int id="x">2499</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417566"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-784</int> <int id="x">1246</int> </object> <object id="end"> <int id="y">-781</int> <int id="x">1272</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315414557065"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-113</int> <int id="x">1644</int> </object> <object id="end"> <int id="y">-101</int> <int id="x">1720</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417743"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1032</int> <int id="x">357</int> </object> <object id="end"> <int id="y">-1067</int> <int id="x">492</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417740"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1060</int> <int id="x">748</int> </object> <object id="end"> <int id="y">-1011</int> <int id="x">1000</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315414557031"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-101</int> <int id="x">1720</int> </object> <object id="end"> <int id="y">-105</int> <int id="x">1796</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417722"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1145</int> <int id="x">-1103</int> </object> <object id="end"> <int id="y">-1145</int> <int id="x">-1012</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417728"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1209</int> <int id="x">305</int> </object> <object id="end"> <int id="y">-1203</int> <int id="x">340</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417564"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-769</int> <int id="x">1316</int> </object> <object id="end"> <int id="y">-769</int> <int id="x">1393</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417883"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-217</int> <int id="x">999</int> </object> <object id="end"> <int id="y">-203</int> <int id="x">1192</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417747"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-393</int> <int id="x">1789</int> </object> <object id="end"> <int id="y">-418</int> <int id="x">1949</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417882"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-203</int> <int id="x">1192</int> </object> <object id="end"> <int id="y">-184</int> <int id="x">1352</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315414557062"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-115</int> <int id="x">1917</int> </object> <object id="end"> <int id="y">-116</int> <int id="x">2004</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417610"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-934</int> <int id="x">-27</int> </object> <object id="end"> <int id="y">-934</int> <int id="x">66</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417711"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-948</int> <int id="x">-1242</int> </object> <object id="end"> <int id="y">-944</int> <int id="x">-1145</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315414557055"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-241</int> <int id="x">819</int> </object> <object id="end"> <int id="y">-217</int> <int id="x">999</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417658"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-928</int> <int id="x">-1510</int> </object> <object id="end"> <int id="y">-947</int> <int id="x">-1447</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417550"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-344</int> <int id="x">1621</int> </object> <object id="end"> <int id="y">-393</int> <int id="x">1789</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417580"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1011</int> <int id="x">1000</int> </object> <object id="end"> <int id="y">-945</int> <int id="x">1177</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417741"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1070</int> <int id="x">599</int> </object> <object id="end"> <int id="y">-1060</int> <int id="x">748</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315414557063"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-116</int> <int id="x">2004</int> </object> <object id="end"> <int id="y">-108</int> <int id="x">2139</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417615"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-951</int> <int id="x">223</int> </object> <object id="end"> <int id="y">-925</int> <int id="x">338</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417744"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-425</int> <int id="x">2206</int> </object> <object id="end"> <int id="y">-410</int> <int id="x">2449</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417710"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-953</int> <int id="x">-1361</int> </object> <object id="end"> <int id="y">-948</int> <int id="x">-1242</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417549"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-311</int> <int id="x">1544</int> </object> <object id="end"> <int id="y">-344</int> <int id="x">1621</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417657"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-924</int> <int id="x">-1675</int> </object> <object id="end"> <int id="y">-919</int> <int id="x">-1559</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417717"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1326</int> <int id="x">-940</int> </object> <object id="end"> <int id="y">-1331</int> <int id="x">-797</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417709"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-947</int> <int id="x">-1447</int> </object> <object id="end"> <int id="y">-953</int> <int id="x">-1361</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417579"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-945</int> <int id="x">1177</int> </object> <object id="end"> <int id="y">-910</int> <int id="x">1238</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315414557027"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-278</int> <int id="x">561</int> </object> <object id="end"> <int id="y">-241</int> <int id="x">819</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417671"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-919</int> <int id="x">-1559</int> </object> <object id="end"> <int id="y">-928</int> <int id="x">-1510</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417613"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-934</int> <int id="x">66</int> </object> <object id="end"> <int id="y">-949</int> <int id="x">138</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417715"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1287</int> <int id="x">-1177</int> </object> <object id="end"> <int id="y">-1297</int> <int id="x">-1117</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315414557061"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-105</int> <int id="x">1796</int> </object> <object id="end"> <int id="y">-115</int> <int id="x">1917</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417614"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-949</int> <int id="x">138</int> </object> <object id="end"> <int id="y">-951</int> <int id="x">223</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417626"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-338</int> <int id="x">-56</int> </object> <object id="end"> <int id="y">-334</int> <int id="x">61</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315414557032"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-98</int> <int id="x">2323</int> </object> <object id="end"> <int id="y">-104</int> <int id="x">2499</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417630"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-312</int> <int id="x">-785</int> </object> <object id="end"> <int id="y">-321</int> <int id="x">-606</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417558"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-417</int> <int id="x">1386</int> </object> <object id="end"> <int id="y">-416</int> <int id="x">1464</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315332059200"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-436</int> <int id="x">-2123</int> </object> <object id="end"> <int id="y">-446</int> <int id="x">-2057</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315439379299"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-295</int> <int id="x">-1117</int> </object> <object id="end"> <int id="y">-312</int> <int id="x">-785</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417628"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-332</int> <int id="x">-448</int> </object> <object id="end"> <int id="y">-336</int> <int id="x">-251</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417545"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-291</int> <int id="x">1498</int> </object> <object id="end"> <int id="y">-311</int> <int id="x">1544</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417721"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1145</int> <int id="x">-1012</int> </object> <object id="end"> <int id="y">-1139</int> <int id="x">-941</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315439379300"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-446</int> <int id="x">-2057</int> </object> <object id="end"> <int id="y">-441</int> <int id="x">-1965</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417746"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-418</int> <int id="x">1949</int> </object> <object id="end"> <int id="y">-425</int> <int id="x">2206</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417625"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-334</int> <int id="x">61</int> </object> <object id="end"> <int id="y">-326</int> <int id="x">147</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417714"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1297</int> <int id="x">-1117</int> </object> <object id="end"> <int id="y">-1303</int> <int id="x">-1015</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417665"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1139</int> <int id="x">-941</int> </object> <object id="end"> <int id="y">-1120</int> <int id="x">-834</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1314996459005"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-325</int> <int id="x">-1344</int> </object> <object id="end"> <int id="y">-297</int> <int id="x">-1241</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315439379298"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-297</int> <int id="x">-1241</int> </object> <object id="end"> <int id="y">-295</int> <int id="x">-1117</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417556"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-403</int> <int id="x">1194</int> </object> <object id="end"> <int id="y">-415</int> <int id="x">1298</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417612"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-948</int> <int id="x">-110</int> </object> <object id="end"> <int id="y">-946</int> <int id="x">-62</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417567"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-769</int> <int id="x">1393</int> </object> <object id="end"> <int id="y">-765</int> <int id="x">1446</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417725"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1265</int> <int id="x">-262</int> </object> <object id="end"> <int id="y">-1236</int> <int id="x">90</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417716"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1303</int> <int id="x">-1015</int> </object> <object id="end"> <int id="y">-1326</int> <int id="x">-940</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1314996459001"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-304</int> <int id="x">288</int> </object> <object id="end"> <int id="y">-278</int> <int id="x">561</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417627"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-336</int> <int id="x">-251</int> </object> <object id="end"> <int id="y">-338</int> <int id="x">-56</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417726"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1236</int> <int id="x">90</int> </object> <object id="end"> <int id="y">-1227</int> <int id="x">264</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417617"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-898</int> <int id="x">453</int> </object> <object id="end"> <int id="y">-873</int> <int id="x">504</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417719"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1306</int> <int id="x">-579</int> </object> <object id="end"> <int id="y">-1265</int> <int id="x">-262</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417624"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-326</int> <int id="x">147</int> </object> <object id="end"> <int id="y">-304</int> <int id="x">288</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417629"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-321</int> <int id="x">-606</int> </object> <object id="end"> <int id="y">-332</int> <int id="x">-448</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417616"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-925</int> <int id="x">338</int> </object> <object id="end"> <int id="y">-898</int> <int id="x">453</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315333415615"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-441</int> <int id="x">-1965</int> </object> <object id="end"> <int id="y">-357</int> <int id="x">-1612</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417880"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-152</int> <int id="x">1519</int> </object> <object id="end"> <int id="y">-113</int> <int id="x">1644</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417881"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-184</int> <int id="x">1352</int> </object> <object id="end"> <int id="y">-152</int> <int id="x">1519</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417724"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-1072</int> <int id="x">-1330</int> </object> <object id="end"> <int id="y">-1125</int> <int id="x">-1197</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315333415684"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-357</int> <int id="x">-1612</int> </object> <object id="end"> <int id="y">-325</int> <int id="x">-1344</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315428417557"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-415</int> <int id="x">1298</int> </object> <object id="end"> <int id="y">-417</int> <int id="x">1386</int> </object> <int id="platform_pc_perm">-1</int> </object> <object id="plat_1315005144898"> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-418</int> <int id="x">-2435</int> </object> <object id="end"> <int id="y">-436</int> <int id="x">-2123</int> </object> <int id="platform_pc_perm">-1</int> </object> </object> <int id="z">0</int> <object id="boxes"> </object> </object> </object> <object id="gradient"> <str id="bottom">FFFFFF</str> <str id="top">6699FF</str> </object> <str id="tsid">LHV2547JP9B2AG0</str> <int id="rookable_type">0</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1330461352.swf</str> <null id="physics"/> <null id="img_file_versioned"/> <int id="ground_y">-475</int> <null id="loading_label"/> <object id="sources"> <int id="LHVLG51LV6B22AO">1</int> <int id="LHVPJPLE4TA27LD">1</int> </object> <null id="music_file"/> </object> </game_object>
373,305
Common Lisp
.l
11,155
26.664455
207
0.546
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
926194adaf3f38724b058aee3727997122c1dc29b5a4269eb78772eb66daaf2e
20,857
[ -1 ]
20,858
LHV2547JP9B2AG0.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV2547JP9B2AG0 Baddam Haddam-double arch rocks 1038 elements/LHV2547JP9B2AG0.xml
<game_object tsid="LHV2547JP9B2AG0" ts="1364242154479" label="Baddam Haddam" class_tsid="town" hubid="101" moteid="9" letime="3g8f1ff2" rbtime="2b9pj7ag" upd_gs="gs6" load_time="2013-03-25 12:59:02.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2012-08-30/LHV2547JP9B2AG0_loading_1346350053.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <object id="image"> <str id="url">streets/2012-08-30/LHV2547JP9B2AG0_main_1346350055.jpg</str> <int id="w">720</int> <int id="h">216</int> </object> <object id="jobs"> <object id="685"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> <str id="title_override">Build Baddam Haddam In Aranna</str> <str id="desc_override">Expand Aranna by building a new street, Baddam Haddam.</str> <object id="connecting_streets"> <str id="0">LHVPJPLE4TA27LD</str> </object> </object> <object id="class_ids"> <object id="job_street_ph1_02"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Lay the Turf</str> <str id="class_id">job_street_ph1_02</str> <undefined id="instance"/> </object> <object id="job_street_ph2_03"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Backyard BBQ</str> <undefined id="instance"/> </object> <object id="job_street_ph3_05"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Schmooze</str> <undefined id="instance"/> </object> <object id="job_street_ph4_01"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Complete the Task</str> <undefined id="instance"/> </object> </object> </object> <object id="686"> <object id="class_ids"> <object id="job_street_ph5_04"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Sam's Breakfast</str> <objref id="instance" tsid="QHV42N1OMKB2NH8"/> <str id="class_id">job_street_ph5_04</str> </object> <object id="job_street_ph2_07"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Party On</str> <objref id="instance" tsid="QDOUQVCQM2I2H4D"/> <str id="class_id">job_street_ph2_07</str> </object> <object id="job_street_ph3_01c"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Feed the Crew</str> <objref id="instance" tsid="QDOC6QOBO2I2L9O"/> <str id="class_id">job_street_ph3_01c</str> </object> <object id="job_street_ph4_06"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Fat of the Land</str> <objref id="instance" tsid="QDOLVEQOP2I234N"/> <str id="class_id">job_street_ph4_06</str> </object> </object> <object id="street_info"> <int id="type">2</int> <int id="is_hidden">0</int> <str id="title_override">Build Chavila Checker In Aranna</str> <str id="desc_override">Expand Aranna by building a new street, Chavila Checker.</str> <str id="completion_email">[email protected],[email protected]</str> <str id="target_street">LHVLG51LV6B22AO</str> </object> </object> </object> <bool id="jobs_is_locked">false</bool> <object id="delayed_sounds"> </object> <object id="action_requests"> </object> <object id="keys"> </object> <object id="rook_status"> <bool id="rooked">false</bool> </object> <object id="qurazy"> </object> <object id="stun_orbs"> </object> <object id="incantations"> <object id="PHFHJABVNUC285L"> <int id="step">1</int> <int id="ts">1350436701</int> </object> <object id="PHFUA8HSGCD2A56"> <int id="step">2</int> <int id="ts">1350436725</int> </object> <object id="PHF248O600D2SNR"> <int id="step">3</int> <int id="ts">1350436736</int> </object> <object id="PUVFVM8KG9B37F0"> <int id="step">1</int> <int id="ts">1350436750</int> </object> <object id="PUV7PU7B5JH2OP2"> <int id="step">2</int> <int id="ts">1350436753</int> </object> <object id="PUVEGG4T2FG2UCD"> <int id="step">3</int> <int id="ts">1350436756</int> </object> <object id="PUVKGJVVG583EPM"> <int id="step">1</int> <int id="ts">1350437122</int> </object> <object id="PUVTARTIND830E8"> <int id="step">1</int> <int id="ts">1350438180</int> </object> <object id="PHV3EC8AOK42KO4"> <int id="step">2</int> <int id="ts">1350438183</int> </object> <object id="PCR101KU5UP1EAG"> <int id="step">3</int> <int id="ts">1350438185</int> </object> <object id="PUVV29S6K5D2DHG"> <int id="step">1</int> <int id="ts">1350438758</int> </object> <object id="PUVIS05FIIA3SBO"> <int id="step">1</int> <int id="ts">1350438886</int> </object> <object id="PHVK2FSFOT22C3I"> <int id="step">2</int> <int id="ts">1350438891</int> </object> <object id="PHFTTVBJQ2D2PP8"> <int id="step">3</int> <int id="ts">1350438893</int> </object> <object id="PUVBS7F720G25LP"> <int id="step">1</int> <int id="ts">1350439216</int> </object> <object id="PUVFH6OPFTF2LF6"> <int id="step">2</int> <int id="ts">1350439220</int> </object> <object id="PCRLR85EFDV1F9B"> <int id="step">1</int> <int id="ts">1350439676</int> </object> <object id="PHVR7F201F72EUM"> <int id="step">2</int> <int id="ts">1350439679</int> </object> <object id="PHFV3DRAV0D23TB"> <int id="step">3</int> <int id="ts">1350439680</int> </object> <object id="PIFCN0H01L638B9"> <int id="step">1</int> <int id="ts">1350440144</int> </object> <object id="PUVQ9CP8K9G2F2M"> <int id="step">1</int> <int id="ts">1350440805</int> </object> <object id="PUVFJPCQI7D2ISD"> <int id="step">1</int> <int id="ts">1350440978</int> </object> <object id="PUV3EGIE8GG2CSM"> <int id="step">2</int> <int id="ts">1350440988</int> </object> <object id="PUVBBEV6LP735IR"> <int id="step">3</int> <int id="ts">1350440990</int> </object> <object id="PUVS27VFH8K2F38"> <int id="step">1</int> <int id="ts">1350441268</int> </object> <object id="PHVGU6I056A2DL9"> <int id="step">2</int> <int id="ts">1350441274</int> </object> <object id="PHVR4QIMCOA205O"> <int id="step">3</int> <int id="ts">1350441277</int> </object> <object id="PUVH4JOK59G2BM3"> <int id="step">1</int> <int id="ts">1350441686</int> </object> <object id="PUVHR6OPKF83A1H"> <int id="step">1</int> <int id="ts">1350444235</int> </object> <object id="PUV3G7UGUF933VH"> <int id="step">2</int> <int id="ts">1350444238</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">1</int> <int id="ts">1350444843</int> </object> <object id="PIF9KNSPVL53BF3"> <int id="step">2</int> <int id="ts">1350444852</int> </object> <object id="PHVP4B1U0H22UNL"> <int id="step">1</int> <int id="ts">1350445735</int> </object> <object id="PHFPRQPJJ2D2NKI"> <int id="step">2</int> <int id="ts">1350445736</int> </object> <object id="PHFIPVH38TC2PIV"> <int id="step">3</int> <int id="ts">1350445738</int> </object> <object id="PM120IAKPK123LN"> <int id="step">1</int> <int id="ts">1350449416</int> </object> <object id="PIF14GJO15D1P84"> <int id="step">2</int> <int id="ts">1350449423</int> </object> <object id="PHFSE0A9D4D2NDB"> <int id="step">3</int> <int id="ts">1350449424</int> </object> <object id="PUVNJCEML7P2ES0"> <int id="step">1</int> <int id="ts">1350450624</int> </object> <object id="PDOD9O86IKT26I0"> <int id="step">2</int> <int id="ts">1350450625</int> </object> <object id="PUV3JOQHDGB322T"> <int id="step">3</int> <int id="ts">1350450627</int> </object> <object id="PHF2VPV503D26FE"> <int id="step">1</int> <int id="ts">1350455358</int> </object> <object id="PUVA6OS08S832L9"> <int id="step">2</int> <int id="ts">1350455360</int> </object> <object id="PUVICMAK8SJ2MAS"> <int id="step">3</int> <int id="ts">1350455363</int> </object> <object id="PUVBAM0LIB93AG2"> <int id="step">1</int> <int id="ts">1350464020</int> </object> <object id="PA9U3JQ0CTD2448"> <int id="step">1</int> <int id="ts">1350465509</int> </object> <object id="PUV1MMBMKSP21M5"> <int id="step">1</int> <int id="ts">1350470007</int> </object> <object id="PIF1AB3PVG63M4B"> <int id="step">2</int> <int id="ts">1350470012</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">3</int> <int id="ts">1350471186</int> </object> <object id="PHF9L3JP5BD2R6D"> <int id="step">1</int> <int id="ts">1350475088</int> </object> <object id="PUV78NOA0G73MM9"> <int id="step">2</int> <int id="ts">1350475092</int> </object> <object id="PA9QA8RBRPD22NK"> <int id="step">1</int> <int id="ts">1350475116</int> </object> <object id="PUVS00IIIJ932CP"> <int id="step">1</int> <int id="ts">1350475285</int> </object> <object id="PUV60RVAK793N39"> <int id="step">2</int> <int id="ts">1350475287</int> </object> <object id="PA9K8H9L9RD2ISS"> <int id="step">1</int> <int id="ts">1350477688</int> </object> <object id="PUVQDRLM9NB31K0"> <int id="step">2</int> <int id="ts">1350478048</int> </object> <object id="PUV333V527D2942"> <int id="step">1</int> <int id="ts">1350478684</int> </object> <object id="PUV766GM4TE2A3Q"> <int id="step">1</int> <int id="ts">1350483264</int> </object> <object id="PUVPTF7N2DG203S"> <int id="step">2</int> <int id="ts">1350483266</int> </object> <object id="PHFU9TB1JVC2JE6"> <int id="step">3</int> <int id="ts">1350483267</int> </object> <object id="PHFL7P0N83D2P1R"> <int id="step">1</int> <int id="ts">1350484776</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">2</int> <int id="ts">1350484777</int> </object> <object id="PHF7GOMJS1D24NC"> <int id="step">3</int> <int id="ts">1350484778</int> </object> <object id="PHFLM7KOU2D24PL"> <int id="step">1</int> <int id="ts">1350485166</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">2</int> <int id="ts">1350485168</int> </object> <object id="PHFVN17DD0D2G3V"> <int id="step">3</int> <int id="ts">1350485177</int> </object> <object id="PUVBTTFKSVE2QNB"> <int id="step">1</int> <int id="ts">1350485592</int> </object> <object id="PUV70B01CBG27J4"> <int id="step">2</int> <int id="ts">1350486107</int> </object> <object id="PUVR92GN0HG2582"> <int id="step">1</int> <int id="ts">1350491919</int> </object> <object id="PHV4GARNOH829R0"> <int id="step">2</int> <int id="ts">1350491920</int> </object> <object id="PHFQ8BJAR0D28JI"> <int id="step">3</int> <int id="ts">1350491922</int> </object> <object id="PUVVI4BTHBJ28F1"> <int id="step">1</int> <int id="ts">1350491954</int> </object> <object id="PCRFESLEKNS1FHH"> <int id="step">2</int> <int id="ts">1350494569</int> </object> <object id="PUVR1R7KV9F2EQ9"> <int id="step">1</int> <int id="ts">1350494721</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">2</int> <int id="ts">1350494885</int> </object> <object id="PUVJFL92V8H27T1"> <int id="step">1</int> <int id="ts">1350497306</int> </object> <object id="PUVNTKGK1Q73OM0"> <int id="step">2</int> <int id="ts">1350497369</int> </object> <object id="PCRFLA5IKNS19P1"> <int id="step">1</int> <int id="ts">1350499686</int> </object> <object id="PCRF91L4KNS1SSI"> <int id="step">2</int> <int id="ts">1350499714</int> </object> <object id="PCR44OG2AUT12IH"> <int id="step">3</int> <int id="ts">1350499716</int> </object> <object id="PA9J5LA451E2LSE"> <int id="step">1</int> <int id="ts">1350499735</int> </object> <object id="PHFKGTOEK4D24VC"> <int id="step">2</int> <int id="ts">1350500404</int> </object> <object id="PUV2831ETFB3LS5"> <int id="step">1</int> <int id="ts">1350503158</int> </object> <object id="PUVT5TK2G6D28QU"> <int id="step">2</int> <int id="ts">1350504528</int> </object> <object id="PA96VLS6MHD2272"> <int id="step">1</int> <int id="ts">1350504623</int> </object> <object id="PA9A2VTBRID23MT"> <int id="step">2</int> <int id="ts">1350504627</int> </object> <object id="PHFBJB377AD29TL"> <int id="step">1</int> <int id="ts">1350507534</int> </object> <object id="PHV5G682DP82HK9"> <int id="step">2</int> <int id="ts">1350507918</int> </object> <object id="PUVP6M2EH9G2Q22"> <int id="step">1</int> <int id="ts">1350510841</int> </object> <object id="PHF20O01HRC21FP"> <int id="step">2</int> <int id="ts">1350511337</int> </object> <object id="PHVV591MRV524E4"> <int id="step">1</int> <int id="ts">1350511820</int> </object> <object id="PA9MO59D5CI2BG6"> <int id="step">2</int> <int id="ts">1350511822</int> </object> <object id="PUVG6BCRFA93SGL"> <int id="step">3</int> <int id="ts">1350511823</int> </object> <object id="PHF5COK3N4D2VS4"> <int id="step">1</int> <int id="ts">1350511909</int> </object> <object id="PHVCP3261Q62SK4"> <int id="step">1</int> <int id="ts">1350512137</int> </object> <object id="PHV2N3G3AF825OC"> <int id="step">1</int> <int id="ts">1350513144</int> </object> <object id="PHVPD72CABA2UCJ"> <int id="step">2</int> <int id="ts">1350513151</int> </object> <object id="PUVHPAD7L5N292B"> <int id="step">1</int> <int id="ts">1350513162</int> </object> <object id="PUV7281593F2747"> <int id="step">2</int> <int id="ts">1350513521</int> </object> <object id="PUV9Q6DO08B38DG"> <int id="step">1</int> <int id="ts">1350514023</int> </object> <object id="PHFIQ1AVKDD26I0"> <int id="step">2</int> <int id="ts">1350515277</int> </object> <object id="PHVGI4R40M32RKM"> <int id="step">1</int> <int id="ts">1350516445</int> </object> <object id="PUVKQV9012S2MRQ"> <int id="step">2</int> <int id="ts">1350516447</int> </object> <object id="PCRHA593D1N1EB3"> <int id="step">3</int> <int id="ts">1350516453</int> </object> <object id="PHVPITMAV5A2J16"> <int id="step">1</int> <int id="ts">1350517894</int> </object> <object id="PHFIS28II2D239P"> <int id="step">1</int> <int id="ts">1350518607</int> </object> <object id="PUVPOBK0AB83DS9"> <int id="step">1</int> <int id="ts">1350519498</int> </object> <object id="PA94QJT5JRD2AVC"> <int id="step">2</int> <int id="ts">1350519508</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">1</int> <int id="ts">1350519740</int> </object> <object id="PUVTNI1FJH93NPE"> <int id="step">2</int> <int id="ts">1350520048</int> </object> <object id="PIFB597LSS530B1"> <int id="step">1</int> <int id="ts">1350521184</int> </object> <object id="PUV75ALLPC73KC7"> <int id="step">1</int> <int id="ts">1350521301</int> </object> <object id="PHVK2DAAO8520EA"> <int id="step">1</int> <int id="ts">1350521708</int> </object> <object id="PUVTKEDO69G2IAT"> <int id="step">1</int> <int id="ts">1354914769</int> </object> <object id="PUVRL3OSO7G2VV4"> <int id="step">1</int> <int id="ts">1354916000</int> </object> <object id="PUVDS4F1CF9341U"> <int id="step">2</int> <int id="ts">1354916008</int> </object> <object id="PUV5EVLD0KF2669"> <int id="step">3</int> <int id="ts">1354916010</int> </object> </object> <object id="emotes"> <object id="25-05-26"> <int id="PUV6QB9A35C31SG">1351271409</int> <int id="PUVB4SK008C3T10">1351278778</int> </object> <object id="25-05-28"> <int id="PUVIQOV3M7C310S">1351308213</int> <int id="PUVR9FHS67C3L15">1351308575</int> <int id="PUV4ULAPHA93GIE">1351308597</int> <int id="PUVH3D6VKFC37GA">1351311304</int> <int id="PHV3J76JGS62RF5">1351311312</int> <int id="PUV3DHDB17C3TLI">1351313487</int> </object> <object id="25-05-32"> </object> <object id="25-05-33"> </object> <object id="25-05-34"> </object> <object id="25-05-35"> </object> <object id="25-05-36"> </object> <object id="25-05-37"> </object> <object id="25-05-38"> </object> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PUV8J9VQQEE2T4G">1352340127</int> <int id="PUVDH4K9KUA3FQK">1352341020</int> <int id="PUVQAO8CCBF27MN">1352345538</int> <int id="PHF43603F4D2I2C">1352346010</int> <int id="PHV2N3G3AF825OC">1352347734</int> <int id="PA98AROJU1E2S2H">1352348626</int> <int id="PUVIGNDPK9C36T1">1352350585</int> </object> <object id="25-07-09"> <int id="PHFJVIL04RC2ULD">1352352296</int> <int id="PHFLI70OU2D2ISM">1352352346</int> <int id="PUVO7EKBSC93K41">1352352389</int> <int id="PIFLC6T4UK63AKI">1352352798</int> <int id="PHV710OBJG228NP">1352354695</int> <int id="PUVO4N44CSH2DK8">1352355825</int> <int id="PUVESKN2TOB3RES">1352357092</int> <int id="PUVUBPJHDUC3HI1">1352359304</int> <int id="PUVSLPFE06D2FMT">1352361693</int> <int id="PA9DNN7MF4E2AAV">1352363888</int> </object> <object id="25-07-10"> <int id="PUVA1FM2DPC342S">1352373175</int> <int id="PCRG4AJDLNS1TTP">1352377801</int> <int id="PUVS76IBB0S2R71">1352378401</int> </object> <object id="25-07-11"> <int id="PUV3CGL4G4S2MEE">1352384384</int> <int id="PUVOE87F02K2IIO">1352386939</int> <int id="PHFRJ945A3D2FMO">1352388420</int> <int id="PHV710OBJG228NP">1352389481</int> <int id="PUVAC4AFMDE2HDT">1352389860</int> <int id="PIF4BNN19J63S5I">1352390700</int> </object> <object id="25-07-12"> <int id="PUV3ICHODBM2GKL">1352396886</int> <int id="PUV811HCEAD38PB">1352397203</int> <int id="PDO2V71MMAR2SER">1352401761</int> <int id="PUVEMU3GIGC399D">1352403775</int> <int id="PCRE77SPB0U14V3">1352404310</int> <int id="PUVOQVJ074A3F6S">1352407187</int> <int id="PUVS0VLJ9G93E96">1352407328</int> </object> <object id="25-07-13"> <int id="PUVS75E9OBH2Q6G">1352412628</int> <int id="PUVJU69IKJC3BOE">1352414614</int> <int id="PUV15KDOAK930M3">1352415505</int> <int id="PUVT68K8L9D2VF4">1352415780</int> <int id="PUVDMUQLO6A3LJE">1352420209</int> </object> <object id="25-08-01"> <int id="PUV68HKCS3A3DHC">1352422886</int> <int id="PUVS6DR6CH93K1F">1352431814</int> </object> <object id="25-08-07"> <int id="PUVVH9M65UC3908">1352510071</int> <int id="PCRG4CKFC1N15DH">1352510178</int> </object> <object id="25-08-10"> <int id="PUVTT1QIGM93UJS">1352563228</int> </object> <object id="25-10-22"> <int id="PHFGIBN0F3D2R8O">1353330510</int> </object> </object> <object id="hi_sign_evasion_record_history"> <object id="version_9"> <str id="pc_tsid">PUV5SMGPEHG2DP8</str> <str id="pc_label">Meghan</str> <int id="secs">20</int> <int id="when">1352352689</int> <int id="version">9</int> <str id="day_key">25-07-09</str> </object> </object> <object id="hi_sign_daily_evasion_record"> <str id="pc_tsid">PUVBGE8F1H93B38</str> <str id="pc_label">Top Cat</str> <int id="secs">10</int> <int id="when">1353411569</int> <int id="version">10</int> <str id="day_key">25-10-27</str> </object> <object id="hi_sign_evasion_record"> <str id="pc_tsid">PUVBGE8F1H93B38</str> <str id="pc_label">Top Cat</str> <int id="secs">10</int> <int id="when">1353411569</int> <int id="version">10</int> <str id="day_key">25-10-27</str> </object> <object id="incantations_redux"> <object id="PUVQEFLSU9C3SN2"> <int id="step">1</int> <int id="ts">1354919464</int> </object> <object id="PUV9Q32E3EE20IA"> <int id="step">1</int> <int id="ts">1354919616</int> </object> <object id="PUVUTSGV5JB37FB"> <int id="step">2</int> <int id="ts">1354919618</int> </object> <object id="PUVOS88N9N9342Q"> <int id="step">3</int> <int id="ts">1354919619</int> </object> <object id="PCRAFRDJFUT1PGB"> <int id="step">1</int> <int id="ts">1354922130</int> </object> <object id="PUVLEOJADLC3GC8"> <int id="step">1</int> <int id="ts">1354922738</int> </object> <object id="PUVFDCV0HFC32U7"> <int id="step">2</int> <int id="ts">1354922739</int> </object> <object id="PUVH597T7DC32E1"> <int id="step">3</int> <int id="ts">1354922740</int> </object> <object id="PA9UNV5QH7E2B0P"> <int id="step">1</int> <int id="ts">1354924721</int> </object> <object id="PA9R43RJ84E2EKB"> <int id="step">2</int> <int id="ts">1354924723</int> </object> <object id="PA9PV1PN67E24FQ"> <int id="step">3</int> <int id="ts">1354924724</int> </object> <object id="PUV4628EBPC3I5E"> <int id="step">1</int> <int id="ts">1354926024</int> </object> <object id="PUVFNR598OD3VBH"> <int id="step">1</int> <int id="ts">1354928328</int> </object> <object id="PUVE1NGB27C36PP"> <int id="step">2</int> <int id="ts">1354928332</int> </object> <object id="PUVDP005IKG2P8J"> <int id="step">1</int> <int id="ts">1354928859</int> </object> <object id="PUVE28P1PVC3AM7"> <int id="step">1</int> <int id="ts">1354931393</int> </object> <object id="PA9SGIV1AUD2PNL"> <int id="step">2</int> <int id="ts">1354935302</int> </object> <object id="PHFINSK9JCD29H5"> <int id="step">1</int> <int id="ts">1354935480</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1354939041</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1354939042</int> </object> <object id="PUV5FLF16L935CN"> <int id="step">3</int> <int id="ts">1354939054</int> </object> <object id="PUVNQ08H15C3F2V"> <int id="step">1</int> <int id="ts">1354947607</int> </object> <object id="PUV2ODULF5D2C2F"> <int id="step">2</int> <int id="ts">1354947610</int> </object> <object id="PUVHKHKSFDC3H9E"> <int id="step">3</int> <int id="ts">1354947612</int> </object> <object id="PUV1C9DM7JE2KRJ"> <int id="step">1</int> <int id="ts">1354948944</int> </object> <object id="PHVP4B1U0H22UNL"> <int id="step">2</int> <int id="ts">1354948945</int> </object> <object id="PUVA78KTF4G24IA"> <int id="step">3</int> <int id="ts">1354948953</int> </object> <object id="PA97PHPM54E2M0U"> <int id="step">1</int> <int id="ts">1354952623</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">2</int> <int id="ts">1354952632</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">3</int> <int id="ts">1354952633</int> </object> <object id="PUVKMJQUODB3L7T"> <int id="step">1</int> <int id="ts">1354967138</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1354990348</int> </object> <object id="PIF16S80DT53O2K"> <int id="step">2</int> <int id="ts">1354990349</int> </object> <object id="PA95UHHMLID28OO"> <int id="step">3</int> <int id="ts">1354990353</int> </object> <object id="PUVIB6F3R6D28O1"> <int id="step">1</int> <int id="ts">1354992305</int> </object> <object id="PUVGMGQU96830RT"> <int id="step">1</int> <int id="ts">1354994467</int> </object> <object id="PUV9M5CKV0A39KV"> <int id="step">2</int> <int id="ts">1354994469</int> </object> <object id="PUVHT82E1AP2E7H"> <int id="step">3</int> <int id="ts">1354994495</int> </object> <object id="PHFTE76HQ4D2CLU"> <int id="step">1</int> <int id="ts">1354997158</int> </object> <object id="PUVOV284NNA3T07"> <int id="step">2</int> <int id="ts">1354999399</int> </object> <object id="PHF5FVO3LVC2Q4N"> <int id="step">3</int> <int id="ts">1354999415</int> </object> <object id="PUV8MFVV7VB36E0"> <int id="step">1</int> <int id="ts">1354999628</int> </object> </object> <int id="incantations_redux_step">1</int> </object> <objrefs id="items"> <objref tsid="IHV5VSBE3AB2OMJ" label="Quoin"/> <objref tsid="IHV6CH5H3AB2GE7" label="Quoin"/> <objref tsid="IHV5OMBC3AB2U4U" label="Quoin"/> <objref tsid="IHV76LGO3AB27FL" label="Quoin"/> <objref tsid="IDOA8RBHDJE3B0E" label="Fruit Tree"/> <objref tsid="IHV5MLLB3AB2UVO" label="Quoin"/> <objref tsid="IDOG50109GQ2UGN" label="Qurazy marker"/> <objref tsid="IA9VOB57U2G32HS" label="Wood Tree"/> <objref tsid="IHV6FA4I3AB2BG9" label="Quoin"/> <objref tsid="IHV660MF3AB2DOM" label="Quoin"/> <objref tsid="IDO9NMKVCJE3TV3" label="Fruit Tree"/> <objref tsid="IHV6303F3AB2UBS" label="Quoin"/> <objref tsid="IHV42IAS2AB2R4V" label="Shrine to Alph"/> <objref tsid="IHV60JFE3AB25L2" label="Quoin"/> <objref tsid="IHV5NASB3AB2DVS" label="Quoin"/> <objref tsid="IHV446QS2AB2KE6" label="Street Spirit"/> <objref tsid="IHVRHODNF1836KJ" label="Visiting Stone"/> <objref tsid="IHV670SF3AB2SV0" label="Quoin"/> <objref tsid="IHV5NL0C3AB2CCB" label="Quoin"/> <objref tsid="IA9TRP48F8G3C16" label="Bubble Tree"/> <objref tsid="IHVARRJS4AB2O5R" label="Mailbox"/> <objref tsid="IHV658HF3AB2FIE" label="Quoin"/> <objref tsid="IHV6KAHJ3AB27SV" label="Quoin"/> <objref tsid="IHV77KPO3AB26P3" label="Quoin"/> <objref tsid="IHV6LSUJ3AB21J4" label="Quoin"/> <objref tsid="IHV5QATC3AB2CES" label="Quoin"/> <objref tsid="IDO9VRS7DJE3JNU" label="Fruit Tree"/> <objref tsid="IHV5VA8E3AB286F" label="Quoin"/> <objref tsid="IHV799HP3AB29MN" label="Quoin"/> <objref tsid="IHV69BGG3AB26M1" label="Quoin"/> </objrefs> <objrefs id="players"> <objref tsid="PHV8A9K0LM72MT2" label="Parrow Gnolle"/> <objref tsid="PUVEQI53JVD3MPC" label="silarial09"/> <objref tsid="PUVU6KQ6FSD3328" label="Minishark"/> <objref tsid="PHV22O9DCL82HL7" label="Falcana"/> <objref tsid="PUV52NDA0MJ2ICL" label="Fleur Delete"/> <objref tsid="PUVFRFMTUSD36M9" label="Lou Kall"/> <objref tsid="PUV1LBA9MNB3NET" label="glitchtroll"/> <objref tsid="PUVPFHB5RF93096" label="mikes7ke"/> <objref tsid="PHFEV2A873D2GO8" label="Leekypie"/> <objref tsid="PUVLDSN9T8932S8" label="Draigon"/> <objref tsid="PHF5OE4JBUC2KV6" label="Seventh Avatar"/> <objref tsid="PUVG3K4EQQ639DJ" label="Sumiyoshi"/> <objref tsid="PUV6LGDLQ5B36J3" label="Worlds Apart"/> </objrefs> </game_object>
27,581
Common Lisp
.l
924
25.32684
203
0.624339
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
fc8102a99e795019d5a0dca5bbb08b41856bf5bcfdc7747d7f837a2fea01dc4d
20,858
[ -1 ]
20,859
LHV51JE5JC42VP2.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV51JE5JC42VP2 Arisi Amble-cavern dark color sat/LHV51JE5JC42VP2.xml
<game_object tsid="LHV51JE5JC42VP2" ts="1364244494903" label="Arisi Amble" class_tsid="town" hubid="85" moteid="9" letime="3g8fu27d" rbtime="25h9urst" upd_gs="gs6" load_time="2013-03-25 13:37:51.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-07-21/LHV51JE5JC42VP2_loading_1311275124.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <object id="image"> <str id="url">streets/2011-07-21/LHV51JE5JC42VP2_main_1311275126.jpg</str> <int id="w">720</int> <int id="h">120</int> </object> <object id="jobs"> <object id="382"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> <str id="title_override">Build Arisi Amble In Kajuu</str> <str id="desc_override">Expand Kajuu by building a new street, Arisi Amble.</str> <object id="connecting_streets"> <str id="0">LHV15B8HEQ32SN0</str> </object> </object> <object id="class_ids"> <object id="job_street_ph1_07"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Ready, Set, Action!</str> <str id="class_id">job_street_ph1_07</str> </object> <object id="job_street_ph3_01"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Feed the Crew</str> </object> <object id="job_street_ph3_05"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Schmooze and Showcase</str> </object> <object id="job_street_ph4_03"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Finish Up and Rest</str> </object> </object> </object> <object id="384"> <object id="street_info"> <int id="type">2</int> <int id="is_hidden">0</int> <str id="title_override">Build Manggal Haste In Kajuu</str> <str id="desc_override">Expand Kajuu by building a new street, Manggal Haste.</str> <str id="target_street">LHV4U1QMFC42NBP</str> </object> <object id="class_ids"> <object id="job_street_ph1_01"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Dig the Soil</str> <str id="class_id">job_street_ph1_01</str> <objref id="instance" tsid="QHVBREC8DM52O4H"/> </object> <object id="job_street_ph3_03"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Get Some Sustenance!</str> <str id="class_id">job_street_ph3_03</str> <objref id="instance" tsid="QHVDTCTNPN52PLG"/> </object> <object id="job_street_ph4_01"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Roll Up the Sleeves</str> <str id="class_id">job_street_ph4_01</str> <objref id="instance" tsid="QHVOU436SN52S72"/> </object> <object id="job_street_ph4_02d"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Wrap Up the Project</str> <str id="class_id">job_street_ph4_02d</str> <objref id="instance" tsid="QHVQ028D3O52U8K"/> </object> </object> </object> <object id="385"> <object id="class_ids"> </object> </object> </object> <bool id="jobs_is_locked">false</bool> <object id="action_requests"> </object> <object id="delayed_sounds"> </object> <bool id="jobs_auto_unlock">false</bool> <bool id="no_teleportation">false</bool> <bool id="disallow_animals">false</bool> <bool id="no_rook">true</bool> <object id="keys"> </object> <object id="qurazy"> </object> <object id="incantations"> <object id="PCR4KMJVCAO1OQ7"> <int id="step">1</int> <int id="ts">1350436808</int> </object> <object id="PUVIB4SDKAF2TF1"> <int id="step">2</int> <int id="ts">1350436809</int> </object> <object id="PCRD7E1BNAO16J6"> <int id="step">3</int> <int id="ts">1350436810</int> </object> <object id="PHFFO93F73D202A"> <int id="step">1</int> <int id="ts">1350437174</int> </object> <object id="PUVFJPCQI7D2ISD"> <int id="step">1</int> <int id="ts">1350438218</int> </object> <object id="PUVS8FCV0BB3QIN"> <int id="step">2</int> <int id="ts">1350438223</int> </object> <object id="PUVBBEV6LP735IR"> <int id="step">3</int> <int id="ts">1350438224</int> </object> <object id="PUV78ANSF3B37J4"> <int id="step">1</int> <int id="ts">1350442277</int> </object> <object id="PUV5SMGPEHG2DP8"> <int id="step">1</int> <int id="ts">1350442592</int> </object> <object id="PUV6H82RC8H2CIH"> <int id="step">2</int> <int id="ts">1350442596</int> </object> <object id="PUV766GM4TE2A3Q"> <int id="step">3</int> <int id="ts">1350442597</int> </object> <object id="PUVCAD6F9A734MT"> <int id="step">1</int> <int id="ts">1350443853</int> </object> <object id="PUVPOBK0AB83DS9"> <int id="step">2</int> <int id="ts">1350443855</int> </object> <object id="PUVNK3MVGOL2UD9"> <int id="step">3</int> <int id="ts">1350443856</int> </object> <object id="PUVH4JOK59G2BM3"> <int id="step">1</int> <int id="ts">1350443864</int> </object> <object id="PUVVMO4U93T23J4"> <int id="step">1</int> <int id="ts">1350444461</int> </object> <object id="PUVOLKHFI6H2R0J"> <int id="step">2</int> <int id="ts">1350444476</int> </object> <object id="PA9IG1OCQUD2DLT"> <int id="step">3</int> <int id="ts">1350444479</int> </object> <object id="PUVI4EDKGAJ207T"> <int id="step">1</int> <int id="ts">1350445339</int> </object> <object id="PHF7GOMJS1D24NC"> <int id="step">2</int> <int id="ts">1350445340</int> </object> <object id="PUVFUD1UJRE26GD"> <int id="step">3</int> <int id="ts">1350445341</int> </object> <object id="PUV2EGMNAHS2OQC"> <int id="step">1</int> <int id="ts">1350445714</int> </object> <object id="PHVERH6QNU621I8"> <int id="step">1</int> <int id="ts">1350446285</int> </object> <object id="PCR2HLTMPIL11HJ"> <int id="step">2</int> <int id="ts">1350446301</int> </object> <object id="PA9U3JQ0CTD2448"> <int id="step">1</int> <int id="ts">1350447383</int> </object> <object id="PUV3EGIE8GG2CSM"> <int id="step">2</int> <int id="ts">1350447384</int> </object> <object id="PUV4LC37N8D26UP"> <int id="step">3</int> <int id="ts">1350447386</int> </object> <object id="PUVFH6OPFTF2LF6"> <int id="step">1</int> <int id="ts">1350447782</int> </object> <object id="PUVGUSBSUSF297H"> <int id="step">2</int> <int id="ts">1350447784</int> </object> <object id="PUV2PCFUPSF2NBE"> <int id="step">3</int> <int id="ts">1350447786</int> </object> <object id="PUVMV6ECTHB3JBV"> <int id="step">1</int> <int id="ts">1350448083</int> </object> <object id="PUVCU9JRQIB3JFI"> <int id="step">2</int> <int id="ts">1350448096</int> </object> <object id="PIF6LVBP7L53SOB"> <int id="step">1</int> <int id="ts">1350449938</int> </object> <object id="PIFL0PPUT663NPS"> <int id="step">2</int> <int id="ts">1350449944</int> </object> <object id="PHF6EM6551D2OGQ"> <int id="step">3</int> <int id="ts">1350449945</int> </object> <object id="PHFBTOM80AD2028"> <int id="step">1</int> <int id="ts">1350452525</int> </object> <object id="PUVCJ3V3R7D2N88"> <int id="step">2</int> <int id="ts">1350452527</int> </object> <object id="PUVBNT8S0V93PMS"> <int id="step">1</int> <int id="ts">1350454617</int> </object> <object id="PHVVCBV5OH72OE7"> <int id="step">2</int> <int id="ts">1350454622</int> </object> <object id="PUV160O6FLB3KF2"> <int id="step">3</int> <int id="ts">1350454624</int> </object> <object id="PUVA6OS08S832L9"> <int id="step">1</int> <int id="ts">1350466425</int> </object> <object id="PUVICMAK8SJ2MAS"> <int id="step">2</int> <int id="ts">1350466437</int> </object> <object id="PHF91JD8M2D2EAU"> <int id="step">3</int> <int id="ts">1350475945</int> </object> <object id="PUVKCV8O9FK2L7J"> <int id="step">1</int> <int id="ts">1350476351</int> </object> <object id="PA9SRFS850E2GJ0"> <int id="step">2</int> <int id="ts">1350476633</int> </object> <object id="PUVOV284NNA3T07"> <int id="step">1</int> <int id="ts">1350476679</int> </object> <object id="PUV13H7I2OA3SER"> <int id="step">2</int> <int id="ts">1350476682</int> </object> <object id="PUVEO0HVO0B3E00"> <int id="step">3</int> <int id="ts">1350476684</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">1</int> <int id="ts">1350478929</int> </object> <object id="PUV9H4HP7PL2SLO"> <int id="step">1</int> <int id="ts">1350479557</int> </object> <object id="PHVVS8IQOM92U22"> <int id="step">2</int> <int id="ts">1350479562</int> </object> <object id="PHVA4KMGON72S7L"> <int id="step">3</int> <int id="ts">1350479563</int> </object> <object id="PHF7NSKA3AD2PU5"> <int id="step">1</int> <int id="ts">1350480727</int> </object> <object id="PUVKM4SM3993AGR"> <int id="step">2</int> <int id="ts">1350480728</int> </object> <object id="PUVK46QGM9G2ANO"> <int id="step">3</int> <int id="ts">1350480729</int> </object> <object id="PUVT5TK2G6D28QU"> <int id="step">1</int> <int id="ts">1350483982</int> </object> <object id="PHVSCM4AFS627EF"> <int id="step">1</int> <int id="ts">1350484973</int> </object> <object id="PUVIS05FIIA3SBO"> <int id="step">1</int> <int id="ts">1350485343</int> </object> <object id="PHVK2FSFOT22C3I"> <int id="step">2</int> <int id="ts">1350485344</int> </object> <object id="PHFTTVBJQ2D2PP8"> <int id="step">3</int> <int id="ts">1350485345</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">1</int> <int id="ts">1350487760</int> </object> <object id="PUVTU0O31MB3T1E"> <int id="step">2</int> <int id="ts">1350487771</int> </object> <object id="PUVTEISFLLB38P4"> <int id="step">1</int> <int id="ts">1350488071</int> </object> <object id="PUVQMCK0GOI2CE3"> <int id="step">2</int> <int id="ts">1350489376</int> </object> <object id="PUV2JU76I9D2LI5"> <int id="step">3</int> <int id="ts">1350489392</int> </object> <object id="PUV70B01CBG27J4"> <int id="step">1</int> <int id="ts">1350490299</int> </object> <object id="PHV129UF5G32V98"> <int id="step">2</int> <int id="ts">1350490726</int> </object> <object id="PHVND1LVIKB2K8T"> <int id="step">1</int> <int id="ts">1350495586</int> </object> <object id="PHVLEE66STA2M50"> <int id="step">1</int> <int id="ts">1350497278</int> </object> <object id="PUVVE7C5HV93LDE"> <int id="step">1</int> <int id="ts">1350498191</int> </object> <object id="PHV7MNV1VO62BC4"> <int id="step">2</int> <int id="ts">1350498192</int> </object> <object id="PHFIS28II2D239P"> <int id="step">3</int> <int id="ts">1350498193</int> </object> <object id="PA9K4D8K8MD27JH"> <int id="step">1</int> <int id="ts">1350498611</int> </object> <object id="PHF2VPV503D26FE"> <int id="step">2</int> <int id="ts">1350498807</int> </object> <object id="PHV1C0HK6452IFG"> <int id="step">1</int> <int id="ts">1350499027</int> </object> <object id="PUV1U879OTE2HQ6"> <int id="step">1</int> <int id="ts">1350502195</int> </object> <object id="PUVBFKGAR9G2SOQ"> <int id="step">1</int> <int id="ts">1350502378</int> </object> <object id="PHFK48ANI2D2F12"> <int id="step">1</int> <int id="ts">1350505280</int> </object> <object id="PUVD3J3SFPF2TRG"> <int id="step">1</int> <int id="ts">1350505710</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1350507983</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1350507984</int> </object> <object id="PHVRKEJ8VV22AU3"> <int id="step">3</int> <int id="ts">1350508638</int> </object> <object id="PHVO3VOR3N621PJ"> <int id="step">1</int> <int id="ts">1350508648</int> </object> <object id="PA9TT1IARGD2V5S"> <int id="step">1</int> <int id="ts">1350510409</int> </object> <object id="PUVHR6OPKF83A1H"> <int id="step">1</int> <int id="ts">1350512938</int> </object> <object id="PUV42LEOBAF2MKD"> <int id="step">2</int> <int id="ts">1350512939</int> </object> <object id="PUVGK8HBCJB36GN"> <int id="step">3</int> <int id="ts">1350512940</int> </object> <object id="PHFAM2DUH4D23RG"> <int id="step">1</int> <int id="ts">1350513013</int> </object> <object id="PUVTNI1FJH93NPE"> <int id="step">1</int> <int id="ts">1350513191</int> </object> <object id="PUV24RND2U83B75"> <int id="step">2</int> <int id="ts">1350513903</int> </object> <object id="PHF20O01HRC21FP"> <int id="step">1</int> <int id="ts">1350515316</int> </object> <object id="PHFJAE8FQVC2RNH"> <int id="step">1</int> <int id="ts">1350515593</int> </object> <object id="PHVCM54BMP72K56"> <int id="step">2</int> <int id="ts">1350515593</int> </object> <object id="PUVCAJTDPFH203K"> <int id="step">3</int> <int id="ts">1350515594</int> </object> <object id="PCR45R93AUT1EMH"> <int id="step">1</int> <int id="ts">1350516848</int> </object> <object id="PUVFVM8KG9B37F0"> <int id="step">1</int> <int id="ts">1350517556</int> </object> <object id="PUV7PU7B5JH2OP2"> <int id="step">2</int> <int id="ts">1350517559</int> </object> <object id="PUVEGG4T2FG2UCD"> <int id="step">3</int> <int id="ts">1350517563</int> </object> <object id="PUVBTTFKSVE2QNB"> <int id="step">1</int> <int id="ts">1350518090</int> </object> <object id="PUVNJCEML7P2ES0"> <int id="step">1</int> <int id="ts">1350518435</int> </object> <object id="PUVST8TRS9G26ET"> <int id="step">2</int> <int id="ts">1350518437</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">3</int> <int id="ts">1350518437</int> </object> <object id="PA9NEEPG27E2DD0"> <int id="step">1</int> <int id="ts">1350519044</int> </object> <object id="PCRNH6RCVNS1072"> <int id="step">1</int> <int id="ts">1350519321</int> </object> <object id="PUVIA9131K73UTJ"> <int id="step">1</int> <int id="ts">1350520280</int> </object> <object id="PUVSRKDKT993SB7"> <int id="step">1</int> <int id="ts">1350521541</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">1</int> <int id="ts">1350521944</int> </object> <object id="PUVJ86DSLSM2BDC"> <int id="step">1</int> <int id="ts">1354916428</int> </object> <object id="PDOQHB9V1AR2F84"> <int id="step">2</int> <int id="ts">1354916428</int> </object> </object> <object id="emotes"> <object id="25-05-26"> <int id="PCR42DQMSCV1P9O">1351272931</int> <int id="PUVTNI1FJH93NPE">1351278593</int> <int id="PHFNCFTVB4D2DNN">1351278649</int> <int id="PUV3862EL8937GI">1351278654</int> <int id="PUVI8DSMIJB371E">1351279117</int> <int id="PUV3KL241QB3JD3">1351281042</int> <int id="PUVG4MMHQEC3K5I">1351281049</int> </object> <object id="25-05-27"> <int id="PUV7U3KUK2C3MCG">1351295104</int> <int id="PUVUFSA7CTH254G">1351296271</int> <int id="PUV76POT1HF2F4B">1351296274</int> </object> <object id="25-05-28"> <int id="PUVOGHCJUIF2F4F">1351303611</int> <int id="PCRDBGD7HUJ1FEC">1351303737</int> <int id="PCRIELI3PNS1E5L">1351313308</int> <int id="PA9VQ3NSR2E2IHK">1351313311</int> </object> <object id="25-05-29"> <int id="PUVSVALD06C3B9R">1351314106</int> <int id="PUV7NAD487C368L">1351314108</int> <int id="PUV66M48NTB3LJU">1351325510</int> </object> <object id="25-05-31"> <int id="PUVE5NR5TD9395V">1351348892</int> <int id="PUV22S2QJIF2GFM">1351349366</int> <int id="PUVOV284NNA3T07">1351352783</int> <int id="PUVSK14FCQF22TV">1351354479</int> <int id="PUVU3TG847D2Q1Q">1351356310</int> <int id="PUV74M38PGB3BAI">1351356313</int> </object> <object id="25-05-33"> </object> <object id="25-05-34"> </object> <object id="25-05-36"> </object> <object id="25-05-38"> </object> <object id="25-05-39"> </object> <object id="25-05-40"> </object> </object> <object id="hi_sign_evasion_record_history"> <object id="version_0"> <str id="pc_tsid">PUVGJ4R8KRC3BR6</str> <str id="pc_label">alpheratz</str> <int id="secs">1</int> <int id="when">1351724373</int> <int id="version">0</int> </object> <object id="version_8"> <str id="pc_tsid">PUV6Q0DF6DB3GPV</str> <str id="pc_label">JulieAnne</str> <int id="secs">10</int> <int id="when">1351970362</int> <int id="version">8</int> </object> <object id="version_9"> <str id="pc_tsid">PHVVO7CASCB21O5</str> <str id="pc_label">Tenebrae</str> <int id="secs">12</int> <int id="when">1352343413</int> <int id="version">9</int> <str id="day_key">25-07-08</str> </object> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PIF5040Q3V53DTT">1352338423</int> <int id="PUVHGT5JDLB30F7">1352338751</int> <int id="PUV17MB5HTB3G68">1352338793</int> <int id="PUV83DA2N5D2QUV">1352338816</int> <int id="PHV1FFBMFU22A7E">1352339183</int> <int id="PUVLFPT60BB3COT">1352339243</int> <int id="PCRKFODORUT188S">1352339793</int> <int id="PCR7T82R11K14AP">1352339810</int> <int id="PUVFBDCTH1G2UH9">1352340256</int> <int id="PHFAM2DUH4D23RG">1352340314</int> <int id="PUV6I1HAFRA318T">1352340654</int> <int id="PUV48VHMH893134">1352340694</int> <int id="PHVL52757F92CQT">1352341449</int> <int id="PUVKO2U467C3IL6">1352341595</int> <int id="PUV811HCEAD38PB">1352341622</int> <int id="PUV7D9O544C3NRT">1352341859</int> <int id="PUVBJQLIQLB38JN">1352342587</int> <int id="PUVLM1T4LQB3B39">1352343019</int> <int id="PUVTMS30BHD3C3C">1352343092</int> <int id="PUVJG6AHAAD3O39">1352343153</int> <int id="PUVKT7UCP7C3Q9T">1352343409</int> <int id="PHV6KOHGPP62TMB">1352343410</int> <int id="PHVVO7CASCB21O5">1352343429</int> <int id="PUV2HOTM25B3BN6">1352343824</int> <int id="PIF6HVTEMHA17HQ">1352344334</int> <int id="PUV1HNKSULC3PF2">1352345558</int> <int id="PCRE8LITINS1E3I">1352345608</int> <int id="PUVANK930CC3FME">1352345868</int> <int id="PUVIQOV3M7C310S">1352345931</int> <int id="PUV4DE6TGQB3AE8">1352346211</int> <int id="PHFFIBQRICD28H9">1352346553</int> <int id="PHFM0PHNTUC2S8E">1352347139</int> <int id="PCRDBVC21JL12OL">1352347456</int> <int id="PUVLML728PC3E6N">1352349603</int> <int id="PUVNJ2OIMAD36BR">1352349892</int> <int id="PUV97O41DPI28GS">1352350088</int> <int id="PHV44MT5SE729HK">1352350150</int> <int id="PUVO35JUEKC30M8">1352350317</int> <int id="PIF14GJO15D1P84">1352350797</int> </object> <object id="25-07-09"> <int id="PUVICGVASDB3J7K">1352351654</int> <int id="PIF9DO3KP8633H0">1352352079</int> <int id="PUVP6JUU8JB3FNS">1352352389</int> <int id="PHFJERMET9D2JTA">1352352417</int> <int id="PCR1I23C34U1ASQ">1352352485</int> <int id="PUVTD2NVTID3NDN">1352352965</int> <int id="PUV78RK9KI93N0S">1352353131</int> <int id="PHVSGKDV7SA2FK8">1352353536</int> <int id="PUVCL6N7L8D38GF">1352353981</int> <int id="PA9MTNTQ1ND29LQ">1352355065</int> <int id="PHVRLO0EBDC23R1">1352355696</int> <int id="PCRAFRDJFUT1PGB">1352356519</int> <int id="PUV12E0QUBD3N2G">1352357167</int> <int id="PUVCIOJLOC93UKT">1352358232</int> <int id="PUVOEBKQLIB3DU3">1352358402</int> <int id="PUVC18QRD7D2A1K">1352358529</int> <int id="PUVVG7H0FJB3A8N">1352359249</int> <int id="PM1A4MDNG402AR4">1352359451</int> <int id="PUVDG8GBNQB3Q90">1352359590</int> <int id="PHFINSK9JCD29H5">1352361719</int> <int id="PUV9L0GEMA8370I">1352361827</int> <int id="PUVAJKHV28G2BQR">1352361860</int> <int id="PUVIJ9KTN5D24U6">1352362212</int> <int id="PUVRR4TDCGD3R3C">1352362300</int> </object> <object id="25-07-10"> <int id="PUVDG8GBNQB3Q90">1352365221</int> <int id="PUVPC6P6SA839RS">1352365730</int> <int id="PUVEO9C0JF93FBC">1352365877</int> <int id="PUV3LP2HLKB3QL9">1352366607</int> <int id="PUVDML8BPK93CKI">1352371768</int> <int id="PUVSALGQ46J21R1">1352373116</int> </object> <object id="25-07-11"> <int id="PCRFLA5IKNS19P1">1352381326</int> <int id="PHFBMADAEAD2JND">1352383385</int> <int id="PUVSHIJ0C8A392V">1352385090</int> <int id="PUVHOFNNILC3SMC">1352385413</int> <int id="PUV12E0QUBD3N2G">1352388874</int> <int id="PUVT20H20PC39SF">1352388961</int> <int id="PHFSSK0KN1D2MJL">1352388967</int> <int id="PUV2IPH9NF83QFO">1352389026</int> <int id="PUVERNFNDQB3TAD">1352389642</int> <int id="PHV3J76JGS62RF5">1352390785</int> <int id="PHVT6D96EL22G4P">1352390992</int> <int id="PUVPC6P6SA839RS">1352391252</int> <int id="PUV82D053MC3M13">1352391846</int> <int id="PHFVN17DD0D2G3V">1352392033</int> <int id="PUV7J6LKDUF2NS8">1352392062</int> <int id="PUVSS7LVKEC318S">1352393613</int> </object> <object id="25-07-12"> <int id="PHV11H22PQA2JEL">1352394099</int> <int id="PHFIPVH38TC2PIV">1352394574</int> <int id="PUVJIPPFIBD398T">1352394660</int> <int id="PHVHN86I5H228T6">1352394725</int> <int id="PUVLE608CNB3GA3">1352396585</int> <int id="PUVM419U2NB3KIE">1352396692</int> <int id="PUVRR4TDCGD3R3C">1352396923</int> <int id="PUVG9PRB1KC3GEA">1352397370</int> <int id="PUVHER8O0BA3OCL">1352398082</int> <int id="PUV5T7JPDHC392Q">1352398280</int> <int id="PHFM0PHNTUC2S8E">1352398993</int> <int id="PUVUEFJABRG2LND">1352399434</int> <int id="PCRBFCINGUT15SD">1352399541</int> <int id="PUVHL9FSGF93U3Q">1352400038</int> <int id="PHF7GOMJS1D24NC">1352400199</int> <int id="PUV22S2QJIF2GFM">1352400468</int> <int id="PHVVO7CASCB21O5">1352402583</int> <int id="PUVPTF7N2DG203S">1352402682</int> <int id="PUVT8691EI93FIR">1352402682</int> <int id="PUV4N87P8GG2EB6">1352402682</int> <int id="PIFLC6T4UK63AKI">1352402682</int> <int id="PUVPS8I6CTE2BJG">1352403361</int> <int id="PUV2OUMBKGB3U6J">1352403666</int> <int id="PUV3ERDM8T63VGL">1352403681</int> <int id="PA94QV6SBPD25Q4">1352404085</int> <int id="PHVFG0THJF827TB">1352404626</int> <int id="PIF3OCMOP251AKC">1352404671</int> <int id="PIF14GJO15D1P84">1352405470</int> <int id="PUV1D62CP6D2M64">1352405837</int> <int id="PUVC1P2QIF93R6R">1352405861</int> <int id="PUVANK930CC3FME">1352405940</int> <int id="PUVJGQE2GOC3G4J">1352406821</int> <int id="PUVVJ936BCA3M1E">1352407566</int> <int id="PHVT7B02RE727DS">1352408106</int> <int id="PUV6M92FD0H2KGM">1352408363</int> <int id="PUVOCG9IHKB31NM">1352408382</int> </object> <object id="25-07-13"> <int id="PUVDAIVA7FC35M5">1352409460</int> <int id="PUV2JI34A1D30LC">1352409851</int> <int id="PUVSVDEIMTG26B0">1352409900</int> <int id="PUVQ71U5MVK20D3">1352410045</int> <int id="PUV1D62CP6D2M64">1352411061</int> <int id="PHVSGKDV7SA2FK8">1352411061</int> <int id="PHV2LK9JDT628OF">1352411287</int> <int id="PUV3R5M8VN63HKK">1352411614</int> <int id="PUVT48THSJB3DU0">1352411623</int> <int id="PUV79OMQOAD3VBP">1352412256</int> <int id="PUVCG72AQP93JFB">1352412644</int> <int id="PUVA78KTF4G24IA">1352413099</int> <int id="PUVG9PRB1KC3GEA">1352413598</int> <int id="PUV9DATQ15D3NHB">1352414062</int> <int id="PUVEGG4T2FG2UCD">1352414473</int> <int id="PUV22H6M4NI2QLH">1352414473</int> <int id="PUV7PU7B5JH2OP2">1352414473</int> <int id="PUVUFA677MB3C4D">1352414641</int> <int id="PUVTTIURKLC3B30">1352415041</int> <int id="PUVN0SUIJQE2GLV">1352416637</int> <int id="PUVRKFKFDGG2OPH">1352418088</int> <int id="PUVA1FM2DPC342S">1352418206</int> <int id="PUV5IIJTV9C3VF3">1352418230</int> <int id="PUVTVRH3K1A30EQ">1352419528</int> <int id="PUVJ9DQOQ9D2PGQ">1352419692</int> <int id="PUV7U3V812C3S7H">1352419923</int> <int id="PHFO9KEJ25D2MBL">1352420599</int> <int id="PIF1RQODKF01DG2">1352420824</int> <int id="PIFBCDJTQV5393K">1352421705</int> <int id="PA9SEU1KQ5E2M49">1352422709</int> </object> <object id="25-08-01"> <int id="PUVFJ07T04L2GD7">1352430667</int> </object> <object id="25-08-04"> <int id="PUVQ3FG2SGD391H">1352478647</int> </object> <object id="25-08-13"> <int id="PUV8S9J1PAD3RO7">1352599485</int> </object> <object id="25-08-23"> <int id="PHFDCK7D5TC26HI">1352753600</int> </object> <object id="25-08-29"> <int id="PUVVELA03VD3RSG">1352827009</int> </object> <object id="25-08-31"> <int id="PUVFQFKLETB3V67">1352869147</int> </object> <object id="25-10-34"> <int id="PUV4BFTRRUC3RLF">1353503969</int> </object> <object id="26-03-22"> <int id="PHV3SOHNMB52ELG">1354646414</int> </object> <object id="26-03-41"> <int id="PUVJ86DSLSM2BDC">1354916447</int> </object> <object id="26-03-48"> <int id="PIFK9I4C8063A0M">1355014981</int> </object> <object id="26-04-01"> <int id="PUVNQ08H15C3F2V">1355104213</int> <int id="PUVB6DDK0NC3OCG">1355109499</int> </object> </object> <object id="hi_sign_evasion_record"> <str id="pc_tsid">PUV2UEH8VRC3684</str> <str id="pc_label">Hen</str> <int id="secs">14</int> <int id="when">1352690787</int> <int id="version">10</int> <str id="day_key">25-08-19</str> </object> <int id="incantations_step">2</int> <object id="incantations_redux"> <object id="PHF14ABLCTC2U52"> <int id="step">1</int> <int id="ts">1354917237</int> </object> <object id="PHVROH851L22Q5T"> <int id="step">1</int> <int id="ts">1354917250</int> </object> <object id="PHFMI32SK4D2U1L"> <int id="step">1</int> <int id="ts">1354917507</int> </object> <object id="PUVTTIURKLC3B30"> <int id="step">2</int> <int id="ts">1354922821</int> </object> <object id="PIFB7QP3SH63DL7"> <int id="step">1</int> <int id="ts">1354925207</int> </object> <object id="PUVG6IV8J5F28N1"> <int id="step">1</int> <int id="ts">1354925703</int> </object> <object id="PUVIS5ND7RD3FB4"> <int id="step">1</int> <int id="ts">1354926770</int> </object> <object id="PA9SEU1KQ5E2M49"> <int id="step">1</int> <int id="ts">1354930123</int> </object> <object id="PUV42LEOBAF2MKD"> <int id="step">2</int> <int id="ts">1354931588</int> </object> <object id="PUVR66N0OVE2BLN"> <int id="step">3</int> <int id="ts">1354931591</int> </object> <object id="PUV5DGRMO4H2DNG"> <int id="step">1</int> <int id="ts">1354931873</int> </object> <object id="PCRLR85EFDV1F9B"> <int id="step">2</int> <int id="ts">1354931876</int> </object> <object id="PNV32HKO7SD26UH"> <int id="step">1</int> <int id="ts">1354936456</int> </object> <object id="PUVS0CHA5L93NDU"> <int id="step">2</int> <int id="ts">1354936461</int> </object> <object id="PUVKSMIKR8L2A6S"> <int id="step">3</int> <int id="ts">1354936462</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1354945308</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1354945311</int> </object> <object id="PUVI9N9CSSI2JSM"> <int id="step">1</int> <int id="ts">1354945830</int> </object> <object id="PHF3SVTUB3D2MGO"> <int id="step">2</int> <int id="ts">1354945832</int> </object> <object id="PUVN67TRKMC3N0V"> <int id="step">3</int> <int id="ts">1354945834</int> </object> <object id="PUV8ROTVQC93BP5"> <int id="step">1</int> <int id="ts">1354950634</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1354955718</int> </object> <object id="PUVUTSGV5JB37FB"> <int id="step">2</int> <int id="ts">1354955720</int> </object> <object id="PA95UHHMLID28OO"> <int id="step">3</int> <int id="ts">1354955722</int> </object> <object id="PUVN6CPQEC73TB0"> <int id="step">1</int> <int id="ts">1354961929</int> </object> <object id="PHVKRTT1FM52HVG"> <int id="step">2</int> <int id="ts">1354961931</int> </object> <object id="PHF11QGRI3D2KLQ"> <int id="step">1</int> <int id="ts">1354968410</int> </object> <object id="PUV4M2F46LL2DPA"> <int id="step">1</int> <int id="ts">1354975377</int> </object> <object id="PUVBFKGAR9G2SOQ"> <int id="step">1</int> <int id="ts">1354990543</int> </object> <object id="PHFT93U2C0D25VR"> <int id="step">2</int> <int id="ts">1354992621</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">1</int> <int id="ts">1354994952</int> </object> <object id="PUV523037AD3VO0"> <int id="step">1</int> <int id="ts">1354999861</int> </object> <object id="PHVF66LO2RA20PQ"> <int id="step">1</int> <int id="ts">1355000386</int> </object> <object id="PHVRIB04OQA2NMA"> <int id="step">2</int> <int id="ts">1355000396</int> </object> </object> <int id="incantations_redux_step">2</int> <object id="hi_sign_daily_evasion_record"> <str id="pc_tsid">PHVF66LO2RA20PQ</str> <str id="pc_label">matrix</str> <int id="secs">12</int> <int id="when">1355000415</int> <int id="version">10</int> <str id="day_key">26-03-47</str> </object> </object> <objrefs id="items"> <objref tsid="IHV2TDAJH1527ET" label="Quoin"/> <objref tsid="IHV2TSKRH152C0E" label="Quoin"/> <objref tsid="IDOSLVKLAJQ2JF9" label="Qurazy marker"/> <objref tsid="IHV2TV94I152OS1" label="Quoin"/> <objref tsid="IHV2T7HCH152ON2" label="Dirt Pile"/> <objref tsid="IHV2T2D9H152L26" label="Shrine to Cosma"/> <objref tsid="IHFP547DNKB3PH6" label="Egg Plant"/> <objref tsid="IHV2TRRQH152GBS" label="Quoin"/> <objref tsid="IHV2TNNPH1527JB" label="Quoin"/> <objref tsid="IHV2T6ACH152N0O" label="Dirt Pile"/> <objref tsid="INVLBEUENPF30J9" label="Egg Plant"/> <objref tsid="IHV10QDPID62H2R" label="Street Spirit"/> <objref tsid="IHV2TE9KH152L9E" label="Quoin"/> <objref tsid="IHV2TO8QH152L02" label="Quoin"/> <objref tsid="IHV2TJCMH1520I2" label="Quoin"/> <objref tsid="IHV2TKENH1525I0" label="Quoin"/> <objref tsid="IHV2T4TBH152UEA" label="Dirt Pile"/> <objref tsid="IHV2TFPKH1525MF" label="Quoin"/> <objref tsid="IHV2TU53I152GC3" label="Quoin"/> </objrefs> <objrefs id="players"> <objref tsid="PA97RHHHU1E2Q88" label="Deadeyedavid"/> <objref tsid="PUVUMOMS17D2JS7" label="Nathaniel Hawthorne"/> <objref tsid="PUVFOEA96LB39NF" label="lonmarkc"/> <objref tsid="PUVNSB4K2PC3Q8F" label="Knochenherz"/> <objref tsid="PUVPEOP6DOC3M15" label="A Magic Fish"/> <objref tsid="PUVJA662V7G2GQ7" label="Nemo157"/> <objref tsid="PUVEFO6C79L2L7I" label="TylerLewis"/> <objref tsid="PHFIFJ12PUC212E" label="Primordia"/> <objref tsid="PHF4U4GQOBD2O92" label="Zizzousa"/> <objref tsid="PDOS0KVUHCR2T11" label="Yi Long"/> <objref tsid="PUVUVRDJAB8315U" label="ElCamillo"/> <objref tsid="PUVHQ0H6INE258K" label="Agonia"/> <objref tsid="PHFNPLK933D2Q5D" label="Kevin_ferret"/> <objref tsid="PUVRVJIB5SH27B2" label="ONUR"/> <objref tsid="PUV14N7R2P63FGP" label="2qt2bstr8"/> <objref tsid="PIFAU5PP0L633EI" label="Marmite"/> <objref tsid="PIFEDU366863HOG" label="Neon Love"/> <objref tsid="PUVMOS38CHC30UA" label="Talia182"/> <objref tsid="PUV4KD6OR6D3MC7" label="pontabulous"/> <objref tsid="PHF9B5J0EAD2J0A" label="mrand0926"/> <objref tsid="PHFICNNCH1D2DS6" label="Epimetheus"/> <objref tsid="PUV9DUUQE7C3I4T" label="Taymichu"/> <objref tsid="PUVJ5NIITO73HQ8" label="Lyndsay"/> <objref tsid="PUVI7BDQB9C3A7N" label="nightninja"/> <objref tsid="PUVPSPI3T8D3PN6" label="Obblebobble"/> <objref tsid="PUV9MUHED2A34BH" label="happyvirus"/> <objref tsid="PUV141GVASD2VMV" label="Ayrish"/> <objref tsid="PUVA2OE12DB3C9O" label="LoriW."/> <objref tsid="PUVSC739VIB3FCC" label="ttyl"/> <objref tsid="PUVIHNJPVCE3HFQ" label="Red Rubies"/> <objref tsid="PUV95MSJPS93UBE" label="Coldblooded"/> <objref tsid="PUVK545TVGG2JIP" label="Xerawyn"/> <objref tsid="PHF1LR76VCD25NR" label="DegaVolver"/> <objref tsid="PUV3BJ8UC9G287R" label="Rolindo"/> <objref tsid="PUV2PNSOVMC3QIN" label="mika bieber"/> <objref tsid="PUVSID7GB7J2DFM" label="King Leo"/> <objref tsid="PUVRM2MDP7D3VG9" label="Oyed"/> <objref tsid="PUVOV04EG3F27LJ" label="Galapagos Johnson"/> <objref tsid="PA9S08OQF2E2JNP" label="RagnarV"/> <objref tsid="PA9FH69FAID2JRC" label="Robin Stinson"/> <objref tsid="PA9TM97RB1E28T4" label="Wohclams"/> <objref tsid="PHFB3BHO4TC2AK1" label="Squidster"/> </objrefs> </game_object>
33,895
Common Lisp
.l
1,043
27.956855
200
0.64544
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
1442a20b1c700b8f61251a31cb3c1b1e045fe7827b7c61429023942c2a1606b8
20,859
[ -1 ]
20,860
GHV51JE5JC42VP2.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV51JE5JC42VP2 Arisi Amble-cavern dark color sat/GHV51JE5JC42VP2.xml
<game_object tsid="GHV51JE5JC42VP2" ts="1335984253046" label="Arisi Amble" class_tsid="" lastUpdateTime="1335984242970" upd_gs="gs10" load_time="2012-05-02 11:26:46.029" upd_time="2012-05-02 11:43:15.789"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id="b">0</int> <str id="label">Arisi Amble</str> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="middleground"> <object id="doors"> </object> <object id="filtersNEW"> <object id="saturation"> <int id="value">-34</int> </object> <object id="tintColor"> <int id="value">6050881</int> </object> <object id="contrast"> <int id="value">-9</int> </object> <object id="tintAmount"> <int id="value">10</int> </object> <object id="brightness"> <int id="value">-33</int> </object> </object> <object id="platform_lines"> <object id="plat_1307985308619"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-380</int> <int id="x">-1175</int> </object> <object id="end"> <int id="y">-380</int> <int id="x">-1084</int> </object> </object> <object id="plat_1303924130950"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-149</int> <int id="x">-2276</int> </object> <object id="end"> <int id="y">-133</int> <int id="x">-2059</int> </object> </object> <object id="plat_1303924130652"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-132</int> <int id="x">705</int> </object> <object id="end"> <int id="y">-136</int> <int id="x">799</int> </object> </object> <object id="plat_1307985308614"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-358</int> <int id="x">-1786</int> </object> <object id="end"> <int id="y">-365</int> <int id="x">-1674</int> </object> </object> <object id="plat_1303924130654"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-147</int> <int id="x">1087</int> </object> <object id="end"> <int id="y">-148</int> <int id="x">1211</int> </object> </object> <object id="plat_1304367518596"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-141</int> <int id="x">-489</int> </object> <object id="end"> <int id="y">-144</int> <int id="x">-300</int> </object> </object> <object id="plat_1304367518594"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-160</int> <int id="x">-810</int> </object> <object id="end"> <int id="y">-151</int> <int id="x">-626</int> </object> </object> <object id="plat_1307985308615"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-365</int> <int id="x">-1674</int> </object> <object id="end"> <int id="y">-362</int> <int id="x">-1434</int> </object> </object> <object id="plat_1307741224209"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-218</int> <int id="x">2359</int> </object> <object id="end"> <int id="y">-242</int> <int id="x">2638</int> </object> </object> <object id="plat_1307985308613"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-502</int> <int id="x">-1796</int> </object> <object id="end"> <int id="y">-507</int> <int id="x">-1642</int> </object> </object> <object id="plat_1303854859493"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-200</int> <int id="x">-953</int> </object> <object id="end"> <int id="y">-160</int> <int id="x">-810</int> </object> </object> <object id="plat_1303924130946"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-176</int> <int id="x">-2599</int> </object> <object id="end"> <int id="y">-143</int> <int id="x">-2369</int> </object> </object> <object id="plat_1303924130653"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-136</int> <int id="x">799</int> </object> <object id="end"> <int id="y">-147</int> <int id="x">1087</int> </object> </object> <object id="plat_1303924130655"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-148</int> <int id="x">1211</int> </object> <object id="end"> <int id="y">-157</int> <int id="x">1469</int> </object> </object> <object id="plat_1303924130920"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-166</int> <int id="x">-1593</int> </object> <object id="end"> <int id="y">-206</int> <int id="x">-1343</int> </object> </object> <object id="plat_1307741224254"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-212</int> <int id="x">2205</int> </object> <object id="end"> <int id="y">-218</int> <int id="x">2359</int> </object> </object> <object id="plat_1307741224253"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-190</int> <int id="x">2064</int> </object> <object id="end"> <int id="y">-212</int> <int id="x">2205</int> </object> </object> <object id="plat_1304710549580"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-224</int> <int id="x">-1202</int> </object> <object id="end"> <int id="y">-200</int> <int id="x">-953</int> </object> </object> <object id="plat_1303862233455"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-206</int> <int id="x">-1343</int> </object> <object id="end"> <int id="y">-224</int> <int id="x">-1202</int> </object> </object> <object id="plat_1307985308620"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-507</int> <int id="x">-1642</int> </object> <object id="end"> <int id="y">-488</int> <int id="x">-1590</int> </object> </object> <object id="plat_1304367518599"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-148</int> <int id="x">115</int> </object> <object id="end"> <int id="y">-130</int> <int id="x">307</int> </object> </object> <object id="plat_1307985308617"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-488</int> <int id="x">-1590</int> </object> <object id="end"> <int id="y">-493</int> <int id="x">-1490</int> </object> </object> <object id="plat_1307741224208"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-183</int> <int id="x">1697</int> </object> <object id="end"> <int id="y">-190</int> <int id="x">2064</int> </object> </object> <object id="plat_1303924130951"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-133</int> <int id="x">-2059</int> </object> <object id="end"> <int id="y">-153</int> <int id="x">-1955</int> </object> </object> <object id="plat_1304367518598"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-135</int> <int id="x">-65</int> </object> <object id="end"> <int id="y">-148</int> <int id="x">115</int> </object> </object> <object id="plat_1303924130945"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-235</int> <int id="x">-2792</int> </object> <object id="end"> <int id="y">-176</int> <int id="x">-2599</int> </object> </object> <object id="plat_1307985308612"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-480</int> <int id="x">-1970</int> </object> <object id="end"> <int id="y">-502</int> <int id="x">-1796</int> </object> </object> <object id="plat_1303924130918"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-153</int> <int id="x">-1955</int> </object> <object id="end"> <int id="y">-147</int> <int id="x">-1830</int> </object> </object> <object id="plat_1303924130947"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-143</int> <int id="x">-2369</int> </object> <object id="end"> <int id="y">-149</int> <int id="x">-2276</int> </object> </object> <object id="plat_1303856735945"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-157</int> <int id="x">1469</int> </object> <object id="end"> <int id="y">-183</int> <int id="x">1697</int> </object> </object> <object id="plat_1303924130915"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-218</int> <int id="x">-2999</int> </object> <object id="end"> <int id="y">-235</int> <int id="x">-2792</int> </object> </object> <object id="plat_1307985308616"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-362</int> <int id="x">-1434</int> </object> <object id="end"> <int id="y">-360</int> <int id="x">-1319</int> </object> </object> <object id="plat_1307985308608"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-384</int> <int id="x">-2601</int> </object> <object id="end"> <int id="y">-363</int> <int id="x">-2320</int> </object> </object> <object id="plat_1304367518595"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-151</int> <int id="x">-626</int> </object> <object id="end"> <int id="y">-141</int> <int id="x">-489</int> </object> </object> <object id="plat_1307985308618"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-493</int> <int id="x">-1490</int> </object> <object id="end"> <int id="y">-498</int> <int id="x">-1198</int> </object> </object> <object id="plat_1304367518597"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-144</int> <int id="x">-300</int> </object> <object id="end"> <int id="y">-135</int> <int id="x">-65</int> </object> </object> <object id="plat_1307985308607"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-358</int> <int id="x">-2724</int> </object> <object id="end"> <int id="y">-384</int> <int id="x">-2601</int> </object> </object> <object id="plat_1304367518600"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-130</int> <int id="x">307</int> </object> <object id="end"> <int id="y">-124</int> <int id="x">467</int> </object> </object> <object id="plat_1307985308609"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-363</int> <int id="x">-2320</int> </object> <object id="end"> <int id="y">-368</int> <int id="x">-2101</int> </object> </object> <object id="plat_1303854859496"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-124</int> <int id="x">467</int> </object> <object id="end"> <int id="y">-132</int> <int id="x">705</int> </object> </object> <object id="plat_1307985308611"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-468</int> <int id="x">-2068</int> </object> <object id="end"> <int id="y">-480</int> <int id="x">-1970</int> </object> </object> <object id="plat_1307985308625"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-361</int> <int id="x">-2020</int> </object> <object id="end"> <int id="y">-344</int> <int id="x">-1996</int> </object> </object> <object id="plat_1307985308610"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-368</int> <int id="x">-2101</int> </object> <object id="end"> <int id="y">-361</int> <int id="x">-2020</int> </object> </object> <object id="plat_1303924130919"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-147</int> <int id="x">-1830</int> </object> <object id="end"> <int id="y">-166</int> <int id="x">-1593</int> </object> </object> <object id="plat_1303924130592"> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> <object id="start"> <int id="y">-242</int> <int id="x">2638</int> </object> <object id="end"> <int id="y">-246</int> <int id="x">2999</int> </object> </object> </object> <str id="name">middleground</str> <object id="boxes"> </object> <object id="walls"> </object> <int id="w">6000</int> <object id="targets"> </object> <object id="decos"> <object id="heights_mound_3_1307985308321"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1869</int> <int id="y">-206</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">7</int> <int id="h">188</int> </object> <object id="patch_dirt_2a_1307985308583"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2954</int> <int id="y">-203</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">234</int> <int id="h">73</int> </object> <object id="alakol_beach_2_1307734440097"> <int id="w">1048</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">-739</int> <int id="y">-84</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">154</int> <int id="h">91</int> </object> <object id="patch_dirt_2a_1307985308574"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2285</int> <int id="y">-261</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">225</int> <int id="h">45</int> </object> <object id="alakol_water_rock_1_1307985308553"> <int id="w">354</int> <str id="sprite_class">alakol_water_rock_1</str> <int id="x">-557</int> <int id="y">-157</int> <str id="name">alakol_water_rock_1_1307985308548</str> <int id="z">218</int> <int id="h">281</int> </object> <object id="alakol_water_rock_2_1307985308602"> <int id="w">391</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">-1761</int> <int id="z">251</int> <int id="y">-146</int> <str id="name">alakol_water_rock_2_1307985308551</str> <bool id="h_flip">true</bool> <int id="h">210</int> </object> <object id="patch_dirt_2a_1307741224227"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1795</int> <int id="y">-153</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">175</int> <int id="h">45</int> </object> <object id="heights_mound_3_1307985308323"> <int id="w">369</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-5</int> <int id="x">-1002</int> <int id="y">-181</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">22</int> <int id="h">130</int> </object> <object id="alakol_beach_2_1307985308208"> <int id="w">819</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">-2667</int> <int id="y">-73</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">166</int> <int id="h">100</int> </object> <object id="heights_face_1_1304367518589"> <int id="w">502</int> <str id="sprite_class">heights_face_1</str> <int id="r">3</int> <int id="x">2769</int> <int id="z">46</int> <int id="y">171</int> <str id="name">heights_face_1_1303940406349</str> <bool id="h_flip">true</bool> <int id="h">343</int> </object> <object id="patch_dirt_2a_1307741224238"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="r">-6</int> <int id="x">-1419</int> <int id="y">-178</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">184</int> <int id="h">73</int> </object> <object id="patch_dirt_2a_1307741224248"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2950</int> <int id="y">-131</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">196</int> <int id="h">73</int> </object> <object id="heights_moss_2_1303945676383"> <int id="w">199</int> <str id="sprite_class">heights_moss_2</str> <int id="x">-1217</int> <int id="y">-203</int> <str id="name">heights_moss_2_1303945676380</str> <int id="z">93</int> <int id="h">30</int> </object> <object id="patch_dirt_2a_1307985308575"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2290</int> <int id="y">-235</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">224</int> <int id="h">73</int> </object> <object id="heights_topper_2_1304967904275"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="r">-2</int> <int id="x">-1769</int> <int id="y">-115</int> <str id="name">heights_topper_2_1304542661593</str> <int id="z">140</int> <int id="h">39</int> </object> <object id="alakol_water_rock_2_1307985308566"> <int id="w">317</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">1626</int> <int id="y">-227</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">216</int> <int id="h">101</int> </object> <object id="patch_dirt_2a_1307741224249"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2914</int> <int id="y">-113</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">199</int> <int id="h">45</int> </object> <object id="heights_platform_4_1304367518587"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="x">2312</int> <int id="y">19</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">98</int> <int id="h">217</int> </object> <object id="patch_dirt_2a_1307985308277"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2432</int> <int id="y">-191</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">212</int> <int id="h">73</int> </object> <object id="patch_dirt_2a_1307985308275"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2163</int> <int id="y">-133</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">210</int> <int id="h">73</int> </object> <object id="stalagmite_base_1_1307985308571"> <int id="w">262</int> <str id="sprite_class">stalagmite_base_1</str> <int id="x">120</int> <int id="y">-191</int> <str id="name">stalagmite_base_1_1307741224140</str> <int id="z">220</int> <int id="h">94</int> </object> <object id="heights_face_1_1304367518556"> <int id="w">502</int> <str id="sprite_class">heights_face_1</str> <int id="r">3</int> <int id="x">1846</int> <int id="z">44</int> <int id="y">138</int> <str id="name">heights_face_1_1303940406349</str> <bool id="h_flip">true</bool> <int id="h">343</int> </object> <object id="wildflowers_blue_2_1303924130546"> <int id="w">99</int> <str id="sprite_class">wildflowers_blue_2</str> <int id="x">-285</int> <int id="y">-113</int> <str id="name">wildflowers_blue_2_1303862233499</str> <int id="z">60</int> <int id="h">23</int> </object> <object id="heights_mound_3_1307734440093"> <int id="w">530</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-5</int> <int id="x">-1111</int> <int id="y">48</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">156</int> <int id="h">187</int> </object> <object id="patch_dirt_2a_1307741224244"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">704</int> <int id="y">-141</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">190</int> <int id="h">73</int> </object> <object id="heights_topper_2_1303942056954"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-922</int> <int id="y">-82</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">83</int> <int id="h">47</int> </object> <object id="patch_dirt_2a_1307741224233"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1094</int> <int id="y">-179</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">181</int> <int id="h">45</int> </object> <object id="heights_platform_4_1304367518748"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="x">1845</int> <int id="y">62</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">116</int> <int id="h">217</int> </object> <object id="patch_dirt_2a_1307985308576"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2396</int> <int id="y">-243</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">227</int> <int id="h">45</int> </object> <object id="heights_mound_2_1304542661651"> <int id="w">294</int> <str id="sprite_class">heights_mound_2</str> <int id="r">-190</int> <int id="x">-2022</int> <int id="z">39</int> <int id="y">-1038</int> <str id="name">heights_mound_2_1303924130862</str> <bool id="h_flip">true</bool> <int id="h">206</int> </object> <object id="heights_bandaid_2_1304707792782"> <int id="w">114</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">-579</int> <int id="z">138</int> <int id="y">-892</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">209</int> </object> <object id="patch_dirt_2a_1307985308652"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2727</int> <int id="y">-258</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">264</int> <int id="h">45</int> </object> <object id="heights_mound_3_1307734440092"> <int id="w">478</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-1352</int> <int id="y">65</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">155</int> <int id="h">168</int> </object> <object id="heights_mound_3_1303924130773"> <int id="w">371</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-1769</int> <int id="y">-189</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">53</int> <int id="h">140</int> </object> <object id="heights_mound_3_1304542661563"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">190</int> <int id="x">2276</int> <int id="z">125</int> <int id="y">-1001</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="heights_bandaid_2_1304707792781"> <int id="w">72</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">-1172</int> <int id="z">106</int> <int id="y">-874</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">198</int> </object> <object id="patch_dirt_2a_1307985308635"> <int id="w">319</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1625</int> <int id="y">-147</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">260</int> <int id="h">55</int> </object> <object id="patch_dirt_2a_1307741224240"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-686</int> <int id="y">-138</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">186</int> <int id="h">73</int> </object> <object id="patch_dirt_2a_1307985308584"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2762</int> <int id="y">-194</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">238</int> <int id="h">45</int> </object> <object id="alakol_beach_2_1307985308223"> <int id="w">1422</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-2</int> <int id="x">2603</int> <int id="y">-177</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">206</int> <int id="h">115</int> </object> <object id="penaltybox_roof_1303924130757"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">-2968</int> <int id="y">-759</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">26</int> <int id="h">202</int> </object> <object id="evenground_platform_long_1303856735919"> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">2590</int> <int id="y">89</int> <str id="name">evenground_platform_long_1303856735875</str> <int id="z">57</int> <int id="h">64</int> </object> <object id="heights_topper_1_1303942056981"> <int id="w">242</int> <str id="sprite_class">heights_topper_1</str> <int id="r">5</int> <int id="x">-288</int> <int id="y">-77</int> <str id="name">heights_topper_1_1303942056956</str> <int id="z">86</int> <int id="h">62</int> </object> <object id="patch_dirt_2a_1307741224251"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2651</int> <int id="y">-113</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">201</int> <int id="h">45</int> </object> <object id="heights_platform_4_1304367518550"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">1440</int> <int id="y">26</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">96</int> <int id="h">217</int> </object> <object id="heights_mound_3_1303924130774"> <int id="w">360</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-1535</int> <int id="y">-193</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">54</int> <int id="h">136</int> </object> <object id="patch_dirt_2a_1307985308636"> <int id="w">319</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1286</int> <int id="y">-190</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">256</int> <int id="h">55</int> </object> <object id="patch_dirt_2a_1307985308592"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2932</int> <int id="y">-203</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">244</int> <int id="h">45</int> </object> <object id="alakol_beach_2_1307741224127"> <int id="w">639</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">35</int> <int id="y">-139</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">168</int> <int id="h">91</int> </object> <object id="heights_mound_2_1304367518658"> <int id="w">294</int> <str id="sprite_class">heights_mound_2</str> <int id="x">-1562</int> <int id="y">-870</int> <str id="name">heights_mound_2_1303924130862</str> <int id="z">41</int> <int id="h">206</int> </object> <object id="gravel_2_1307985308654"> <int id="w">109</int> <str id="sprite_class">gravel_2</str> <int id="x">2614</int> <int id="y">-276</int> <str id="name">gravel_2_1307985308654</str> <int id="z">266</int> <int id="h">61</int> </object> <object id="heights_bandaid_1_1304707792780"> <int id="w">95</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">185</int> <int id="x">-1144</int> <int id="y">-923</int> <str id="name">heights_bandaid_1_1304707792773</str> <int id="z">107</int> <int id="h">194</int> </object> <object id="heights_platform_4_1304367518590"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="x">2786</int> <int id="y">22</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">110</int> <int id="h">217</int> </object> <object id="alakol_beach_2_1307985308621"> <int id="w">619</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-1</int> <int id="x">-1752</int> <int id="y">-460</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">247</int> <int id="h">73</int> </object> <object id="heights_topper_2_1303942056953"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-1249</int> <int id="y">-165</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">78</int> <int id="h">47</int> </object> <object id="alakol_beach_2_1307741224104"> <int id="w">814</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">2213</int> <int id="y">-99</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">208</int> <int id="h">105</int> </object> <object id="patch_dirt_2a_1307741224252"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2655</int> <int id="y">-87</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">200</int> <int id="h">73</int> </object> <object id="patch_dirt_2a_1307985308593"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2936</int> <int id="y">-177</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">243</int> <int id="h">73</int> </object> <object id="alakol_water_rock_2_1307985308604"> <int id="w">506</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">-1394</int> <int id="z">253</int> <int id="y">-197</int> <str id="name">alakol_water_rock_2_1307985308551</str> <bool id="h_flip">true</bool> <int id="h">183</int> </object> <object id="stalagmite_1_1307985308570"> <int id="w">143</int> <str id="sprite_class">stalagmite_1</str> <int id="x">118</int> <int id="y">-231</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">221</int> <int id="h">379</int> </object> <object id="heights_mound_2_1304367518648"> <int id="w">294</int> <str id="sprite_class">heights_mound_2</str> <int id="x">-1758</int> <int id="y">-859</int> <str id="name">heights_mound_2_1303924130862</str> <int id="z">40</int> <int id="h">206</int> </object> <object id="heights_platform_4_1303924130924"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-8</int> <int id="x">-2363</int> <int id="y">65</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">64</int> <int id="h">217</int> </object> <object id="crosssection_heights_underside_1304542661640"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">-2</int> <int id="x">2525</int> <int id="y">-813</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">132</int> <int id="h">112</int> </object> <object id="patch_dirt_2a_1307985308577"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2400</int> <int id="y">-217</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">226</int> <int id="h">73</int> </object> <object id="heights_mound_3_1307985308301"> <int id="w">540</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-5</int> <int id="x">2714</int> <int id="y">-245</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">9</int> <int id="h">206</int> </object> <object id="heights_mound_3_1307985308204"> <int id="w">596</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-2171</int> <int id="y">-175</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">16</int> <int id="h">226</int> </object> <object id="stalagmite_2_1307985308639"> <int id="w">187</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2438</int> <int id="y">-854</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">262</int> <int id="h">426</int> </object> <object id="heights_topper_2_1303942056966"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-923</int> <int id="y">-113</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">70</int> <int id="h">60</int> </object> <object id="heights_mound_3_1307985308564"> <int id="w">397</int> <str id="sprite_class">heights_mound_3</str> <int id="x">770</int> <int id="y">-152</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">5</int> <int id="h">151</int> </object> <object id="stalagmite_2_1307741224214"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">175</int> <int id="z">170</int> <int id="y">-972</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">326</int> </object> <object id="patch_dirt_2a_1307985308278"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1924</int> <int id="y">-158</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">213</int> <int id="h">73</int> </object> <object id="heights_topper_1_1303942056975"> <int id="w">242</int> <str id="sprite_class">heights_topper_1</str> <int id="r">15</int> <int id="x">-1172</int> <int id="y">-160</int> <str id="name">heights_topper_1_1303942056956</str> <int id="z">81</int> <int id="h">62</int> </object> <object id="heights_bandaid_1_1304710549566"> <int id="w">131</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">185</int> <int id="x">-855</int> <int id="y">-964</int> <str id="name">heights_bandaid_1_1304707792773</str> <int id="z">108</int> <int id="h">267</int> </object> <object id="heights_mound_3_1304367518561"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-1006</int> <int id="y">-844</int> <str id="name">heights_mound_3_1304367518560</str> <int id="z">101</int> <int id="h">189</int> </object> <object id="patch_dirt_2a_1307741224228"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1791</int> <int id="y">-127</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">174</int> <int id="h">73</int> </object> <object id="heights_mound_3_1307985308265"> <int id="w">610</int> <str id="sprite_class">heights_mound_3</str> <int id="r">175</int> <int id="x">2942</int> <int id="y">-895</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">162</int> <int id="h">245</int> </object> <object id="gravel_2_1307985308655"> <int id="w">109</int> <str id="sprite_class">gravel_2</str> <int id="x">533</int> <int id="y">-167</int> <str id="name">gravel_2_1307985308654</str> <int id="z">267</int> <int id="h">61</int> </object> <object id="alakol_beach_2_1307985308596"> <int id="w">581</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-6</int> <int id="x">-2474</int> <int id="y">-344</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">245</int> <int id="h">78</int> </object> <object id="dirt_platform_short_1303942056930"> <int id="w">338</int> <str id="sprite_class">dirt_platform_short</str> <int id="r">8</int> <int id="x">-963</int> <int id="y">-149</int> <str id="name">dirt_platform_short_1303942056923</str> <int id="z">66</int> <int id="h">62</int> </object> <object id="alakol_beach_2_1307741224103"> <int id="w">1411</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">1496</int> <int id="y">-130</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">215</int> <int id="h">103</int> </object> <object id="heights_topper_1_1303942056983"> <int id="w">242</int> <str id="sprite_class">heights_topper_1</str> <int id="r">5</int> <int id="x">220</int> <int id="y">18</int> <str id="name">heights_topper_1_1303942056956</str> <int id="z">90</int> <int id="h">62</int> </object> <object id="patch_dirt_2a_1307741224247"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2946</int> <int id="y">-157</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">197</int> <int id="h">45</int> </object> <object id="heights_topper_2_1304967904281"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="r">-2</int> <int id="x">-1816</int> <int id="y">-125</int> <str id="name">heights_topper_2_1304542661593</str> <int id="z">146</int> <int id="h">39</int> </object> <object id="patch_dirt_2a_1307985308651"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2555</int> <int id="y">-229</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">265</int> <int id="h">45</int> </object> <object id="heights_mound_3_1307985308563"> <int id="w">397</int> <str id="sprite_class">heights_mound_3</str> <int id="x">544</int> <int id="y">-173</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">1</int> <int id="h">151</int> </object> <object id="patch_dirt_2a_1307985308606"> <int id="w">355</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1444</int> <int id="y">-176</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">255</int> <int id="h">61</int> </object> <object id="heights_topper_1_1303942056984"> <int id="w">242</int> <str id="sprite_class">heights_topper_1</str> <int id="r">5</int> <int id="x">-131</int> <int id="y">-79</int> <str id="name">heights_topper_1_1303942056956</str> <int id="z">87</int> <int id="h">62</int> </object> <object id="patch_dirt_2a_1307741224237"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="r">-6</int> <int id="x">-1423</int> <int id="y">-204</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">185</int> <int id="h">45</int> </object> <object id="heights_moss_1_1303945676375"> <int id="w">162</int> <str id="sprite_class">heights_moss_1</str> <int id="x">-2432</int> <int id="y">-18</int> <str id="name">heights_moss_1_1303945676373</str> <int id="z">159</int> <int id="h">88</int> </object> <object id="heights_platform_4_1307734440077"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="x">2761</int> <int id="y">67</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">111</int> <int id="h">217</int> </object> <object id="heights_mound_3_1305743053116"> <int id="w">397</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1285</int> <int id="y">-116</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">34</int> <int id="h">151</int> </object> <object id="alakol_beach_2_1307741224139"> <int id="w">677</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-4</int> <int id="x">-1367</int> <int id="y">-157</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">151</int> <int id="h">83</int> </object> <object id="alakol_beach_2_1307985308209"> <int id="w">819</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">-2981</int> <int id="y">-132</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">167</int> <int id="h">100</int> </object> <object id="alakol_beach_2_1307985308597"> <int id="w">581</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-6</int> <int id="x">-1846</int> <int id="y">-456</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">246</int> <int id="h">69</int> </object> <object id="heights_face_1_1304367518559"> <int id="w">502</int> <str id="sprite_class">heights_face_1</str> <int id="r">3</int> <int id="x">608</int> <int id="z">42</int> <int id="y">160</int> <str id="name">heights_face_1_1303940406349</str> <bool id="h_flip">true</bool> <int id="h">343</int> </object> <object id="alakol_beach_2_1307734440098"> <int id="w">1048</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">8</int> <int id="x">-2682</int> <int id="y">-223</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">136</int> <int id="h">63</int> </object> <object id="heights_mound_3_1307985308569"> <int id="w">397</int> <str id="sprite_class">heights_mound_3</str> <int id="x">169</int> <int id="y">-154</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">4</int> <int id="h">151</int> </object> <object id="patch_dirt_2a_1307741224229"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1589</int> <int id="y">-143</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">177</int> <int id="h">45</int> </object> <object id="patch_dirt_2a_1307741224245"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">496</int> <int id="y">-144</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">195</int> <int id="h">45</int> </object> <object id="patch_dirt_2a_1307985308632"> <int id="w">319</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2154</int> <int id="y">-192</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">257</int> <int id="h">55</int> </object> <object id="alakol_water_rock_2_1307985308601"> <int id="w">506</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">-1417</int> <int id="y">-192</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">21</int> <int id="h">196</int> </object> <object id="alakol_beach_2_1307741224128"> <int id="w">699</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">-359</int> <int id="y">-138</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">169</int> <int id="h">85</int> </object> <object id="heights_platform_4_1304367518573"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">-671</int> <int id="y">44</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">49</int> <int id="h">217</int> </object> <object id="heights_mound_3_1307734440075"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1690</int> <int id="y">-160</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">147</int> <int id="h">188</int> </object> <object id="heights_mound_3_1307985308217"> <int id="w">486</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2636</int> <int id="y">-122</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">29</int> <int id="h">185</int> </object> <object id="crosssection_heights_underside_1304542661591"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">-2</int> <int id="x">1952</int> <int id="y">-871</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">131</int> <int id="h">112</int> </object> <object id="heights_mound_3_1307741224302"> <int id="w">449</int> <str id="sprite_class">heights_mound_3</str> <int id="r">15</int> <int id="x">2095</int> <int id="y">-130</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">18</int> <int id="h">159</int> </object> <object id="heights_mound_3_1307985308516"> <int id="w">369</int> <str id="sprite_class">heights_mound_3</str> <int id="r">5</int> <int id="x">-730</int> <int id="y">-140</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">23</int> <int id="h">130</int> </object> <object id="patch_dirt_2a_1307985308591"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2728</int> <int id="y">-189</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">241</int> <int id="h">73</int> </object> <object id="heights_mound_3_1307985308568"> <int id="w">397</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-71</int> <int id="y">-119</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">3</int> <int id="h">151</int> </object> <object id="gravel_2_1307985308657"> <int id="w">109</int> <str id="sprite_class">gravel_2</str> <int id="x">-1685</int> <int id="y">-173</int> <str id="name">gravel_2_1307985308654</str> <int id="z">269</int> <int id="h">61</int> </object> <object id="heights_topper_2_1303942056972"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-1162</int> <int id="z">77</int> <int id="y">-204</int> <str id="name">heights_topper_2_1303942056952</str> <bool id="h_flip">true</bool> <int id="h">60</int> </object> <object id="patch_dirt_2a_1307985308663"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1853</int> <int id="y">-259</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">228</int> <int id="h">45</int> </object> <object id="alakol_water_rock_2_1307985308551"> <int id="w">408</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">-1981</int> <int id="y">-200</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">217</int> <int id="h">158</int> </object> <object id="heights_platform_4_1304367518591"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">570</int> <int id="y">71</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">112</int> <int id="h">217</int> </object> <object id="heights_face_rock_2_1307741224281"> <int id="w">556</int> <str id="sprite_class">heights_face_rock_2</str> <int id="r">180</int> <int id="x">2600</int> <int id="y">-921</int> <str id="name">heights_face_rock_2_1305054912830</str> <int id="z">202</int> <int id="h">174</int> </object> <object id="heights_platform_4_1304367518592"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">174</int> <int id="y">69</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">115</int> <int id="h">217</int> </object> <object id="heights_mound_3_1304542661561"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">190</int> <int id="x">1785</int> <int id="z">123</int> <int id="y">-1013</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="heights_mound_3_1305743053115"> <int id="w">397</int> <str id="sprite_class">heights_mound_3</str> <int id="x">993</int> <int id="y">-125</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">33</int> <int id="h">151</int> </object> <object id="stalagmite_2_1307985308670"> <int id="w">171</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">521</int> <int id="z">171</int> <int id="y">-1005</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">390</int> </object> <object id="heights_mound_3_1307985308567"> <int id="w">397</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-344</int> <int id="y">-143</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">2</int> <int id="h">151</int> </object> <object id="heights_topper_2_1303942056973"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-1040</int> <int id="y">-171</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">73</int> <int id="h">60</int> </object> <object id="heights_platform_4_1304367518593"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">-107</int> <int id="y">78</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">88</int> <int id="h">217</int> </object> <object id="heights_mound_2_1304542661652"> <int id="w">294</int> <str id="sprite_class">heights_mound_2</str> <int id="r">-190</int> <int id="x">-2248</int> <int id="z">38</int> <int id="y">-1037</int> <str id="name">heights_mound_2_1303924130862</str> <bool id="h_flip">true</bool> <int id="h">206</int> </object> <object id="patch_dirt_2a_1307741224234"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1090</int> <int id="y">-153</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">180</int> <int id="h">73</int> </object> <object id="patch_dirt_2a_1307985308634"> <int id="w">319</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1966</int> <int id="y">-139</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">259</int> <int id="h">55</int> </object> <object id="heights_topper_1_1303942056974"> <int id="w">242</int> <str id="sprite_class">heights_topper_1</str> <int id="r">15</int> <int id="x">-1078</int> <int id="y">-186</int> <str id="name">heights_topper_1_1303942056956</str> <int id="z">80</int> <int id="h">62</int> </object> <object id="heights_mound_3_1307985308594"> <int id="w">717</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-5</int> <int id="x">-1842</int> <int id="y">-266</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">13</int> <int id="h">253</int> </object> <object id="heights_moss_2_1303942056989"> <int id="w">199</int> <str id="sprite_class">heights_moss_2</str> <int id="x">-1019</int> <int id="y">-170</int> <str id="name">heights_moss_2_1303942056989</str> <int id="z">94</int> <int id="h">30</int> </object> <object id="crosssection_heights_underside_1304542661568"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">-2</int> <int id="x">-299</int> <int id="y">-862</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">129</int> <int id="h">112</int> </object> <object id="patch_dirt_2a_1307985308573"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2465</int> <int id="y">-247</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">222</int> <int id="h">73</int> </object> <object id="heights_topper_2_1303942056967"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-1019</int> <int id="y">-127</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">71</int> <int id="h">60</int> </object> <object id="patch_dirt_2a_1307985308579"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2202</int> <int id="y">-205</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">229</int> <int id="h">73</int> </object> <object id="alakol_beach_2_1307734440091"> <int id="w">1048</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-4</int> <int id="x">-1372</int> <int id="y">-112</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">152</int> <int id="h">78</int> </object> <object id="heights_platform_4_1304367518538"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">482</int> <int id="y">24</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">51</int> <int id="h">217</int> </object> <object id="evenground_platform_long_1303856735923"> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-2396</int> <int id="y">67</int> <str id="name">evenground_platform_long_1303856735875</str> <int id="z">58</int> <int id="h">64</int> </object> <object id="patch_dirt_2a_1307741224243"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">700</int> <int id="y">-167</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">193</int> <int id="h">45</int> </object> <object id="alakol_beach_2_1307985308603"> <int id="w">540</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-1</int> <int id="x">-1551</int> <int id="y">-318</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">254</int> <int id="h">87</int> </object> <object id="penaltybox_roof_1303924130762"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">-2617</int> <int id="y">-790</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">27</int> <int id="h">202</int> </object> <object id="heights_hole_wall_piece_1305743053121"> <int id="w">155</int> <str id="sprite_class">heights_hole_wall_piece</str> <int id="r">75</int> <int id="x">-2373</int> <int id="y">13</int> <str id="name">heights_hole_wall_piece_1303924130753</str> <int id="z">24</int> <int id="h">162</int> </object> <object id="heights_face_1_1304367518557"> <int id="w">502</int> <str id="sprite_class">heights_face_1</str> <int id="r">3</int> <int id="x">1418</int> <int id="z">47</int> <int id="y">186</int> <str id="name">heights_face_1_1303940406349</str> <bool id="h_flip">true</bool> <int id="h">343</int> </object> <object id="patch_dirt_2a_1307985308589"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2900</int> <int id="y">-218</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">239</int> <int id="h">73</int> </object> <object id="heights_mound_3_1304542661564"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">190</int> <int id="x">2491</int> <int id="z">126</int> <int id="y">-1010</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="patch_dirt_2a_1307741224239"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-708</int> <int id="y">-168</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">187</int> <int id="h">45</int> </object> <object id="alakol_water_rock_2_1307985308562"> <int id="w">317</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">355</int> <int id="y">-165</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">219</int> <int id="h">123</int> </object> <object id="patch_dirt_2a_1307985308590"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2724</int> <int id="y">-215</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">242</int> <int id="h">45</int> </object> <object id="heights_face_1_1305754302153"> <int id="w">502</int> <str id="sprite_class">heights_face_1</str> <int id="r">3</int> <int id="x">-1630</int> <int id="z">52</int> <int id="y">63</int> <str id="name">heights_face_1_1303940406349</str> <bool id="h_flip">true</bool> <int id="h">343</int> </object> <object id="heights_mound_3_1307985308218"> <int id="w">486</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2908</int> <int id="y">-121</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">30</int> <int id="h">185</int> </object> <object id="heights_mound_3_1304367518560"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-1296</int> <int id="y">-855</int> <str id="name">heights_mound_3_1304367518560</str> <int id="z">100</int> <int id="h">189</int> </object> <object id="patch_dirt_2a_1307741224230"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1585</int> <int id="y">-117</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">176</int> <int id="h">73</int> </object> <object id="stalagmite_2_1307741224164"> <int id="w">187</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2358</int> <int id="y">-974</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">205</int> <int id="h">426</int> </object> <object id="alakol_beach_2_1307985308222"> <int id="w">1007</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-4</int> <int id="x">2106</int> <int id="y">-197</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">160</int> <int id="h">127</int> </object> <object id="heights_hole_wall_piece_1304542661699"> <int id="w">141</int> <str id="sprite_class">heights_hole_wall_piece</str> <int id="r">35</int> <int id="x">-2278</int> <int id="y">-818</int> <str id="name">heights_hole_wall_piece_1304542661646</str> <int id="z">134</int> <int id="h">148</int> </object> <object id="crosssection_heights_underside_1304542661567"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">-2</int> <int id="x">-850</int> <int id="y">-855</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">103</int> <int id="h">112</int> </object> <object id="patch_dirt_2a_1307741224246"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">500</int> <int id="y">-118</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">194</int> <int id="h">73</int> </object> <object id="heights_topper_2_1304967904279"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="r">-2</int> <int id="x">-1886</int> <int id="y">-119</int> <str id="name">heights_topper_2_1304542661593</str> <int id="z">144</int> <int id="h">39</int> </object> <object id="patch_dirt_2a_1307985308582"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2958</int> <int id="y">-229</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">235</int> <int id="h">45</int> </object> <object id="heights_moss_2_1303945676381"> <int id="w">199</int> <str id="sprite_class">heights_moss_2</str> <int id="x">-1202</int> <int id="y">-221</int> <str id="name">heights_moss_2_1303945676380</str> <int id="z">92</int> <int id="h">30</int> </object> <object id="heights_mound_3_1304542661555"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">180</int> <int id="x">319</int> <int id="z">119</int> <int id="y">-1096</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="heights_topper_2_1304967904278"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="r">-2</int> <int id="x">-1968</int> <int id="y">-140</int> <str id="name">heights_topper_2_1304542661593</str> <int id="z">143</int> <int id="h">39</int> </object> <object id="alakol_beach_2_1307985308624"> <int id="w">581</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-1</int> <int id="x">-2189</int> <int id="y">-310</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">249</int> <int id="h">87</int> </object> <object id="patch_dirt_2a_1307985308572"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2461</int> <int id="y">-273</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">223</int> <int id="h">45</int> </object> <object id="crosssection_heights_underside_1304542661590"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">-2</int> <int id="x">1307</int> <int id="y">-870</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">130</int> <int id="h">112</int> </object> <object id="heights_platform_4_1307734440076"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="x">2295</int> <int id="y">64</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">99</int> <int id="h">217</int> </object> <object id="heights_mound_3_1307985308302"> <int id="w">540</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-10</int> <int id="x">2115</int> <int id="y">-155</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">8</int> <int id="h">206</int> </object> <object id="heights_mound_3_1303924130751"> <int id="w">464</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-2447</int> <int id="y">-830</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">37</int> <int id="h">176</int> </object> <object id="heights_mound_3_1305743053117"> <int id="w">397</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1529</int> <int id="y">-98</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">35</int> <int id="h">151</int> </object> <object id="dirt_platform_short_1303942056924"> <int id="w">300</int> <str id="sprite_class">dirt_platform_short</str> <int id="x">-1228</int> <int id="y">-187</int> <str id="name">dirt_platform_short_1303942056923</str> <int id="z">65</int> <int id="h">55</int> </object> <object id="heights_topper_2_1303942056955"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-1006</int> <int id="y">-99</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">82</int> <int id="h">47</int> </object> <object id="gravel_2_1307985308656"> <int id="w">109</int> <str id="sprite_class">gravel_2</str> <int id="x">-1150</int> <int id="y">-233</int> <str id="name">gravel_2_1307985308654</str> <int id="z">268</int> <int id="h">61</int> </object> <object id="patch_dirt_2a_1307985308276"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2072</int> <int id="y">-159</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">211</int> <int id="h">73</int> </object> <object id="evenground_platform_long_1303856735946"> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">468</int> <int id="y">88</int> <str id="name">evenground_platform_long_1303856735875</str> <int id="z">56</int> <int id="h">64</int> </object> <object id="heights_platform_4_1303924130926"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="x">-1518</int> <int id="y">97</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">61</int> <int id="h">217</int> </object> <object id="heights_platform_4_1304367518537"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">7</int> <int id="y">27</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">50</int> <int id="h">217</int> </object> <object id="heights_mound_3_1304542661566"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">190</int> <int id="x">3006</int> <int id="z">128</int> <int id="y">-1006</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="heights_platform_4_1304367518601"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">1016</int> <int id="y">74</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">113</int> <int id="h">217</int> </object> <object id="patch_dirt_2a_1307985308585"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2758</int> <int id="y">-168</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">236</int> <int id="h">73</int> </object> <object id="crosssection_heights_underside_1303942056982"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">183</int> <int id="x">45</int> <int id="y">-59</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">85</int> <int id="h">112</int> </object> <object id="heights_mound_3_1303942056990"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">278</int> <int id="y">86</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">91</int> <int id="h">188</int> </object> <object id="heights_mound_3_1307734440095"> <int id="w">530</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-387</int> <int id="y">65</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">158</int> <int id="h">187</int> </object> <object id="heights_topper_2_1303942056979"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-438</int> <int id="y">-83</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">84</int> <int id="h">47</int> </object> <object id="patch_dirt_2a_1307741224250"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2918</int> <int id="y">-87</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">198</int> <int id="h">73</int> </object> <object id="heights_topper_2_1303942056968"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-1104</int> <int id="y">-152</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">72</int> <int id="h">60</int> </object> <object id="alakol_beach_2_1307734440096"> <int id="w">1048</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">-1218</int> <int id="y">-72</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">153</int> <int id="h">91</int> </object> <object id="heights_mound_3_1307741224109"> <int id="w">610</int> <str id="sprite_class">heights_mound_3</str> <int id="r">175</int> <int id="x">2651</int> <int id="y">-928</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">163</int> <int id="h">245</int> </object> <object id="heights_bandaid_2_1304710549547"> <int id="w">98</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">-511</int> <int id="z">32</int> <int id="y">-895</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">180</int> </object> <object id="heights_mound_3_1305743053103"> <int id="w">486</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2368</int> <int id="y">-123</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">28</int> <int id="h">185</int> </object> <object id="patch_dirt_2a_1307985308580"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1922</int> <int id="y">-190</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">232</int> <int id="h">45</int> </object> <object id="heights_topper_2_1303942056970"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-855</int> <int id="y">-126</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">75</int> <int id="h">60</int> </object> <object id="gravel_1_1307985308659"> <int id="w">280</int> <str id="sprite_class">gravel_1</str> <int id="x">-2472</int> <int id="y">-199</int> <str id="name">gravel_1_1307985308658</str> <int id="z">271</int> <int id="h">51</int> </object> <object id="heights_topper_2_1303942056964"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-833</int> <int id="y">-97</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">69</int> <int id="h">60</int> </object> <object id="heights_mound_3_1307985308595"> <int id="w">668</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-5</int> <int id="x">-1414</int> <int id="y">-277</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">14</int> <int id="h">253</int> </object> <object id="dirt_platform_short_1303942056926"> <int id="w">300</int> <str id="sprite_class">dirt_platform_short</str> <int id="x">-1226</int> <int id="y">-151</int> <str id="name">dirt_platform_short_1303942056923</str> <int id="z">68</int> <int id="h">55</int> </object> <object id="patch_dirt_2a_1307985308581"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1887</int> <int id="y">-194</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">231</int> <int id="h">73</int> </object> <object id="patch_dirt_2a_1307985308653"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2007</int> <int id="y">-223</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">233</int> <int id="h">45</int> </object> <object id="heights_platform_4_1304367518533"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">-489</int> <int id="y">30</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">48</int> <int id="h">217</int> </object> <object id="heights_platform_4_1303924130925"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">7</int> <int id="x">-1943</int> <int id="y">66</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">63</int> <int id="h">217</int> </object> <object id="heights_mound_3_1304367518563"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-351</int> <int id="y">-853</int> <str id="name">heights_mound_3_1304367518560</str> <int id="z">109</int> <int id="h">189</int> </object> <object id="patch_dirt_2a_1307985308274"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2300</int> <int id="y">-190</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">214</int> <int id="h">45</int> </object> <object id="patch_dirt_2a_1307985308273"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2252</int> <int id="y">-154</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">209</int> <int id="h">73</int> </object> <object id="heights_platform_4_1304367518602"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-4</int> <int id="x">1466</int> <int id="y">62</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">114</int> <int id="h">217</int> </object> <object id="heights_platform_4_1304367518549"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">-1</int> <int id="x">962</int> <int id="y">29</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">95</int> <int id="h">217</int> </object> <object id="alakol_beach_2_1307985308623"> <int id="w">498</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-6</int> <int id="x">-1845</int> <int id="y">-478</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">261</int> <int id="h">76</int> </object> <object id="heights_topper_1_1303942056985"> <int id="w">242</int> <str id="sprite_class">heights_topper_1</str> <int id="r">5</int> <int id="x">28</int> <int id="y">-81</int> <str id="name">heights_topper_1_1303942056956</str> <int id="z">89</int> <int id="h">62</int> </object> <object id="patch_dirt_2a_1307985308588"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2896</int> <int id="y">-244</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">240</int> <int id="h">45</int> </object> <object id="alakol_beach_2_1307985308622"> <int id="w">707</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">2</int> <int id="x">-1545</int> <int id="y">-487</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">0</int> <int id="h">91</int> </object> <object id="heights_face_rock_2_1307741224284"> <int id="w">556</int> <str id="sprite_class">heights_face_rock_2</str> <int id="r">180</int> <int id="x">2963</int> <int id="y">-859</int> <str id="name">heights_face_rock_2_1305054912830</str> <int id="z">203</int> <int id="h">174</int> </object> <object id="heights_bandaid_2_1304710549567"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">-924</int> <int id="y">-1002</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">31</int> <int id="h">281</int> </object> <object id="heights_hole_wall_piece_1305743053122"> <int id="w">155</int> <str id="sprite_class">heights_hole_wall_piece</str> <int id="r">75</int> <int id="x">-2228</int> <int id="y">28</int> <str id="name">heights_hole_wall_piece_1303924130753</str> <int id="z">25</int> <int id="h">162</int> </object> <object id="evenground_platform_long_1303856735947"> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-414</int> <int id="y">82</int> <str id="name">evenground_platform_long_1303856735875</str> <int id="z">55</int> <int id="h">64</int> </object> <object id="heights_topper_2_1304967904276"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="r">-2</int> <int id="x">-1664</int> <int id="y">-104</int> <str id="name">heights_topper_2_1304542661593</str> <int id="z">141</int> <int id="h">39</int> </object> <object id="alakol_beach_2_1307734440088"> <int id="w">677</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">6</int> <int id="x">-1743</int> <int id="y">-81</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">149</int> <int id="h">83</int> </object> <object id="heights_topper_2_1303942056971"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-929</int> <int id="z">76</int> <int id="y">-155</int> <str id="name">heights_topper_2_1303942056952</str> <bool id="h_flip">true</bool> <int id="h">60</int> </object> <object id="patch_dirt_2a_1307741224236"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-926</int> <int id="y">-134</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">182</int> <int id="h">73</int> </object> <object id="heights_mound_3_1304542661559"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">175</int> <int id="x">1192</int> <int id="z">121</int> <int id="y">-1110</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="heights_mound_3_1307734440094"> <int id="w">530</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-747</int> <int id="y">67</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">157</int> <int id="h">187</int> </object> <object id="heights_mound_3_1305743053132"> <int id="w">434</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-5</int> <int id="x">-1264</int> <int id="y">-208</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">19</int> <int id="h">153</int> </object> <object id="heights_topper_1_1303942056956"> <int id="w">242</int> <str id="sprite_class">heights_topper_1</str> <int id="r">15</int> <int id="x">-1142</int> <int id="y">-119</int> <str id="name">heights_topper_1_1303942056956</str> <int id="z">79</int> <int id="h">62</int> </object> <object id="heights_topper_2_1304967904277"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="r">-2</int> <int id="x">-1601</int> <int id="y">-93</int> <str id="name">heights_topper_2_1304542661593</str> <int id="z">142</int> <int id="h">39</int> </object> <object id="patch_dirt_2a_1307741224231"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1169</int> <int id="y">-226</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">179</int> <int id="h">45</int> </object> <object id="heights_mound_3_1304542661560"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">190</int> <int id="x">1556</int> <int id="z">122</int> <int id="y">-1086</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="patch_dirt_2a_1307985308650"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2930</int> <int id="y">-163</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">237</int> <int id="h">73</int> </object> <object id="heights_face_1_1304367518558"> <int id="w">502</int> <str id="sprite_class">heights_face_1</str> <int id="r">3</int> <int id="x">985</int> <int id="z">43</int> <int id="y">199</int> <str id="name">heights_face_1_1303940406349</str> <bool id="h_flip">true</bool> <int id="h">343</int> </object> <object id="heights_mound_3_1304542661562"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">190</int> <int id="x">2034</int> <int id="z">124</int> <int id="y">-1003</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="patch_dirt_2a_1307741224242"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">285</int> <int id="y">-128</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">188</int> <int id="h">73</int> </object> <object id="alakol_beach_2_1307985308224"> <int id="w">1422</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">2836</int> <int id="y">-111</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">207</int> <int id="h">115</int> </object> <object id="patch_dirt_2a_1307741224235"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-930</int> <int id="y">-160</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">183</int> <int id="h">45</int> </object> <object id="alakol_water_rock_2_1307985308557"> <int id="w">506</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">-1130</int> <int id="y">-202</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">20</int> <int id="h">196</int> </object> <object id="patch_dirt_2a_1307985308633"> <int id="w">319</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-2021</int> <int id="y">-168</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">258</int> <int id="h">55</int> </object> <object id="heights_platform_4_1304367518551"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="x">1845</int> <int id="y">15</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">97</int> <int id="h">217</int> </object> <object id="heights_mound_3_1307985308205"> <int id="w">420</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-2881</int> <int id="y">-171</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">11</int> <int id="h">159</int> </object> <object id="alakol_beach_2_1307985308662"> <int id="w">1007</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-4</int> <int id="x">1499</int> <int id="y">-190</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">161</int> <int id="h">92</int> </object> <object id="heights_face_rock_2_1307741224282"> <int id="w">556</int> <str id="sprite_class">heights_face_rock_2</str> <int id="r">180</int> <int id="x">2926</int> <int id="y">-932</int> <str id="name">heights_face_rock_2_1305054912830</str> <int id="z">204</int> <int id="h">174</int> </object> <object id="patch_dirt_2a_1307741224225"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1643</int> <int id="y">-181</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">173</int> <int id="h">45</int> </object> <object id="heights_platform_4_1303924130923"> <int id="w">513</int> <str id="sprite_class">heights_platform_4</str> <int id="r">3</int> <int id="x">-2876</int> <int id="y">81</int> <str id="name">heights_platform_4_1303924130923</str> <int id="z">62</int> <int id="h">217</int> </object> <object id="heights_mound_3_1304367518564"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">190</int> <int id="x">7</int> <int id="z">118</int> <int id="y">-1057</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="alakol_beach_2_1307734440087"> <int id="w">711</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">-1836</int> <int id="y">-136</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">148</int> <int id="h">79</int> </object> <object id="heights_mound_3_1307741224114"> <int id="w">485</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1494</int> <int id="y">-171</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">17</int> <int id="h">169</int> </object> <object id="alakol_beach_2_1307741224110"> <int id="w">660</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">-2162</int> <int id="y">-70</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">165</int> <int id="h">100</int> </object> <object id="crosssection_heights_underside_1304542661570"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">-2</int> <int id="x">-1427</int> <int id="y">-822</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">105</int> <int id="h">112</int> </object> <object id="gravel_1_1307985308661"> <int id="w">280</int> <str id="sprite_class">gravel_1</str> <int id="x">1290</int> <int id="y">-170</int> <str id="name">gravel_1_1307985308658</str> <int id="z">273</int> <int id="h">51</int> </object> <object id="heights_bandaid_1_1304707792783"> <int id="w">84</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">185</int> <int id="x">-554</int> <int id="y">-881</int> <str id="name">heights_bandaid_1_1304707792773</str> <int id="z">139</int> <int id="h">171</int> </object> <object id="gravel_1_1307985308658"> <int id="w">280</int> <str id="sprite_class">gravel_1</str> <int id="x">-2295</int> <int id="y">-372</int> <str id="name">gravel_1_1307985308658</str> <int id="z">270</int> <int id="h">51</int> </object> <object id="heights_moss_2_1304367518819"> <int id="w">199</int> <str id="sprite_class">heights_moss_2</str> <int id="x">433</int> <int id="y">-149</int> <str id="name">heights_moss_2_1303945676380</str> <int id="z">135</int> <int id="h">25</int> </object> <object id="alakol_beach_2_1307985308599"> <int id="w">498</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-1</int> <int id="x">-1402</int> <int id="y">-463</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">250</int> <int id="h">76</int> </object> <object id="heights_mound_3_1307985308206"> <int id="w">668</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-5</int> <int id="x">-2491</int> <int id="y">-158</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">12</int> <int id="h">253</int> </object> <object id="alakol_beach_2_1307985308600"> <int id="w">540</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-1</int> <int id="x">-1572</int> <int id="y">-324</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">252</int> <int id="h">91</int> </object> <object id="alakol_beach_2_1307734440090"> <int id="w">677</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-4</int> <int id="x">-1548</int> <int id="y">-117</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">150</int> <int id="h">83</int> </object> <object id="patch_dirt_2a_1307985308586"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">752</int> <int id="y">-124</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">192</int> <int id="h">45</int> </object> <object id="patch_dirt_2a_1307741224226"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1639</int> <int id="y">-155</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">172</int> <int id="h">73</int> </object> <object id="heights_face_1_1304367518588"> <int id="w">502</int> <str id="sprite_class">heights_face_1</str> <int id="r">3</int> <int id="x">2314</int> <int id="z">45</int> <int id="y">120</int> <str id="name">heights_face_1_1303940406349</str> <bool id="h_flip">true</bool> <int id="h">343</int> </object> <object id="heights_mound_3_1304542661565"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">190</int> <int id="x">2733</int> <int id="z">127</int> <int id="y">-1010</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="gravel_1_1307985308660"> <int id="w">280</int> <str id="sprite_class">gravel_1</str> <int id="x">-299</int> <int id="y">-166</int> <str id="name">gravel_1_1307985308658</str> <int id="z">272</int> <int id="h">51</int> </object> <object id="stalagmite_2_1307985308640"> <int id="w">101</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2601</int> <int id="y">-702</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">263</int> <int id="h">230</int> </object> <object id="heights_mound_3_1307985308540"> <int id="w">540</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-5</int> <int id="x">2991</int> <int id="y">-200</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">10</int> <int id="h">206</int> </object> <object id="patch_dirt_2a_1307985308587"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">756</int> <int id="y">-98</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">191</int> <int id="h">73</int> </object> <object id="stalagmite_2_1307741224165"> <int id="w">125</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2466</int> <int id="y">-1031</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">164</int> <int id="h">285</int> </object> <object id="heights_bandaid_2_1304710549565"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">-869</int> <int id="y">-884</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">104</int> <int id="h">281</int> </object> <object id="alakol_beach_2_1307734440099"> <int id="w">1048</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">6</int> <int id="x">-2648</int> <int id="z">137</int> <int id="y">-156</int> <str id="name">alakol_beach_2_1307734440087</str> <bool id="h_flip">true</bool> <int id="h">108</int> </object> <object id="heights_bandaid_3_1304542661644"> <int id="w">146</int> <str id="sprite_class">heights_bandaid_3</str> <int id="x">2868</int> <int id="y">-747</int> <str id="name">heights_bandaid_3_1304542661643</str> <int id="z">133</int> <int id="h">264</int> </object> <object id="heights_mound_3_1307985308320"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2330</int> <int id="y">-225</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">6</int> <int id="h">188</int> </object> <object id="dirt_platform_short_1303942056931"> <int id="w">338</int> <str id="sprite_class">dirt_platform_short</str> <int id="r">8</int> <int id="x">-959</int> <int id="y">-117</int> <str id="name">dirt_platform_short_1303942056923</str> <int id="z">67</int> <int id="h">62</int> </object> <object id="heights_mound_3_1304542661558"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="r">190</int> <int id="x">1045</int> <int id="z">120</int> <int id="y">-1101</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="heights_topper_2_1303942056969"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="x">-1236</int> <int id="y">-187</int> <str id="name">heights_topper_2_1303942056952</str> <int id="z">74</int> <int id="h">60</int> </object> <object id="patch_dirt_2a_1307741224232"> <int id="w">426</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1073</int> <int id="y">-190</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">178</int> <int id="h">73</int> </object> <object id="patch_dirt_2a_1307741224241"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">281</int> <int id="y">-154</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">189</int> <int id="h">45</int> </object> <object id="evenground_platform_long_1303856735949"> <int id="w">1227</int> <str id="sprite_class">evenground_platform_long</str> <int id="x">-1392</int> <int id="y">90</int> <str id="name">evenground_platform_long_1303856735875</str> <int id="z">59</int> <int id="h">64</int> </object> <object id="heights_moss_2_1304367518818"> <int id="w">199</int> <str id="sprite_class">heights_moss_2</str> <int id="x">817</int> <int id="y">-126</int> <str id="name">heights_moss_2_1303945676380</str> <int id="z">117</int> <int id="h">30</int> </object> <object id="patch_dirt_2a_1307985308578"> <int id="w">263</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2198</int> <int id="y">-231</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">230</int> <int id="h">45</int> </object> <object id="heights_topper_2_1304967904280"> <int id="w">145</int> <str id="sprite_class">heights_topper_2</str> <int id="r">-2</int> <int id="x">-1877</int> <int id="y">-137</int> <str id="name">heights_topper_2_1304542661593</str> <int id="z">145</int> <int id="h">39</int> </object> <object id="heights_mound_3_1307985308207"> <int id="w">420</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-2386</int> <int id="y">-132</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">15</int> <int id="h">159</int> </object> <object id="alakol_beach_2_1307985308598"> <int id="w">581</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-1</int> <int id="x">-2204</int> <int id="y">-340</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">248</int> <int id="h">87</int> </object> <object id="heights_mound_3_1304367518562"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="x">-698</int> <int id="y">-854</int> <str id="name">heights_mound_3_1304367518560</str> <int id="z">102</int> <int id="h">189</int> </object> <object id="heights_mound_3_1305743053118"> <int id="w">397</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1802</int> <int id="y">-156</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">36</int> <int id="h">151</int> </object> </object> <object id="signposts"> <object id="signpost_1"> <int id="y">-260</int> <int id="w">100</int> <int id="x">2850</int> <int id="h">200</int> <object id="connects"> <object id="0"> <int id="x">2870</int> <int id="y">-252</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1314910480.swf</str> <str id="mote_id">9</str> <str id="hub_id">85</str> <objref id="target" tsid="LHV4U1QMFC42NBP" label="Manggal Haste"/> </object> <object id="1"> <int id="x">-656</int> <int id="y">-308</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1314910480.swf</str> <str id="mote_id">9</str> <str id="hub_id">85</str> <objref id="target" tsid="LHV15B8HEQ32SN0" label="Kanji Sink"/> </object> </object> </object> <object id="signpost_2"> <int id="y">-250</int> <int id="w">100</int> <int id="x">-2850</int> <int id="h">200</int> <object id="connects"> <object id="0"> <int id="x">435</int> <int id="y">-107</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1314910480.swf</str> <str id="mote_id">9</str> <str id="hub_id">85</str> <objref id="target" tsid="LHV17CFO5V327AJ" label="Appam Almost"/> </object> </object> </object> </object> <int id="z">0</int> <int id="h">1000</int> <object id="ladders"> </object> </object> <object id="middleplus"> <int id="w">6000</int> <int id="z">1</int> <object id="filtersNEW"> <object id="saturation"> <int id="value">-34</int> </object> <object id="tintColor"> <int id="value">6051136</int> </object> <object id="contrast"> <int id="value">-9</int> </object> <object id="tintAmount"> <int id="value">10</int> </object> <object id="brightness"> <int id="value">-34</int> </object> </object> <int id="h">1000</int> <str id="name">middleplus</str> <object id="decos"> <object id="stalagmite_2_1307985308627"> <int id="w">153</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1207</int> <int id="y">983</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">39</int> <int id="h">455</int> </object> <object id="stalagmite_2_1307741224206"> <int id="w">171</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2852</int> <int id="y">926</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">35</int> <int id="h">407</int> </object> <object id="heights_mound_3_1304367518575"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2754</int> <int id="y">1094</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">11</int> <int id="h">188</int> </object> <object id="heights_hole_wall_piece_1304542661646"> <int id="w">141</int> <str id="sprite_class">heights_hole_wall_piece</str> <int id="r">85</int> <int id="x">5705</int> <int id="y">121</int> <str id="name">heights_hole_wall_piece_1304542661646</str> <int id="z">25</int> <int id="h">148</int> </object> <object id="stalagmite_base_1_1307985308631"> <int id="w">315</int> <str id="sprite_class">stalagmite_base_1</str> <int id="x">2796</int> <int id="y">1029</int> <str id="name">stalagmite_base_1_1307741224140</str> <int id="z">41</int> <int id="h">100</int> </object> <object id="crosssection_heights_underside_1303924130913"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">180</int> <int id="x">1356</int> <int id="y">915</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">2</int> <int id="h">112</int> </object> <object id="stalagmite_base_1_1307741224207"> <int id="w">262</int> <str id="sprite_class">stalagmite_base_1</str> <int id="x">2847</int> <int id="y">960</int> <str id="name">stalagmite_base_1_1307741224140</str> <int id="z">34</int> <int id="h">94</int> </object> <object id="heights_mound_3_1303942056996"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1398</int> <int id="y">1118</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">10</int> <int id="h">188</int> </object> <object id="heights_mound_3_1303942056995"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1097</int> <int id="y">1093</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">9</int> <int id="h">188</int> </object> <object id="heights_bandaid_3_1303942056917"> <int id="w">107</int> <str id="sprite_class">heights_bandaid_3</str> <int id="r">-78</int> <int id="x">1249</int> <int id="z">4</int> <int id="y">986</int> <str id="name">heights_bandaid_3_1303924130766</str> <bool id="h_flip">true</bool> <int id="h">198</int> </object> <object id="stalagmite_2_1307741224200"> <int id="w">122</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1070</int> <int id="y">927</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">27</int> <int id="h">321</int> </object> <object id="patch_dirt_2a_1307985308189"> <int id="w">408</int> <str id="sprite_class">patch_dirt_2a</str> <int id="r">2</int> <int id="x">2949</int> <int id="y">964</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">33</int> <int id="h">73</int> </object> <object id="heights_mound_3_1304367518782"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">3932</int> <int id="y">1069</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">18</int> <int id="h">188</int> </object> <object id="crosssection_heights_underside_1303924130912"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">180</int> <int id="x">253</int> <int id="y">917</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">1</int> <int id="h">112</int> </object> <object id="heights_mound_3_1303942056994"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2218</int> <int id="y">1129</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">8</int> <int id="h">188</int> </object> <object id="heights_hole_wall_piece_1304542661647"> <int id="w">141</int> <str id="sprite_class">heights_hole_wall_piece</str> <int id="r">60</int> <int id="x">5702</int> <int id="y">87</int> <str id="name">heights_hole_wall_piece_1304542661646</str> <int id="z">0</int> <int id="h">148</int> </object> <object id="stalagmite_base_1_1307741224203"> <int id="w">369</int> <str id="sprite_class">stalagmite_base_1</str> <int id="x">1129</int> <int id="y">1007</int> <str id="name">stalagmite_base_1_1307741224140</str> <int id="z">26</int> <int id="h">117</int> </object> <object id="heights_mound_3_1304367518604"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2833</int> <int id="y">1103</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">15</int> <int id="h">188</int> </object> <object id="heights_mound_3_1303942056992"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1624</int> <int id="y">1066</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">6</int> <int id="h">188</int> </object> <object id="heights_mound_3_1304367518783"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">4283</int> <int id="y">1062</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">19</int> <int id="h">188</int> </object> <object id="patch_dirt_2a_1307985308187"> <int id="w">408</int> <str id="sprite_class">patch_dirt_2a</str> <int id="r">-3</int> <int id="x">2691</int> <int id="y">963</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">31</int> <int id="h">73</int> </object> <object id="heights_mound_3_1304461478965"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">4940</int> <int id="y">1040</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">22</int> <int id="h">188</int> </object> <object id="heights_mound_3_1303942056993"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">1921</int> <int id="y">1119</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">7</int> <int id="h">188</int> </object> <object id="stalagmite_1_1307985308629"> <int id="w">106</int> <str id="sprite_class">stalagmite_1</str> <int id="x">2817</int> <int id="y">993</int> <str id="name">stalagmite_1_1307741224216</str> <int id="z">43</int> <int id="h">396</int> </object> <object id="stalagmite_base_1_1307985308628"> <int id="w">315</int> <str id="sprite_class">stalagmite_base_1</str> <int id="x">1228</int> <int id="y">1022</int> <str id="name">stalagmite_base_1_1307741224140</str> <int id="z">38</int> <int id="h">100</int> </object> <object id="heights_mound_3_1304367518784"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="r">15</int> <int id="x">4564</int> <int id="y">1072</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">20</int> <int id="h">188</int> </object> <object id="heights_mound_3_1304367518605"> <int id="w">584</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2513</int> <int id="y">1129</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">14</int> <int id="h">223</int> </object> <object id="alakol_beach_2_1307746618865"> <int id="w">930</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">2886</int> <int id="y">995</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">28</int> <int id="h">97</int> </object> <object id="stalagmite_1_1307985308504"> <int id="w">221</int> <str id="sprite_class">stalagmite_1</str> <int id="x">1174</int> <int id="y">958</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">37</int> <int id="h">585</int> </object> <object id="alakol_beach_2_1307746618866"> <int id="w">930</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">2549</int> <int id="y">1042</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">29</int> <int id="h">97</int> </object> <object id="heights_hole_wall_piece_1303942056959"> <int id="w">164</int> <str id="sprite_class">heights_hole_wall_piece</str> <int id="r">75</int> <int id="x">1514</int> <int id="z">5</int> <int id="y">977</int> <str id="name">heights_hole_wall_piece_1303924130753</str> <bool id="h_flip">true</bool> <int id="h">171</int> </object> <object id="heights_mound_3_1304461478967"> <int id="w">540</int> <str id="sprite_class">heights_mound_3</str> <int id="r">15</int> <int id="x">5538</int> <int id="y">1088</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">24</int> <int id="h">206</int> </object> <object id="crosssection_heights_underside_1303924130914"> <int id="w">580</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="r">180</int> <int id="x">807</int> <int id="y">918</int> <str id="name">crosssection_heights_underside_1303924130881</str> <int id="z">3</int> <int id="h">112</int> </object> <object id="alakol_beach_2_1307746618867"> <int id="w">930</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">1</int> <int id="x">3135</int> <int id="y">1050</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">30</int> <int id="h">97</int> </object> <object id="light_spot_1307985308270"> <int id="w">821</int> <str id="sprite_class">light_spot</str> <int id="x">-203</int> <int id="y">946</int> <str id="name">light_spot_1307985308266</str> <int id="z">36</int> <int id="h">706</int> </object> <object id="heights_mound_3_1303942056998"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">3282</int> <int id="y">1063</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">13</int> <int id="h">188</int> </object> <object id="heights_mound_3_1304461478964"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">5366</int> <int id="y">1037</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">21</int> <int id="h">188</int> </object> <object id="heights_mound_3_1304367518574"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2978</int> <int id="y">1088</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">12</int> <int id="h">188</int> </object> <object id="heights_mound_3_1304367518799"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="x">3608</int> <int id="y">1064</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">17</int> <int id="h">188</int> </object> <object id="stalagmite_1_1307985308626"> <int id="w">106</int> <str id="sprite_class">stalagmite_1</str> <int id="x">1249</int> <int id="y">986</int> <str id="name">stalagmite_1_1307741224216</str> <int id="z">40</int> <int id="h">254</int> </object> <object id="patch_dirt_2a_1307985308188"> <int id="w">408</int> <str id="sprite_class">patch_dirt_2a</str> <int id="r">2</int> <int id="x">2815</int> <int id="y">995</int> <str id="name">patch_dirt_2a_1307741224223</str> <int id="z">32</int> <int id="h">73</int> </object> <object id="heights_mound_3_1304367518612"> <int id="w">492</int> <str id="sprite_class">heights_mound_3</str> <int id="r">20</int> <int id="x">3153</int> <int id="y">1074</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">16</int> <int id="h">188</int> </object> <object id="heights_mound_3_1304461478966"> <int id="w">540</int> <str id="sprite_class">heights_mound_3</str> <int id="x">5250</int> <int id="y">1078</int> <str id="name">heights_mound_3_1303856735924</str> <int id="z">23</int> <int id="h">206</int> </object> <object id="stalagmite_2_1307985308630"> <int id="w">153</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2775</int> <int id="y">990</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">42</int> <int id="h">264</int> </object> </object> </object> <object id="bg_1"> <int id="w">5160</int> <int id="z">-1</int> <object id="filtersNEW"> <object id="blur"> <int id="value">2</int> </object> <object id="saturation"> <int id="value">-45</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">-25</int> </object> <object id="brightness"> <int id="value">-56</int> </object> </object> <int id="h">1000</int> <str id="name">bg_1</str> <object id="decos"> <object id="heights_bandaid_1_1307985308313"> <int id="w">155</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">180</int> <int id="x">2558</int> <int id="y">723</int> <str id="name">heights_bandaid_1_1307985308242</str> <int id="z">37</int> <int id="h">202</int> </object> <object id="stalagmite_2_1307985308215"> <int id="w">131</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">980</int> <int id="z">6</int> <int id="y">210</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">299</int> </object> <object id="heights_bandaid_2_1304710549553"> <int id="w">170</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">3897</int> <int id="z">16</int> <int id="y">82</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">277</int> </object> <object id="stalagmite_1_1307985308532"> <int id="w">107</int> <str id="sprite_class">stalagmite_1</str> <int id="x">1290</int> <int id="y">782</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">59</int> <int id="h">283</int> </object> <object id="penaltybox_roof_1304542661663"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">1493</int> <int id="y">260</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">2</int> <int id="h">202</int> </object> <object id="heights_bandaid_2_1305754302168"> <int id="w">76</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">358</int> <int id="x">2288</int> <int id="y">770</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">19</int> <int id="h">192</int> </object> <object id="stalagmite_1_1307985308508"> <int id="w">191</int> <str id="sprite_class">stalagmite_1</str> <int id="x">3019</int> <int id="y">990</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">58</int> <int id="h">506</int> </object> <object id="alakol_beach_2_1307985308544"> <int id="w">762</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">4</int> <int id="x">776</int> <int id="y">691</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">61</int> <int id="h">82</int> </object> <object id="alakol_beach_2_1307985308537"> <int id="w">384</int> <str id="sprite_class">alakol_beach_2</str> <int id="x">5013</int> <int id="y">610</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">48</int> <int id="h">59</int> </object> <object id="heights_bandaid_1_1307985308324"> <int id="w">155</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">180</int> <int id="x">4811</int> <int id="y">632</int> <str id="name">heights_bandaid_1_1307985308242</str> <int id="z">52</int> <int id="h">202</int> </object> <object id="alakol_water_rock_2_1307985308556"> <int id="w">408</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">1785</int> <int id="y">767</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">65</int> <int id="h">158</int> </object> <object id="stalagmite_2_1307741224154"> <int id="w">64</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2211</int> <int id="y">640</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">22</int> <int id="h">123</int> </object> <object id="alakol_beach_2_1307985308306"> <int id="w">447</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-6</int> <int id="x">2603</int> <int id="y">713</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">32</int> <int id="h">82</int> </object> <object id="stalagmite_2_1307985308326"> <int id="w">167</int> <str id="sprite_class">stalagmite_2</str> <int id="x">4873</int> <int id="y">890</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">50</int> <int id="h">300</int> </object> <object id="heights_mound_3_1307985308332"> <int id="w">346</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-185</int> <int id="x">4617</int> <int id="z">40</int> <int id="y">562</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">136</int> </object> <object id="heights_mound_3_1307985308535"> <int id="w">372</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-184</int> <int id="x">5003</int> <int id="z">42</int> <int id="y">574</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">142</int> </object> <object id="stalagmite_2_1307741224152"> <int id="w">105</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">1555</int> <int id="z">21</int> <int id="y">230</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">329</int> </object> <object id="heights_bandaid_1_1307985308327"> <int id="w">155</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">180</int> <int id="x">4537</int> <int id="y">624</int> <str id="name">heights_bandaid_1_1307985308242</str> <int id="z">57</int> <int id="h">202</int> </object> <object id="heights_bandaid_2_1304707792777"> <int id="w">170</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">2691</int> <int id="z">12</int> <int id="y">182</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">277</int> </object> <object id="alakol_beach_2_1307985308307"> <int id="w">437</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">2</int> <int id="x">2788</int> <int id="y">726</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">30</int> <int id="h">71</int> </object> <object id="penaltybox_roof_1304542661658"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">2317</int> <int id="y">240</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">1</int> <int id="h">202</int> </object> <object id="stalagmite_2_1307741224287"> <int id="w">217</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">691</int> <int id="z">5</int> <int id="y">117</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">495</int> </object> <object id="stalagmite_2_1307741224286"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">3295</int> <int id="y">126</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">14</int> <int id="h">326</int> </object> <object id="penaltybox_roof_1308869487536"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">653</int> <int id="y">280</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">3</int> <int id="h">202</int> </object> <object id="stalagmite_2_1307985308308"> <int id="w">150</int> <str id="sprite_class">stalagmite_2</str> <int id="x">3705</int> <int id="z">29</int> <int id="y">929</int> <str id="name">stalagmite_2_1307741224131</str> <bool id="h_flip">true</bool> <int id="h">242</int> </object> <object id="heights_mound_3_1307985308522"> <int id="w">389</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">3269</int> <int id="z">28</int> <int id="y">690</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">149</int> </object> <object id="alakol_beach_2_1307985308539"> <int id="w">365</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-3</int> <int id="x">5285</int> <int id="y">522</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">45</int> <int id="h">57</int> </object> <object id="heights_mound_3_1307985308331"> <int id="w">337</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">4747</int> <int id="z">41</int> <int id="y">543</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">129</int> </object> <object id="heights_bandaid_1_1304707792778"> <int id="w">131</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">185</int> <int id="x">3380</int> <int id="y">130</int> <str id="name">heights_bandaid_1_1304707792773</str> <int id="z">15</int> <int id="h">233</int> </object> <object id="heights_mound_3_1304542661586"> <int id="w">429</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2209</int> <int id="y">790</int> <str id="name">heights_mound_3_1304542661586</str> <int id="z">0</int> <int id="h">163</int> </object> <object id="stalagmite_2_1307741224143"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2218</int> <int id="z">20</int> <int id="y">181</int> <str id="name">stalagmite_2_1307741224143</str> <bool id="h_flip">true</bool> <int id="h">326</int> </object> <object id="stalagmite_1_1307985308503"> <int id="w">124</int> <str id="sprite_class">stalagmite_1</str> <int id="x">3309</int> <int id="y">891</int> <str id="name">stalagmite_1_1307985308503</str> <int id="z">55</int> <int id="h">328</int> </object> <object id="heights_mound_3_1307985308310"> <int id="w">346</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-185</int> <int id="x">2607</int> <int id="z">25</int> <int id="y">699</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">136</int> </object> <object id="alakol_beach_2_1307985308547"> <int id="w">437</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">2</int> <int id="x">1338</int> <int id="y">746</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">62</int> <int id="h">71</int> </object> <object id="stalagmite_2_1307985308305"> <int id="w">167</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2961</int> <int id="y">941</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">35</int> <int id="h">300</int> </object> <object id="penaltybox_roof_1304542661659"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">3145</int> <int id="y">219</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">7</int> <int id="h">202</int> </object> <object id="heights_bandaid_2_1307741224100"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="x">4094</int> <int id="z">10</int> <int id="y">851</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">332</int> </object> <object id="heights_mound_3_1307985308309"> <int id="w">389</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">2791</int> <int id="z">26</int> <int id="y">700</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">149</int> </object> <object id="alakol_beach_2_1307985308330"> <int id="w">437</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">2</int> <int id="x">4715</int> <int id="y">581</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">46</int> <int id="h">71</int> </object> <object id="heights_bandaid_1_1307985308303"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">-5</int> <int id="x">3715</int> <int id="z">38</int> <int id="y">926</int> <str id="name">heights_bandaid_1_1307985308242</str> <bool id="h_flip">true</bool> <int id="h">145</int> </object> <object id="stalagmite_3_1307985308501"> <int id="w">135</int> <str id="sprite_class">stalagmite_3</str> <int id="x">2476</int> <int id="y">861</int> <str id="name">stalagmite_3_1307985308501</str> <int id="z">54</int> <int id="h">214</int> </object> <object id="penaltybox_roof_1308869487538"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">-5</int> <int id="x">3973</int> <int id="y">165</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">8</int> <int id="h">202</int> </object> <object id="alakol_beach_2_1307985308523"> <int id="w">397</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-5</int> <int id="x">3052</int> <int id="y">759</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">34</int> <int id="h">68</int> </object> <object id="stalagmite_2_1307741224220"> <int id="w">161</int> <str id="sprite_class">stalagmite_2</str> <int id="x">5039</int> <int id="z">23</int> <int id="y">816</int> <str id="name">stalagmite_2_1307741224131</str> <bool id="h_flip">true</bool> <int id="h">379</int> </object> <object id="alakol_beach_2_1307985308534"> <int id="w">397</int> <str id="sprite_class">alakol_beach_2</str> <int id="x">2387</int> <int id="y">733</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">33</int> <int id="h">68</int> </object> <object id="heights_bandaid_1_1307985308325"> <int id="w">155</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">-10</int> <int id="x">4907</int> <int id="z">51</int> <int id="y">898</int> <str id="name">heights_bandaid_1_1307985308242</str> <bool id="h_flip">true</bool> <int id="h">202</int> </object> <object id="penaltybox_roof_1304542661660"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">4174</int> <int id="y">134</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">11</int> <int id="h">202</int> </object> <object id="stalagmite_1_1307985308507"> <int id="w">168</int> <str id="sprite_class">stalagmite_1</str> <int id="x">4519</int> <int id="y">1078</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">56</int> <int id="h">445</int> </object> <object id="stalagmite_2_1307985308312"> <int id="w">167</int> <str id="sprite_class">stalagmite_2</str> <int id="x">3538</int> <int id="y">968</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">39</int> <int id="h">300</int> </object> <object id="alakol_beach_2_1307985308545"> <int id="w">437</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">2</int> <int id="x">848</int> <int id="y">701</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">60</int> <int id="h">71</int> </object> <object id="heights_bandaid_2_1304710549548"> <int id="w">98</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">3020</int> <int id="z">9</int> <int id="y">162</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">180</int> </object> <object id="alakol_beach_2_1307985308329"> <int id="w">397</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-5</int> <int id="x">4660</int> <int id="y">587</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">47</int> <int id="h">68</int> </object> <object id="stalagmite_2_1307741224221"> <int id="w">161</int> <str id="sprite_class">stalagmite_2</str> <int id="x">5228</int> <int id="z">24</int> <int id="y">868</int> <str id="name">stalagmite_2_1307741224131</str> <bool id="h_flip">true</bool> <int id="h">379</int> </object> <object id="heights_bandaid_1_1304710549552"> <int id="w">131</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">185</int> <int id="x">3936</int> <int id="y">68</int> <str id="name">heights_bandaid_1_1304707792773</str> <int id="z">17</int> <int id="h">233</int> </object> <object id="stalagmite_1_1307985308384"> <int id="w">124</int> <str id="sprite_class">stalagmite_1</str> <int id="r">358</int> <int id="x">4653</int> <int id="y">1074</int> <str id="name">stalagmite_1_1307741224134</str> <int id="z">49</int> <int id="h">328</int> </object> <object id="penaltybox_roof_1307985308500"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">180</int> <int id="x">3549</int> <int id="y">873</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">53</int> <int id="h">318</int> </object> <object id="heights_mound_3_1307985308521"> <int id="w">389</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">3050</int> <int id="z">27</int> <int id="y">739</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">149</int> </object> <object id="alakol_beach_2_1307985308546"> <int id="w">688</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">4</int> <int id="x">1119</int> <int id="y">737</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">63</int> <int id="h">82</int> </object> <object id="heights_mound_3_1307985308536"> <int id="w">372</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-179</int> <int id="x">5301</int> <int id="z">43</int> <int id="y">503</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">142</int> </object> <object id="alakol_water_rock_2_1307985308555"> <int id="w">408</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">1580</int> <int id="z">64</int> <int id="y">786</int> <str id="name">alakol_water_rock_2_1307985308551</str> <bool id="h_flip">true</bool> <int id="h">236</int> </object> <object id="alakol_beach_2_1307985308538"> <int id="w">334</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">3</int> <int id="x">5321</int> <int id="y">532</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">44</int> <int id="h">57</int> </object> <object id="penaltybox_roof_1308869487537"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">-185</int> <int id="y">301</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">4</int> <int id="h">202</int> </object> <object id="heights_bandaid_1_1304707792776"> <int id="w">131</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">185</int> <int id="x">2708</int> <int id="y">140</int> <str id="name">heights_bandaid_1_1304707792773</str> <int id="z">13</int> <int id="h">233</int> </object> <object id="heights_bandaid_1_1307985308304"> <int id="w">155</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">-10</int> <int id="x">2518</int> <int id="z">36</int> <int id="y">917</int> <str id="name">heights_bandaid_1_1307985308242</str> <bool id="h_flip">true</bool> <int id="h">202</int> </object> <object id="heights_bandaid_2_1304710549555"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">3567</int> <int id="z">18</int> <int id="y">19</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">275</int> </object> <object id="alakol_beach_2_1307985308524"> <int id="w">437</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">2</int> <int id="x">3255</int> <int id="y">726</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">31</int> <int id="h">71</int> </object> </object> </object> <object id="T_1304717814715"> <int id="w">6600</int> <int id="z">2</int> <object id="filtersNEW"> <object id="saturation"> <int id="value">-34</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">-17</int> </object> <object id="brightness"> <int id="value">-58</int> </object> </object> <int id="h">1000</int> <str id="name">foreground</str> <object id="decos"> <object id="penaltybox_roof_1304717814724"> <int id="w">1117</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">536</int> <int id="y">171</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">5</int> <int id="h">266</int> </object> <object id="stalagmite_2_1307741224169"> <int id="w">193</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2741</int> <int id="z">34</int> <int id="y">9</int> <str id="name">stalagmite_2_1307741224143</str> <bool id="h_flip">true</bool> <int id="h">440</int> </object> <object id="stalagmite_1_1307985308506"> <int id="w">221</int> <str id="sprite_class">stalagmite_1</str> <int id="x">4232</int> <int id="y">1254</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">53</int> <int id="h">585</int> </object> <object id="stalagmite_1_1307985308505"> <int id="w">221</int> <str id="sprite_class">stalagmite_1</str> <int id="x">4150</int> <int id="y">1066</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">52</int> <int id="h">585</int> </object> <object id="stalagmite_2_1307741224196"> <int id="w">226</int> <str id="sprite_class">stalagmite_2</str> <int id="x">5794</int> <int id="y">1066</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">49</int> <int id="h">681</int> </object> <object id="heights_bandaid_2_1304717814727"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">2010</int> <int id="z">10</int> <int id="y">-63</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">332</int> </object> <object id="heights_bandaid_2_1304717814723"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">746</int> <int id="z">11</int> <int id="y">112</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">332</int> </object> <object id="penaltybox_roof_1304717814731"> <int id="w">1117</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">7</int> <int id="x">3945</int> <int id="y">45</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">14</int> <int id="h">266</int> </object> <object id="heights_bandaid_2_1304717814740"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">6254</int> <int id="y">-108</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">23</int> <int id="h">332</int> </object> <object id="heights_bandaid_2_1304717814741"> <int id="w">72</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">6140</int> <int id="y">4</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">24</int> <int id="h">201</int> </object> <object id="heights_bandaid_2_1304717814744"> <int id="w">71</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1080</int> <int id="z">26</int> <int id="y">91</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">198</int> </object> <object id="heights_bandaid_2_1304717814738"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">5643</int> <int id="y">39</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">20</int> <int id="h">332</int> </object> <object id="heights_bandaid_2_1304717814743"> <int id="w">74</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">5211</int> <int id="y">72</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">25</int> <int id="h">206</int> </object> <object id="heights_bandaid_2_1304717814729"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">2188</int> <int id="z">9</int> <int id="y">109</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">332</int> </object> <object id="heights_bandaid_2_1304717814789"> <int id="w">157</int> <str id="sprite_class">heights_bandaid_2</str> <int id="x">4475</int> <int id="z">37</int> <int id="y">1056</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">438</int> </object> <object id="penaltybox_roof_1304717814728"> <int id="w">1117</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">-6</int> <int id="x">2720</int> <int id="y">102</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">7</int> <int id="h">266</int> </object> <object id="penaltybox_roof_1304717814725"> <int id="w">1117</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">1620</int> <int id="y">183</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">6</int> <int id="h">266</int> </object> <object id="stalagmite_2_1307741224193"> <int id="w">226</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1112</int> <int id="y">1086</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">47</int> <int id="h">514</int> </object> <object id="heights_bandaid_2_1304717814726"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1939</int> <int id="z">8</int> <int id="y">104</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">332</int> </object> <object id="stalagmite_2_1307741224199"> <int id="w">172</int> <str id="sprite_class">stalagmite_2</str> <int id="x">309</int> <int id="y">1055</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">51</int> <int id="h">391</int> </object> <object id="heights_bandaid_2_1304717814742"> <int id="w">68</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">5553</int> <int id="y">69</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">21</int> <int id="h">190</int> </object> <object id="heights_bandaid_2_1304717814788"> <int id="w">215</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">2769</int> <int id="z">33</int> <int id="y">20</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">600</int> </object> <object id="stalagmite_2_1307741224167"> <int id="w">258</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">6325</int> <int id="y">-38</int> <str id="name">stalagmite_2_1307741224143</str> <int id="z">45</int> <int id="h">588</int> </object> <object id="alakol_water_rock_1_1307741224142"> <int id="w">354</int> <str id="sprite_class">alakol_water_rock_1</str> <int id="x">2065</int> <int id="y">1080</int> <str id="name">alakol_water_rock_1_1307741224142</str> <int id="z">35</int> <int id="h">288</int> </object> <object id="stalagmite_2_1307741224168"> <int id="w">193</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">5608</int> <int id="z">46</int> <int id="y">8</int> <str id="name">stalagmite_2_1307741224143</str> <bool id="h_flip">true</bool> <int id="h">440</int> </object> <object id="heights_bandaid_2_1304717814748"> <int id="w">125</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1451</int> <int id="z">30</int> <int id="y">72</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">349</int> </object> <object id="heights_bandaid_2_1304717814734"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">4470</int> <int id="z">17</int> <int id="y">36</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">332</int> </object> <object id="penaltybox_roof_1304717814730"> <int id="w">1117</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">5037</int> <int id="y">139</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">12</int> <int id="h">266</int> </object> <object id="penaltybox_roof_1304717814737"> <int id="w">1117</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">-4</int> <int id="x">6120</int> <int id="y">75</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">13</int> <int id="h">266</int> </object> <object id="stalagmite_2_1307741224170"> <int id="w">193</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">1546</int> <int id="z">31</int> <int id="y">65</int> <str id="name">stalagmite_2_1307741224143</str> <bool id="h_flip">true</bool> <int id="h">440</int> </object> <object id="stalagmite_2_1307741224195"> <int id="w">226</int> <str id="sprite_class">stalagmite_2</str> <int id="x">4403</int> <int id="y">1111</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">48</int> <int id="h">514</int> </object> <object id="heights_bandaid_2_1304717814736"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">5159</int> <int id="y">98</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">19</int> <int id="h">332</int> </object> <object id="heights_bandaid_2_1304717814745"> <int id="w">44</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1044</int> <int id="z">27</int> <int id="y">119</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">123</int> </object> <object id="heights_bandaid_2_1304717814739"> <int id="w">119</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">6193</int> <int id="y">25</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">22</int> <int id="h">332</int> </object> </object> </object> <object id="bg_2"> <int id="w">4500</int> <int id="z">-2</int> <object id="filtersNEW"> <object id="blur"> <int id="value">3</int> </object> <object id="saturation"> <int id="value">-30</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="contrast"> <int id="value">5</int> </object> <object id="brightness"> <int id="value">-59</int> </object> </object> <int id="h">950</int> <str id="name">bg_2</str> <object id="decos"> <object id="stalagmite_1_1307985308383"> <int id="w">157</int> <str id="sprite_class">stalagmite_1</str> <int id="r">-1</int> <int id="x">2650</int> <int id="y">863</int> <str id="name">stalagmite_1_1307741224134</str> <int id="z">55</int> <int id="h">415</int> </object> <object id="penaltybox_roof_1304542661664"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">-3</int> <int id="x">106</int> <int id="y">238</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">8</int> <int id="h">202</int> </object> <object id="stalagmite_2_1307741224146"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">1459</int> <int id="z">18</int> <int id="y">148</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">326</int> </object> <object id="stalagmite_2_1307741224150"> <int id="w">105</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">275</int> <int id="z">31</int> <int id="y">183</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">239</int> </object> <object id="stalagmite_2_1307741224292"> <int id="w">135</int> <str id="sprite_class">stalagmite_2</str> <int id="x">877</int> <int id="y">667</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">33</int> <int id="h">307</int> </object> <object id="alakol_beach_2_1307985308375"> <int id="w">450</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">2</int> <int id="x">2285</int> <int id="y">623</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">48</int> <int id="h">71</int> </object> <object id="alakol_beach_2_1307985308528"> <int id="w">272</int> <str id="sprite_class">alakol_beach_2</str> <int id="x">2487</int> <int id="y">672</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">54</int> <int id="h">47</int> </object> <object id="heights_bandaid_1_1307985308342"> <int id="w">155</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">180</int> <int id="x">2373</int> <int id="y">587</int> <str id="name">heights_bandaid_1_1307985308242</str> <int id="z">40</int> <int id="h">202</int> </object> <object id="heights_bandaid_2_1304710549568"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">170</int> <int id="x">599</int> <int id="z">7</int> <int id="y">140</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">204</int> </object> <object id="heights_bandaid_2_1304710549554"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1044</int> <int id="z">6</int> <int id="y">127</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">204</int> </object> <object id="stalagmite_2_1307741224151"> <int id="w">105</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">463</int> <int id="z">32</int> <int id="y">165</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">207</int> </object> <object id="stalagmite_2_1307741224299"> <int id="w">87</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2278</int> <int id="y">750</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">38</int> <int id="h">198</int> </object> <object id="stalagmite_2_1307741224149"> <int id="w">105</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">-118</int> <int id="z">30</int> <int id="y">189</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">239</int> </object> <object id="heights_bandaid_2_1307741224097"> <int id="w">153</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">244</int> <int id="z">3</int> <int id="y">185</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">393</int> </object> <object id="penaltybox_roof_1304542661695"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">2802</int> <int id="y">197</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">12</int> <int id="h">202</int> </object> <object id="alakol_beach_2_1307985308527"> <int id="w">272</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-5</int> <int id="x">2404</int> <int id="y">666</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">53</int> <int id="h">47</int> </object> <object id="alakol_beach_2_1307985308515"> <int id="w">397</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-5</int> <int id="x">1495</int> <int id="y">646</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">50</int> <int id="h">68</int> </object> <object id="alakol_beach_2_1307985308514"> <int id="w">470</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-5</int> <int id="x">1747</int> <int id="y">666</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">56</int> <int id="h">71</int> </object> <object id="stalagmite_2_1307985308371"> <int id="w">167</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2308</int> <int id="y">856</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">60</int> <int id="h">300</int> </object> <object id="heights_bandaid_2_1304710549550"> <int id="w">98</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1571</int> <int id="z">16</int> <int id="y">182</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">180</int> </object> <object id="heights_bandaid_2_1307741224098"> <int id="w">221</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1543</int> <int id="z">1</int> <int id="y">163</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">399</int> </object> <object id="heights_mound_3_1307985308378"> <int id="w">365</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">2560</int> <int id="z">46</int> <int id="y">568</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">129</int> </object> <object id="heights_bandaid_2_1304710549549"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1020</int> <int id="z">5</int> <int id="y">197</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">204</int> </object> <object id="heights_bandaid_2_1305754302150"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">-2</int> <int id="x">3238</int> <int id="z">24</int> <int id="y">738</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">298</int> </object> <object id="alakol_water_rock_2_1307985308647"> <int id="w">408</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">2888</int> <int id="y">822</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">66</int> <int id="h">294</int> </object> <object id="stalagmite_1_1307741224136"> <int id="w">124</int> <str id="sprite_class">stalagmite_1</str> <int id="r">178</int> <int id="x">2990</int> <int id="y">114</int> <str id="name">stalagmite_1_1307741224134</str> <int id="z">26</int> <int id="h">328</int> </object> <object id="penaltybox_roof_1304542661661"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">1170</int> <int id="y">230</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">4</int> <int id="h">202</int> </object> <object id="heights_bandaid_2_1305743053127"> <int id="w">77</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">171</int> <int id="z">21</int> <int id="y">204</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">254</int> </object> <object id="alakol_beach_2_1307985308374"> <int id="w">397</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-5</int> <int id="x">2169</int> <int id="y">649</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">49</int> <int id="h">68</int> </object> <object id="heights_mound_3_1307985308510"> <int id="w">346</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">1925</int> <int id="z">44</int> <int id="y">662</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">136</int> </object> <object id="heights_bandaid_2_1307741224099"> <int id="w">221</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">190</int> <int id="x">1619</int> <int id="z">2</int> <int id="y">67</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">399</int> </object> <object id="stalagmite_2_1307741224294"> <int id="w">139</int> <str id="sprite_class">stalagmite_2</str> <int id="x">3042</int> <int id="z">35</int> <int id="y">770</int> <str id="name">stalagmite_2_1307741224192</str> <bool id="h_flip">true</bool> <int id="h">316</int> </object> <object id="alakol_water_rock_2_1307985308649"> <int id="w">344</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">3487</int> <int id="y">742</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">68</int> <int id="h">185</int> </object> <object id="stalagmite_2_1307985308355"> <int id="w">167</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1889</int> <int id="y">896</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">61</int> <int id="h">210</int> </object> <object id="heights_bandaid_1_1307985308354"> <int id="w">155</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">180</int> <int id="x">2099</int> <int id="y">628</int> <str id="name">heights_bandaid_1_1307985308242</str> <int id="z">41</int> <int id="h">202</int> </object> <object id="stalagmite_1_1307985308509"> <int id="w">221</int> <str id="sprite_class">stalagmite_1</str> <int id="x">1809</int> <int id="y">871</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">58</int> <int id="h">585</int> </object> <object id="penaltybox_roof_1307741224186"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">10</int> <int id="x">3529</int> <int id="y">244</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">13</int> <int id="h">202</int> </object> <object id="stalagmite_1_1307741224137"> <int id="w">124</int> <str id="sprite_class">stalagmite_1</str> <int id="r">178</int> <int id="x">2380</int> <int id="z">27</int> <int id="y">154</int> <str id="name">stalagmite_1_1307741224134</str> <bool id="h_flip">true</bool> <int id="h">328</int> </object> <object id="heights_mound_3_1307985308511"> <int id="w">346</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">1690</int> <int id="z">45</int> <int id="y">659</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">136</int> </object> <object id="penaltybox_roof_1304542661662"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">1979</int> <int id="y">210</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">10</int> <int id="h">202</int> </object> <object id="heights_mound_3_1307985308512"> <int id="w">346</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">1477</int> <int id="z">0</int> <int id="y">626</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">136</int> </object> <object id="alakol_beach_2_1307985308513"> <int id="w">524</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-5</int> <int id="x">1968</int> <int id="y">675</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">57</int> <int id="h">68</int> </object> <object id="stalagmite_2_1307741224295"> <int id="w">127</int> <str id="sprite_class">stalagmite_2</str> <int id="x">3450</int> <int id="z">36</int> <int id="y">716</int> <str id="name">stalagmite_2_1307741224192</str> <bool id="h_flip">true</bool> <int id="h">289</int> </object> <object id="heights_mound_3_1307985308367"> <int id="w">337</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">2341</int> <int id="z">42</int> <int id="y">605</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">129</int> </object> <object id="stalagmite_1_1307985308531"> <int id="w">108</int> <str id="sprite_class">stalagmite_1</str> <int id="r">179</int> <int id="x">2038</int> <int id="y">171</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">11</int> <int id="h">286</int> </object> <object id="heights_bandaid_2_1304710549570"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">2695</int> <int id="z">19</int> <int id="y">44</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">204</int> </object> <object id="stalagmite_2_1307985308530"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">693</int> <int id="z">62</int> <int id="y">123</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">326</int> </object> <object id="alakol_beach_2_1307985308379"> <int id="w">272</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">-5</int> <int id="x">2498</int> <int id="y">602</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">52</int> <int id="h">47</int> </object> <object id="heights_bandaid_2_1305754302148"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1413</int> <int id="z">22</int> <int id="y">189</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">298</int> </object> <object id="stalagmite_2_1307741224145"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">1620</int> <int id="z">17</int> <int id="y">158</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">326</int> </object> <object id="heights_bandaid_1_1307985308345"> <int id="w">155</int> <str id="sprite_class">heights_bandaid_1</str> <int id="r">180</int> <int id="x">2099</int> <int id="y">628</int> <str id="name">heights_bandaid_1_1307985308242</str> <int id="z">39</int> <int id="h">202</int> </object> <object id="stalagmite_2_1307741224296"> <int id="w">144</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2659</int> <int id="z">37</int> <int id="y">137</int> <str id="name">stalagmite_2_1307741224192</str> <bool id="h_flip">true</bool> <int id="h">328</int> </object> <object id="penaltybox_roof_1307734440102"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">-3</int> <int id="x">-723</int> <int id="y">309</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">9</int> <int id="h">202</int> </object> <object id="stalagmite_2_1307741224148"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">189</int> <int id="z">29</int> <int id="y">174</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">326</int> </object> <object id="alakol_water_rock_2_1307985308648"> <int id="w">408</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">3150</int> <int id="y">834</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">67</int> <int id="h">227</int> </object> <object id="heights_bandaid_2_1305754302149"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">2780</int> <int id="z">23</int> <int id="y">108</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">298</int> </object> <object id="stalagmite_1_1307985308533"> <int id="w">164</int> <str id="sprite_class">stalagmite_1</str> <int id="x">268</int> <int id="y">845</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">64</int> <int id="h">518</int> </object> <object id="stalagmite_2_1307741224293"> <int id="w">87</int> <str id="sprite_class">stalagmite_2</str> <int id="x">696</int> <int id="y">674</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">34</int> <int id="h">198</int> </object> <object id="heights_mound_3_1307985308526"> <int id="w">365</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-180</int> <int id="x">2448</int> <int id="z">47</int> <int id="y">644</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">129</int> </object> <object id="heights_bandaid_2_1304710549571"> <int id="w">111</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">3078</int> <int id="z">20</int> <int id="y">14</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">204</int> </object> <object id="stalagmite_1_1307741224138"> <int id="w">124</int> <str id="sprite_class">stalagmite_1</str> <int id="r">178</int> <int id="x">623</int> <int id="z">28</int> <int id="y">146</int> <str id="name">stalagmite_1_1307741224134</str> <bool id="h_flip">true</bool> <int id="h">328</int> </object> <object id="stalagmite_2_1307741224192"> <int id="w">87</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1019</int> <int id="y">747</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">65</int> <int id="h">198</int> </object> <object id="heights_bandaid_2_1305754302151"> <int id="w">109</int> <str id="sprite_class">heights_bandaid_2</str> <int id="x">3513</int> <int id="z">25</int> <int id="y">878</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">389</int> </object> <object id="alakol_beach_2_1307985308380"> <int id="w">323</int> <str id="sprite_class">alakol_beach_2</str> <int id="r">2</int> <int id="x">2577</int> <int id="y">590</int> <str id="name">alakol_beach_2_1307734440087</str> <int id="z">51</int> <int id="h">50</int> </object> <object id="stalagmite_2_1307985308373"> <int id="w">167</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1728</int> <int id="y">897</int> <str id="name">stalagmite_2_1307741224131</str> <int id="z">59</int> <int id="h">378</int> </object> <object id="stalagmite_2_1307985308529"> <int id="w">77</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">733</int> <int id="z">63</int> <int id="y">136</int> <str id="name">stalagmite_2_1307741224145</str> <bool id="h_flip">true</bool> <int id="h">175</int> </object> <object id="heights_mound_3_1307985308377"> <int id="w">346</int> <str id="sprite_class">heights_mound_3</str> <int id="r">-185</int> <int id="x">2159</int> <int id="z">43</int> <int id="y">620</int> <str id="name">heights_mound_3_1303856735924</str> <bool id="h_flip">true</bool> <int id="h">136</int> </object> <object id="stalagmite_1_1307985308644"> <int id="w">143</int> <str id="sprite_class">stalagmite_1</str> <int id="r">178</int> <int id="x">3794</int> <int id="y">225</int> <str id="name">stalagmite_1_1307985308504</str> <int id="z">15</int> <int id="h">379</int> </object> </object> </object> <object id="sky"> <int id="w">4002</int> <int id="z">-3</int> <object id="filtersNEW"> <object id="contrast"> <int id="value">-22</int> </object> <object id="blur"> <int id="value">4</int> </object> <object id="saturation"> <int id="value">-94</int> </object> <object id="tintColor"> <int id="value">11237419</int> </object> <object id="tintAmount"> <int id="value">62</int> </object> <object id="brightness"> <int id="value">-92</int> </object> </object> <int id="h">860</int> <str id="name">sky</str> <object id="decos"> <object id="stalagmite_2_1307985308253"> <int id="w">98</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2319</int> <int id="y">4</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">53</int> <int id="h">238</int> </object> <object id="penaltybox_roof_1307985308210"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">180</int> <int id="x">135</int> <int id="y">410</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">34</int> <int id="h">345</int> </object> <object id="heights_bandaid_2_1307734440104"> <int id="w">60</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">3231</int> <int id="y">73</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">10</int> <int id="h">167</int> </object> <object id="stalagmite_2_1307741224184"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="x">3296</int> <int id="z">39</int> <int id="y">605</int> <str id="name">stalagmite_2_1307741224131</str> <bool id="h_flip">true</bool> <int id="h">326</int> </object> <object id="stalagmite_2_1307741224183"> <int id="w">113</int> <str id="sprite_class">stalagmite_2</str> <int id="x">3167</int> <int id="z">6</int> <int id="y">635</int> <str id="name">stalagmite_2_1307741224131</str> <bool id="h_flip">true</bool> <int id="h">221</int> </object> <object id="penaltybox_roof_1307741224094"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">175</int> <int id="x">1536</int> <int id="y">536</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">35</int> <int id="h">202</int> </object> <object id="alakol_water_rock_2_1307985308559"> <int id="w">323</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">615</int> <int id="y">521</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">5</int> <int id="h">158</int> </object> <object id="stalagmite_2_1307985308251"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1942</int> <int id="z">38</int> <int id="y">558</int> <str id="name">stalagmite_2_1307741224131</str> <bool id="h_flip">true</bool> <int id="h">326</int> </object> <object id="penaltybox_roof_1307741224095"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">185</int> <int id="x">3204</int> <int id="y">552</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">36</int> <int id="h">202</int> </object> <object id="stalagmite_2_1307985308264"> <int id="w">136</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2631</int> <int id="y">-2</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">57</int> <int id="h">249</int> </object> <object id="cloud_fluffy_1_1307985308643"> <int id="w">1670</int> <str id="sprite_class">cloud_fluffy_1</str> <int id="x">1957</int> <int id="y">572</int> <str id="name">cloud_fluffy_1_1307985308641</str> <int id="z">61</int> <int id="h">334</int> </object> <object id="stalagmite_2_1307741224191"> <int id="w">89</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">1036</int> <int id="y">189</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">48</int> <int id="h">218</int> </object> <object id="alakol_water_rock_2_1307985308646"> <int id="w">379</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">3977</int> <int id="y">671</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">3</int> <int id="h">221</int> </object> <object id="alakol_water_rock_2_1307985308558"> <int id="w">408</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">212</int> <int id="y">510</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">27</int> <int id="h">158</int> </object> <object id="stalagmite_2_1307741224288"> <int id="w">109</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">961</int> <int id="y">170</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">18</int> <int id="h">267</int> </object> <object id="stalagmite_2_1307985308262"> <int id="w">109</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2549</int> <int id="y">75</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">55</int> <int id="h">267</int> </object> <object id="heights_bandaid_2_1307734440084"> <int id="w">81</int> <str id="sprite_class">heights_bandaid_2</str> <int id="x">3030</int> <int id="z">7</int> <int id="y">589</int> <str id="name">heights_bandaid_2_1304707792772</str> <bool id="h_flip">true</bool> <int id="h">230</int> </object> <object id="penaltybox_roof_1307985308668"> <int id="w">950</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">2348</int> <int id="y">194</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">64</int> <int id="h">187</int> </object> <object id="penaltybox_roof_1307741224190"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">10</int> <int id="x">633</int> <int id="y">171</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">47</int> <int id="h">202</int> </object> <object id="penaltybox_roof_1307741224188"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">180</int> <int id="x">2365</int> <int id="y">540</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">45</int> <int id="h">236</int> </object> <object id="stalagmite_2_1307985308255"> <int id="w">109</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2240</int> <int id="y">45</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">51</int> <int id="h">267</int> </object> <object id="heights_mound_3_1307734440082"> <int id="w">498</int> <str id="sprite_class">heights_mound_3</str> <int id="x">2843</int> <int id="z">8</int> <int id="y">744</int> <str id="name">heights_mound_3_1304367518560</str> <bool id="h_flip">true</bool> <int id="h">189</int> </object> <object id="heights_bandaid_2_1307734440106"> <int id="w">95</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">882</int> <int id="y">45</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">12</int> <int id="h">265</int> </object> <object id="stalagmite_2_1307985308541"> <int id="w">112</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2474</int> <int id="y">600</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">21</int> <int id="h">295</int> </object> <object id="alakol_water_rock_2_1307985308645"> <int id="w">408</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">3799</int> <int id="y">754</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">2</int> <int id="h">449</int> </object> <object id="heights_bandaid_2_1307734440108"> <int id="w">79</int> <str id="sprite_class">heights_bandaid_2</str> <int id="x">1150</int> <int id="y">610</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">14</int> <int id="h">218</int> </object> <object id="stalagmite_1_1307985308669"> <int id="w">124</int> <str id="sprite_class">stalagmite_1</str> <int id="r">178</int> <int id="x">3075</int> <int id="y">101</int> <str id="name">stalagmite_1_1307741224134</str> <int id="z">65</int> <int id="h">328</int> </object> <object id="stalagmite_2_1307741224160"> <int id="w">109</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">801</int> <int id="y">169</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">19</int> <int id="h">267</int> </object> <object id="stalagmite_2_1307741224159"> <int id="w">109</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">1363</int> <int id="y">164</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">17</int> <int id="h">267</int> </object> <object id="stalagmite_2_1307985308211"> <int id="w">139</int> <str id="sprite_class">stalagmite_2</str> <int id="x">124</int> <int id="y">533</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">25</int> <int id="h">246</int> </object> <object id="heights_bandaid_2_1307734440105"> <int id="w">95</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">3037</int> <int id="y">4</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">11</int> <int id="h">265</int> </object> <object id="alakol_water_rock_2_1307985308561"> <int id="w">408</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">3625</int> <int id="y">670</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">1</int> <int id="h">249</int> </object> <object id="heights_bandaid_2_1307734440107"> <int id="w">95</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">1574</int> <int id="y">60</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">13</int> <int id="h">265</int> </object> <object id="stalagmite_2_1307985308252"> <int id="w">131</int> <str id="sprite_class">stalagmite_2</str> <int id="r">179</int> <int id="x">2470</int> <int id="y">91</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">54</int> <int id="h">298</int> </object> <object id="stalagmite_2_1307741224177"> <int id="w">92</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1245</int> <int id="y">673</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">28</int> <int id="h">282</int> </object> <object id="heights_bandaid_2_1307734440109"> <int id="w">50</int> <str id="sprite_class">heights_bandaid_2</str> <int id="x">1490</int> <int id="y">578</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">30</int> <int id="h">168</int> </object> <object id="stalagmite_2_1307985308542"> <int id="w">189</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2320</int> <int id="y">693</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">22</int> <int id="h">295</int> </object> <object id="stalagmite_2_1307741224289"> <int id="w">72</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">1496</int> <int id="y">196</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">49</int> <int id="h">176</int> </object> <object id="stalagmite_2_1307741224156"> <int id="w">139</int> <str id="sprite_class">stalagmite_2</str> <int id="x">996</int> <int id="y">620</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">15</int> <int id="h">267</int> </object> <object id="penaltybox_roof_1307741224189"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="x">1468</int> <int id="y">222</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">46</int> <int id="h">202</int> </object> <object id="penaltybox_roof_1307741224093"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">185</int> <int id="x">766</int> <int id="y">539</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">32</int> <int id="h">202</int> </object> <object id="light_spot_1307985308638"> <int id="w">1519</int> <str id="sprite_class">light_spot</str> <int id="x">3029</int> <int id="y">675</int> <str id="name">light_spot_1307741224179</str> <int id="z">60</int> <int id="h">424</int> </object> <object id="penaltybox_roof_1307985308667"> <int id="w">844</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">10</int> <int id="x">3407</int> <int id="y">293</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">63</int> <int id="h">155</int> </object> <object id="alakol_water_rock_1_1307985308548"> <int id="w">354</int> <str id="sprite_class">alakol_water_rock_1</str> <int id="x">747</int> <int id="y">626</int> <str id="name">alakol_water_rock_1_1307985308548</str> <int id="z">59</int> <int id="h">288</int> </object> <object id="stalagmite_2_1307741224163"> <int id="w">109</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">3426</int> <int id="y">161</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">42</int> <int id="h">267</int> </object> <object id="stalagmite_2_1307985308263"> <int id="w">109</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2272</int> <int id="y">95</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">56</int> <int id="h">171</int> </object> <object id="penaltybox_roof_1307741224096"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">185</int> <int id="x">3997</int> <int id="y">594</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">40</int> <int id="h">202</int> </object> <object id="alakol_water_rock_2_1307985308560"> <int id="w">408</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="x">1856</int> <int id="y">560</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">4</int> <int id="h">158</int> </object> <object id="heights_bandaid_2_1307734440103"> <int id="w">95</int> <str id="sprite_class">heights_bandaid_2</str> <int id="r">180</int> <int id="x">3333</int> <int id="y">18</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">9</int> <int id="h">265</int> </object> <object id="stalagmite_2_1307741224297"> <int id="w">131</int> <str id="sprite_class">stalagmite_2</str> <int id="r">179</int> <int id="x">1625</int> <int id="y">151</int> <str id="name">stalagmite_2_1307741224192</str> <int id="z">50</int> <int id="h">298</int> </object> <object id="stalagmite_2_1307985308543"> <int id="w">189</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2636</int> <int id="y">621</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">23</int> <int id="h">295</int> </object> <object id="penaltybox_roof_1307741224187"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">10</int> <int id="x">3286</int> <int id="y">184</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">43</int> <int id="h">202</int> </object> <object id="penaltybox_roof_1307985308219"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">10</int> <int id="x">3836</int> <int id="y">288</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">44</int> <int id="h">202</int> </object> <object id="stalagmite_2_1307985308254"> <int id="w">89</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">1881</int> <int id="y">129</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">52</int> <int id="h">218</int> </object> <object id="alakol_water_rock_2_1307985308664"> <int id="w">602</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="r">180</int> <int id="x">2794</int> <int id="y">39</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">62</int> <int id="h">134</int> </object> <object id="stalagmite_2_1307741224162"> <int id="w">143</int> <str id="sprite_class">stalagmite_2</str> <int id="x">2686</int> <int id="z">37</int> <int id="y">577</int> <str id="name">stalagmite_2_1307741224131</str> <bool id="h_flip">true</bool> <int id="h">326</int> </object> <object id="heights_bandaid_2_1307734440110"> <int id="w">79</int> <str id="sprite_class">heights_bandaid_2</str> <int id="x">3490</int> <int id="y">619</int> <str id="name">heights_bandaid_2_1304707792772</str> <int id="z">31</int> <int id="h">218</int> </object> <object id="alakol_water_rock_2_1307985308665"> <int id="w">602</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="r">180</int> <int id="x">2966</int> <int id="y">83</int> <str id="name">alakol_water_rock_2_1307985308551</str> <int id="z">0</int> <int id="h">134</int> </object> <object id="stalagmite_2_1307741224161"> <int id="w">109</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">3272</int> <int id="y">36</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">41</int> <int id="h">267</int> </object> <object id="stalagmite_2_1307741224158"> <int id="w">92</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1730</int> <int id="y">563</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">29</int> <int id="h">229</int> </object> <object id="penaltybox_roof_1307741224178"> <int id="w">848</int> <str id="sprite_class">penaltybox_roof</str> <int id="r">195</int> <int id="x">974</int> <int id="y">493</int> <str id="name">penaltybox_roof_1303924130757</str> <int id="z">33</int> <int id="h">318</int> </object> <object id="stalagmite_2_1307985308214"> <int id="w">139</int> <str id="sprite_class">stalagmite_2</str> <int id="x">394</int> <int id="y">488</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">16</int> <int id="h">267</int> </object> <object id="stalagmite_2_1307741224157"> <int id="w">92</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1460</int> <int id="y">586</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">20</int> <int id="h">163</int> </object> <object id="stalagmite_2_1307741224290"> <int id="w">139</int> <str id="sprite_class">stalagmite_2</str> <int id="x">1094</int> <int id="y">587</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">24</int> <int id="h">246</int> </object> <object id="stalagmite_2_1307985308212"> <int id="w">139</int> <str id="sprite_class">stalagmite_2</str> <int id="x">534</int> <int id="y">565</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">26</int> <int id="h">246</int> </object> <object id="stalagmite_2_1307985308525"> <int id="w">93</int> <str id="sprite_class">stalagmite_2</str> <int id="r">180</int> <int id="x">2794</int> <int id="y">-59</int> <str id="name">stalagmite_2_1307741224145</str> <int id="z">58</int> <int id="h">303</int> </object> </object> </object> </object> <null id="physics"/> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1314910480.swf</str> <int id="rookable_type">0</int> <null id="loading_label"/> <int id="ground_y">-252</int> <null id="img_file_versioned"/> <str id="tsid">LHV51JE5JC42VP2</str> <object id="gradient"> <str id="bottom">2B1F17</str> <str id="top">171000</str> </object> <object id="sources"> <int id="LHV4U1QMFC42NBP">1</int> <int id="LHV15B8HEQ32SN0">1</int> <int id="LHV17CFO5V327AJ">1</int> </object> <str id="music_file"></str> </object> </game_object>
206,035
Common Lisp
.l
6,137
26.786541
205
0.550736
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c0dcbc79228e7285602a5750328d7d19710fe42061ce00228dd3cd1fe28d1b5f
20,860
[ -1 ]
20,861
GCR111KI08O1HLB.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/abbey/GCR111KI08O1HLB.xml
<game_object tsid="GCR111KI08O1HLB" ts="1339298065829" label="Langden Abbey" class_tsid="" lastUpdateTime="1339298055659" upd_gs="gs10" load_time="2012-06-09 20:07:14.730" upd_time="2012-06-09 20:13:13.189"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id="b">0</int> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="middleground"> <str id="name">middleground</str> <object id="decos"> <object id="bling_wildmushrooms_2_1289851056880"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289851056880</str> <int id="y">-107</int> <int id="h">25</int> <int id="z">242</int> <int id="w">72</int> <int id="x">1780</int> </object> <object id="evenground_platform_short_1287092194666"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092194666</str> <int id="y">-67</int> <int id="h">67</int> <int id="z">93</int> <int id="w">365</int> <int id="x">-2393</int> <int id="r">3</int> </object> <object id="evenground_platform_short_1282859084550"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282859084550</str> <int id="y">-31</int> <int id="h">67</int> <int id="z">59</int> <int id="w">365</int> <int id="x">2563</int> <int id="r">-3</int> </object> <object id="evenground_platform_short_1289434900264"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434900264</str> <int id="y">-159</int> <int id="h">67</int> <int id="z">104</int> <int id="w">365</int> <int id="x">-1557</int> <int id="r">6</int> </object> <object id="bling_wildmushrooms_3_1289852180475"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289852180475</str> <int id="y">-779</int> <int id="h">25</int> <int id="z">297</int> <int id="w">64</int> <int id="x">2261</int> </object> <object id="evenground_platform_short_1287091844108"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091844108</str> <int id="y">-27</int> <int id="h">57</int> <int id="z">66</int> <int id="w">363</int> <int id="x">-2737</int> <int id="r">9</int> </object> <object id="evenground_platform_short_1289434916761"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434916761</str> <int id="y">-61</int> <int id="h">67</int> <int id="z">107</int> <int id="w">365</int> <int id="x">-867</int> </object> <object id="wildflowers_bunch_1_1289851795171"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289851795171</str> <int id="y">-115</int> <int id="h">28</int> <int id="z">268</int> <int id="w">207</int> <int id="x">-2938</int> </object> <object id="evenground_platform_short_1282857773755"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857773755</str> <int id="y">-15</int> <int id="h">67</int> <int id="z">44</int> <int id="w">365</int> <int id="x">-1161</int> <int id="r">3</int> </object> <object id="bling_mushroom_king_bolete_1_1289852057879"> <str id="sprite_class">bling_mushroom_king_bolete_1</str> <str id="name">bling_mushroom_king_bolete_1_1289852057879</str> <int id="y">-104</int> <int id="h">54</int> <int id="z">291</int> <int id="w">57</int> <int id="x">683</int> </object> <object id="evenground_platform_short_1282857964457"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857964457</str> <int id="y">-49</int> <int id="h">67</int> <int id="z">50</int> <int id="w">365</int> <int id="x">-208</int> <int id="r">1</int> </object> <object id="wildflowers_bunch_3_1289851788721"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289851788721</str> <int id="y">-75</int> <int id="h">29</int> <int id="z">265</int> <int id="w">277</int> <int id="x">-2319</int> </object> <object id="flower_bush_3_1289852757796"> <str id="sprite_class">flower_bush_3</str> <str id="name">flower_bush_3_1289852757796</str> <int id="y">-161</int> <int id="h">83</int> <int id="z">331</int> <int id="w">163</int> <int id="x">2990</int> </object> <object id="evenground_platform_short_1282857690620"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857690620</str> <int id="y">-49</int> <int id="h">67</int> <int id="z">42</int> <int id="w">365</int> <int id="x">-1660</int> <int id="r">7</int> </object> <object id="trunk_ladder_2_1289850335389"> <str id="sprite_class">trunk_ladder_2</str> <str id="name">trunk_ladder_2_1289850335389</str> <int id="y">-660</int> <bool id="h_flip">true</bool> <int id="h">81</int> <int id="z">191</int> <int id="w">72</int> <int id="x">1708</int> </object> <object id="flower_group_1_1289852336777"> <str id="sprite_class">flower_group_1</str> <str id="name">flower_group_1_1289852336777</str> <int id="y">-173</int> <int id="h">128</int> <int id="z">307</int> <int id="w">79</int> <int id="x">-1640</int> </object> <object id="evenground_platform_short_1282857629067"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857629067</str> <int id="y">-4</int> <int id="h">67</int> <int id="z">40</int> <int id="w">365</int> <int id="x">562</int> <int id="r">2</int> </object> <object id="bling_mushroom_tree_1_1289850626959"> <str id="sprite_class">bling_mushroom_tree_1</str> <str id="name">bling_mushroom_tree_1_1289850626959</str> <int id="y">-205</int> <int id="h">103</int> <int id="z">209</int> <int id="w">92</int> <int id="x">311</int> </object> <object id="groddle_flower_3_1289852075941"> <str id="sprite_class">groddle_flower_3</str> <str id="name">groddle_</str> <int id="y">-82</int> <int id="h">55</int> <int id="z">294</int> <int id="w">87</int> <int id="x">-997</int> </object> <object id="bling_mushroom_bunch_ground_1_1289850815327"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289850815327</str> <int id="y">-107</int> <int id="h">42</int> <int id="z">221</int> <int id="w">161</int> <int id="x">1296</int> </object> <object id="bling_branch_flower_2_1289849148443"> <str id="sprite_class">bling_branch_flower_2</str> <str id="name">bling_branch_flower_2_1289849148443</str> <int id="y">-466</int> <int id="h">187</int> <int id="z">144</int> <int id="w">596</int> <int id="x">-2376</int> </object> <object id="evenground_platform_short_1287091913816"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091913816</str> <int id="y">-64</int> <int id="h">67</int> <int id="z">73</int> <int id="w">365</int> <int id="x">895</int> <int id="r">1</int> </object> <object id="flower_bush_5_1289851880655"> <str id="sprite_class">flower_bush_5</str> <str id="name">flower_bush_5_1289851880655</str> <int id="y">-127</int> <int id="h">81</int> <int id="z">274</int> <int id="w">198</int> <int id="x">-2510</int> </object> <object id="bling_wildmushrooms_1_1289851099630"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289851099630</str> <int id="y">-115</int> <int id="h">27</int> <int id="z">250</int> <int id="w">92</int> <int id="x">-1822</int> </object> <object id="bling_branchflowerbrush_white_1_1289850062053"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289850062053</str> <int id="y">-848</int> <int id="h">64</int> <int id="z">168</int> <int id="w">103</int> <int id="x">194</int> </object> <object id="bling_wildmushrooms_3_1289851048780"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851048780</str> <int id="y">-79</int> <bool id="h_flip">true</bool> <int id="h">36</int> <int id="z">240</int> <int id="w">94</int> <int id="x">823</int> </object> <object id="groddle_"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-86</int> <int id="h">47</int> <int id="z">329</int> <int id="w">126</int> <int id="x">-481</int> </object> <object id="evenground_platform_short_1282857971273"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857971273</str> <int id="y">-36</int> <int id="h">67</int> <int id="z">20</int> <int id="w">365</int> <int id="x">11</int> <int id="r">8</int> </object> <object id="tree_stack_base_4_1289849040392"> <str id="sprite_class">tree_stack_base_4</str> <str id="name">tree_stack_base_4_1289849040392</str> <int id="y">-120</int> <int id="h">339</int> <int id="z">135</int> <int id="w">448</int> <int id="x">1702</int> </object> <object id="evenground_platform_short_1282857474068"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857474068</str> <int id="y">-11</int> <int id="h">67</int> <int id="z">36</int> <int id="w">365</int> <int id="x">-107</int> <int id="r">5</int> </object> <object id="evenground_platform_short_1289434871510"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434871510</str> <int id="y">-176</int> <int id="h">67</int> <int id="z">98</int> <int id="w">365</int> <int id="x">-2946</int> <int id="r">6</int> </object> <object id="evenground_platform_short_1282858150551"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858150551</str> <int id="y">-37</int> <int id="h">67</int> <int id="z">12</int> <int id="w">365</int> <int id="x">1074</int> <int id="r">1</int> </object> <object id="bling_branchflowerbrush_white_2_1289850095036"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850095036</str> <int id="y">-610</int> <int id="h">29</int> <int id="z">177</int> <int id="w">83</int> <int id="x">2604</int> </object> <object id="flower_bush_2_1289851875639"> <str id="sprite_class">flower_bush_2</str> <str id="name">flower_bush_2_1289851875639</str> <int id="y">-161</int> <int id="h">129</int> <int id="z">273</int> <int id="w">103</int> <int id="x">-2549</int> </object> <object id="bling_mushroom_beech_1_1289852623579"> <str id="sprite_class">bling_mushroom_beech_1</str> <str id="name">bling_mushroom_beech_1_1289852623579</str> <int id="y">-125</int> <int id="h">45</int> <int id="z">317</int> <int id="w">62</int> <int id="x">115</int> </object> <object id="evenground_platform_short_1282858955918"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858955918</str> <int id="y">-4</int> <int id="h">67</int> <int id="z">56</int> <int id="w">365</int> <int id="x">2916</int> <int id="r">5</int> </object> <object id="evenground_platform_short_1282857980045"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857980045</str> <int id="y">-31</int> <int id="h">67</int> <int id="z">21</int> <int id="w">365</int> <int id="x">106</int> <int id="r">7</int> </object> <object id="evenground_platform_short_1282857446201"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857446201</str> <int id="y">5</int> <int id="h">67</int> <int id="z">31</int> <int id="w">365</int> <int id="x">-1040</int> <int id="r">-1</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852634913"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852634913</str> <int id="y">-117</int> <bool id="h_flip">true</bool> <int id="h">42</int> <int id="z">319</int> <int id="w">161</int> <int id="x">1989</int> </object> <object id="evenground_platform_short_1282857636179"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857636179</str> <int id="y">-6</int> <int id="h">67</int> <int id="z">41</int> <int id="w">365</int> <int id="x">762</int> <int id="r">2</int> </object> <object id="flower_bush_7_1289850682860"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289850682860</str> <int id="y">-163</int> <int id="h">99</int> <int id="z">214</int> <int id="w">158</int> <int id="x">-2177</int> </object> <object id="tree_stack_leafy_2_1289849543031"> <str id="sprite_class">tree_stack_leafy_2</str> <str id="name">tree_stack_leafy_2_1289849543031</str> <int id="y">-866</int> <int id="h">136</int> <int id="z">159</int> <int id="w">320</int> <int id="x">334</int> </object> <object id="wildflowers_bunch_1_1289851793221"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289851793221</str> <int id="y">-90</int> <int id="h">28</int> <int id="z">267</int> <int id="w">207</int> <int id="x">-2840</int> </object> <object id="evenground_platform_short_1282857709580"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857709580</str> <int id="y">-33</int> <int id="h">67</int> <int id="z">43</int> <int id="w">365</int> <int id="x">-1407</int> <int id="r">8</int> </object> <object id="evenground_platform_short_1282858072997"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858072997</str> <int id="y">-51</int> <int id="h">67</int> <int id="z">10</int> <int id="w">365</int> <int id="x">599</int> <int id="r">-4</int> </object> <object id="flower_bush_5_1289851188548"> <str id="sprite_class">flower_bush_5</str> <str id="name">flower_bush_5_1289851188548</str> <int id="y">-121</int> <int id="h">107</int> <int id="z">262</int> <int id="w">251</int> <int id="x">2449</int> </object> <object id="mushroom_amanita_1_1289852690513"> <str id="sprite_class">mushroom_amanita_1</str> <str id="name">mushroom_amanita_1_1289852690513</str> <int id="y">-135</int> <int id="h">52</int> <int id="z">323</int> <int id="w">39</int> <int id="x">-269</int> <int id="r">5</int> </object> <object id="evenground_platform_short_1282858965183"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858965183</str> <int id="y">-64</int> <int id="h">67</int> <int id="z">8</int> <int id="w">365</int> <int id="x">2041</int> <int id="r">7</int> </object> <object id="evenground_platform_short_1287092095132"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092095132</str> <int id="y">-45</int> <int id="h">67</int> <int id="z">88</int> <int id="w">365</int> <int id="x">-2094</int> <int id="r">-3</int> </object> <object id="bling_branchflowerbrush_white_2_1289850081586"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850081586</str> <int id="y">-598</int> <int id="h">29</int> <int id="z">173</int> <int id="w">83</int> <int id="x">1886</int> </object> <object id="bling_wildmushrooms_1_1289851068480"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289851068480</str> <int id="y">-111</int> <int id="h">27</int> <int id="z">246</int> <int id="w">92</int> <int id="x">1104</int> </object> <object id="evenground_platform_short_1282857451888"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857451888</str> <int id="y">-8</int> <int id="h">67</int> <int id="z">32</int> <int id="w">365</int> <int id="x">-855</int> <int id="r">1</int> </object> <object id="bling_mushroom_bunch_tree_1_1289851165365"> <str id="sprite_class">bling_mushroom_bunch_tree_1</str> <str id="name">bling_mushroom_bunch_tree_1_1289851165365</str> <int id="y">-299</int> <int id="h">81</int> <int id="z">260</int> <int id="w">54</int> <int id="x">-2284</int> </object> <object id="floating_platform_grass_02_1289852163330"> <str id="sprite_class">floating_platform_grass_02</str> <str id="name">floating_platform_grass_02_1289852163330</str> <int id="y">-671</int> <int id="h">126</int> <int id="z">295</int> <int id="w">307</int> <int id="x">2207</int> </object> <object id="evenground_platform_short_1282858946178"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858946178</str> <int id="y">7</int> <int id="h">67</int> <int id="z">54</int> <int id="w">365</int> <int id="x">2537</int> <int id="r">-3</int> </object> <object id="evenground_platform_short_1287091994999"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091994999</str> <int id="y">-121</int> <int id="h">67</int> <int id="z">84</int> <int id="w">365</int> <int id="x">1388</int> <int id="r">-2</int> </object> <object id="floating_platform_grass_02_1289849470463"> <str id="sprite_class">floating_platform_grass_02</str> <str id="name">floating_platform_grass_02_1289849470463</str> <int id="y">-736</int> <int id="h">126</int> <int id="z">151</int> <int id="w">307</int> <int id="x">-1826</int> </object> <object id="evenground_platform_short_1282857463435"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857463435</str> <int id="y">0</int> <int id="h">67</int> <int id="z">34</int> <int id="w">365</int> <int id="x">-540</int> <int id="r">3</int> </object> <object id="mushroom_funnel_1_1289852712480"> <str id="sprite_class">mushroom_funnel_1</str> <str id="name">mushroom_funnel_1_1289852712480</str> <int id="y">-117</int> <int id="h">63</int> <int id="z">326</int> <int id="w">43</int> <int id="x">-500</int> </object> <object id="evenground_platform_short_1287092316964"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092316964</str> <int id="y">-82</int> <int id="h">67</int> <int id="z">94</int> <int id="w">365</int> <int id="x">-1339</int> <int id="r">8</int> </object> <object id="trunk_ladder_2_1289850343106"> <str id="sprite_class">trunk_ladder_2</str> <str id="name">trunk_ladder_2_1289850343106</str> <int id="y">-844</int> <bool id="h_flip">true</bool> <int id="h">70</int> <int id="z">193</int> <int id="w">62</int> <int id="x">1696</int> </object> <object id="bush_2_1289610845375"> <str id="sprite_class">bush_2</str> <str id="name">bush_2_1289610845375</str> <int id="y">-102</int> <int id="h">76</int> <int id="z">125</int> <int id="w">196</int> <int id="x">-1030</int> </object> <object id="groddle_plant_1_1289853619224"> <str id="sprite_class">groddle_plant_1</str> <str id="name">groddle_</str> <int id="y">-151</int> <int id="h">153</int> <int id="z">2</int> <int id="w">146</int> <int id="x">2453</int> </object> <object id="evenground_platform_short_1282858270543"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858270543</str> <int id="y">-94</int> <int id="h">67</int> <int id="z">16</int> <int id="w">365</int> <int id="x">1654</int> <int id="r">2</int> </object> <object id="evenground_platform_short_1282857797487"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857797487</str> <int id="y">-32</int> <int id="h">67</int> <int id="z">46</int> <int id="w">365</int> <int id="x">-869</int> <int id="r">-2</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852631563"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852631563</str> <int id="y">-135</int> <int id="h">42</int> <int id="z">318</int> <int id="w">161</int> <int id="x">1940</int> </object> <object id="evenground_platform_short_1289434975799"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434975799</str> <int id="y">-165</int> <int id="h">67</int> <int id="z">115</int> <int id="w">365</int> <int id="x">1389</int> </object> <object id="evenground_platform_short_1282857436152"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857436152</str> <int id="y">11</int> <int id="h">67</int> <int id="z">29</int> <int id="w">365</int> <int id="x">-1235</int> <int id="r">8</int> </object> <object id="bling_branch_flower_2_1289849379713"> <str id="sprite_class">bling_branch_flower_2</str> <str id="name">bling_branch_flower_2_1289849379713</str> <int id="y">-416</int> <bool id="h_flip">true</bool> <int id="h">187</int> <int id="z">149</int> <int id="w">596</int> <int id="x">338</int> </object> <object id="evenground_platform_short_1289435036428"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289435036428</str> <int id="y">-79</int> <int id="h">67</int> <int id="z">119</int> <int id="w">365</int> <int id="x">2336</int> <int id="r">2</int> </object> <object id="mushroom_funnel_2_1289852208114"> <str id="sprite_class">mushroom_funnel_2</str> <str id="name">mushroom_funnel_2_1289852208114</str> <int id="y">-765</int> <int id="h">116</int> <int id="z">301</int> <int id="w">95</int> <int id="x">-1365</int> </object> <object id="evenground_platform_short_1282857456751"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857456751</str> <int id="y">-15</int> <int id="h">67</int> <int id="z">33</int> <int id="w">365</int> <int id="x">-716</int> <int id="r">3</int> </object> <object id="wildflowers_bunch_2_1289850152220"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289850152220</str> <int id="y">-768</int> <int id="h">25</int> <int id="z">182</int> <int id="w">191</int> <int id="x">-1480</int> </object> <object id="evenground_platform_short_1282857683053"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857683053</str> <int id="y">-60</int> <int id="h">67</int> <int id="z">24</int> <int id="w">365</int> <int id="x">-1875</int> <int id="r">2</int> </object> <object id="wildflowers_purple_2_1289853808722"> <str id="sprite_class">wildflowers_purple_2</str> <str id="name">wildflowers_purple_2_1289853808722</str> <int id="y">-763</int> <int id="h">20</int> <int id="z">336</int> <int id="w">105</int> <int id="x">2179</int> </object> <object id="evenground_platform_short_1282857620003"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857620003</str> <int id="y">1</int> <int id="h">67</int> <int id="z">39</int> <int id="w">365</int> <int id="x">331</int> <int id="r">-1</int> </object> <object id="bling_wildmushrooms_2_1289850579608"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289850579608</str> <int id="y">-41</int> <int id="h">25</int> <int id="z">205</int> <int id="w">72</int> <int id="x">370</int> </object> <object id="bling_mushroom_bunch_ground_1_1289853555687"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289853555687</str> <int id="y">-104</int> <bool id="h_flip">true</bool> <int id="h">42</int> <int id="z">334</int> <int id="w">161</int> <int id="x">1195</int> </object> <object id="evenground_platform_short_1282858259559"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858259559</str> <int id="y">-86</int> <int id="h">67</int> <int id="z">13</int> <int id="w">365</int> <int id="x">1243</int> <int id="r">-6</int> </object> <object id="tree_stack_base_3_1289849062242"> <str id="sprite_class">tree_stack_base_3</str> <str id="name">tree_stack_base_3_1289849062242</str> <int id="y">-154</int> <int id="h">431</int> <int id="z">137</int> <int id="w">150</int> <int id="x">-2342</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852606483"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852606483</str> <int id="y">-83</int> <int id="h">42</int> <int id="z">314</int> <int id="w">161</int> <int id="x">-1139</int> </object> <object id="bush_2_1289610863065"> <str id="sprite_class">bush_2</str> <str id="name">bush_2_1289610863065</str> <int id="y">-214</int> <int id="h">76</int> <int id="z">128</int> <int id="w">196</int> <int id="x">1368</int> </object> <object id="bling_treeface_1_1289850183221"> <str id="sprite_class">bling_treeface_1</str> <str id="name">bling_treeface_1_1289850183221</str> <int id="y">-168</int> <int id="h">220</int> <int id="z">185</int> <int id="w">98</int> <int id="x">-148</int> </object> <object id="wildflowers_bunch_2_1289851923889"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289851923889</str> <int id="y">-42</int> <int id="h">25</int> <int id="z">278</int> <int id="w">191</int> <int id="x">2530</int> </object> <object id="wildflowers_bunch_2_1289850150040"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289850150040</str> <int id="y">-826</int> <int id="h">25</int> <int id="z">181</int> <int id="w">191</int> <int id="x">-1840</int> </object> <object id="bling_wildmushrooms_3_1289850604884"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289850604884</str> <int id="y">-47</int> <int id="h">25</int> <int id="z">207</int> <int id="w">64</int> <int id="x">36</int> </object> <object id="groddle_cover_clover2_1289610873282"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-200</int> <int id="h">47</int> <int id="z">129</int> <int id="w">126</int> <int id="x">1486</int> <int id="r">1</int> </object> <object id="evenground_platform_short_1287092112044"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092112044</str> <int id="y">-126</int> <int id="h">67</int> <int id="z">92</int> <int id="w">365</int> <int id="x">-2945</int> <int id="r">6</int> </object> <object id="evenground_platform_short_1282857467911"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857467911</str> <int id="y">-15</int> <int id="h">67</int> <int id="z">35</int> <int id="w">365</int> <int id="x">-393</int> <int id="r">-2</int> </object> <object id="wildflowers_bunch_2_1289851920806"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289851920806</str> <int id="y">-57</int> <int id="h">25</int> <int id="z">277</int> <int id="w">191</int> <int id="x">2081</int> </object> <object id="evenground_platform_short_1282857696903"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857696903</str> <int id="y">-39</int> <int id="h">67</int> <int id="z">23</int> <int id="w">365</int> <int id="x">-1529</int> <int id="r">8</int> </object> <object id="bling_wildmushrooms_1_1289851066147"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289851066147</str> <int id="y">-93</int> <bool id="h_flip">true</bool> <int id="h">27</int> <int id="z">245</int> <int id="w">92</int> <int id="x">993</int> </object> <object id="evenground_platform_short_1282857408451"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857408451</str> <int id="y">-37</int> <int id="h">67</int> <int id="z">26</int> <int id="w">365</int> <int id="x">-1835</int> <int id="r">2</int> </object> <object id="flower_bush_5_1289850549393"> <str id="sprite_class">flower_bush_5</str> <str id="name">flower_bush_5_1289850549393</str> <int id="y">-134</int> <int id="h">107</int> <int id="z">200</int> <int id="w">251</int> <int id="x">160</int> </object> <object id="evenground_platform_short_1287091927475"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091927475</str> <int id="y">-74</int> <int id="h">67</int> <int id="z">76</int> <int id="w">365</int> <int id="x">1674</int> <int id="r">2</int> </object> <object id="evenground_platform_short_1287092104308"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092104308</str> <int id="y">-65</int> <int id="h">67</int> <int id="z">90</int> <int id="w">365</int> <int id="x">-2579</int> <int id="r">6</int> </object> <object id="evenground_platform_short_1282857712449"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857712449</str> <int id="y">-22</int> <int id="h">67</int> <int id="z">22</int> <int id="w">365</int> <int id="x">-1273</int> <int id="r">6</int> </object> <object id="bling_tree_base_moss_1_1289849151310"> <str id="sprite_class">bling_tree_base_moss_1</str> <str id="name">bling_tree_base_moss_1_1289849151310</str> <int id="y">-131</int> <int id="h">260</int> <int id="z">145</int> <int id="w">301</int> <int id="x">-2344</int> </object> <object id="bling_branchflowerbrush_white_2_1289850038537"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850038537</str> <int id="y">-478</int> <int id="h">29</int> <int id="z">165</int> <int id="w">83</int> <int id="x">-366</int> </object> <object id="groddle_cover_clover2_1289850970662"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-104</int> <int id="h">47</int> <int id="z">340</int> <int id="w">126</int> <int id="x">-2627</int> </object> <object id="evenground_platform_short_1282857784821"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857784821</str> <int id="y">-21</int> <int id="h">67</int> <int id="z">45</int> <int id="w">365</int> <int id="x">-999</int> <int id="r">1</int> </object> <object id="evenground_platform_short_1287091896163"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091896163</str> <int id="y">18</int> <int id="h">67</int> <int id="z">72</int> <int id="w">365</int> <int id="x">-832</int> <int id="r">-2</int> </object> <object id="bush_3_1289610723580"> <str id="sprite_class">bush_3</str> <str id="name">bush_3_1289610723580</str> <int id="y">-80</int> <int id="h">100</int> <int id="z">127</int> <int id="w">283</int> <int id="x">-764</int> </object> <object id="ug_exface3_1282856947546"> <str id="sprite_class">ug_exface3</str> <str id="name">ug_exface3_1282856947546</str> <int id="y">294</int> <int id="h">267</int> <int id="z">25</int> <int id="w">6691</int> <int id="x">-51</int> </object> <object id="bush_3_1289436206674"> <str id="sprite_class">bush_3</str> <str id="name">bush_3_1289436206674</str> <int id="y">-198</int> <int id="h">100</int> <int id="z">124</int> <int id="w">283</int> <int id="x">-2899</int> <int id="r">5</int> </object> <object id="evenground_platform_short_1289434921927"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434921927</str> <int id="y">-73</int> <int id="h">67</int> <int id="z">108</int> <int id="w">365</int> <int id="x">-644</int> <int id="r">-4</int> </object> <object id="mushroom_funnel_1_1289852320560"> <str id="sprite_class">mushroom_funnel_1</str> <str id="name">mushroom_funnel_1_1289852320560</str> <int id="y">-155</int> <int id="h">81</int> <int id="z">305</int> <int id="w">55</int> <int id="x">-1889</int> </object> <object id="evenground_platform_short_1282858273527"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858273527</str> <int id="y">-86</int> <int id="h">67</int> <int id="z">15</int> <int id="w">365</int> <int id="x">1847</int> <int id="r">2</int> </object> <object id="evenground_platform_short_1287091889130"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091889130</str> <int id="y">-47</int> <int id="h">67</int> <int id="z">71</int> <int id="w">365</int> <int id="x">-1196</int> <int id="r">3</int> </object> <object id="evenground_platform_short_1289434951835"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434951835</str> <int id="y">-79</int> <int id="h">67</int> <int id="z">111</int> <int id="w">365</int> <int id="x">366</int> <int id="r">-3</int> </object> <object id="mushroom_funnel_2_1289852709515"> <str id="sprite_class">mushroom_funnel_2</str> <str id="name">mushroom_funnel_2_1289852709515</str> <int id="y">-124</int> <int id="h">78</int> <int id="z">325</int> <int id="w">63</int> <int id="x">-513</int> </object> <object id="evenground_platform_short_1282857940518"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857940518</str> <int id="y">-45</int> <int id="h">67</int> <int id="z">19</int> <int id="w">365</int> <int id="x">-479</int> <int id="r">-4</int> </object> <object id="evenground_platform_short_1287091929429"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091929429</str> <int id="y">-51</int> <int id="h">67</int> <int id="z">77</int> <int id="w">365</int> <int id="x">1921</int> <int id="r">7</int> </object> <object id="flower_bush_6_1289850696826"> <str id="sprite_class">flower_bush_6</str> <str id="name">flower_bush_6_1289850696826</str> <int id="y">-153</int> <int id="h">117</int> <int id="z">217</int> <int id="w">238</int> <int id="x">-2706</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852647879"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852647879</str> <int id="y">-95</int> <int id="h">42</int> <int id="z">321</int> <int id="w">161</int> <int id="x">2543</int> </object> <object id="evenground_platform_short_1289434941466"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434941466</str> <int id="y">-80</int> <int id="h">67</int> <int id="z">3</int> <int id="w">365</int> <int id="x">119</int> <int id="r">4</int> </object> <object id="evenground_platform_short_1283210753514"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1283210753514</str> <int id="y">-66</int> <int id="h">57</int> <int id="z">63</int> <int id="w">363</int> <int id="x">-2679</int> <int id="r">13</int> </object> <object id="bling_charms_1_1289850122653"> <str id="sprite_class">bling_charms_1</str> <str id="name">bling_charms_1_1289850122653</str> <int id="y">-320</int> <int id="h">127</int> <int id="z">180</int> <int id="w">103</int> <int id="x">322</int> </object> <object id="groddle_flower_1_1289852344210"> <str id="sprite_class">groddle_flower_1</str> <str id="name">groddle_</str> <int id="y">-157</int> <int id="h">83</int> <int id="z">310</int> <int id="w">136</int> <int id="x">-1699</int> </object> <object id="tree_stack_base_4_1289849015659"> <str id="sprite_class">tree_stack_base_4</str> <str id="name">tree_stack_base_4_1289849015659</str> <int id="y">-48</int> <int id="h">339</int> <int id="z">130</int> <int id="w">448</int> <int id="x">-150</int> </object> <object id="floating_platform_grass_02_1289849477480"> <str id="sprite_class">floating_platform_grass_02</str> <str id="name">floating_platform_grass_02_1289849477480</str> <int id="y">-714</int> <int id="h">126</int> <int id="z">153</int> <int id="w">307</int> <int id="x">-1012</int> </object> <object id="platform_branch_a01_1289849782333"> <str id="sprite_class">platform_branch_a01</str> <str id="name">platform_branch_a01_1289849782333</str> <int id="y">-578</int> <bool id="h_flip">true</bool> <int id="h">116</int> <int id="z">162</int> <int id="w">261</int> <int id="x">2648</int> </object> <object id="evenground_platform_short_1287091983126"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091983126</str> <int id="y">-61</int> <int id="h">67</int> <int id="z">83</int> <int id="w">365</int> <int id="x">2177</int> <int id="r">5</int> </object> <object id="bling_wildmushrooms_2_1289850569991"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289850569991</str> <int id="y">-99</int> <int id="h">25</int> <int id="z">203</int> <int id="w">72</int> <int id="x">80</int> </object> <object id="bling_wildmushrooms_1_1289852193875"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289852193875</str> <int id="y">-738</int> <int id="h">27</int> <int id="z">299</int> <int id="w">92</int> <int id="x">-583</int> </object> <object id="evenground_platform_short_1282858927754"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858927754</str> <int id="y">18</int> <int id="h">67</int> <int id="z">9</int> <int id="w">365</int> <int id="x">2070</int> <int id="r">7</int> </object> <object id="evenground_platform_short_1289434910178"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434910178</str> <int id="y">-77</int> <int id="h">67</int> <int id="z">106</int> <int id="w">365</int> <int id="x">-1110</int> <int id="r">8</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852643532"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852643532</str> <int id="y">-113</int> <int id="h">42</int> <int id="z">320</int> <int id="w">161</int> <int id="x">2086</int> </object> <object id="bling_mushroom_king_bolete_1_1289852031890"> <str id="sprite_class">bling_mushroom_king_bolete_1</str> <str id="name">bling_mushroom_king_bolete_1_1289852031890</str> <int id="y">-115</int> <int id="h">54</int> <int id="z">290</int> <int id="w">57</int> <int id="x">2558</int> </object> <object id="evenground_platform_short_1282858265226"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858265226</str> <int id="y">-100</int> <int id="h">67</int> <int id="z">14</int> <int id="w">365</int> <int id="x">1440</int> <int id="r">-2</int> </object> <object id="platform_branch_a03_1289849120710"> <str id="sprite_class">platform_branch_a03</str> <str id="name">platform_branch_a03_1289849120710</str> <int id="y">-418</int> <int id="h">55</int> <int id="z">140</int> <int id="w">150</int> <int id="x">-2238</int> </object> <object id="bling_wildmushrooms_2_1289851043746"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289851043746</str> <int id="y">-79</int> <int id="h">25</int> <int id="z">238</int> <int id="w">72</int> <int id="x">736</int> </object> <object id="groddle_grass_2_1289853845225"> <str id="sprite_class">groddle_grass_2</str> <str id="name">groddle_</str> <int id="y">-788</int> <int id="h">65</int> <int id="z">339</int> <int id="w">81</int> <int id="x">-1539</int> </object> <object id="evenground_platform_short_1282859254639"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282859254639</str> <int id="y">-53</int> <int id="h">57</int> <int id="z">6</int> <int id="w">363</int> <int id="x">-2856</int> <int id="r">9</int> </object> <object id="bling_mushroom_king_bolete_1_1289852016760"> <str id="sprite_class">bling_mushroom_king_bolete_1</str> <str id="name">bling_mushroom_king_bolete_1_1289852016760</str> <int id="y">-144</int> <int id="h">54</int> <int id="z">288</int> <int id="w">57</int> <int id="x">2574</int> </object> <object id="bling_wildmushrooms_3_1289852198175"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289852198175</str> <int id="y">-853</int> <int id="h">25</int> <int id="z">300</int> <int id="w">64</int> <int id="x">-1799</int> </object> <object id="flower_bush_6_1289851182148"> <str id="sprite_class">flower_bush_6</str> <str id="name">flower_bush_6_1289851182148</str> <int id="y">-89</int> <int id="h">117</int> <int id="z">332</int> <int id="w">238</int> <int id="x">2864</int> </object> <object id="bling_wildmushrooms_1_1289851070697"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289851070697</str> <int id="y">-64</int> <int id="h">27</int> <int id="z">247</int> <int id="w">92</int> <int id="x">2294</int> </object> <object id="floating_platform_grass_01_1289849497097"> <str id="sprite_class">floating_platform_grass_01</str> <str id="name">floating_platform_grass_01_1289849497097</str> <int id="y">-776</int> <int id="h">121</int> <int id="z">155</int> <int id="w">394</int> <int id="x">764</int> </object> <object id="bling_branchflowerbrush_white_2_1289850070203"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850070203</str> <int id="y">-882</int> <int id="h">27</int> <int id="z">169</int> <int id="w">77</int> <int id="x">1443</int> <int id="r">-2</int> </object> <object id="groddle_plant_1_1289853637364"> <str id="sprite_class">groddle_plant_1</str> <str id="name">groddle_</str> <int id="y">-189</int> <int id="h">153</int> <int id="z">0</int> <int id="w">146</int> <int id="x">1510</int> </object> <object id="bling_wildmushrooms_3_1289851033963"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851033963</str> <int id="y">-43</int> <int id="h">37</int> <int id="z">233</int> <int id="w">96</int> <int id="x">-883</int> </object> <object id="groddle_cover_clover2_1289850975213"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-86</int> <int id="h">47</int> <int id="z">232</int> <int id="w">126</int> <int id="x">-1264</int> </object> <object id="mushroom_aqua_1_1289852698797"> <str id="sprite_class">mushroom_aqua_1</str> <str id="name">mushroom_aqua_1_1289852698797</str> <int id="y">-131</int> <int id="h">44</int> <int id="z">324</int> <int id="w">22</int> <int id="x">-295</int> </object> <object id="bling_branchflowerbrush_white_2_1289850116055"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850116055</str> <int id="y">-962</int> <int id="h">29</int> <int id="z">179</int> <int id="w">83</int> <int id="x">340</int> </object> <object id="tree_stack_trunk_1289849020642"> <str id="sprite_class">tree_stack_trunk</str> <str id="name">tree_stack_trunk_1289849020642</str> <int id="y">-336</int> <int id="h">701</int> <int id="z">131</int> <int id="w">88</int> <int id="x">-148</int> </object> <object id="bling_wildmushrooms_2_1289850567025"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289850567025</str> <int id="y">-36</int> <bool id="h_flip">true</bool> <int id="h">35</int> <int id="z">202</int> <int id="w">102</int> <int id="x">215</int> </object> <object id="trunk_ladder_2_1289850327956"> <str id="sprite_class">trunk_ladder_2</str> <str id="name">trunk_ladder_2_1289850327956</str> <int id="y">-570</int> <bool id="h_flip">true</bool> <int id="h">70</int> <int id="z">190</int> <int id="w">62</int> <int id="x">1704</int> </object> <object id="bling_wildmushrooms_1_1289851072913"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289851072913</str> <int id="y">-28</int> <int id="h">39</int> <int id="z">248</int> <int id="w">136</int> <int id="x">2393</int> </object> <object id="tree_stack_trunk_1289849026959"> <str id="sprite_class">tree_stack_trunk</str> <str id="name">tree_stack_trunk_1289849026959</str> <int id="y">-450</int> <int id="h">701</int> <int id="z">133</int> <int id="w">88</int> <int id="x">320</int> </object> <object id="evenground_platform_short_1282858219742"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858219742</str> <int id="y">-29</int> <int id="h">67</int> <int id="z">17</int> <int id="w">365</int> <int id="x">154</int> <int id="r">1</int> </object> <object id="evenground_platform_short_1287092331537"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092331537</str> <int id="y">-117</int> <int id="h">67</int> <int id="z">97</int> <int id="w">365</int> <int id="x">-1999</int> <int id="r">-5</int> </object> <object id="floating_platform_grass_01_1289849480064"> <str id="sprite_class">floating_platform_grass_01</str> <str id="name">floating_platform_grass_01_1289849480064</str> <int id="y">-634</int> <bool id="h_flip">true</bool> <int id="h">121</int> <int id="z">154</int> <int id="w">394</int> <int id="x">-656</int> </object> <object id="bling_branchflowerbrush_white_1_1289850059205"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289850059205</str> <int id="y">-796</int> <int id="h">64</int> <int id="z">167</int> <int id="w">103</int> <int id="x">110</int> </object> <object id="bling_mushroom_beech_1_1289850847545"> <str id="sprite_class">bling_mushroom_beech_1</str> <str id="name">bling_mushroom_beech_1_1289850847545</str> <int id="y">-138</int> <int id="h">45</int> <int id="z">222</int> <int id="w">62</int> <int id="x">1611</int> </object> <object id="tree_stack_trunk_1289849103360"> <str id="sprite_class">tree_stack_trunk</str> <str id="name">tree_stack_trunk_1289849103360</str> <int id="y">-396</int> <int id="h">701</int> <int id="z">139</int> <int id="w">88</int> <int id="x">2800</int> </object> <object id="wildflowers_bunch_3_1289851926389"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289851926389</str> <int id="y">-71</int> <int id="h">29</int> <int id="z">279</int> <int id="w">277</int> <int id="x">2679</int> </object> <object id="evenground_platform_short_1282858038657"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858038657</str> <int id="y">-25</int> <int id="h">67</int> <int id="z">18</int> <int id="w">365</int> <int id="x">296</int> <int id="r">-4</int> </object> <object id="evenground_platform_short_1282857487602"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857487602</str> <int id="y">-15</int> <int id="h">67</int> <int id="z">37</int> <int id="w">365</int> <int id="x">105</int> <int id="r">5</int> </object> <object id="bling_branchflowerbrush_white_2_1289850026586"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850026586</str> <int id="y">-806</int> <int id="h">29</int> <int id="z">164</int> <int id="w">83</int> <int id="x">-2144</int> </object> <object id="bling_wildmushrooms_3_1289852183292"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289852183292</str> <int id="y">-742</int> <int id="h">25</int> <int id="z">298</int> <int id="w">64</int> <int id="x">1166</int> </object> <object id="evenground_platform_short_1282858969533"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858969533</str> <int id="y">2</int> <int id="h">67</int> <int id="z">7</int> <int id="w">365</int> <int id="x">2207</int> <int id="r">4</int> </object> <object id="evenground_platform_short_1289435095558"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289435095558</str> <int id="y">-127</int> <int id="h">67</int> <int id="z">122</int> <int id="w">365</int> <int id="x">2837</int> <int id="r">-4</int> </object> <object id="flower_bush_7_1289850919079"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289850919079</str> <int id="y">-128</int> <int id="h">99</int> <int id="z">228</int> <int id="w">158</int> <int id="x">-2660</int> </object> <object id="bling_branchflowerbrush_white_2_1289850091836"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850091836</str> <int id="y">-852</int> <int id="h">29</int> <int id="z">176</int> <int id="w">83</int> <int id="x">2528</int> </object> <object id="evenground_platform_short_1282858077724"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858077724</str> <int id="y">-35</int> <int id="h">67</int> <int id="z">11</int> <int id="w">365</int> <int id="x">892</int> <int id="r">1</int> </object> <object id="evenground_platform_short_1287091936432"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091936432</str> <int id="y">-39</int> <int id="h">67</int> <int id="z">78</int> <int id="w">365</int> <int id="x">2310</int> </object> <object id="mushroom_funnel_1_1289851995423"> <str id="sprite_class">mushroom_funnel_1</str> <str id="name">mushroom_funnel_1_1289851995423</str> <int id="y">-127</int> <int id="h">69</int> <int id="z">284</int> <int id="w">47</int> <int id="x">-1425</int> </object> <object id="evenground_platform_short_1282859074817"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282859074817</str> <int id="y">-10</int> <int id="h">67</int> <int id="z">58</int> <int id="w">365</int> <int id="x">2432</int> <int id="r">-2</int> </object> <object id="flower_bush_7_1289850651226"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289850651226</str> <int id="y">-188</int> <int id="h">99</int> <int id="z">211</int> <int id="w">158</int> <int id="x">1274</int> </object> <object id="platform_branch_a02_1289849536364"> <str id="sprite_class">platform_branch_a02</str> <str id="name">platform_branch_a02_1289849536364</str> <int id="y">-827</int> <int id="h">93</int> <int id="z">157</int> <int id="w">332</int> <int id="x">1514</int> </object> <object id="flower_bush_7_1289850905245"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289850905245</str> <int id="y">-109</int> <int id="h">99</int> <int id="z">225</int> <int id="w">158</int> <int id="x">-1327</int> <int id="r">2</int> </object> <object id="evenground_platform_short_1282859268837"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282859268837</str> <int id="y">-34</int> <int id="h">67</int> <int id="z">5</int> <int id="w">365</int> <int id="x">-2507</int> </object> <object id="flower_bush_7_1289850685659"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289850685659</str> <int id="y">-180</int> <int id="h">99</int> <int id="z">215</int> <int id="w">158</int> <int id="x">-2029</int> </object> <object id="evenground_platform_short_1282857438618"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857438618</str> <int id="y">20</int> <int id="h">67</int> <int id="z">30</int> <int id="w">365</int> <int id="x">-1071</int> <int id="r">1</int> </object> <object id="wildflowers_bunch_1_1289850365206"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289850365206</str> <int id="y">-722</int> <int id="h">28</int> <int id="z">196</int> <int id="w">207</int> <int id="x">1110</int> </object> <object id="platform_branch_a02_1289849123727"> <str id="sprite_class">platform_branch_a02</str> <str id="name">platform_branch_a02_1289849123727</str> <int id="y">-598</int> <int id="h">93</int> <int id="z">141</int> <int id="w">332</int> <int id="x">-2524</int> </object> <object id="platform_branch_4_1289849452963"> <str id="sprite_class">platform_branch_4</str> <str id="name">platform_branch_4_1289849452963</str> <int id="y">-430</int> <int id="h">103</int> <int id="z">150</int> <int id="w">302</int> <int id="x">-322</int> </object> <object id="flower_bush_7_1289850916062"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289850916062</str> <int id="y">-151</int> <int id="h">99</int> <int id="z">227</int> <int id="w">158</int> <int id="x">-2861</int> </object> <object id="evenground_platform_short_1285784571930"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1285784571930</str> <int id="y">-45</int> <int id="h">67</int> <int id="z">65</int> <int id="w">365</int> <int id="x">2931</int> <int id="r">1</int> </object> <object id="wildflowers_bunch_2_1289851807888"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289851807888</str> <int id="y">-40</int> <int id="h">25</int> <int id="z">271</int> <int id="w">191</int> <int id="x">-316</int> </object> <object id="bling_wildmushrooms_3_1289851062713"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851062713</str> <int id="y">-75</int> <int id="h">25</int> <int id="z">244</int> <int id="w">64</int> <int id="x">2188</int> </object> <object id="groddle_plant_1_1289853632555"> <str id="sprite_class">groddle_plant_1</str> <str id="name">groddle_</str> <int id="y">-146</int> <int id="h">153</int> <int id="z">1</int> <int id="w">146</int> <int id="x">2028</int> </object> <object id="platform_branch_a01_1289849125976"> <str id="sprite_class">platform_branch_a01</str> <str id="name">platform_branch_a01_1289849125976</str> <int id="y">-764</int> <int id="h">116</int> <int id="z">142</int> <int id="w">261</int> <int id="x">-2184</int> </object> <object id="evenground_platform_short_1289434983660"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434983660</str> <int id="y">-151</int> <int id="h">67</int> <int id="z">116</int> <int id="w">365</int> <int id="x">1603</int> <int id="r">5</int> </object> <object id="groddle_flower_1_1289852071374"> <str id="sprite_class">groddle_flower_1</str> <str id="name">groddle_</str> <int id="y">-90</int> <int id="h">72</int> <int id="z">293</int> <int id="w">117</int> <int id="x">-1062</int> </object> <object id="wildflowers_bunch_1_1289851916522"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289851916522</str> <int id="y">-92</int> <int id="h">28</int> <int id="z">275</int> <int id="w">207</int> <int id="x">2229</int> </object> <object id="bling_wildmushrooms_2_1289850582591"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289850582591</str> <int id="y">-67</int> <int id="h">36</int> <int id="z">206</int> <int id="w">106</int> <int id="x">612</int> </object> <object id="wildflowers_bunch_2_1289851786921"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289851786921</str> <int id="y">-46</int> <int id="h">25</int> <int id="z">264</int> <int id="w">191</int> <int id="x">-2489</int> </object> <object id="evenground_platform_short_1282859276247"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282859276247</str> <int id="y">-49</int> <int id="h">67</int> <int id="z">4</int> <int id="w">365</int> <int id="x">-2346</int> <int id="r">-4</int> </object> <object id="flower_group_2_1289852338994"> <str id="sprite_class">flower_group_2</str> <str id="name">flower_group_2_1289852338994</str> <int id="y">-165</int> <int id="h">127</int> <int id="z">308</int> <int id="w">81</int> <int id="x">-1584</int> </object> <object id="bling_wildmushrooms_3_1289851054582"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851054582</str> <int id="y">-128</int> <int id="h">25</int> <int id="z">241</int> <int id="w">64</int> <int id="x">1473</int> </object> <object id="groddle_cover_clover2_1289436194158"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-117</int> <int id="h">47</int> <int id="z">208</int> <int id="w">126</int> <int id="x">29</int> </object> <object id="bling_mushroom_beech_1_1289851152081"> <str id="sprite_class">bling_mushroom_beech_1</str> <str id="name">bling_mushroom_beech_1_1289851152081</str> <int id="y">-123</int> <int id="h">45</int> <int id="z">258</int> <int id="w">62</int> <int id="x">472</int> </object> <object id="mushroom_aqua_1_1289850797219"> <str id="sprite_class">mushroom_aqua_1</str> <str id="name">mushroom_aqua_1_1289850797219</str> <int id="y">-173</int> <int id="h">81</int> <int id="z">218</int> <int id="w">40</int> <int id="x">1248</int> </object> <object id="mushroom_amanita_1_1289852687113"> <str id="sprite_class">mushroom_amanita_1</str> <str id="name">mushroom_amanita_1_1289852687113</str> <int id="y">-141</int> <int id="h">81</int> <int id="z">322</int> <int id="w">61</int> <int id="x">-280</int> </object> <object id="evenground_platform_short_1289435045162"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289435045162</str> <int id="y">-88</int> <int id="h">67</int> <int id="z">120</int> <int id="w">365</int> <int id="x">2572</int> <int id="r">-4</int> </object> <object id="groddle_flower_3_1289852346894"> <str id="sprite_class">groddle_flower_3</str> <str id="name">groddle_</str> <int id="y">-136</int> <int id="h">55</int> <int id="z">311</int> <int id="w">87</int> <int id="x">-1563</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852611612"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852611612</str> <int id="y">-140</int> <int id="h">42</int> <int id="z">315</int> <int id="w">161</int> <int id="x">-1717</int> </object> <object id="flower_bush_3_1289850539774"> <str id="sprite_class">flower_bush_3</str> <str id="name">flower_bush_3_1289850539774</str> <int id="y">-104</int> <int id="h">102</int> <int id="z">198</int> <int id="w">201</int> <int id="x">615</int> </object> <object id="mushroom_amanita_1_1289851979673"> <str id="sprite_class">mushroom_amanita_1</str> <str id="name">mushroom_amanita_1_1289851979673</str> <int id="y">-74</int> <int id="h">138</int> <int id="z">281</int> <int id="w">103</int> <int id="x">-736</int> <int id="r">-3</int> </object> <object id="groddle_flower_3_1289852327794"> <str id="sprite_class">groddle_flower_3</str> <str id="name">groddle_</str> <int id="y">-136</int> <int id="h">55</int> <int id="z">306</int> <int id="w">87</int> <int id="x">-1874</int> </object> <object id="evenground_platform_short_1287091998916"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091998916</str> <int id="y">-116</int> <int id="h">67</int> <int id="z">85</int> <int id="w">365</int> <int id="x">1669</int> <int id="r">4</int> </object> <object id="bling_wildmushrooms_1_1289851076363"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289851076363</str> <int id="y">-50</int> <bool id="h_flip">true</bool> <int id="h">27</int> <int id="z">249</int> <int id="w">92</int> <int id="x">2303</int> </object> <object id="tree_stack_trunk_1289849043359"> <str id="sprite_class">tree_stack_trunk</str> <str id="name">tree_stack_trunk_1289849043359</str> <int id="y">-408</int> <int id="h">701</int> <int id="z">134</int> <int id="w">88</int> <int id="x">1704</int> </object> <object id="flower_bush_7_1289850911295"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289850911295</str> <int id="y">-180</int> <int id="h">99</int> <int id="z">226</int> <int id="w">158</int> <int id="x">-2959</int> </object> <object id="flower_bush_4_1289852341693"> <str id="sprite_class">flower_bush_4</str> <str id="name">flower_bush_4_1289852341693</str> <int id="y">-159</int> <int id="h">84</int> <int id="z">309</int> <int id="w">71</int> <int id="x">-1615</int> </object> <object id="bling_wildmushrooms_3_1289851128247"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851128247</str> <int id="y">-125</int> <int id="h">25</int> <int id="z">255</int> <int id="w">64</int> <int id="x">-2073</int> </object> <object id="bling_branchflowerbrush_white_2_1289850079136"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850079136</str> <int id="y">-794</int> <bool id="h_flip">true</bool> <int id="h">24</int> <int id="z">172</int> <int id="w">68</int> <int id="x">1927</int> </object> <object id="evenground_platform_short_1289434931044"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434931044</str> <int id="y">-90</int> <int id="h">67</int> <int id="z">110</int> <int id="w">365</int> <int id="x">-153</int> <int id="r">2</int> </object> <object id="bling_mushroom_king_bolete_1_1289852013790"> <str id="sprite_class">bling_mushroom_king_bolete_1</str> <str id="name">bling_mushroom_king_bolete_1_1289852013790</str> <int id="y">-107</int> <int id="h">54</int> <int id="z">287</int> <int id="w">57</int> <int id="x">2282</int> </object> <object id="bling_branch_flower_2_1289849264745"> <str id="sprite_class">bling_branch_flower_2</str> <str id="name">bling_branch_flower_2_1289849264745</str> <int id="y">-554</int> <int id="h">187</int> <int id="z">147</int> <int id="w">596</int> <int id="x">-194</int> </object> <object id="floating_platform_grass_02_1289849501997"> <str id="sprite_class">floating_platform_grass_02</str> <str id="name">floating_platform_grass_02_1289849501997</str> <int id="y">-629</int> <int id="h">126</int> <int id="z">156</int> <int id="w">307</int> <int id="x">1122</int> </object> <object id="bling_wildmushrooms_3_1289851131781"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851131781</str> <int id="y">-43</int> <int id="h">25</int> <int id="z">256</int> <int id="w">64</int> <int id="x">-956</int> </object> <object id="tree_stack_base_4_1289849081993"> <str id="sprite_class">tree_stack_base_4</str> <str id="name">tree_stack_base_4_1289849081993</str> <int id="y">-98</int> <int id="h">339</int> <int id="z">138</int> <int id="w">448</int> <int id="x">2796</int> </object> <object id="mushroom_amanita_1_1289850962746"> <str id="sprite_class">mushroom_amanita_1</str> <str id="name">mushroom_amanita_1_1289850962746</str> <int id="y">-136</int> <int id="h">105</int> <int id="z">229</int> <int id="w">78</int> <int id="x">-2790</int> </object> <object id="flower_bush_6_1289850691576"> <str id="sprite_class">flower_bush_6</str> <str id="name">flower_bush_6_1289850691576</str> <int id="y">-130</int> <int id="h">117</int> <int id="z">216</int> <int id="w">238</int> <int id="x">-2023</int> </object> <object id="platform_branch_a02_1289849129043"> <str id="sprite_class">platform_branch_a02</str> <str id="name">platform_branch_a02_1289849129043</str> <int id="y">-760</int> <int id="h">93</int> <int id="z">143</int> <int id="w">332</int> <int id="x">-342</int> </object> <object id="evenground_platform_short_1287091945904"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091945904</str> <int id="y">-86</int> <int id="h">67</int> <int id="z">80</int> <int id="w">365</int> <int id="x">2885</int> <int id="r">-4</int> </object> <object id="mushroom_funnel_1_1289852210825"> <str id="sprite_class">mushroom_funnel_1</str> <str id="name">mushroom_funnel_1_1289852210825</str> <int id="y">-761</int> <int id="h">75</int> <int id="z">302</int> <int id="w">51</int> <int id="x">-1350</int> </object> <object id="flower_bush_5_1289850543441"> <str id="sprite_class">flower_bush_5</str> <str id="name">flower_bush_5_1289850543441</str> <int id="y">-147</int> <int id="h">107</int> <int id="z">199</int> <int id="w">251</int> <int id="x">36</int> </object> <object id="groddle_cover_clover2_1289610870867"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-180</int> <int id="h">47</int> <int id="z">213</int> <int id="w">126</int> <int id="x">1384</int> </object> <object id="mushroom_amanita_1_1289852717080"> <str id="sprite_class">mushroom_amanita_1</str> <str id="name">mushroom_amanita_1_1289852717080</str> <int id="y">-108</int> <int id="h">71</int> <int id="z">327</int> <int id="w">53</int> <int id="x">-532</int> </object> <object id="trunk_ladder_2_1289850340289"> <str id="sprite_class">trunk_ladder_2</str> <str id="name">trunk_ladder_2_1289850340289</str> <int id="y">-754</int> <int id="h">70</int> <int id="z">192</int> <int id="w">62</int> <int id="x">1710</int> </object> <object id="evenground_platform_short_1282857420684"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857420684</str> <int id="y">-29</int> <int id="h">67</int> <int id="z">27</int> <int id="w">365</int> <int id="x">-1609</int> <int id="r">5</int> </object> <object id="wildflowers_bunch_1_1289851918856"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289851918856</str> <int id="y">-84</int> <int id="h">28</int> <int id="z">276</int> <int id="w">207</int> <int id="x">2010</int> </object> <object id="trunk_ladder_2_1289850351256"> <str id="sprite_class">trunk_ladder_2</str> <str id="name">trunk_ladder_2_1289850351256</str> <int id="y">-906</int> <int id="h">70</int> <int id="z">194</int> <int id="w">62</int> <int id="x">1714</int> </object> <object id="wildflowers_bunch_3_1289850158273"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289850158273</str> <int id="y">-696</int> <int id="h">29</int> <int id="z">184</int> <int id="w">277</int> <int id="x">-706</int> <int id="r">-7</int> </object> <object id="bling_mushroom_beech_1_1289851173981"> <str id="sprite_class">bling_mushroom_beech_1</str> <str id="name">bling_mushroom_beech_1_1289851173981</str> <int id="y">-104</int> <int id="h">45</int> <int id="z">261</int> <int id="w">62</int> <int id="x">2685</int> </object> <object id="evenground_platform_short_1289434896211"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434896211</str> <int id="y">-159</int> <int id="h">67</int> <int id="z">103</int> <int id="w">365</int> <int id="x">-1741</int> <int id="r">3</int> </object> <object id="wildflowers_bunch_1_1289850155087"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289850155087</str> <int id="y">-805</int> <int id="h">28</int> <int id="z">183</int> <int id="w">207</int> <int id="x">-1024</int> </object> <object id="bling_wildmushrooms_1_1339297840734"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289851105164</str> <int id="y">-104</int> <bool id="h_flip">true</bool> <int id="h">36</int> <int id="z">286</int> <int id="w">126</int> <int id="x">-1434</int> </object> <object id="bling_branchflowerbrush_white_2_1289850085270"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850085270</str> <int id="y">-574</int> <int id="h">29</int> <int id="z">174</int> <int id="w">83</int> <int id="x">1954</int> </object> <object id="evenground_platform_short_1289434905431"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434905431</str> <int id="y">-117</int> <int id="h">67</int> <int id="z">105</int> <int id="w">365</int> <int id="x">-1341</int> <int id="r">8</int> </object> <object id="bling_mushroom_king_bolete_1_1289852019357"> <str id="sprite_class">bling_mushroom_king_bolete_1</str> <str id="name">bling_mushroom_king_bolete_1_1289852019357</str> <int id="y">-128</int> <bool id="h_flip">true</bool> <int id="h">54</int> <int id="z">289</int> <int id="w">57</int> <int id="x">2606</int> </object> <object id="evenground_platform_short_1287091867346"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091867346</str> <int id="y">-91</int> <int id="h">67</int> <int id="z">67</int> <int id="w">365</int> <int id="x">-2118</int> <int id="r">-3</int> </object> <object id="bling_mushroom_bunch_ground_1_1289850812478"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289850812478</str> <int id="y">-127</int> <int id="h">42</int> <int id="z">220</int> <int id="w">161</int> <int id="x">1227</int> </object> <object id="trunk_ladder_2_1289850324172"> <str id="sprite_class">trunk_ladder_2</str> <str id="name">trunk_ladder_2_1289850324172</str> <int id="y">-484</int> <int id="h">74</int> <int id="z">189</int> <int id="w">66</int> <int id="x">1708</int> </object> <object id="evenground_platform_short_1289434965961"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434965961</str> <int id="y">-140</int> <int id="h">67</int> <int id="z">114</int> <int id="w">365</int> <int id="x">1128</int> <int id="r">-4</int> </object> <object id="bling_wildmushrooms_3_1289851137148"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851137148</str> <int id="y">-90</int> <int id="h">25</int> <int id="z">257</int> <int id="w">64</int> <int id="x">184</int> </object> <object id="bling_wildmushrooms_2_1289852177825"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289852177825</str> <int id="y">-784</int> <int id="h">25</int> <int id="z">296</int> <int id="w">72</int> <int id="x">2190</int> </object> <object id="floating_platform_grass_01_1289849473247"> <str id="sprite_class">floating_platform_grass_01</str> <str id="name">floating_platform_grass_01_1289849473247</str> <int id="y">-682</int> <int id="h">121</int> <int id="z">152</int> <int id="w">394</int> <int id="x">-1416</int> </object> <object id="bling_branchflowerbrush_white_2_1289850076486"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850076486</str> <int id="y">-800</int> <int id="h">29</int> <int id="z">171</int> <int id="w">83</int> <int id="x">1848</int> </object> <object id="bling_wildmushrooms_2_1289851039847"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289851039847</str> <int id="y">-66</int> <int id="h">25</int> <int id="z">236</int> <int id="w">72</int> <int id="x">-853</int> </object> <object id="bling_wildmushrooms_2_1289850571808"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289850571808</str> <int id="y">-40</int> <bool id="h_flip">true</bool> <int id="h">25</int> <int id="z">204</int> <int id="w">72</int> <int id="x">305</int> </object> <object id="flower_bush_3_1289851194165"> <str id="sprite_class">flower_bush_3</str> <str id="name">flower_bush_3_1289851194165</str> <int id="y">-113</int> <int id="h">102</int> <int id="z">263</int> <int id="w">201</int> <int id="x">2286</int> </object> <object id="groddle_cover_clover2_1289852725764"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-109</int> <int id="h">47</int> <int id="z">328</int> <int id="w">126</int> <int id="x">-397</int> </object> <object id="evenground_platform_short_1289435094134"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289435094134</str> <int id="y">-68</int> <int id="h">67</int> <int id="z">121</int> <int id="w">365</int> <int id="x">2592</int> <int id="r">-4</int> </object> <object id="trunk_ladder_2_1289850315822"> <str id="sprite_class">trunk_ladder_2</str> <str id="name">trunk_ladder_2_1289850315822</str> <int id="y">-204</int> <int id="h">81</int> <int id="z">186</int> <int id="w">72</int> <int id="x">1714</int> </object> <object id="wildflowers_bunch_1_1289851805709"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289851805709</str> <int id="y">-31</int> <int id="h">28</int> <int id="z">270</int> <int id="w">207</int> <int id="x">521</int> </object> <object id="bling_branchflowerbrush_white_2_1289850099487"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850099487</str> <int id="y">-632</int> <int id="h">29</int> <int id="z">178</int> <int id="w">83</int> <int id="x">2618</int> </object> <object id="groddle_cover_clover2_1289436247902"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-101</int> <bool id="h_flip">true</bool> <int id="h">47</int> <int id="z">201</int> <int id="w">126</int> <int id="x">203</int> <int id="r">2</int> </object> <object id="bling_wildmushrooms_3_1289851123414"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851123414</str> <int id="y">-111</int> <int id="h">25</int> <int id="z">253</int> <int id="w">64</int> <int id="x">-1611</int> </object> <object id="evenground_platform_short_1289434878393"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434878393</str> <int id="y">-113</int> <int id="h">67</int> <int id="z">100</int> <int id="w">365</int> <int id="x">-2480</int> <int id="r">2</int> </object> <object id="mushroom_aqua_2_1289852215192"> <str id="sprite_class">mushroom_aqua_2</str> <str id="name">mushroom_aqua_2_1289852215192</str> <int id="y">-761</int> <int id="h">69</int> <int id="z">303</int> <int id="w">37</int> <int id="x">-1377</int> </object> <object id="wildflowers_bunch_1_1289851790871"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289851790871</str> <int id="y">-71</int> <int id="h">28</int> <int id="z">266</int> <int id="w">207</int> <int id="x">-2679</int> </object> <object id="platform_branch_a01_1289849538591"> <str id="sprite_class">platform_branch_a01</str> <str id="name">platform_branch_a01_1289849538591</str> <int id="y">-752</int> <int id="h">116</int> <int id="z">158</int> <int id="w">261</int> <int id="x">1856</int> </object> <object id="bling_branchflowerbrush_white_1_1289850041886"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289850041886</str> <int id="y">-797</int> <int id="h">64</int> <int id="z">166</int> <int id="w">103</int> <int id="x">-378</int> <int id="r">10</int> </object> <object id="mushroom_amanita_1_1289851982119"> <str id="sprite_class">mushroom_amanita_1</str> <str id="name">mushroom_amanita_1_1289851982119</str> <int id="y">-62</int> <int id="h">103</int> <int id="z">282</int> <int id="w">77</int> <int id="x">-717</int> <int id="r">3</int> </object> <object id="bling_wildmushrooms_1_1339297840735"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289851103381</str> <int id="y">-121</int> <int id="h">27</int> <int id="z">285</int> <int id="w">92</int> <int id="x">-1493</int> </object> <object id="bling_wildmushrooms_1_1289853534761"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289853534761</str> <int id="y">-78</int> <int id="h">39</int> <int id="z">333</int> <int id="w">136</int> <int id="x">2089</int> </object> <object id="bling_wildmushrooms_3_1289851046313"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851046313</str> <int id="y">-102</int> <int id="h">25</int> <int id="z">239</int> <int id="w">64</int> <int id="x">796</int> </object> <object id="bling_branch_pinecone_1_1289849376229"> <str id="sprite_class">bling_branch_pinecone_1</str> <str id="name">bling_branch_pinecone_1_1289849376229</str> <int id="y">-736</int> <int id="h">201</int> <int id="z">148</int> <int id="w">351</int> <int id="x">132</int> </object> <object id="tree_stack_trunk_1289849064976"> <str id="sprite_class">tree_stack_trunk</str> <str id="name">tree_stack_trunk_1289849064976</str> <int id="y">-524</int> <int id="h">701</int> <int id="z">136</int> <int id="w">88</int> <int id="x">-2336</int> </object> <object id="groddle_cover_clover2_1289852729630"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-86</int> <int id="h">47</int> <int id="z">330</int> <int id="w">126</int> <int id="x">-481</int> </object> <object id="groddle_cover_clover2_1289850969079"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-111</int> <int id="h">47</int> <int id="z">230</int> <int id="w">126</int> <int id="x">-2730</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852596029"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852596029</str> <int id="y">-165</int> <int id="h">42</int> <int id="z">313</int> <int id="w">161</int> <int id="x">1339</int> </object> <object id="groddle_cover_clover2_1289853606461"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-46</int> <int id="h">47</int> <int id="z">335</int> <int id="w">126</int> <int id="x">-706</int> </object> <object id="evenground_platform_short_1289434888397"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434888397</str> <int id="y">-155</int> <int id="h">67</int> <int id="z">102</int> <int id="w">365</int> <int id="x">-1970</int> <int id="r">-2</int> </object> <object id="bling_wildmushrooms_3_1289851038230"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851038230</str> <int id="y">-32</int> <int id="h">25</int> <int id="z">235</int> <int id="w">64</int> <int id="x">-820</int> </object> <object id="trunk_ladder_2_1289850321372"> <str id="sprite_class">trunk_ladder_2</str> <str id="name">trunk_ladder_2_1289850321372</str> <int id="y">-392</int> <bool id="h_flip">true</bool> <int id="h">70</int> <int id="z">188</int> <int id="w">62</int> <int id="x">1706</int> </object> <object id="evenground_platform_short_1289434957994"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434957994</str> <int id="y">-102</int> <int id="h">67</int> <int id="z">112</int> <int id="w">365</int> <int id="x">639</int> <int id="r">-2</int> </object> <object id="flower_bush_6_1289850896062"> <str id="sprite_class">flower_bush_6</str> <str id="name">flower_bush_6_1289850896062</str> <int id="y">-111</int> <int id="h">117</int> <int id="z">224</int> <int id="w">238</int> <int id="x">-1204</int> <int id="r">3</int> </object> <object id="wildflowers_bunch_1_1289851799188"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289851799188</str> <int id="y">-79</int> <int id="h">28</int> <int id="z">269</int> <int id="w">207</int> <int id="x">-2046</int> </object> <object id="bling_branchflowerbrush_white_2_1289850073769"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850073769</str> <int id="y">-897</int> <int id="h">29</int> <int id="z">170</int> <int id="w">83</int> <int id="x">1534</int> </object> <object id="evenground_platform_short_1282859095284"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282859095284</str> <int id="y">-39</int> <int id="h">67</int> <int id="z">60</int> <int id="w">365</int> <int id="x">2843</int> <int id="r">2</int> </object> <object id="mushroom_funnel_2_1289852312967"> <str id="sprite_class">mushroom_funnel_2</str> <str id="name">mushroom_funnel_2_1289852312967</str> <int id="y">-169</int> <int id="h">116</int> <int id="z">304</int> <int id="w">95</int> <int id="x">-1902</int> </object> <object id="evenground_platform_short_1287091870263"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091870263</str> <int id="y">-97</int> <int id="h">67</int> <int id="z">68</int> <int id="w">365</int> <int id="x">-1880</int> <int id="r">2</int> </object> <object id="evenground_platform_short_1287091962389"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091962389</str> <int id="y">-68</int> <int id="h">67</int> <int id="z">81</int> <int id="w">365</int> <int id="x">2715</int> <int id="r">-4</int> </object> <object id="wildflowers_yellow_1_1289853815974"> <str id="sprite_class">wildflowers_yellow_1</str> <str id="name">wildflowers_yellow_1_1289853815974</str> <int id="y">-839</int> <int id="h">18</int> <int id="z">337</int> <int id="w">83</int> <int id="x">867</int> </object> <object id="evenground_platform_short_1282859059100"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282859059100</str> <int id="y">5</int> <int id="h">67</int> <int id="z">57</int> <int id="w">365</int> <int id="x">2308</int> </object> <object id="bling_wildmushrooms_2_1289851036180"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289851036180</str> <int id="y">-51</int> <int id="h">25</int> <int id="z">234</int> <int id="w">72</int> <int id="x">-795</int> </object> <object id="evenground_platform_short_1289434884944"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434884944</str> <int id="y">-121</int> <int id="h">67</int> <int id="z">101</int> <int id="w">365</int> <int id="x">-2236</int> <int id="r">-7</int> </object> <object id="evenground_platform_short_1287092093008"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092093008</str> <int id="y">-29</int> <int id="h">67</int> <int id="z">87</int> <int id="w">365</int> <int id="x">-2326</int> <int id="r">-4</int> </object> <object id="bling_wildmushrooms_3_1289851125714"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851125714</str> <int id="y">-75</int> <int id="h">40</int> <int id="z">254</int> <int id="w">104</int> <int id="x">-1286</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852589279"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852589279</str> <int id="y">-104</int> <int id="h">42</int> <int id="z">312</int> <int id="w">161</int> <int id="x">2413</int> </object> <object id="evenground_platform_short_1287092075699"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092075699</str> <int id="y">-73</int> <int id="h">67</int> <int id="z">86</int> <int id="w">365</int> <int id="x">-2304</int> <int id="r">-7</int> </object> <object id="flower_bush_5_1289850533576"> <str id="sprite_class">flower_bush_5</str> <str id="name">flower_bush_5_1289850533576</str> <int id="y">-134</int> <int id="h">107</int> <int id="z">197</int> <int id="w">251</int> <int id="x">490</int> </object> <object id="bling_treehole_1_1289850803238"> <str id="sprite_class">bling_treehole_1</str> <str id="name">bling_treehole_1_1289850803238</str> <int id="y">-244</int> <int id="h">148</int> <int id="z">219</int> <int id="w">105</int> <int id="x">2805</int> </object> <object id="bling_wildmushrooms_2_1289851060263"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289851060263</str> <int id="y">-104</int> <bool id="h_flip">true</bool> <int id="h">25</int> <int id="z">243</int> <int id="w">72</int> <int id="x">1841</int> </object> <object id="evenground_platform_short_1287092325659"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092325659</str> <int id="y">-128</int> <int id="h">67</int> <int id="z">96</int> <int id="w">365</int> <int id="x">-1805</int> <int id="r">-1</int> </object> <object id="evenground_platform_short_1282857492497"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857492497</str> <int id="y">21</int> <int id="h">67</int> <int id="z">38</int> <int id="w">365</int> <int id="x">227</int> <int id="r">5</int> </object> <object id="evenground_platform_short_1282859104638"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282859104638</str> <int id="y">-40</int> <int id="h">67</int> <int id="z">61</int> <int id="w">365</int> <int id="x">2707</int> </object> <object id="evenground_platform_short_1287091964681"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091964681</str> <int id="y">-46</int> <int id="h">67</int> <int id="z">82</int> <int id="w">365</int> <int id="x">2418</int> <int id="r">-4</int> </object> <object id="bling_branch_flower_2_1289849156942"> <str id="sprite_class">bling_branch_flower_2</str> <str id="name">bling_branch_flower_2_1289849156942</str> <int id="y">-822</int> <int id="h">187</int> <int id="z">146</int> <int id="w">596</int> <int id="x">-2380</int> </object> <object id="tree_stack_base_1289849023242"> <str id="sprite_class">tree_stack_base</str> <str id="name">tree_stack_base_1289849023242</str> <int id="y">-46</int> <int id="h">410</int> <int id="z">132</int> <int id="w">229</int> <int id="x">310</int> </object> <object id="evenground_platform_short_1287092108844"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092108844</str> <int id="y">-103</int> <int id="h">67</int> <int id="z">91</int> <int id="w">365</int> <int id="x">-2778</int> <int id="r">6</int> </object> <object id="evenground_platform_short_1289434925359"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434925359</str> <int id="y">-88</int> <int id="h">67</int> <int id="z">109</int> <int id="w">365</int> <int id="x">-431</int> <int id="r">-1</int> </object> <object id="evenground_platform_short_1282858939582"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858939582</str> <int id="y">23</int> <int id="h">67</int> <int id="z">53</int> <int id="w">365</int> <int id="x">2271</int> <int id="r">1</int> </object> <object id="evenground_platform_short_1289435023686"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289435023686</str> <int id="y">-105</int> <int id="h">67</int> <int id="z">118</int> <int id="w">365</int> <int id="x">2112</int> <int id="r">7</int> </object> <object id="evenground_platform_short_1289434961178"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434961178</str> <int id="y">-111</int> <int id="h">67</int> <int id="z">113</int> <int id="w">365</int> <int id="x">901</int> <int id="r">-2</int> </object> <object id="evenground_platform_short_1282858053224"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858053224</str> <int id="y">-30</int> <int id="h">67</int> <int id="z">51</int> <int id="w">365</int> <int id="x">465</int> <int id="r">1</int> </object> <object id="evenground_platform_short_1282857832705"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857832705</str> <int id="y">-12</int> <int id="h">67</int> <int id="z">47</int> <int id="w">365</int> <int id="x">-849</int> <int id="r">-2</int> </object> <object id="groddle_grass_2_1289853842491"> <str id="sprite_class">groddle_grass_2</str> <str id="name">groddle_</str> <int id="y">-824</int> <int id="h">65</int> <int id="z">338</int> <int id="w">81</int> <int id="x">-956</int> </object> <object id="evenground_platform_short_1282858952632"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858952632</str> <int id="y">-10</int> <int id="h">67</int> <int id="z">55</int> <int id="w">365</int> <int id="x">2692</int> <int id="r">-3</int> </object> <object id="evenground_platform_short_1282857430608"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857430608</str> <int id="y">-19</int> <int id="h">67</int> <int id="z">28</int> <int id="w">365</int> <int id="x">-1400</int> <int id="r">8</int> </object> <object id="mushroom_aqua_1_1289852065641"> <str id="sprite_class">mushroom_aqua_1</str> <str id="name">mushroom_aqua_1_1289852065641</str> <int id="y">-100</int> <int id="h">81</int> <int id="z">292</int> <int id="w">40</int> <int id="x">595</int> </object> <object id="evenground_platform_short_1287091884803"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091884803</str> <int id="y">-71</int> <int id="h">67</int> <int id="z">70</int> <int id="w">365</int> <int id="x">-1442</int> <int id="r">8</int> </object> <object id="groddle_cover_clover1_1289436201658"> <str id="sprite_class">groddle_cover_clover1</str> <str id="name">groddle_</str> <int id="y">-166</int> <int id="h">78</int> <int id="z">123</int> <int id="w">324</int> <int id="x">-1815</int> </object> <object id="evenground_platform_short_1287092098851"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092098851</str> <int id="y">-3</int> <int id="h">57</int> <int id="z">89</int> <int id="w">363</int> <int id="x">-2611</int> <int id="r">-1</int> </object> <object id="evenground_platform_short_1287091918397"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091918397</str> <int id="y">-92</int> <int id="h">67</int> <int id="z">74</int> <int id="w">365</int> <int id="x">1122</int> <int id="r">-6</int> </object> <object id="groddle_cover_clover2_1289850972646"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">-118</int> <int id="h">47</int> <int id="z">231</int> <int id="w">126</int> <int id="x">-1972</int> </object> <object id="pinecluster_mask_1_1289851963040"> <str id="sprite_class">pinecluster_mask_1</str> <str id="name">pinecluster_mask_1_1289851963040</str> <int id="y">-146</int> <int id="h">111</int> <int id="z">280</int> <int id="w">286</int> <int id="x">2000</int> <int id="r">3</int> </object> <object id="evenground_platform_short_1287091940985"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091940985</str> <int id="y">-55</int> <int id="h">67</int> <int id="z">79</int> <int id="w">365</int> <int id="x">2576</int> <int id="r">-4</int> </object> <object id="evenground_platform_short_1287091925184"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091925184</str> <int id="y">-80</int> <int id="h">67</int> <int id="z">75</int> <int id="w">365</int> <int id="x">1460</int> <int id="r">-2</int> </object> <object id="bling_mushroom_oyster_1_1289851158098"> <str id="sprite_class">bling_mushroom_oyster_1</str> <str id="name">bling_mushroom_oyster_1_1289851158098</str> <int id="y">-105</int> <int id="h">101</int> <int id="z">259</int> <int id="w">92</int> <int id="x">-153</int> </object> <object id="bling_branchflowerbrush_white_2_1289850022371"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850022371</str> <int id="y">-658</int> <int id="h">29</int> <int id="z">163</int> <int id="w">83</int> <int id="x">-2564</int> </object> <object id="evenground_platform_short_1289435018411"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289435018411</str> <int id="y">-130</int> <int id="h">67</int> <int id="z">117</int> <int id="w">365</int> <int id="x">1849</int> <int id="r">8</int> </object> <object id="evenground_platform_short_1287092320332"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287092320332</str> <int id="y">-115</int> <int id="h">67</int> <int id="z">95</int> <int id="w">365</int> <int id="x">-1569</int> <int id="r">3</int> </object> <object id="evenground_platform_short_1285784418979"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1285784418979</str> <int id="y">-113</int> <int id="h">57</int> <int id="z">64</int> <int id="w">363</int> <int id="x">-2938</int> <int id="r">7</int> </object> <object id="evenground_platform_short_1287091879715"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1287091879715</str> <int id="y">-83</int> <int id="h">67</int> <int id="z">69</int> <int id="w">365</int> <int id="x">-1645</int> <int id="r">7</int> </object> <object id="bling_mushroom_king_bolete_1_1289850631792"> <str id="sprite_class">bling_mushroom_king_bolete_1</str> <str id="name">bling_mushroom_king_bolete_1_1289850631792</str> <int id="y">-126</int> <int id="h">54</int> <int id="z">210</int> <int id="w">57</int> <int id="x">412</int> </object> <object id="bush_2_1289610848498"> <str id="sprite_class">bush_2</str> <str id="name">bush_2_1289610848498</str> <int id="y">-86</int> <int id="h">76</int> <int id="z">126</int> <int id="w">196</int> <int id="x">-900</int> </object> <object id="evenground_platform_short_1282858252402"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282858252402</str> <int id="y">-5</int> <int id="h">67</int> <int id="z">52</int> <int id="w">365</int> <int id="x">1866</int> <int id="r">3</int> </object> <object id="flower_bush_6_1289850885362"> <str id="sprite_class">flower_bush_6</str> <str id="name">flower_bush_6_1289850885362</str> <int id="y">-144</int> <int id="h">117</int> <int id="z">223</int> <int id="w">238</int> <int id="x">-1346</int> <int id="r">4</int> </object> <object id="evenground_platform_short_1282859286869"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282859286869</str> <int id="y">-65</int> <int id="h">67</int> <int id="z">62</int> <int id="w">365</int> <int id="x">-2114</int> <int id="r">-3</int> </object> <object id="bling_branchflowerbrush_white_2_1289850088953"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289850088953</str> <int id="y">-864</int> <int id="h">29</int> <int id="z">175</int> <int id="w">83</int> <int id="x">2606</int> </object> <object id="evenground_platform_short_1282857870889"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857870889</str> <int id="y">-31</int> <int id="h">67</int> <int id="z">48</int> <int id="w">365</int> <int id="x">-665</int> <int id="r">2</int> </object> <object id="evenground_platform_short_1289434874759"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1289434874759</str> <int id="y">-134</int> <int id="h">67</int> <int id="z">99</int> <int id="w">365</int> <int id="x">-2685</int> <int id="r">6</int> </object> <object id="trunk_ladder_2_1289850319389"> <str id="sprite_class">trunk_ladder_2</str> <str id="name">trunk_ladder_2_1289850319389</str> <int id="y">-298</int> <int id="h">70</int> <int id="z">187</int> <int id="w">62</int> <int id="x">1706</int> </object> <object id="wildflowers_bunch_1_1289850362922"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289850362922</str> <int id="y">-864</int> <int id="h">28</int> <int id="z">195</int> <int id="w">207</int> <int id="x">704</int> </object> <object id="platform_branch_a02_1289849547947"> <str id="sprite_class">platform_branch_a02</str> <str id="name">platform_branch_a02_1289849547947</str> <int id="y">-526</int> <bool id="h_flip">true</bool> <int id="h">93</int> <int id="z">160</int> <int id="w">332</int> <int id="x">1896</int> </object> <object id="evenground_platform_short_1282857958606"> <str id="sprite_class">evenground_platform_short</str> <str id="name">evenground_platform_short_1282857958606</str> <int id="y">-46</int> <int id="h">67</int> <int id="z">49</int> <int id="w">365</int> <int id="x">-307</int> <int id="r">3</int> </object> <object id="mushroom_funnel_1_1289851993357"> <str id="sprite_class">mushroom_funnel_1</str> <str id="name">mushroom_funnel_1_1289851993357</str> <int id="y">-140</int> <int id="h">93</int> <int id="z">283</int> <int id="w">63</int> <int id="x">-1421</int> </object> <object id="platform_branch_a02_1289849779483"> <str id="sprite_class">platform_branch_a02</str> <str id="name">platform_branch_a02_1289849779483</str> <int id="y">-794</int> <int id="h">93</int> <int id="z">161</int> <int id="w">332</int> <int id="x">2608</int> </object> <object id="flower_bush_7_1289850648992"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289850648992</str> <int id="y">-169</int> <int id="h">99</int> <int id="z">212</int> <int id="w">158</int> <int id="x">1167</int> </object> <object id="wildflowers_bunch_1_1289851810755"> <str id="sprite_class">wildflowers_bunch_1</str> <str id="name">wildflowers_bunch_1_1289851810755</str> <int id="y">-100</int> <int id="h">28</int> <int id="z">272</int> <int id="w">207</int> <int id="x">1540</int> </object> <object id="bling_wildmushrooms_2_1289851041463"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289851041463</str> <int id="y">-71</int> <int id="h">36</int> <int id="z">237</int> <int id="w">104</int> <int id="x">-617</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852618612"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852618612</str> <int id="y">-100</int> <int id="h">42</int> <int id="z">316</int> <int id="w">161</int> <int id="x">442</int> </object> </object> <object id="platform_lines"> <object id="_pl1289849614213"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-816</int> <int id="x">132</int> </object> <object id="start"> <int id="y">-802</int> <int id="x">6</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858901363"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-32</int> <int id="x">413</int> </object> <object id="start"> <int id="y">-15</int> <int id="x">209</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849601420"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-836</int> <int id="x">-150</int> </object> <object id="start"> <int id="y">-826</int> <int id="x">-424</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849598898"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-826</int> <int id="x">-424</int> </object> <object id="start"> <int id="y">-820</int> <int id="x">-468</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849561351"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-868</int> <int id="x">1738</int> </object> <object id="start"> <int id="y">-870</int> <int id="x">1710</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289853874370"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-454</int> <int id="x">-2208</int> </object> <object id="start"> <int id="y">-465</int> <int id="x">-2302</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849904315"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-874</int> <int id="x">-2302</int> </object> <object id="start"> <int id="y">-876</int> <int id="x">-2338</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849558780"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-592</int> <int id="x">2000</int> </object> <object id="start"> <int id="y">-606</int> <int id="x">1722</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849578272"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-814</int> <int id="x">-912</int> </object> <object id="start"> <int id="y">-812</int> <int id="x">-1134</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849583210"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-772</int> <int id="x">-1420</int> </object> <object id="start"> <int id="y">-772</int> <int id="x">-1576</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858880574"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-43</int> <int id="x">-1163</int> </object> <object id="start"> <int id="y">-102</int> <int id="x">-1514</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858899130"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-15</int> <int id="x">209</int> </object> <object id="start"> <int id="y">-49</int> <int id="x">-59</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858922208"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-82</int> <int id="x">1971</int> </object> <object id="start"> <int id="y">-112</int> <int id="x">1656</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849569475"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-864</int> <int id="x">742</int> </object> <object id="start"> <int id="y">-870</int> <int id="x">584</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858888439"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-64</int> <int id="x">-436</int> </object> <object id="start"> <int id="y">-50</int> <int id="x">-561</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858866518"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-87</int> <int id="x">-2167</int> </object> <object id="start"> <int id="y">-59</int> <int id="x">-2452</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1287092017420"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-112</int> <int id="x">1656</int> </object> <object id="start"> <int id="y">-122</int> <int id="x">1449</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849589622"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-476</int> <int id="x">-326</int> </object> <object id="start"> <int id="y">-498</int> <int id="x">-428</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849574780"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-724</int> <int id="x">-646</int> </object> <object id="start"> <int id="y">-672</int> <int id="x">-814</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849617722"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-906</int> <int id="x">420</int> </object> <object id="start"> <int id="y">-968</int> <int id="x">370</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849590791"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-512</int> <int id="x">-218</int> </object> <object id="start"> <int id="y">-476</int> <int id="x">-326</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849564847"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-804</int> <int id="x">1932</int> </object> <object id="start"> <int id="y">-810</int> <int id="x">1792</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849570597"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-812</int> <int id="x">928</int> </object> <object id="start"> <int id="y">-864</int> <int id="x">742</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849924137"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-684</int> <int id="x">2804</int> </object> <object id="start"> <int id="y">-682</int> <int id="x">2772</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858869284"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-106</int> <int id="x">-1980</int> </object> <object id="start"> <int id="y">-87</int> <int id="x">-2167</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282859119893"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-75</int> <int id="x">2754</int> </object> <object id="start"> <int id="y">-17</int> <int id="x">2401</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849596114"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-712</int> <int id="x">-120</int> </object> <object id="start"> <int id="y">-716</int> <int id="x">-180</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849918990"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-872</int> <int id="x">2800</int> </object> <object id="start"> <int id="y">-858</int> <int id="x">2482</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849575638"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-724</int> <int id="x">-492</int> </object> <object id="start"> <int id="y">-724</int> <int id="x">-646</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849902474"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-576</int> <int id="x">-2192</int> </object> <object id="start"> <int id="y">-622</int> <int id="x">-2280</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858871894"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-102</int> <int id="x">-1514</int> </object> <object id="start"> <int id="y">-106</int> <int id="x">-1980</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282859121221"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-83</int> <int id="x">2999</int> </object> <object id="start"> <int id="y">-75</int> <int id="x">2754</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282859117412"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-15</int> <int id="x">2359</int> </object> <object id="start"> <int id="y">-44</int> <int id="x">2243</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849905833"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-822</int> <int id="x">-2248</int> </object> <object id="start"> <int id="y">-874</int> <int id="x">-2302</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849566755"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-903</int> <int id="x">1696</int> </object> <object id="start"> <int id="y">-889</int> <int id="x">1406</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858894177"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-49</int> <int id="x">-59</int> </object> <object id="start"> <int id="y">-64</int> <int id="x">-436</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849901173"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-622</int> <int id="x">-2280</int> </object> <object id="start"> <int id="y">-618</int> <int id="x">-2378</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849922755"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-682</int> <int id="x">2772</int> </object> <object id="start"> <int id="y">-634</int> <int id="x">2692</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858862546"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-60</int> <int id="x">-2584</int> </object> <object id="start"> <int id="y">-146</int> <int id="x">-2999</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849898072"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-526</int> <int id="x">-2510</int> </object> <object id="start"> <int id="y">-516</int> <int id="x">-2608</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289852241682"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-577</int> <int id="x">283</int> </object> <object id="start"> <int id="y">-533</int> <int id="x">107</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849899712"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-618</int> <int id="x">-2378</int> </object> <object id="start"> <int id="y">-526</int> <int id="x">-2510</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849907258"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-816</int> <int id="x">-2088</int> </object> <object id="start"> <int id="y">-822</int> <int id="x">-2248</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858886444"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-50</int> <int id="x">-561</int> </object> <object id="start"> <int id="y">-24</int> <int id="x">-739</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849568106"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-730</int> <int id="x">1232</int> </object> <object id="start"> <int id="y">-730</int> <int id="x">1012</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1287092262630"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-108</int> <int id="x">1162</int> </object> <object id="start"> <int id="y">-67</int> <int id="x">903</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858913168"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-64</int> <int id="x">767</int> </object> <object id="start"> <int id="y">-32</int> <int id="x">413</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849921028"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-634</int> <int id="x">2692</int> </object> <object id="start"> <int id="y">-622</int> <int id="x">2540</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858865138"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-59</int> <int id="x">-2452</int> </object> <object id="start"> <int id="y">-60</int> <int id="x">-2584</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849895903"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-678</int> <int id="x">-2346</int> </object> <object id="start"> <int id="y">-656</int> <int id="x">-2650</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1287092013320"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-67</int> <int id="x">903</int> </object> <object id="start"> <int id="y">-64</int> <int id="x">767</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849616413"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-968</int> <int id="x">370</int> </object> <object id="start"> <int id="y">-968</int> <int id="x">296</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849615505"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-968</int> <int id="x">296</int> </object> <object id="start"> <int id="y">-816</int> <int id="x">132</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849595277"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-716</int> <int id="x">-180</int> </object> <object id="start"> <int id="y">-636</int> <int id="x">-286</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849597024"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-668</int> <int id="x">-2</int> </object> <object id="start"> <int id="y">-712</int> <int id="x">-120</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849592264"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-516</int> <int id="x">-160</int> </object> <object id="start"> <int id="y">-512</int> <int id="x">-218</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849594244"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-636</int> <int id="x">-286</int> </object> <object id="start"> <int id="y">-598</int> <int id="x">-416</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282859070795"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-44</int> <int id="x">2243</int> </object> <object id="start"> <int id="y">-82</int> <int id="x">1971</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289852242582"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-561</int> <int id="x">366</int> </object> <object id="start"> <int id="y">-577</int> <int id="x">283</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289852170580"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-775</int> <int id="x">2315</int> </object> <object id="start"> <int id="y">-772</int> <int id="x">2092</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1287092294428"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-17</int> <int id="x">2401</int> </object> <object id="start"> <int id="y">-15</int> <int id="x">2359</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1287092014390"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-122</int> <int id="x">1449</int> </object> <object id="start"> <int id="y">-108</int> <int id="x">1162</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1282858885209"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-17</int> <int id="x">-977</int> </object> <object id="start"> <int id="y">-43</int> <int id="x">-1163</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1287092236800"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-24</int> <int id="x">-739</int> </object> <object id="start"> <int id="y">-17</int> <int id="x">-977</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849563160"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-810</int> <int id="x">1792</int> </object> <object id="start"> <int id="y">-868</int> <int id="x">1738</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849584482"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-718</int> <int id="x">-1270</int> </object> <object id="start"> <int id="y">-772</int> <int id="x">-1420</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289849586242"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-832</int> <int id="x">-1718</int> </object> <object id="start"> <int id="y">-836</int> <int id="x">-1948</int> </object> <int id="platform_item_perm">-1</int> </object> <object id="_pl1289852244261"> <int id="platform_pc_perm">-1</int> <object id="end"> <int id="y">-462</int> <int id="x">533</int> </object> <object id="start"> <int id="y">-561</int> <int id="x">366</int> </object> <int id="platform_item_perm">-1</int> </object> </object> <object id="signposts"> <object id="signpost_2"> <int id="w">150</int> <int id="y">-125</int> <object id="connects"> <object id="0"> <int id="y">-130</int> <str id="mote_id">9</str> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1337366741.swf</str> <int id="x">-2802</int> <str id="hub_id">58</str> <objref id="target" tsid="LCR11DNA3EL10TD" label="Briarset Croft"/> </object> <object id="1"> <int id="y">-74</int> <str id="mote_id">9</str> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1337366741.swf</str> <int id="x">2842</int> <str id="hub_id">58</str> <objref id="target" tsid="LCRVT5V0BDO1HLF" label="Welldale"/> </object> </object> <int id="h">200</int> <int id="x">-2805</int> </object> <object id="signpost_1"> <int id="w">150</int> <int id="y">-82</int> <object id="connects"> <object id="0"> <int id="y">-92</int> <str id="mote_id">9</str> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1337366741.swf</str> <int id="x">-2120</int> <str id="hub_id">58</str> <objref id="target" tsid="LCR1985LIRK12N4" label="Tillymurry Hurry"/> </object> </object> <int id="h">200</int> <int id="x">2660</int> </object> </object> <int id="z">0</int> <int id="w">6000</int> <object id="doors"> </object> <object id="targets"> </object> <object id="ladders"> <object id="ladder_1289850194641"> <int id="w">50</int> <int id="y">-114</int> <int id="x">1710</int> <int id="h">850</int> </object> </object> <object id="boxes"> </object> <int id="h">1000</int> <object id="walls"> </object> </object> <object id="bg_2"> <int id="w">4700</int> <str id="name">bg_2</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-13</int> </object> <object id="saturation"> </object> <object id="blur"> </object> <object id="contrast"> </object> <object id="tintAmount"> </object> </object> <object id="decos"> <object id="bling_mushroom_bunch_ground_1_1289852566940"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852566940</str> <int id="y">706</int> <int id="h">8</int> <int id="z">29</int> <int id="w">30</int> <int id="x">3143</int> </object> <object id="bling_wildmushrooms_3_1289854061727"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289854061727</str> <int id="y">703</int> <bool id="h_flip">true</bool> <int id="h">14</int> <int id="z">39</int> <int id="w">35</int> <int id="x">1721</int> </object> <object id="wildflowers_purple_2_1289854082261"> <str id="sprite_class">wildflowers_purple_2</str> <str id="name">wildflowers_purple_2_1289854082261</str> <int id="y">729</int> <int id="h">7</int> <int id="z">41</int> <int id="w">36</int> <int id="x">1683</int> </object> <object id="wildflowers_bunch_2_1289851828688"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289851828688</str> <int id="y">720</int> <int id="h">11</int> <int id="z">20</int> <int id="w">84</int> <int id="x">2651</int> </object> <object id="wildflowers_bunch_2_1289851836630"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289851836630</str> <int id="y">741</int> <int id="h">11</int> <int id="z">22</int> <int id="w">84</int> <int id="x">2603</int> </object> <object id="bush_3_1289851944040"> <str id="sprite_class">bush_3</str> <str id="name">bush_3_1289851944040</str> <int id="y">708</int> <int id="h">34</int> <int id="z">23</int> <int id="w">95</int> <int id="x">1858</int> </object> <object id="flower_bush_7_1289853986499"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289853986499</str> <int id="y">753</int> <int id="h">26</int> <int id="z">33</int> <int id="w">41</int> <int id="x">2338</int> </object> <object id="flower_bush_4_1289852127297"> <str id="sprite_class">flower_bush_4</str> <str id="name">flower_bush_4_1289852127297</str> <int id="y">676</int> <int id="h">40</int> <int id="z">25</int> <int id="w">33</int> <int id="x">1669</int> </object> <object id="mound_dirt_4_1289610467395"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610467395</str> <int id="y">814</int> <int id="h">190</int> <int id="z">6</int> <int id="w">499</int> <int id="x">24</int> </object> <object id="tree_group_bg2_1_1289851230601"> <str id="sprite_class">tree_group_bg2_1</str> <str id="name">tree_group_bg2_1_1289851230601</str> <int id="y">875</int> <int id="h">533</int> <int id="z">15</int> <int id="w">406</int> <int id="x">4398</int> </object> <object id="tree_group_bg2_1_1289851238867"> <str id="sprite_class">tree_group_bg2_1</str> <str id="name">tree_group_bg2_1_1289851238867</str> <int id="y">923</int> <bool id="h_flip">true</bool> <int id="h">489</int> <int id="z">16</int> <int id="w">372</int> <int id="x">4090</int> </object> <object id="mound_dirt_4_1289610469078"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610469078</str> <int id="y">812</int> <int id="h">190</int> <int id="z">7</int> <int id="w">499</int> <int id="x">284</int> </object> <object id="flower_bush_7_1289853993542"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289853993542</str> <int id="y">763</int> <int id="h">27</int> <int id="z">34</int> <int id="w">44</int> <int id="x">2404</int> </object> <object id="wildflowers_bunch_3_1289854092245"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289854092245</str> <int id="y">748</int> <int id="h">11</int> <int id="z">43</int> <int id="w">105</int> <int id="x">2005</int> </object> <object id="wildflowers_bunch_2_1289854088061"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289854088061</str> <int id="y">747</int> <int id="h">10</int> <int id="z">42</int> <int id="w">76</int> <int id="x">1822</int> </object> <object id="flower_group_2_1289852116708"> <str id="sprite_class">flower_group_2</str> <str id="name">flower_group_2_1289852116708</str> <int id="y">672</int> <int id="h">42</int> <int id="z">24</int> <int id="w">27</int> <int id="x">1602</int> </object> <object id="transition_hill_1_1289436779264"> <str id="sprite_class">transition_hill_1</str> <str id="name">transition_hill_1_1289436779264</str> <int id="y">846</int> <int id="h">160</int> <int id="z">1</int> <int id="w">1074</int> <int id="x">3305</int> </object> <object id="bling_stonemonument_3_1289850853628"> <str id="sprite_class">bling_stonemonument_3</str> <str id="name">bling_stonemonument_3_1289850853628</str> <int id="y">731</int> <int id="h">56</int> <int id="z">13</int> <int id="w">87</int> <int id="x">2231</int> </object> <object id="pinecluster_1_1289854128031"> <str id="sprite_class">pinecluster_1</str> <str id="name">pinecluster_1_1289854128031</str> <int id="y">767</int> <int id="h">196</int> <int id="z">46</int> <int id="w">270</int> <int id="x">1169</int> </object> <object id="tree_coniferous_1_1289850729460"> <str id="sprite_class">tree_coniferous_1</str> <str id="name">tree_coniferous_1_1289850729460</str> <int id="y">685</int> <int id="h">584</int> <int id="z">11</int> <int id="w">240</int> <int id="x">1638</int> </object> <object id="bling_wildmushrooms_3_1289851279931"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851279931</str> <int id="y">693</int> <int id="h">14</int> <int id="z">19</int> <int id="w">35</int> <int id="x">1690</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852561797"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852561797</str> <int id="y">701</int> <int id="h">8</int> <int id="z">28</int> <int id="w">30</int> <int id="x">3133</int> </object> <object id="mound_dirt_4_1289610471020"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610471020</str> <int id="y">824</int> <int id="h">190</int> <int id="z">8</int> <int id="w">499</int> <int id="x">554</int> </object> <object id="wildflowers_bunch_2_1289852378811"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289852378811</str> <int id="y">737</int> <int id="h">9</int> <int id="z">26</int> <int id="w">68</int> <int id="x">2198</int> </object> <object id="transition_hill_1_1289436788220"> <str id="sprite_class">transition_hill_1</str> <str id="name">transition_hill_1_1289436788220</str> <int id="y">812</int> <int id="h">160</int> <int id="z">2</int> <int id="w">1074</int> <int id="x">1732</int> </object> <object id="flower_bush_6_1289854031027"> <str id="sprite_class">flower_bush_6</str> <str id="name">flower_bush_6_1289854031027</str> <int id="y">690</int> <int id="h">37</int> <int id="z">37</int> <int id="w">74</int> <int id="x">1503</int> <int id="r">-10</int> </object> <object id="tree_coniferous_fg_1_1289850740177"> <str id="sprite_class">tree_coniferous_fg_1</str> <str id="name">tree_coniferous_fg_1_1289850740177</str> <int id="y">720</int> <int id="h">705</int> <int id="z">12</int> <int id="w">317</int> <int id="x">2641</int> </object> <object id="transition_hill_2_1289436776430"> <str id="sprite_class">transition_hill_2</str> <str id="name">transition_hill_2_1289436776430</str> <int id="y">812</int> <int id="h">101</int> <int id="z">3</int> <int id="w">948</int> <int id="x">2316</int> </object> <object id="bling_wildmushrooms_3_1289851275988"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851275988</str> <int id="y">693</int> <int id="h">14</int> <int id="z">18</int> <int id="w">35</int> <int id="x">1746</int> </object> <object id="wildflowers_bunch_3_1289854102105"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289854102105</str> <int id="y">738</int> <int id="h">11</int> <int id="z">45</int> <int id="w">105</int> <int id="x">1870</int> <int id="r">6</int> </object> <object id="flower_bush_6_1289854044377"> <str id="sprite_class">flower_bush_6</str> <str id="name">flower_bush_6_1289854044377</str> <int id="y">690</int> <int id="h">37</int> <int id="z">38</int> <int id="w">74</int> <int id="x">1545</int> <int id="r">-3</int> </object> <object id="mound_dirt_4_1289610472846"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610472846</str> <int id="y">780</int> <int id="h">190</int> <int id="z">9</int> <int id="w">499</int> <int id="x">720</int> </object> <object id="tree_group_bg2_1_1289610615529"> <str id="sprite_class">tree_group_bg2_1</str> <str id="name">tree_group_bg2_1_1289610615529</str> <int id="y">810</int> <int id="h">533</int> <int id="z">10</int> <int id="w">406</int> <int id="x">4672</int> </object> <object id="wildflowers_bunch_3_1289852396311"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289852396311</str> <int id="y">703</int> <int id="h">11</int> <int id="z">27</int> <int id="w">105</int> <int id="x">2799</int> <int id="r">6</int> </object> <object id="wildflowers_bunch_3_1289853896242"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289853896242</str> <int id="y">704</int> <int id="h">8</int> <int id="z">31</int> <int id="w">76</int> <int id="x">2520</int> <int id="r">-5</int> </object> <object id="tree_group_bg2_1_1289851223347"> <str id="sprite_class">tree_group_bg2_1</str> <str id="name">tree_group_bg2_1_1289851223347</str> <int id="y">885</int> <int id="h">533</int> <int id="z">14</int> <int id="w">406</int> <int id="x">4339</int> </object> <object id="wildflowers_bunch_3_1289854097338"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289854097338</str> <int id="y">758</int> <int id="h">11</int> <int id="z">44</int> <int id="w">105</int> <int id="x">1970</int> </object> <object id="transition_hill_2_1289436796456"> <str id="sprite_class">transition_hill_2</str> <str id="name">transition_hill_2_1289436796456</str> <int id="y">778</int> <int id="h">101</int> <int id="z">4</int> <int id="w">948</int> <int id="x">4218</int> </object> <object id="wildflowers_bunch_2_1289851833655"> <str id="sprite_class">wildflowers_bunch_2</str> <str id="name">wildflowers_bunch_2_1289851833655</str> <int id="y">730</int> <int id="h">10</int> <int id="z">21</int> <int id="w">76</int> <int id="x">2680</int> </object> <object id="bling_wildmushrooms_3_1289854068736"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289854068736</str> <int id="y">703</int> <bool id="h_flip">true</bool> <int id="h">14</int> <int id="z">40</int> <int id="w">35</int> <int id="x">1756</int> </object> <object id="flower_bush_7_1289854004010"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289854004010</str> <int id="y">712</int> <int id="h">36</int> <int id="z">35</int> <int id="w">57</int> <int id="x">1137</int> </object> <object id="bling_mushroom_bunch_ground_1_1289852571057"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289852571057</str> <int id="y">706</int> <int id="h">8</int> <int id="z">30</int> <int id="w">30</int> <int id="x">3118</int> </object> <object id="bush_3_1289853978526"> <str id="sprite_class">bush_3</str> <str id="name">bush_3_1289853978526</str> <int id="y">741</int> <int id="h">29</int> <int id="z">32</int> <int id="w">82</int> <int id="x">2364</int> </object> <object id="bling_wildmushrooms_3_1289851271966"> <str id="sprite_class">bling_wildmushrooms_3</str> <str id="name">bling_wildmushrooms_3_1289851271966</str> <int id="y">682</int> <int id="h">14</int> <int id="z">17</int> <int id="w">35</int> <int id="x">1725</int> </object> <object id="transition_hill_1_1289436773908"> <str id="sprite_class">transition_hill_1</str> <str id="name">transition_hill_1_1289436773908</str> <int id="y">838</int> <int id="h">160</int> <int id="z">0</int> <int id="w">1074</int> <int id="x">1088</int> </object> <object id="transition_hill_2_1289436875814"> <str id="sprite_class">transition_hill_2</str> <str id="name">transition_hill_2_1289436875814</str> <int id="y">784</int> <int id="h">101</int> <int id="z">5</int> <int id="w">948</int> <int id="x">2765</int> </object> <object id="flower_bush_7_1289854009575"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289854009575</str> <int id="y">723</int> <int id="h">36</int> <int id="z">36</int> <int id="w">57</int> <int id="x">1180</int> </object> </object> <int id="h">1000</int> <int id="z">-2</int> </object> <object id="middleplus"> <int id="w">6000</int> <str id="name">middleplus</str> <object id="decos"> <object id="crosssection_short_3_1287091740749"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1287091740749</str> <int id="y">1040</int> <int id="h">118</int> <int id="z">13</int> <int id="w">519</int> <int id="x">141</int> <int id="r">8</int> </object> <object id="bling_wildmushrooms_2_1289850595713"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289850595713</str> <int id="y">974</int> <int id="h">38</int> <int id="z">14</int> <int id="w">110</int> <int id="x">2892</int> </object> <object id="crosssection_short_3_1282857193917"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1282857193917</str> <int id="y">1084</int> <int id="h">118</int> <int id="z">3</int> <int id="w">519</int> <int id="x">2861</int> <int id="r">6</int> </object> <object id="crosssection_short_3_1282857180652"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1282857180652</str> <int id="y">1033</int> <int id="h">118</int> <int id="z">2</int> <int id="w">519</int> <int id="x">1395</int> <int id="r">4</int> </object> <object id="crosssection_short_3_1287091566784"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1287091566784</str> <int id="y">1065</int> <int id="h">118</int> <int id="z">9</int> <int id="w">519</int> <int id="x">5071</int> <int id="r">9</int> </object> <object id="bling_mushroom_king_bolete_1_1289852042657"> <str id="sprite_class">bling_mushroom_king_bolete_1</str> <str id="name">bling_mushroom_king_bolete_1_1289852042657</str> <int id="y">954</int> <bool id="h_flip">true</bool> <int id="h">74</int> <int id="z">18</int> <int id="w">79</int> <int id="x">5788</int> </object> <object id="crosssection_short_3_1287091751778"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1287091751778</str> <int id="y">1077</int> <int id="h">118</int> <int id="z">0</int> <int id="w">519</int> <int id="x">529</int> <int id="r">2</int> </object> <object id="crosssection_short_3_1287091631827"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1287091631827</str> <int id="y">1094</int> <int id="h">118</int> <int id="z">11</int> <int id="w">519</int> <int id="x">2387</int> <int id="r">-6</int> </object> <object id="bling_wildmushrooms_1_1289851107947"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289851107947</str> <int id="y">916</int> <bool id="h_flip">true</bool> <int id="h">34</int> <int id="z">17</int> <int id="w">118</int> <int id="x">1255</int> </object> <object id="crosssection_short_3_1282857220455"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1282857220455</str> <int id="y">1020</int> <int id="h">118</int> <int id="z">4</int> <int id="w">519</int> <int id="x">4631</int> <int id="r">5</int> </object> <object id="crosssection_short_1_1282857226217"> <str id="sprite_class">crosssection_short_1</str> <str id="name">crosssection_short_1_1282857226217</str> <int id="y">1113</int> <int id="h">100</int> <int id="z">5</int> <int id="w">329</int> <int id="x">5244</int> </object> <object id="bling_wildmushrooms_2_1289853516923"> <str id="sprite_class">bling_wildmushrooms_2</str> <str id="name">bling_wildmushrooms_2_1289853516923</str> <int id="y">1005</int> <bool id="h_flip">true</bool> <int id="h">45</int> <int id="z">19</int> <int id="w">132</int> <int id="x">3297</int> </object> <object id="bling_mushroom_bunch_ground_1_1289850833512"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289850833512</str> <int id="y">916</int> <int id="h">42</int> <int id="z">16</int> <int id="w">161</int> <int id="x">4273</int> </object> <object id="crosssection_short_3_1285785177801"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1285785177801</str> <int id="y">1032</int> <int id="h">118</int> <int id="z">8</int> <int id="w">519</int> <int id="x">4156</int> <int id="r">-5</int> </object> <object id="crosssection_short_3_1285784950612"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1285784950612</str> <int id="y">1076</int> <int id="h">118</int> <int id="z">7</int> <int id="w">519</int> <int id="x">3661</int> <int id="r">-3</int> </object> <object id="bling_mushroom_bunch_ground_1_1289850827810"> <str id="sprite_class">bling_mushroom_bunch_ground_1</str> <str id="name">bling_mushroom_bunch_ground_1_1289850827810</str> <int id="y">906</int> <int id="h">42</int> <int id="z">15</int> <int id="w">161</int> <int id="x">4358</int> </object> <object id="crosssection_short_3_1287091716150"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1287091716150</str> <int id="y">1041</int> <int id="h">118</int> <int id="z">12</int> <int id="w">519</int> <int id="x">6064</int> <int id="r">-2</int> </object> <object id="crosssection_short_3_1282857229519"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1282857229519</str> <int id="y">1081</int> <int id="h">118</int> <int id="z">6</int> <int id="w">519</int> <int id="x">5648</int> <int id="r">-5</int> </object> <object id="crosssection_short_3_1287091619176"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1287091619176</str> <int id="y">1089</int> <int id="h">118</int> <int id="z">10</int> <int id="w">519</int> <int id="x">1844</int> <int id="r">12</int> </object> <object id="bling_wildmushrooms_1_1289853572041"> <str id="sprite_class">bling_wildmushrooms_1</str> <str id="name">bling_wildmushrooms_1_1289853572041</str> <int id="y">924</int> <bool id="h_flip">true</bool> <int id="h">38</int> <int id="z">20</int> <int id="w">132</int> <int id="x">4124</int> </object> <object id="crosssection_short_3_1282857177843"> <str id="sprite_class">crosssection_short_3</str> <str id="name">crosssection_short_3_1282857177843</str> <int id="y">1044</int> <int id="h">118</int> <int id="z">1</int> <int id="w">519</int> <int id="x">906</int> <int id="r">-4</int> </object> </object> <int id="h">1000</int> <int id="z">2</int> </object> <object id="foreground"> <int id="w">6500</int> <str id="name">foreground</str> <object id="decos"> </object> <int id="h">1000</int> <int id="z">3</int> </object> <object id="L3315054349821"> <int id="w">6000</int> <str id="name">L3315054349821</str> <object id="decos"> </object> <int id="h">1000</int> <int id="z">1</int> </object> <object id="sky"> <int id="w">4000</int> <str id="name">sky</str> <object id="decos"> <object id="pinehills_2_1289436834414"> <str id="sprite_class">pinehills_2</str> <str id="name">pinehills_2_1289436834414</str> <int id="y">802</int> <int id="h">265</int> <int id="z">4</int> <int id="w">878</int> <int id="x">3854</int> </object> <object id="pinehills_distant_1_1289436846423"> <str id="sprite_class">pinehills_distant_1</str> <str id="name">pinehills_distant_1_1289436846423</str> <int id="y">916</int> <int id="h">334</int> <int id="z">5</int> <int id="w">1020</int> <int id="x">2620</int> </object> <object id="pinehills_distant_1_1289436824409"> <str id="sprite_class">pinehills_distant_1</str> <str id="name">pinehills_distant_1_1289436824409</str> <int id="y">948</int> <int id="h">334</int> <int id="z">3</int> <int id="w">1020</int> <int id="x">2104</int> </object> <object id="mountain_trees_darker_1_1289610811827"> <str id="sprite_class">mountain_trees_darker_1</str> <str id="name">mountain_trees_darker_1_1289610811827</str> <int id="y">848</int> <int id="h">527</int> <int id="z">0</int> <int id="w">1242</int> <int id="x">3260</int> </object> <object id="mountain_trees_darker_1_1289436806636"> <str id="sprite_class">mountain_trees_darker_1</str> <str id="name">mountain_trees_darker_1_1289436806636</str> <int id="y">810</int> <int id="h">429</int> <int id="z">1</int> <int id="w">1010</int> <int id="x">599</int> </object> <object id="pinehills_distant_1_1289436821631"> <str id="sprite_class">pinehills_distant_1</str> <str id="name">pinehills_distant_1_1289436821631</str> <int id="y">914</int> <int id="h">334</int> <int id="z">2</int> <int id="w">1020</int> <int id="x">1188</int> </object> </object> <int id="h">1000</int> <int id="z">-3</int> </object> <object id="bg_1"> <int id="w">5400</int> <str id="name">bg_1</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-11</int> </object> <object id="saturation"> <int id="value">-7</int> </object> <object id="blur"> </object> <object id="contrast"> <int id="value">0</int> </object> <object id="tintAmount"> </object> </object> <object id="decos"> <object id="evenground_mound_1_1289435333481"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435333481</str> <int id="y">896</int> <int id="h">131</int> <int id="z">8</int> <int id="w">641</int> <int id="x">4813</int> </object> <object id="bling_stonemonument_1_1289851852105"> <str id="sprite_class">bling_stonemonument_1</str> <str id="name">bling_stonemonument_1_1289851852105</str> <int id="y">825</int> <int id="h">151</int> <int id="z">41</int> <int id="w">104</int> <int id="x">2277</int> </object> <object id="bling_branchflowerbrush_white_1_1289852879419"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852879419</str> <int id="y">391</int> <int id="h">45</int> <int id="z">58</int> <int id="w">72</int> <int id="x">490</int> <int id="r">26</int> </object> <object id="mushroom_amanita_1_1289850955029"> <str id="sprite_class">mushroom_amanita_1</str> <str id="name">mushroom_amanita_1_1289850955029</str> <int id="y">801</int> <int id="h">113</int> <int id="z">38</int> <int id="w">85</int> <int id="x">221</int> </object> <object id="evenground_mound_1_1289435293407"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435293407</str> <int id="y">883</int> <int id="h">131</int> <int id="z">6</int> <int id="w">641</int> <int id="x">2762</int> </object> <object id="bling_branchflowerbrush_white_2_1289852840082"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289852840082</str> <int id="y">277</int> <int id="h">22</int> <int id="z">53</int> <int id="w">62</int> <int id="x">319</int> </object> <object id="bling_branchflowerbrush_white_1_1289852887599"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852887599</str> <int id="y">413</int> <int id="h">45</int> <int id="z">59</int> <int id="w">72</int> <int id="x">62</int> <int id="r">-33</int> </object> <object id="flower_bush_3_1289852282310"> <str id="sprite_class">flower_bush_3</str> <str id="name">flower_bush_3_1289852282310</str> <int id="y">801</int> <int id="h">65</int> <int id="z">43</int> <int id="w">128</int> <int id="x">2977</int> </object> <object id="flower_bush_5_1289854261864"> <str id="sprite_class">flower_bush_5</str> <str id="name">flower_bush_5_1289854261864</str> <int id="y">787</int> <int id="h">46</int> <int id="z">64</int> <int id="w">107</int> <int id="x">2176</int> </object> <object id="evenground_mound_1_1289435298698"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435298698</str> <int id="y">893</int> <int id="h">131</int> <int id="z">7</int> <int id="w">641</int> <int id="x">2962</int> </object> <object id="bush_2_1289610720122"> <str id="sprite_class">bush_2</str> <str id="name">bush_2_1289610720122</str> <int id="y">914</int> <int id="h">76</int> <int id="z">33</int> <int id="w">196</int> <int id="x">1938</int> </object> <object id="flower_bush_3_1289852751898"> <str id="sprite_class">flower_bush_3</str> <str id="name">flower_bush_3_1289852751898</str> <int id="y">787</int> <int id="h">48</int> <int id="z">46</int> <int id="w">94</int> <int id="x">5372</int> </object> <object id="bush_3_1289436318959"> <str id="sprite_class">bush_3</str> <str id="name">bush_3_1289436318959</str> <int id="y">834</int> <int id="h">68</int> <int id="z">19</int> <int id="w">192</int> <int id="x">4816</int> </object> <object id="bling_branchflowerbrush_white_1_1289852835385"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852835385</str> <int id="y">306</int> <int id="h">45</int> <int id="z">52</int> <int id="w">72</int> <int id="x">403</int> <int id="r">30</int> </object> <object id="bling_stonemonument_2_1289850870861"> <str id="sprite_class">bling_stonemonument_2</str> <str id="name">bling_stonemonument_2_1289850870861</str> <int id="y">825</int> <int id="h">111</int> <int id="z">34</int> <int id="w">162</int> <int id="x">3336</int> </object> <object id="evenground_mound_1_1289435264825"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435264825</str> <int id="y">891</int> <int id="h">131</int> <int id="z">5</int> <int id="w">641</int> <int id="x">2274</int> </object> <object id="groddle_"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">786</int> <int id="h">25</int> <int id="z">18</int> <int id="w">67</int> <int id="x">2815</int> <int id="r">5</int> </object> <object id="evenground_mound_1_1289435232525"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435232525</str> <int id="y">847</int> <int id="h">131</int> <int id="z">2</int> <int id="w">641</int> <int id="x">668</int> </object> <object id="bush_3_1289610711397"> <str id="sprite_class">bush_3</str> <str id="name">bush_3_1289610711397</str> <int id="y">892</int> <int id="h">80</int> <int id="z">31</int> <int id="w">226</int> <int id="x">1627</int> </object> <object id="flower_bush_3_1289850933979"> <str id="sprite_class">flower_bush_3</str> <str id="name">flower_bush_3_1289850933979</str> <int id="y">832</int> <int id="h">102</int> <int id="z">36</int> <int id="w">201</int> <int id="x">338</int> </object> <object id="tree_coniferous_3_1289435607619"> <str id="sprite_class">tree_coniferous_3</str> <str id="name">tree_coniferous_3_1289435607619</str> <int id="y">785</int> <int id="h">399</int> <int id="z">15</int> <int id="w">236</int> <int id="x">3052</int> </object> <object id="bling_branchflowerbrush_white_1_1289852801848"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852801848</str> <int id="y">285</int> <int id="h">45</int> <int id="z">47</int> <int id="w">72</int> <int id="x">137</int> </object> <object id="tree_deciduous2_1289435456317"> <str id="sprite_class">tree_deciduous2</str> <str id="name">tree_deciduous2_1289435456317</str> <int id="y">749</int> <int id="h">550</int> <int id="z">12</int> <int id="w">560</int> <int id="x">297</int> </object> <object id="bling_branchflowerbrush_white_1_1289852868269"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852868269</str> <int id="y">444</int> <int id="h">45</int> <int id="z">57</int> <int id="w">72</int> <int id="x">330</int> <int id="r">14</int> </object> <object id="evenground_mound_1_1289435214665"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435214665</str> <int id="y">831</int> <int id="h">131</int> <int id="z">1</int> <int id="w">641</int> <int id="x">319</int> </object> <object id="bush_2_1289436160257"> <str id="sprite_class">bush_2</str> <str id="name">bush_2_1289436160257</str> <int id="y">754</int> <int id="h">45</int> <int id="z">16</int> <int id="w">116</int> <int id="x">4308</int> </object> <object id="evenground_horizon_1289435380983"> <str id="sprite_class">evenground_horizon</str> <str id="name">evenground_horizon_1289435380983</str> <int id="y">848</int> <int id="h">98</int> <int id="z">0</int> <int id="w">1138</int> <int id="x">3482</int> </object> <object id="mound_dirt_4_1289610352077"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610352077</str> <int id="y">825</int> <int id="h">190</int> <int id="z">27</int> <int id="w">499</int> <int id="x">3918</int> </object> <object id="bling_branchflowerbrush_white_1_1289852828765"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852828765</str> <int id="y">247</int> <int id="h">45</int> <int id="z">51</int> <int id="w">72</int> <int id="x">321</int> <int id="r">30</int> </object> <object id="bling_branchflowerbrush_white_1_1289852822050"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852822050</str> <int id="y">370</int> <int id="h">45</int> <int id="z">50</int> <int id="w">72</int> <int id="x">111</int> <int id="r">11</int> </object> <object id="evenground_mound_1_1289435256900"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435256900</str> <int id="y">871</int> <int id="h">131</int> <int id="z">4</int> <int id="w">641</int> <int id="x">1985</int> </object> <object id="groddle_cover_clover2_1289610684714"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">820</int> <int id="h">47</int> <int id="z">37</int> <int id="w">126</int> <int id="x">450</int> </object> <object id="bling_branchflowerbrush_white_1_1289852896200"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852896200</str> <int id="y">337</int> <int id="h">45</int> <int id="z">60</int> <int id="w">72</int> <int id="x">286</int> <int id="r">30</int> </object> <object id="flower_bush_7_1289853927226"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289853927226</str> <int id="y">785</int> <int id="h">63</int> <int id="z">61</int> <int id="w">100</int> <int id="x">3486</int> </object> <object id="mound_dirt_4_1289610332943"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610332943</str> <int id="y">909</int> <int id="h">190</int> <int id="z">22</int> <int id="w">499</int> <int id="x">1480</int> </object> <object id="bling_branchflowerbrush_white_1_1289852856713"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852856713</str> <int id="y">382</int> <int id="h">45</int> <int id="z">55</int> <int id="w">72</int> <int id="x">225</int> <int id="r">9</int> </object> <object id="flower_bush_5_1289852271293"> <str id="sprite_class">flower_bush_5</str> <str id="name">flower_bush_5_1289852271293</str> <int id="y">835</int> <int id="h">74</int> <int id="z">42</int> <int id="w">173</int> <int id="x">2430</int> </object> <object id="groddle_cover_clover2_1289436259992"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">786</int> <int id="h">25</int> <int id="z">18</int> <int id="w">67</int> <int id="x">2815</int> <int id="r">5</int> </object> <object id="mound_dirt_4_1289610362744"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610362744</str> <int id="y">851</int> <int id="h">190</int> <int id="z">30</int> <int id="w">499</int> <int id="x">5084</int> </object> <object id="bush_3_1289610717256"> <str id="sprite_class">bush_3</str> <str id="name">bush_3_1289610717256</str> <int id="y">908</int> <int id="h">80</int> <int id="z">32</int> <int id="w">226</int> <int id="x">1773</int> </object> <object id="tree_coniferous_2_1289435537401"> <str id="sprite_class">tree_coniferous_2</str> <str id="name">tree_coniferous_2_1289435537401</str> <int id="y">758</int> <int id="h">365</int> <int id="z">14</int> <int id="w">205</int> <int id="x">4251</int> </object> <object id="evenground_mound_1_1289435350765"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435350765</str> <int id="y">858</int> <int id="h">131</int> <int id="z">10</int> <int id="w">641</int> <int id="x">4293</int> </object> <object id="flower_bush_7_1289853929980"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289853929980</str> <int id="y">770</int> <int id="h">63</int> <int id="z">62</int> <int id="w">100</int> <int id="x">3585</int> </object> <object id="mound_dirt_4_1289610334627"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610334627</str> <int id="y">885</int> <int id="h">190</int> <int id="z">23</int> <int id="w">499</int> <int id="x">1728</int> </object> <object id="mound_dirt_4_1289610358110"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610358110</str> <int id="y">897</int> <int id="h">190</int> <int id="z">28</int> <int id="w">499</int> <int id="x">4416</int> </object> <object id="flower_bush_7_1289853933024"> <str id="sprite_class">flower_bush_7</str> <str id="name">flower_bush_7_1289853933024</str> <int id="y">794</int> <int id="h">63</int> <int id="z">63</int> <int id="w">100</int> <int id="x">3547</int> </object> <object id="mound_dirt_4_1289610337193"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610337193</str> <int id="y">945</int> <int id="h">190</int> <int id="z">24</int> <int id="w">499</int> <int id="x">1956</int> </object> <object id="bling_branchflowerbrush_white_2_1289852842780"> <str id="sprite_class">bling_branchflowerbrush_white_2</str> <str id="name">bling_branchflowerbrush_white_2_1289852842780</str> <int id="y">257</int> <int id="h">22</int> <int id="z">54</int> <int id="w">64</int> <int id="x">429</int> <int id="r">7</int> </object> <object id="bling_branchflowerbrush_white_1_1289852862044"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852862044</str> <int id="y">447</int> <int id="h">45</int> <int id="z">56</int> <int id="w">72</int> <int id="x">150</int> <int id="r">14</int> </object> <object id="wildflowers_bunch_3_1289851818570"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289851818570</str> <int id="y">810</int> <int id="h">19</int> <int id="z">40</int> <int id="w">181</int> <int id="x">3452</int> </object> <object id="mound_dirt_4_1289610349660"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610349660</str> <int id="y">831</int> <int id="h">190</int> <int id="z">26</int> <int id="w">499</int> <int id="x">4226</int> </object> <object id="bling_branchflowerbrush_white_1_1289852811099"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852811099</str> <int id="y">259</int> <int id="h">45</int> <int id="z">48</int> <int id="w">72</int> <int id="x">221</int> <int id="r">9</int> </object> <object id="flower_bush_5_1289852356394"> <str id="sprite_class">flower_bush_5</str> <str id="name">flower_bush_5_1289852356394</str> <int id="y">793</int> <int id="h">66</int> <int id="z">44</int> <int id="w">154</int> <int id="x">3209</int> </object> <object id="bush_3_1289436218641"> <str id="sprite_class">bush_3</str> <str id="name">bush_3_1289436218641</str> <int id="y">740</int> <int id="h">50</int> <int id="z">17</int> <int id="w">140</int> <int id="x">409</int> <int id="r">5</int> </object> <object id="mound_dirt_4_1289610331043"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610331043</str> <int id="y">873</int> <int id="h">190</int> <int id="z">21</int> <int id="w">499</int> <int id="x">1262</int> </object> <object id="mound_dirt_4_1289610339627"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610339627</str> <int id="y">813</int> <int id="h">190</int> <int id="z">25</int> <int id="w">499</int> <int id="x">702</int> </object> <object id="tree_deciduous1_1289435495568"> <str id="sprite_class">tree_deciduous1</str> <str id="name">tree_deciduous1_1289435495568</str> <int id="y">843</int> <int id="h">603</int> <int id="z">13</int> <int id="w">537</int> <int id="x">2476</int> </object> <object id="wildflowers_bunch_3_1289851816138"> <str id="sprite_class">wildflowers_bunch_3</str> <str id="name">wildflowers_bunch_3_1289851816138</str> <int id="y">829</int> <int id="h">19</int> <int id="z">39</int> <int id="w">181</int> <int id="x">3393</int> </object> <object id="evenground_horizon_1289435414796"> <str id="sprite_class">evenground_horizon</str> <str id="name">evenground_horizon_1289435414796</str> <int id="y">835</int> <int id="h">98</int> <int id="z">11</int> <int id="w">1138</int> <int id="x">5244</int> </object> <object id="bling_branchflowerbrush_white_1_1289852818958"> <str id="sprite_class">bling_branchflowerbrush_white_1</str> <str id="name">bling_branchflowerbrush_white_1_1289852818958</str> <int id="y">324</int> <int id="h">45</int> <int id="z">49</int> <int id="w">72</int> <int id="x">190</int> <int id="r">9</int> </object> <object id="evenground_mound_1_1289435343459"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435343459</str> <int id="y">860</int> <int id="h">131</int> <int id="z">9</int> <int id="w">641</int> <int id="x">4607</int> </object> <object id="evenground_mound_1_1289435247722"> <str id="sprite_class">evenground_mound_1</str> <str id="name">evenground_mound_1_1289435247722</str> <int id="y">902</int> <int id="h">131</int> <int id="z">3</int> <int id="w">641</int> <int id="x">1806</int> </object> <object id="mound_dirt_4_1289610360077"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610360077</str> <int id="y">865</int> <int id="h">190</int> <int id="z">29</int> <int id="w">499</int> <int id="x">4774</int> </object> <object id="flower_bush_5_1289850930112"> <str id="sprite_class">flower_bush_5</str> <str id="name">flower_bush_5_1289850930112</str> <int id="y">815</int> <int id="h">107</int> <int id="z">35</int> <int id="w">251</int> <int id="x">242</int> </object> <object id="mound_dirt_4_1289610328878"> <str id="sprite_class">mound_dirt_4</str> <str id="name">mound_dirt_4_1289610328878</str> <int id="y">837</int> <int id="h">190</int> <int id="z">20</int> <int id="w">499</int> <int id="x">1006</int> </object> <object id="groddle_cover_clover2_1289852740114"> <str id="sprite_class">groddle_cover_clover2</str> <str id="name">groddle_</str> <int id="y">759</int> <int id="h">28</int> <int id="z">45</int> <int id="w">77</int> <int id="x">5372</int> </object> </object> <int id="h">1000</int> <int id="z">-1</int> </object> </object> <str id="music_file"></str> <object id="gradient"> <str id="top">FEFCE5</str> <str id="bottom">F2A800</str> </object> <null id="img_file_versioned"/> <int id="ground_y">-250</int> <str id="tsid">LCR111KI08O1HLB</str> <object id="sources"> <int id="LCR1985LIRK12N4">1</int> <int id="LCR11DNA3EL10TD">1</int> <int id="LCRVT5V0BDO1HLF">1</int> </object> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1337366741.swf</str> <null id="physics"/> <int id="rookable_type">0</int> <null id="loading_label"/> </object> </game_object>
189,826
Common Lisp
.l
5,485
27.805287
207
0.562951
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
e8bde1a331c1a2a0a9875dc7f43753b5130c82f2cf1f54eba8c240b05f04d34e
20,861
[ -1 ]
20,862
LCR111KI08O1HLB.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/abbey/LCR111KI08O1HLB.xml
<game_object tsid="LCR111KI08O1HLB" ts="1364245756617" label="Langden Abbey" class_tsid="town" hubid="58" moteid="9" letime="3i0a45g6" rbtime="25h9u6j4" upd_gs="gs6" load_time="2013-03-25 13:58:38.000"> <object id="dynamic"> <int id="upgrade_level">3</int> <str id="upgrade_template">LLI16PL3GFJ15VP</str> <str id="template">LLI16PL3GFJ15VP</str> <bool id="jobs_is_locked">false</bool> <object id="loading_image"> <str id="url">streets/2012-06-09/LCR111KI08O1HLB_loading_1339298004.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <object id="jobs"> <object id="140"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> <object id="connecting_streets"> <str id="0">LCR11DNA3EL10TD</str> </object> </object> <object id="class_ids"> <object id="job_standard6_for_new_streets"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="class_id">job_standard6_for_new_streets</str> </object> </object> </object> <object id="139"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> </object> <object id="class_ids"> <object id="job_street_upgrade_1"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <objref id="instance" tsid="QCR120536AO1S1I"/> <str id="class_id">job_street_upgrade_1</str> <str id="label">Upgrade Langden Abbey To Level 1</str> </object> </object> </object> <object id="144"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> <int id="required_street_level">1</int> </object> <object id="class_ids"> <object id="job_street_upgrade_2"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <objref id="instance" tsid="QCR121K46AO170U"/> <str id="class_id">job_street_upgrade_2</str> <str id="label">Upgrade Langden Abbey To Level 2</str> </object> </object> </object> <object id="152"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> </object> <object id="class_ids"> <object id="job_street_upgrade_3"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <objref id="instance" tsid="QCR124PO6AO131R"/> <str id="class_id">job_street_upgrade_3</str> <str id="label">Upgrade Langden Abbey To Level 3</str> </object> </object> </object> </object> <object id="image"> <str id="url">streets/2012-06-09/LCR111KI08O1HLB_main_1339298006.jpg</str> <int id="w">720</int> <int id="h">120</int> </object> <object id="action_requests"> </object> <object id="rook_status"> <bool id="rooked">false</bool> </object> <object id="delayed_sounds"> </object> <object id="stun_orbs"> </object> <object id="keys"> </object> <str id="old_upgrade_tree">gm150</str> <object id="edit_history"> <str id="1334179534">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339297982">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> <str id="1339298056">PIF5NL12S3D1BH3:Jade:locodeco-replace</str> </object> <object id="qurazy"> </object> <object id="incantations"> <object id="PUVVS958KF93KSJ"> <int id="step">1</int> <int id="ts">1350436219</int> </object> <object id="PCRJNG7VCDV1MVM"> <int id="step">1</int> <int id="ts">1350436399</int> </object> <object id="PUVTC1FB87934NS"> <int id="step">1</int> <int id="ts">1350436840</int> </object> <object id="PHF7RE2505D2ILG"> <int id="step">1</int> <int id="ts">1350437217</int> </object> <object id="PHVTIPH9I5A2DJI"> <int id="step">2</int> <int id="ts">1350437218</int> </object> <object id="PIFQHNFJ1M634GJ"> <int id="step">3</int> <int id="ts">1350437231</int> </object> <object id="PCRE15VHINS1RJI"> <int id="step">1</int> <int id="ts">1350437362</int> </object> <object id="PUVPJIH5OGA3EL4"> <int id="step">2</int> <int id="ts">1350437380</int> </object> <object id="PUVH4JOK59G2BM3"> <int id="step">1</int> <int id="ts">1350437453</int> </object> <object id="PUVBFKGAR9G2SOQ"> <int id="step">1</int> <int id="ts">1350437579</int> </object> <object id="PHF9FNI392D21TP"> <int id="step">1</int> <int id="ts">1350437629</int> </object> <object id="PIFKV75KG163LL9"> <int id="step">1</int> <int id="ts">1350437663</int> </object> <object id="PIFQ02JTJP536F9"> <int id="step">2</int> <int id="ts">1350437669</int> </object> <object id="PIFGT09D8N53OPA"> <int id="step">3</int> <int id="ts">1350437673</int> </object> <object id="PUVI45UO8LF292D"> <int id="step">1</int> <int id="ts">1350437935</int> </object> <object id="PUVTHG227MB3KK8"> <int id="step">2</int> <int id="ts">1350437952</int> </object> <object id="PUVLE608CNB3GA3"> <int id="step">1</int> <int id="ts">1350438511</int> </object> <object id="PUV70B01CBG27J4"> <int id="step">1</int> <int id="ts">1350439117</int> </object> <object id="PUVMD4ISJA93B18"> <int id="step">2</int> <int id="ts">1350439602</int> </object> <object id="PHFUUK25CTC2CMM"> <int id="step">1</int> <int id="ts">1350440179</int> </object> <object id="PHVR3SACH38205T"> <int id="step">1</int> <int id="ts">1350441688</int> </object> <object id="PIFV8NHUC063V2D"> <int id="step">2</int> <int id="ts">1350441695</int> </object> <object id="PIFB597LSS530B1"> <int id="step">1</int> <int id="ts">1350442566</int> </object> <object id="PHF2VPV503D26FE"> <int id="step">1</int> <int id="ts">1350443358</int> </object> <object id="PUVICMAK8SJ2MAS"> <int id="step">2</int> <int id="ts">1350443361</int> </object> <object id="PHVA4KMGON72S7L"> <int id="step">3</int> <int id="ts">1350443363</int> </object> <object id="PUVS5VR33483TPK"> <int id="step">1</int> <int id="ts">1350444002</int> </object> <object id="PHF154A801D2A0H"> <int id="step">1</int> <int id="ts">1350444991</int> </object> <object id="PUVG72OVNF93L6L"> <int id="step">2</int> <int id="ts">1350445018</int> </object> <object id="PHVPD72CABA2UCJ"> <int id="step">1</int> <int id="ts">1350445103</int> </object> <object id="PCRDMHR3NDO1FVT"> <int id="step">2</int> <int id="ts">1350445104</int> </object> <object id="PA9NJ72CFKD2B40"> <int id="step">3</int> <int id="ts">1350445106</int> </object> <object id="PIFSKN34E4D1JUL"> <int id="step">1</int> <int id="ts">1350445423</int> </object> <object id="PDOD9O86IKT26I0"> <int id="step">1</int> <int id="ts">1350445888</int> </object> <object id="PUVB2NLKMA83L4I"> <int id="step">1</int> <int id="ts">1350447495</int> </object> <object id="PUVHN5UJ40B33BV"> <int id="step">1</int> <int id="ts">1350447886</int> </object> <object id="PHV1RMA6M512IRQ"> <int id="step">2</int> <int id="ts">1350447892</int> </object> <object id="PCRH9GALMUT1VSB"> <int id="step">3</int> <int id="ts">1350447899</int> </object> <object id="PUVMQQRGT1A38Q5"> <int id="step">1</int> <int id="ts">1350448303</int> </object> <object id="PHFDJEV6N2D2U7L"> <int id="step">1</int> <int id="ts">1350449416</int> </object> <object id="PUVNJCEML7P2ES0"> <int id="step">1</int> <int id="ts">1350449450</int> </object> <object id="PUVN8LR3HQ63GE4"> <int id="step">1</int> <int id="ts">1350449595</int> </object> <object id="PHFCOIG9VTC2A2Q"> <int id="step">1</int> <int id="ts">1350449903</int> </object> <object id="PIF1AB3PVG63M4B"> <int id="step">2</int> <int id="ts">1350450355</int> </object> <object id="PHF9I9M891D271B"> <int id="step">1</int> <int id="ts">1350451877</int> </object> <object id="PUVN8RFT0J73V4A"> <int id="step">1</int> <int id="ts">1350452050</int> </object> <object id="PUVH8BKNG483KAK"> <int id="step">1</int> <int id="ts">1350452068</int> </object> <object id="PUVV4633I983A05"> <int id="step">2</int> <int id="ts">1350452070</int> </object> <object id="PUV7785IM1835GI"> <int id="step">1</int> <int id="ts">1350452249</int> </object> <object id="PHFODCHB93D2L7K"> <int id="step">1</int> <int id="ts">1350455363</int> </object> <object id="PUVGV2K6PBG24Q2"> <int id="step">2</int> <int id="ts">1350455364</int> </object> <object id="PUVDSDIGE1A391G"> <int id="step">3</int> <int id="ts">1350455365</int> </object> <object id="PHFL6F66UAD2Q0K"> <int id="step">1</int> <int id="ts">1350455664</int> </object> <object id="PIFLF93LOD63T7I"> <int id="step">1</int> <int id="ts">1350456168</int> </object> <object id="PIF9573ICE63AGC"> <int id="step">2</int> <int id="ts">1350456171</int> </object> <object id="PM11J0LUK902GQV"> <int id="step">1</int> <int id="ts">1350456308</int> </object> <object id="PHF9L3JP5BD2R6D"> <int id="step">1</int> <int id="ts">1350458720</int> </object> <object id="PUV78NOA0G73MM9"> <int id="step">2</int> <int id="ts">1350458722</int> </object> <object id="PA9QA8RBRPD22NK"> <int id="step">3</int> <int id="ts">1350458723</int> </object> <object id="PHFCA0VG30D2LVR"> <int id="step">1</int> <int id="ts">1350462421</int> </object> <object id="PUVT527JACG2A1Q"> <int id="step">2</int> <int id="ts">1350462422</int> </object> <object id="PUVCAJTDPFH203K"> <int id="step">3</int> <int id="ts">1350462423</int> </object> <object id="PUV7AN9J7483RAD"> <int id="step">1</int> <int id="ts">1350463570</int> </object> <object id="PHFKSMF765D2A4C"> <int id="step">2</int> <int id="ts">1350472707</int> </object> <object id="PHVNM0KT2B921LT"> <int id="step">1</int> <int id="ts">1350472896</int> </object> <object id="PUVKF3K8M483LRV"> <int id="step">1</int> <int id="ts">1350479442</int> </object> <object id="PUVTVHBGAB83HBI"> <int id="step">2</int> <int id="ts">1350479444</int> </object> <object id="PHFT6U31UBD2A1I"> <int id="step">3</int> <int id="ts">1350479445</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">1</int> <int id="ts">1350482308</int> </object> <object id="PHFLC1SRO2D2KJP"> <int id="step">1</int> <int id="ts">1350482728</int> </object> <object id="PUVRSDA9PIB3RNN"> <int id="step">2</int> <int id="ts">1350484441</int> </object> <object id="PUVHAPU7VUE2B94"> <int id="step">3</int> <int id="ts">1350484461</int> </object> <object id="PIF12MTPPQH5L"> <int id="step">1</int> <int id="ts">1350486598</int> </object> <object id="PHV129UF5G32V98"> <int id="step">2</int> <int id="ts">1350487297</int> </object> <object id="PHV6C84JR2821C3"> <int id="step">1</int> <int id="ts">1350488304</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">2</int> <int id="ts">1350488305</int> </object> <object id="PHF7GOMJS1D24NC"> <int id="step">3</int> <int id="ts">1350488305</int> </object> <object id="PIF96KP89K53KRF"> <int id="step">1</int> <int id="ts">1350488751</int> </object> <object id="PNVK4E8SE8E2NH0"> <int id="step">1</int> <int id="ts">1350488839</int> </object> <object id="PHF43603F4D2I2C"> <int id="step">1</int> <int id="ts">1350491549</int> </object> <object id="PHFGMBJBA4D21EG"> <int id="step">2</int> <int id="ts">1350491828</int> </object> <object id="PUVUCJ1BR4A3NOC"> <int id="step">1</int> <int id="ts">1350492822</int> </object> <object id="PHFIS28II2D239P"> <int id="step">1</int> <int id="ts">1350493795</int> </object> <object id="PUVHO6AR0KB3BD2"> <int id="step">2</int> <int id="ts">1350493795</int> </object> <object id="PHFOOG9DL1D2M0S"> <int id="step">3</int> <int id="ts">1350493796</int> </object> <object id="PA93VP2554E2H3R"> <int id="step">1</int> <int id="ts">1350496095</int> </object> <object id="PA9F3EHI36E2JIG"> <int id="step">2</int> <int id="ts">1350496097</int> </object> <object id="PUVFQGQET5A3HAV"> <int id="step">3</int> <int id="ts">1350496098</int> </object> <object id="PUVA82F85D73SQ2"> <int id="step">1</int> <int id="ts">1350497141</int> </object> <object id="PUV8ROTVQC93BP5"> <int id="step">2</int> <int id="ts">1350497659</int> </object> <object id="PUVBTTFKSVE2QNB"> <int id="step">1</int> <int id="ts">1350498459</int> </object> <object id="PHF1NIIAP1D2RI3"> <int id="step">1</int> <int id="ts">1350498882</int> </object> <object id="PHVUL3BGS3A2DQO"> <int id="step">2</int> <int id="ts">1350498889</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">3</int> <int id="ts">1350501100</int> </object> <object id="PUV1J3A7QIH2TFF"> <int id="step">1</int> <int id="ts">1350504325</int> </object> <object id="PUVVPQ3V7KA3DCO"> <int id="step">2</int> <int id="ts">1350504699</int> </object> <object id="PIFG7LQVTG6356J"> <int id="step">1</int> <int id="ts">1350506205</int> </object> <object id="PUVSHRPB27G21GO"> <int id="step">1</int> <int id="ts">1350507030</int> </object> <object id="PUVUTSGV5JB37FB"> <int id="step">1</int> <int id="ts">1350507099</int> </object> <object id="PUVF9LL0KDE209S"> <int id="step">1</int> <int id="ts">1350507687</int> </object> <object id="PUVTNI1FJH93NPE"> <int id="step">1</int> <int id="ts">1350508495</int> </object> <object id="PHVK2FSFOT22C3I"> <int id="step">1</int> <int id="ts">1350508553</int> </object> <object id="PUV6IQVVOKB3TI3"> <int id="step">1</int> <int id="ts">1350509004</int> </object> <object id="PHF7NSKA3AD2PU5"> <int id="step">1</int> <int id="ts">1350509315</int> </object> <object id="PUVEV4TIGDE2EJG"> <int id="step">1</int> <int id="ts">1350509976</int> </object> <object id="PA9U8326U8I29KM"> <int id="step">2</int> <int id="ts">1350509979</int> </object> <object id="PUVJ9R0NOAJ23LH"> <int id="step">3</int> <int id="ts">1350509980</int> </object> <object id="PUVFUD1UJRE26GD"> <int id="step">1</int> <int id="ts">1350512578</int> </object> <object id="PUVT97ESA7D2MN0"> <int id="step">1</int> <int id="ts">1350512874</int> </object> <object id="PHFAM2DUH4D23RG"> <int id="step">1</int> <int id="ts">1350513990</int> </object> <object id="PCRGJNCNF0U1VCE"> <int id="step">1</int> <int id="ts">1350515025</int> </object> <object id="PUVFLODI6EL2FC5"> <int id="step">2</int> <int id="ts">1350515026</int> </object> <object id="PCR101KU5UP1EAG"> <int id="step">3</int> <int id="ts">1350515028</int> </object> <object id="PHVSCM4AFS627EF"> <int id="step">1</int> <int id="ts">1350515134</int> </object> <object id="PIFCOFRPRO53K91"> <int id="step">1</int> <int id="ts">1350515930</int> </object> <object id="PUVI4EDKGAJ207T"> <int id="step">2</int> <int id="ts">1350516072</int> </object> <object id="PUV19GCAVGE2KI9"> <int id="step">1</int> <int id="ts">1350516081</int> </object> <object id="PUVEKDKR79839P1"> <int id="step">2</int> <int id="ts">1350516083</int> </object> <object id="PHVP2R52TKB2HHK"> <int id="step">3</int> <int id="ts">1350516084</int> </object> <object id="PHF20O01HRC21FP"> <int id="step">1</int> <int id="ts">1350517587</int> </object> <object id="PHFM0PHNTUC2S8E"> <int id="step">1</int> <int id="ts">1350518424</int> </object> <object id="PDOL4F1IM8R26LN"> <int id="step">2</int> <int id="ts">1350518430</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">1</int> <int id="ts">1350518712</int> </object> <object id="PUVS0VLJ9G93E96"> <int id="step">2</int> <int id="ts">1350518713</int> </object> <object id="PHV5G682DP82HK9"> <int id="step">3</int> <int id="ts">1350518715</int> </object> <object id="PUVFDNPQBFF2FLN"> <int id="step">1</int> <int id="ts">1350520371</int> </object> <object id="PUVERCUHFK93090"> <int id="step">2</int> <int id="ts">1350520921</int> </object> <object id="PUVEGG4T2FG2UCD"> <int id="step">1</int> <int id="ts">1350521262</int> </object> <object id="PHF91JD8M2D2EAU"> <int id="step">2</int> <int id="ts">1350521846</int> </object> <object id="PUV4QBL03D9394L"> <int id="step">1</int> <int id="ts">1354914264</int> </object> <object id="PHFPBUKK93D26VU"> <int id="step">1</int> <int id="ts">1354914876</int> </object> <object id="PUVU0H1NB7E3U57"> <int id="step">2</int> <int id="ts">1354914878</int> </object> <object id="PUV7DBINAS73IFR"> <int id="step">3</int> <int id="ts">1354914885</int> </object> <object id="PCRE9GAUINS1F64"> <int id="step">1</int> <int id="ts">1354915976</int> </object> <object id="PCRAFRDJFUT1PGB"> <int id="step">2</int> <int id="ts">1354915977</int> </object> <object id="PUVNCT5TL5D2BB4"> <int id="step">3</int> <int id="ts">1354915982</int> </object> </object> <object id="emotes"> <object id="25-05-26"> <int id="PA9AAQRSQ1E2VC8">1351271319</int> <int id="PUVN01KGTTF2OOC">1351271582</int> <int id="PUV7DBINAS73IFR">1351271678</int> <int id="PUVAMOV6GLB312J">1351271698</int> <int id="PHF2VPV503D26FE">1351271915</int> <int id="PCRNH6RCVNS1072">1351271916</int> <int id="PUV4I22BOHG20KB">1351271938</int> <int id="PUV7AN9J7483RAD">1351272083</int> <int id="PUVA2RGKSPK263G">1351272268</int> <int id="PUVJSKMEME93KQD">1351272309</int> <int id="PUV473G116D2GUS">1351272368</int> <int id="PHFJ325470D2H70">1351272370</int> <int id="PUVDH6PNO9G2H6L">1351272417</int> <int id="PUV2FJ85U993DDV">1351272574</int> <int id="PUVSVMTPFIJ2M6B">1351272578</int> <int id="PHFKGTOEK4D24VC">1351272612</int> <int id="PUV2QJOJLQ63INJ">1351272620</int> <int id="PUVQEFLSU9C3SN2">1351272625</int> <int id="PCRD007C83N19S4">1351272782</int> <int id="PA9GNHK5C0E23D8">1351272783</int> <int id="PHFKVVPRI2D2CGO">1351272795</int> <int id="PCRE15VHINS1RJI">1351273142</int> <int id="PUVSRKDKT993SB7">1351273153</int> <int id="PHVV591MRV524E4">1351273154</int> <int id="PA9K8H9L9RD2ISS">1351273158</int> <int id="PUVBJ5MA9VA36PP">1351273272</int> <int id="PUVS00IIIJ932CP">1351273368</int> <int id="PUVBUB7PT9E2HLL">1351273368</int> <int id="PUVEC3IR9MB3PHK">1351273434</int> <int id="PA9K4D8K8MD27JH">1351273449</int> <int id="PUVQSKCT62F29GL">1351273519</int> <int id="PHVEAEQ55F72KLU">1351273524</int> <int id="PHVGU398LM52OEL">1351273551</int> <int id="PUVEKO5CFNH2BLE">1351273619</int> <int id="PUVRSHGF4IQ21VO">1351273667</int> <int id="PIFSMKNBOG63N0R">1351273725</int> <int id="PCR14AIGQJO1V4O">1351273726</int> <int id="PUVJHQ3QV6C3SEQ">1351273726</int> <int id="PUV91D8F1NB3VMH">1351273748</int> <int id="PCR6L4VMU3N1H72">1351273783</int> <int id="PUVQLUPAAVB3G4Q">1351273818</int> <int id="PCR4R99KAUT1JQ7">1351273820</int> <int id="PUV49PF4QVF2OMB">1351274016</int> <int id="PUVH597T7DC32E1">1351274044</int> <int id="PA9TLH9T15E2EVD">1351274064</int> <int id="PHV3SOHNMB52ELG">1351274080</int> <int id="PUVJU69IKJC3BOE">1351274185</int> <int id="PUV750ROV3C3V32">1351274318</int> <int id="PCR1B40C2RL1V0V">1351274318</int> <int id="PA984LGOCKD26UK">1351274844</int> <int id="PHFVJO6A4BD2VKU">1351274845</int> <int id="PUVOV284NNA3T07">1351274911</int> <int id="PHVR0962PO02QFU">1351274943</int> <int id="PHFINSK9JCD29H5">1351275201</int> <int id="PUVNP7L5BQ937N8">1351275359</int> <int id="PCR42DQMSCV1P9O">1351275478</int> <int id="PUV77FCFC8N26V4">1351275479</int> <int id="PHFESC8FE1D211V">1351275560</int> <int id="PHVKV68PC4A2ASU">1351275611</int> <int id="PUVHQ4O5C7D2953">1351275628</int> <int id="PHFU73UKQ2D2SH5">1351275645</int> <int id="PHFUEM2NQ4D2BA4">1351275670</int> <int id="PHF6Q76POED2L4A">1351275726</int> <int id="PM13FQ40B60241T">1351275729</int> <int id="PA9PPLUHPJD24UQ">1351275737</int> <int id="PCR4KMJVCAO1OQ7">1351275815</int> <int id="PUV6M92FD0H2KGM">1351275912</int> <int id="PUVP8I9JKEC3VHE">1351275949</int> <int id="PUVS0VLJ9G93E96">1351275950</int> <int id="PUV13H7I2OA3SER">1351277173</int> <int id="PHFK48ANI2D2F12">1351277281</int> <int id="PUV771P9IME25MS">1351277284</int> <int id="PUVD4DHLMQ63C16">1351277295</int> <int id="PIF6FQ8JCE21N4B">1351277298</int> <int id="PUVFEHU904J2T3U">1351277326</int> <int id="PA9VHKNCKQD2LUN">1351277404</int> <int id="PUV6C087F3C3KKN">1351277458</int> <int id="PUVE2C8P6PG2RA3">1351277724</int> <int id="PHFKA411RVC22P0">1351277800</int> <int id="PUVVFBRVAF936V8">1351278239</int> <int id="PUVFDC083PE2F30">1351278275</int> <int id="PHV3J76JGS62RF5">1351278403</int> <int id="PCR44OG2AUT12IH">1351278429</int> <int id="PUV5J9CJOTE26LL">1351278452</int> <int id="PHFGJ20K02D2C6J">1351278465</int> <int id="PUVL6USMVQB3NCF">1351278497</int> <int id="PCRE77SPB0U14V3">1351279632</int> <int id="PHV129UF5G32V98">1351279633</int> <int id="PUVU760TM4H2155">1351279664</int> <int id="PHV4GARNOH829R0">1351279726</int> <int id="PDO2V71MMAR2SER">1351279727</int> <int id="PUVSIIO6L9D2OBN">1351279730</int> <int id="PUVHCH6SH3A30DK">1351279869</int> <int id="PHFA302213D2GRI">1351280056</int> <int id="PHF5OTALG4D2QME">1351280125</int> <int id="PUVS2JC7BKB37II">1351280134</int> <int id="PUVAQ5O39JA35P0">1351280150</int> <int id="PIF9R57T8P53I85">1351280163</int> <int id="PHVABLN44H22DKA">1351280349</int> <int id="PUVISC96IQ83HJT">1351280392</int> <int id="PUV9IQOTQH931R1">1351280829</int> <int id="PUV2KCFCITG2H3Q">1351280835</int> <int id="PHFG6RUSF1D2GQU">1351281758</int> <int id="PM110TOUEB02TGO">1351281773</int> <int id="PIF82R4LQF01ISK">1351281866</int> <int id="PCRK8DVCPHV1A44">1351282111</int> <int id="PUVDS38PNF93JF4">1351282112</int> <int id="PIF17RS00KKUSJ">1351282116</int> <int id="PCRVKO1CTGV1S99">1351282136</int> <int id="PHVNM0KT2B921LT">1351282177</int> <int id="PUV6CUQICFC3A75">1351282691</int> <int id="PHFLMIVO2UC2HK7">1351282792</int> <int id="PHV6C84JR2821C3">1351283095</int> <int id="PUVUFSA7CTH254G">1351283101</int> <int id="PCRHFVUMNNS11OP">1351283112</int> <int id="PUV6OIGRG9C3JLA">1351283924</int> <int id="PHFLE9R8TUC2MHR">1351284097</int> <int id="PUVHT82E1AP2E7H">1351284558</int> <int id="PCR7T82R11K14AP">1351284617</int> <int id="PUV9ME0E8HB3I12">1351285104</int> </object> <object id="25-05-27"> <int id="PUV8PBHEH5K2E9N">1351285622</int> <int id="PCR4KMJVCAO1OQ7">1351285623</int> <int id="PUVCC56TLB7395A">1351285685</int> <int id="PUV39DUPENE2ATB">1351285890</int> <int id="PUV48P9E7VB3BB9">1351285891</int> <int id="PUV6QB9A35C31SG">1351286261</int> <int id="PUVIB6F3R6D28O1">1351286334</int> <int id="PHVH3D3KFJ92PUJ">1351286340</int> <int id="PCR44OG2AUT12IH">1351286550</int> <int id="PUV4MAIL2873TVV">1351286554</int> <int id="PHV44MT5SE729HK">1351286565</int> <int id="PHV336U8K792MR4">1351286609</int> <int id="PHF2CSR1OCD2E6B">1351286612</int> <int id="PCRIMC1IPNS1PKK">1351286664</int> <int id="PA9PPLUHPJD24UQ">1351286722</int> <int id="PA919M9204E2I4C">1351287199</int> <int id="PUVTEISFLLB38P4">1351287201</int> <int id="PHV7FR190MB2I9S">1351287234</int> <int id="PUVCUCM4C8D2PLF">1351287273</int> <int id="PA95OL41KGD267A">1351287412</int> <int id="PUVII91M9DH2QVN">1351287427</int> <int id="PHFIN187QVC224H">1351287438</int> <int id="PUVILRU9JF93UUO">1351288386</int> <int id="PHVIBHO8RN02DFH">1351288404</int> <int id="PCR9E5GQJSM1GDF">1351288590</int> <int id="PUVHT82E1AP2E7H">1351288793</int> <int id="PHFPPJFJTVC2RK0">1351289330</int> <int id="PUV95LJVTHF26QI">1351289330</int> <int id="PA9KQKS9Q6E2LCJ">1351289863</int> <int id="PUV384FRQ4B3RPN">1351289864</int> <int id="PHV7MNV1VO62BC4">1351289931</int> <int id="PHV1J1D0OB92FPP">1351290788</int> <int id="PUVG6IV8J5F28N1">1351290790</int> <int id="PUV3KH2MQSB3LR9">1351290885</int> <int id="PHVFEI2BI3A2VEB">1351290886</int> <int id="PUV8726GUNH2L21">1351290893</int> <int id="PUVBIORRBF93J9R">1351291854</int> <int id="PUVFPTBQU7D2GI3">1351291854</int> <int id="PUVJU69IKJC3BOE">1351291977</int> <int id="PUVV5HJ6RD93NIJ">1351291980</int> <int id="PUVE2C8P6PG2RA3">1351292037</int> <int id="PUV2EGMNAHS2OQC">1351292083</int> <int id="PHV64IE9NF82R1H">1351292086</int> <int id="PUVP5UD3C9G2JBI">1351292189</int> <int id="PUVTTIURKLC3B30">1351292303</int> <int id="PHV2N3G3AF825OC">1351292585</int> <int id="PHFK5DVI8DD22EP">1351293717</int> <int id="PHFVB7UGK2D283T">1351293825</int> <int id="PUVDVQE3LBC3KFR">1351293834</int> <int id="PUVRE4886UF2224">1351293853</int> <int id="PUV19VMMNC93GKF">1351294977</int> <int id="PHF192Q2E4D200I">1351294978</int> <int id="PUVNJCEML7P2ES0">1351295004</int> <int id="PUVHPAD7L5N292B">1351295896</int> <int id="PHFK48ANI2D2F12">1351295898</int> <int id="PCRGJNCNF0U1VCE">1351295904</int> <int id="PHV743NBODC2PRG">1351295999</int> <int id="PUVFR38J3UI26C5">1351296001</int> <int id="PUVHOL349JJ22U4">1351296006</int> <int id="PHF624MH10D2RFE">1351296525</int> <int id="PUVFBDCTH1G2UH9">1351297508</int> <int id="PCR4U07B1UJ1FBQ">1351297508</int> <int id="PA9SGIV1AUD2PNL">1351298012</int> <int id="PUV111PD2AC3RM6">1351298019</int> <int id="PHFKA411RVC22P0">1351298057</int> <int id="PHVINVIN7792C8I">1351298078</int> <int id="PIFPA79J3N53E40">1351298141</int> <int id="PHFEKECS94D2STE">1351298272</int> <int id="PIF5NL12S3D1BH3">1351298386</int> <int id="PUVQMCE3D9D2K8E">1351298422</int> <int id="PA9EH9EPF4E2HEF">1351298445</int> <int id="PCRSVJC3CFV19J7">1351298490</int> </object> <object id="25-05-28"> <int id="PUVQC85P4U73FTO">1351299852</int> <int id="PUVG6IV8J5F28N1">1351299882</int> <int id="PHVVO70T9S62CQJ">1351300295</int> <int id="PCR7T82R11K14AP">1351300557</int> <int id="PUVKI6O4OCC30P5">1351300557</int> <int id="PIF9R57T8P53I85">1351300936</int> <int id="PUVJU69IKJC3BOE">1351300937</int> <int id="PIFKV75KG163LL9">1351301325</int> <int id="PUVC77TNAEC356A">1351301359</int> <int id="PHF624MH10D2RFE">1351301866</int> <int id="PUVP5UD3C9G2JBI">1351302146</int> <int id="PA9SEU1KQ5E2M49">1351302150</int> <int id="PIF4AHJ8CR53BDF">1351302287</int> <int id="PCRNH6RCVNS1072">1351302293</int> <int id="PHF1VMDO9DD2AK3">1351302322</int> <int id="PHVVO7CASCB21O5">1351302655</int> <int id="PA9ADGI5MND20Q0">1351302657</int> <int id="PUVR7DBV7JG2E14">1351304713</int> <int id="PUVC1JELAKC3R33">1351304714</int> <int id="PHF76FGJ7FD2QP4">1351304715</int> <int id="PUVV32CJNBC3NRD">1351305160</int> <int id="PUVVH2I5C8F2F9E">1351305189</int> <int id="PIF1AB3PVG63M4B">1351305193</int> <int id="PCRC6VPO4DV199B">1351305314</int> <int id="PHVVGEUKEA52530">1351305337</int> <int id="PUVO7EKBSC93K41">1351305670</int> <int id="PCR42DQMSCV1P9O">1351305676</int> <int id="PUV7PU7B5JH2OP2">1351306047</int> <int id="PUV6KRQBN7D2IKA">1351306049</int> <int id="PUV9V6FRA8C3J0T">1351306151</int> <int id="PHV3J76JGS62RF5">1351306158</int> <int id="PHFLMIVO2UC2HK7">1351306162</int> <int id="PUVRO6CA60I2RT3">1351306203</int> <int id="PCR101KU5UP1EAG">1351306227</int> <int id="PHV7MNV1VO62BC4">1351306359</int> <int id="PA9PPLUHPJD24UQ">1351306937</int> <int id="PHV47UC3OL72KBN">1351307445</int> <int id="PM1AT9Q3K502RPF">1351307563</int> <int id="PCRDBVC21JL12OL">1351307823</int> <int id="PHFP13C56FD2BL8">1351307908</int> <int id="PCRIELI3PNS1E5L">1351308978</int> <int id="PUV5FLF16L935CN">1351308987</int> <int id="PHFINSK9JCD29H5">1351309243</int> <int id="PCR14AIGQJO1V4O">1351310009</int> <int id="PUV1D62CP6D2M64">1351310172</int> <int id="PUV2IHARV7F2GRE">1351310683</int> <int id="PHVT7Q4O4O0236A">1351311137</int> <int id="PCRDFPF4INS1J1N">1351311219</int> <int id="PCRE9GAUINS1F64">1351311498</int> <int id="PUV2T1MGQ9G2B9J">1351311559</int> <int id="PUVSGG1ULJE2EBJ">1351312867</int> </object> <object id="25-05-29"> <int id="PHV4CH2GBG82DBC">1351315514</int> <int id="PHFKH28R6CD2FRJ">1351315520</int> <int id="PHF20O01HRC21FP">1351315802</int> <int id="PM11J0LUK902GQV">1351315933</int> <int id="PHFJVIL04RC2ULD">1351316317</int> <int id="PUV5J9CJOTE26LL">1351316319</int> <int id="PHVO66M3K3A2N7R">1351316882</int> <int id="PUV8GAJPDAC38MT">1351316882</int> <int id="PUVFQDGJS5D2KP6">1351318231</int> <int id="PUVM586HP7C35NG">1351318232</int> <int id="PHVKC1MCF792I7I">1351318422</int> <int id="PUVNJCEML7P2ES0">1351318752</int> <int id="PUV4DE6TGQB3AE8">1351319095</int> <int id="PUVN43KAO6D2EQU">1351319333</int> <int id="PIF3OCMOP251AKC">1351320099</int> <int id="PUVSBITHB7I24U6">1351320130</int> <int id="PA984LGOCKD26UK">1351320715</int> <int id="PIFUFPSQ4J63MC2">1351320787</int> <int id="PHF624MH10D2RFE">1351321311</int> <int id="PUVCNHA3SRA3DSU">1351321802</int> <int id="PUVKTS44N2C3KDO">1351323130</int> <int id="PHVEQLLACJ32T3A">1351323792</int> <int id="PUVOQGDCFTH21UN">1351325581</int> <int id="PA96LR4D8CI2CCO">1351325779</int> <int id="PUVU3OIE4UE2U9S">1351325779</int> </object> <object id="25-05-30"> <int id="PUVG4MMHQEC3K5I">1351331383</int> <int id="PUVUCKR0LKB3IN1">1351334282</int> <int id="PCR4KMJVCAO1OQ7">1351338583</int> <int id="PUV5FLF16L935CN">1351339489</int> <int id="PUVUEFJABRG2LND">1351341497</int> <int id="PCRICS10PNS1LHA">1351341922</int> <int id="PUVG9QRETKH25QB">1351342492</int> <int id="PCRIELI3PNS1E5L">1351342633</int> <int id="PCROM6AT0OS14BM">1351342797</int> </object> <object id="25-05-31"> <int id="PUVJGMGHIIA388B">1351343678</int> <int id="PA9K4D8K8MD27JH">1351344028</int> <int id="PUV3BSFB8683J6F">1351344350</int> <int id="PUVJU69IKJC3BOE">1351344592</int> <int id="PUV334M99H83606">1351344606</int> <int id="PCRE2VRLINS18V4">1351346277</int> <int id="PUV5U05UFFC3152">1351347153</int> <int id="PHVSOLK71682QVK">1351347154</int> <int id="PDO95R1QA2R2RJG">1351347158</int> <int id="PHVE5USE9P62UL5">1351349120</int> <int id="PUVFDPFU2IC3M94">1351349120</int> <int id="PUVARN7AG3C3M4T">1351350035</int> <int id="PCRMKIMIUNS1S1G">1351350035</int> <int id="PHF43603F4D2I2C">1351350692</int> <int id="PUVG9VDGPRE2FJ3">1351350693</int> <int id="PHFP7684P3D2ATH">1351352776</int> <int id="PCREFFQ3JNS15CM">1351352977</int> <int id="PUVMS9VOKLB35UB">1351352978</int> <int id="PUV766GM4TE2A3Q">1351353058</int> <int id="PUVNL8P6R7F26RP">1351354427</int> <int id="PA9E1LMNLSD2EOO">1351354976</int> <int id="PUVPSJ7IMOI2QVU">1351354977</int> <int id="PUVFR38J3UI26C5">1351356191</int> <int id="PUV1QK9Q61C3SF8">1351356193</int> </object> <object id="25-05-32"> </object> <object id="25-05-33"> </object> <object id="25-05-34"> </object> <object id="25-05-37"> </object> <object id="25-05-38"> </object> <object id="25-05-39"> </object> <object id="25-05-40"> </object> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PUVCGISE9MB3TH2">1352337941</int> <int id="PUVDRHOGR9G26PU">1352338092</int> <int id="PUVFQDGJS5D2KP6">1352338134</int> <int id="PHVERIL4RP626NI">1352338137</int> <int id="PHVVO7CASCB21O5">1352338147</int> <int id="PA9JM8MCJKD21BM">1352338254</int> <int id="PUV22S2QJIF2GFM">1352338268</int> <int id="PUVI4EDKGAJ207T">1352338337</int> <int id="PUV6M92FD0H2KGM">1352338391</int> <int id="PA9JU3J1S1E2OQH">1352338525</int> <int id="PUVG6IV8J5F28N1">1352338529</int> <int id="PUVCGSD5SHI2CS0">1352338583</int> <int id="PHV2N3G3AF825OC">1352338639</int> <int id="PUVQLJ8LIDD35J2">1352338684</int> <int id="PHFPBUKK93D26VU">1352338716</int> <int id="PUV597GK3RC3SCU">1352338739</int> <int id="PUVJMUGHVLN2761">1352338882</int> <int id="PCRNTG9RVNS1O4I">1352338890</int> <int id="PUV1MD34M9C315H">1352339015</int> <int id="PUVNQPF8V793A3I">1352339221</int> <int id="PUVMBM6UPP732P9">1352339242</int> <int id="PUV7RPO3O7C3HHP">1352339288</int> <int id="PCRJNG7VCDV1MVM">1352339379</int> <int id="PCRT0VFI6OS14VF">1352339486</int> <int id="PUV8SBMSATQ2RSI">1352339585</int> <int id="PUVEHJQG89N2LRV">1352339716</int> <int id="PHFGMBJBA4D21EG">1352339731</int> <int id="PUVRPFMR7A93S58">1352339844</int> <int id="PUV7HG7UG9C35EM">1352340161</int> <int id="PUVO4DC282A3502">1352340169</int> <int id="PHVERH6QNU621I8">1352340238</int> <int id="PUVNK0QP52936BH">1352340314</int> <int id="PHFIS28II2D239P">1352340447</int> <int id="PA9KQKS9Q6E2LCJ">1352340660</int> <int id="PUVTARTIND830E8">1352340690</int> <int id="PUV7K08N17C36FO">1352340871</int> <int id="PUVNQ0KFSGB3BTA">1352340903</int> <int id="PUV88HJU7OB3B8Q">1352341074</int> <int id="PUV5LK3PK7C3F93">1352341190</int> <int id="PHV8FFNSUB9254U">1352341201</int> <int id="PHFKVVPRI2D2CGO">1352341391</int> <int id="PHFFO3VALUC2TAP">1352341744</int> <int id="PUVAKHID8B839A6">1352341811</int> <int id="PUVH5K5FGJA3TQU">1352341883</int> <int id="PUV6ERH6FUC3QJM">1352341960</int> <int id="PUVQEFLSU9C3SN2">1352342003</int> <int id="PUVKO81C8JC37NG">1352342033</int> <int id="PUVUMCDF3VC38C9">1352342051</int> <int id="PHVPL6K28F7295D">1352342351</int> <int id="PUV682PVF5D23FH">1352342493</int> <int id="PUVSLPFE06D2FMT">1352343087</int> <int id="PUVP5UD3C9G2JBI">1352343321</int> <int id="PUV2PCFUPSF2NBE">1352343548</int> <int id="PCRG9CKLLNS1KTS">1352343889</int> <int id="PHFM0PHNTUC2S8E">1352344166</int> <int id="PA92MJIOKQD2IMA">1352344171</int> <int id="PUVFDC083PE2F30">1352344502</int> <int id="PHF624MH10D2RFE">1352344686</int> <int id="PUVVH2I5C8F2F9E">1352344769</int> <int id="PUVOQVJ074A3F6S">1352344797</int> <int id="PUVEBH3OUV93KUL">1352344938</int> <int id="PHV129UF5G32V98">1352344971</int> <int id="PUV89GGJIEC3P2I">1352345022</int> <int id="PA9TIP55P1E2QDL">1352345080</int> <int id="PA98EALDUKD2CR9">1352345087</int> <int id="PUV98URITEE2A67">1352345763</int> <int id="PCRAFRDJFUT1PGB">1352345862</int> <int id="PUVH3TQBJS63O8M">1352345918</int> <int id="PA9QA8RBRPD22NK">1352346013</int> <int id="PUVMULPHU9C3I2F">1352346259</int> <int id="PUV3UVBHPJC31JM">1352346326</int> <int id="PHFINSK9JCD29H5">1352346877</int> <int id="PA9N1FRNSFD2UKI">1352347025</int> <int id="PUVBUB7PT9E2HLL">1352347163</int> <int id="PCR45R93AUT1EMH">1352347429</int> <int id="PUVL6SNU4FC3EBM">1352347475</int> <int id="PUVUIJROI5D3C91">1352347545</int> <int id="PUVQG3VUCFG2LHH">1352347560</int> <int id="PUVAE6KTHG73HCU">1352347752</int> <int id="PHVG2J362992RNS">1352347791</int> <int id="PM1B73SDG602CVK">1352347791</int> <int id="PIFGCNAO5663GCP">1352348155</int> <int id="PIFCOFRPRO53K91">1352348401</int> <int id="PHV1AV0JOP62IOS">1352348452</int> <int id="PUVDML8BPK93CKI">1352348690</int> <int id="PHFT66IJV2D29PS">1352348779</int> <int id="PUVGMSFUPBO22O7">1352348819</int> <int id="PUVGPDJ4TFF2QG9">1352349180</int> <int id="PUVR7DBV7JG2E14">1352349404</int> <int id="PUVLFPT60BB3COT">1352349917</int> <int id="PA9SI3EOAND2BDK">1352350608</int> <int id="PUVSNKTVQ2B3QMM">1352350718</int> </object> <object id="25-07-09"> <int id="PHF624MH10D2RFE">1352351111</int> <int id="PHVQRJ67Q742FCG">1352351111</int> <int id="PUVSFSPLFNB3DHR">1352351137</int> <int id="PUVFICB3E7D2UAI">1352351137</int> <int id="PUV7D9O544C3NRT">1352351137</int> <int id="PUVL88N12R93662">1352351520</int> <int id="PHV7FR190MB2I9S">1352351535</int> <int id="PHVU651LED82STP">1352351694</int> <int id="PUV1S8K1OAD3GDS">1352351777</int> <int id="PUVVH2I5C8F2F9E">1352351815</int> <int id="PHV89FL42742GGO">1352352603</int> <int id="PA9SI3EOAND2BDK">1352352849</int> <int id="PA9MTNTQ1ND29LQ">1352352981</int> <int id="PUVAL7U6GLB3K6V">1352353316</int> <int id="PUVTEISFLLB38P4">1352354086</int> <int id="PIF14GJO15D1P84">1352354300</int> <int id="PA960DP081E28ET">1352354307</int> <int id="PUVNIED25Q93D4F">1352354743</int> <int id="PUVSHL8QREC34AG">1352354751</int> <int id="PIF8JLTPE57F7">1352354996</int> <int id="PCR42DQMSCV1P9O">1352355469</int> <int id="PUVER2ENULH2DBE">1352355485</int> <int id="PHVPU1P96F22BP0">1352355503</int> <int id="PHVJR6H2J652Q9K">1352355601</int> <int id="PUV2PAADR773LO4">1352355704</int> <int id="PCRE15VHINS1RJI">1352355787</int> <int id="PUVGQEAFEH93H51">1352355862</int> <int id="PUVA2G38QIF2RTR">1352355941</int> <int id="PUV49PF4QVF2OMB">1352355941</int> <int id="PUVMPLH02C83FM9">1352356049</int> <int id="PCREQ9LEJFO1JBG">1352356272</int> <int id="PUV68RBT5AC32VU">1352356296</int> <int id="PUVJUGDN26A3QKR">1352356300</int> <int id="PUV7366F1ED36R5">1352356532</int> <int id="PHVLEE66STA2M50">1352356533</int> <int id="PUV38HK9V4D32N1">1352356596</int> <int id="PA9IG1OCQUD2DLT">1352356865</int> <int id="PIFC9L6RU463IE3">1352357520</int> <int id="PUVHV8ARRBD3A3I">1352357803</int> <int id="PM1EMRJKJ4027KO">1352357938</int> <int id="PUVIJILB95D21G5">1352358320</int> <int id="PUV9Q6DO08B38DG">1352358540</int> <int id="PUVQH2QDE1D3S74">1352358869</int> <int id="PIFAVSBAJR538UD">1352358953</int> <int id="PHV3SOHNMB52ELG">1352359296</int> <int id="PM1A4MDNG402AR4">1352360638</int> <int id="PUVV5HJ6RD93NIJ">1352361332</int> <int id="PUVOIO5NTF93QO1">1352361332</int> <int id="PCRAFRDJFUT1PGB">1352361500</int> <int id="PUVEH5J81UC3JJG">1352362371</int> <int id="PHFTTPBQ52D2EAM">1352362427</int> <int id="PUVR4MQSVE8394R">1352363386</int> <int id="PUVI9DR31TC3VEU">1352363386</int> <int id="PUV2K42RBQ632D8">1352363473</int> <int id="PHFL2MQMU2D2GE4">1352364746</int> <int id="PA9N3O7N5PD2BP8">1352364977</int> <int id="PCRNH6RCVNS1072">1352365028</int> </object> <object id="25-07-10"> <int id="PA9N3O7N5PD2BP8">1352365644</int> <int id="PUVMRHDRT483OEH">1352366067</int> <int id="PIFVT48DPS53G9V">1352366091</int> <int id="PUVVLIPFM5D2UC5">1352366126</int> <int id="PUVSLPFE06D2FMT">1352366665</int> <int id="PUVDML8BPK93CKI">1352366935</int> <int id="PUV38HK9V4D32N1">1352367094</int> <int id="PUV7JB00JKB3KR5">1352367329</int> <int id="PUVHPAD7L5N292B">1352367701</int> <int id="PDO2D0ITH7R207V">1352371200</int> <int id="PUVEGG4T2FG2UCD">1352372173</int> <int id="PCR29ABNEOS178K">1352372481</int> <int id="PUVNAL5LJF93DLV">1352373116</int> <int id="PHFBMADAEAD2JND">1352373219</int> <int id="PUVL92I9TBG2H4O">1352373720</int> <int id="PCRLV5SPL0U1F91">1352374156</int> <int id="PCR1EB543VS1GVO">1352374843</int> <int id="PUVG0RDUHUL2RVJ">1352375482</int> <int id="PUV677JNM993DLO">1352376231</int> <int id="PUVJG2MDAQA32CE">1352376268</int> <int id="PA9DNN7MF4E2AAV">1352376326</int> <int id="PHF31BRLV4D27G0">1352376588</int> <int id="PUVOKQV3ONC3V43">1352377017</int> <int id="PUVTARTIND830E8">1352377576</int> <int id="PUVQOVN59ME2QM9">1352377954</int> <int id="PUV22S2QJIF2GFM">1352378031</int> <int id="PUV5L7HCIF8378N">1352378227</int> <int id="PIF82R4LQF01ISK">1352378324</int> <int id="PUVO4DC282A3502">1352379372</int> </object> <object id="25-07-11"> <int id="PHF624MH10D2RFE">1352379970</int> <int id="PUV50C46PKF2MOK">1352380006</int> <int id="PUVITB8GICG24NJ">1352380295</int> <int id="PHFIN187QVC224H">1352380331</int> <int id="PUV22S2QJIF2GFM">1352380692</int> <int id="PUV38HK9V4D32N1">1352380799</int> <int id="PUVOKQV3ONC3V43">1352381073</int> <int id="PHVFSV9R04A2DO9">1352381658</int> <int id="PHVSGKDV7SA2FK8">1352381956</int> <int id="PUVIN1LIDOB3ANK">1352382107</int> <int id="PUVA2RGKSPK263G">1352383090</int> <int id="PUVEOLGEO6K2O7N">1352383166</int> <int id="PCR2K80QGPS1J5K">1352383278</int> <int id="PUV4DS19B7D2FDH">1352383729</int> <int id="PIF487P35R614M3">1352384508</int> <int id="PUVK4347KHE2JL8">1352385468</int> <int id="PHFU9TB1JVC2JE6">1352385821</int> <int id="PA9UFDR4JJD224N">1352385821</int> <int id="PUVEDIHK8N930OM">1352385880</int> <int id="PHVRFSUBBDC2QD9">1352386449</int> <int id="PHV7FR190MB2I9S">1352386876</int> <int id="PUVS76IBB0S2R71">1352386902</int> <int id="PUV7281593F2747">1352387010</int> <int id="PHFM0PHNTUC2S8E">1352387084</int> <int id="PUVUEFJABRG2LND">1352387464</int> <int id="PUVBVF0T4G93C1B">1352387773</int> <int id="PCRR6HQFR0U1SRC">1352387853</int> <int id="PUVR8CQDK2I2PUF">1352387875</int> <int id="PHFODCHB93D2L7K">1352389160</int> <int id="PHVBOLSE8TA2U48">1352389693</int> <int id="PCRNBUJSCJL1SOG">1352389730</int> <int id="PUVAQ4JEIS632UC">1352390137</int> <int id="PHV4UNDQ9Q02PDK">1352390480</int> <int id="PHV3LKT28Q02QPK">1352390480</int> <int id="PUV7J6LKDUF2NS8">1352390543</int> <int id="PUVBS2U9OTC3BEJ">1352390585</int> <int id="PUV9E4JDSTA3253">1352390625</int> <int id="PUVHGT5JDLB30F7">1352390766</int> <int id="PUV6FUO75V93AII">1352390766</int> <int id="PUVHKHKSFDC3H9E">1352390766</int> <int id="PUVPPE5CM583388">1352390766</int> <int id="PA93VP2554E2H3R">1352390766</int> <int id="PUVTEISFLLB38P4">1352390766</int> <int id="PUVHCH6SH3A30DK">1352392276</int> <int id="PHFJAE8FQVC2RNH">1352392307</int> <int id="PHFQF61M2CD2DOI">1352392307</int> <int id="PUVP3PO8T3H21UN">1352392362</int> <int id="PHFAM2DUH4D23RG">1352392500</int> <int id="PUVOSKG9QRE2KK7">1352392853</int> <int id="PUVI45UO8LF292D">1352392854</int> </object> <object id="25-07-12"> <int id="PUVQ9JTUGOB3FA9">1352394234</int> <int id="PHFINSK9JCD29H5">1352394498</int> <int id="PIF5ERQF5R61H5F">1352394629</int> <int id="PUVFDNPQBFF2FLN">1352394722</int> <int id="PHVK2FSFOT22C3I">1352394749</int> <int id="PUVQAVTGUBC3QUV">1352394929</int> <int id="PHFOSFVBC4D2JAT">1352395053</int> <int id="PUVEOLGEO6K2O7N">1352395053</int> <int id="PCR5A28ARIL1DJS">1352395173</int> <int id="PUVUPA3B18D3VNL">1352395197</int> <int id="PIF6FQ8JCE21N4B">1352396591</int> <int id="PHVCIHQ7LN0268R">1352396667</int> <int id="PUVTTIURKLC3B30">1352397043</int> <int id="PIFSMKNBOG63N0R">1352397552</int> <int id="PUVHL9FSGF93U3Q">1352397748</int> <int id="PCR6QLN3RVT1329">1352397895</int> <int id="PUVGPL53G5D3L5P">1352397920</int> <int id="PHVFSV9R04A2DO9">1352398430</int> <int id="PUVUTHHQPUB3VB1">1352398633</int> <int id="PUVR9F4VTIC3SNB">1352399369</int> <int id="PHVFG0THJF827TB">1352399824</int> <int id="PHFIN187QVC224H">1352399987</int> <int id="PHVVO7CASCB21O5">1352400216</int> <int id="PHF248O600D2SNR">1352400435</int> <int id="PUVSCJHRTVS280U">1352400886</int> <int id="PHV2N3G3AF825OC">1352400907</int> <int id="PUVMULPHU9C3I2F">1352400958</int> <int id="PUVJU69IKJC3BOE">1352401088</int> <int id="PUV611DPFLE2TKH">1352401753</int> <int id="PHF624MH10D2RFE">1352401866</int> <int id="PUV8KRHK6EG25DT">1352402282</int> <int id="PHFNCFTVB4D2DNN">1352402491</int> <int id="PUVTM5AUBIB32RQ">1352402638</int> <int id="PHVV591MRV524E4">1352402944</int> <int id="PCRMKIMIUNS1S1G">1352402958</int> <int id="PUVETOAC09D3VCT">1352403218</int> <int id="PIF53TPCNF01COP">1352403240</int> <int id="PHFPPJFJTVC2RK0">1352403292</int> <int id="PCR3ECHFUTJ13V2">1352403407</int> <int id="PUVLC1FVGH739H1">1352403635</int> <int id="PUVDBDVD0E73TCC">1352403942</int> <int id="PUVKM4SM3993AGR">1352404110</int> <int id="PHVMQ71H0082G9H">1352404478</int> <int id="PUVKEAA1P2J28QC">1352404478</int> <int id="PUVUEFJABRG2LND">1352405226</int> <int id="PUVF9LL0KDE209S">1352405653</int> <int id="PUVHLNOLHVB3CIT">1352405660</int> <int id="PHV19AFHTB922VQ">1352405691</int> <int id="PHFM0PHNTUC2S8E">1352405832</int> <int id="PHVSFAS9ED82TBC">1352405877</int> <int id="PM1LOQ518N129RP">1352405910</int> <int id="PM1DM7LBVA02ABN">1352406125</int> <int id="PA9F3EHI36E2JIG">1352406159</int> <int id="PCRNTG9RVNS1O4I">1352406459</int> <int id="PA93S1AM4RD29RK">1352406595</int> <int id="PHVCM51J3542LH9">1352406724</int> <int id="PCRU680J7UM14HN">1352406755</int> <int id="PUV22S2QJIF2GFM">1352406796</int> <int id="PHFIS28II2D239P">1352406997</int> <int id="PUVFUD1UJRE26GD">1352407061</int> <int id="PIF6HVTEMHA17HQ">1352407456</int> <int id="PUVTBBTJFSG2NC1">1352407591</int> <int id="PIFOC6038Q53T2J">1352407680</int> <int id="PIFCN0H01L638B9">1352407680</int> <int id="PCR14AIGQJO1V4O">1352407815</int> <int id="PHFSSK0KN1D2MJL">1352407974</int> <int id="PHFQFJG5KCD2TET">1352408123</int> <int id="PUVA2RGKSPK263G">1352408215</int> <int id="PA9C0M15E7E2HBV">1352408353</int> </object> <object id="25-07-13"> <int id="PIF3Q9V7UV53GHM">1352408478</int> <int id="PHV1B2H65452BKB">1352408591</int> <int id="PCRR6HQFR0U1SRC">1352408938</int> <int id="PHF9BGSKEUC2HD7">1352409199</int> <int id="PUV4UO1A0FB3VQ1">1352409235</int> <int id="PUVOP728SEE2BQE">1352409553</int> <int id="PHFAVDEGUTC2N71">1352409765</int> <int id="PUVQ3FG2SGD391H">1352410140</int> <int id="PHV3SOHNMB52ELG">1352410206</int> <int id="PHFJAE8FQVC2RNH">1352410259</int> <int id="PUVCAJTDPFH203K">1352410261</int> <int id="PUVVE7C5HV93LDE">1352410324</int> <int id="PUV42LEOBAF2MKD">1352410559</int> <int id="PIFSMKNBOG63N0R">1352410586</int> <int id="PUVU2IND1GB3UOL">1352410958</int> <int id="PUVHH62HCPE2TQ5">1352410959</int> <int id="PHF6LNTTT3D2PLQ">1352411082</int> <int id="PUVA1JND5373D20">1352411188</int> <int id="PUVVTCN5RUC37TL">1352411197</int> <int id="PUVSLPFE06D2FMT">1352411370</int> <int id="PUVRHCHA89E23J6">1352411551</int> <int id="PUVHCFH35MG2UOI">1352411963</int> <int id="PUV9H4HP7PL2SLO">1352412171</int> <int id="PIF73NQUM7634IP">1352412373</int> <int id="PHV7FR190MB2I9S">1352412665</int> <int id="PUVG9DO5E6C3PV1">1352412769</int> <int id="PUVA2RGKSPK263G">1352412779</int> <int id="PUVG9PRB1KC3GEA">1352412844</int> <int id="PUV39DUPENE2ATB">1352412978</int> <int id="PHFO9KEJ25D2MBL">1352413526</int> <int id="PA9D6L6HEVD234S">1352413651</int> <int id="PUVDML8BPK93CKI">1352414896</int> <int id="PUV36S8ACFC3ESM">1352415182</int> <int id="PUVSVDEIMTG26B0">1352415233</int> <int id="PUV4DAEQGTH2M1R">1352415774</int> <int id="PUVF6C9CUNB3RKF">1352415840</int> <int id="PUVSRKDKT993SB7">1352415912</int> <int id="PUVA9MCI77D2D9F">1352416070</int> <int id="PUV77CBGEL836KM">1352416477</int> <int id="PUV3Q3PFL0Q2ON5">1352416702</int> <int id="PUV4AHCDIDF25RF">1352416889</int> <int id="PUVFDC083PE2F30">1352417145</int> <int id="PUV6M92FD0H2KGM">1352417273</int> <int id="PUVJFL92V8H27T1">1352417324</int> <int id="PUVG9QRETKH25QB">1352417444</int> <int id="PUVS01MGFEH2MAJ">1352417501</int> <int id="PCRT0VFI6OS14VF">1352417816</int> <int id="PHF45DAP9AD2SN3">1352418128</int> <int id="PHFU4OO79AD2ENQ">1352418365</int> <int id="PUVA0B6GOHC37S1">1352418397</int> <int id="PUVJU69IKJC3BOE">1352418412</int> <int id="PIF6LVBP7L53SOB">1352418525</int> <int id="PUV78MGI48C3NKP">1352418997</int> <int id="PUVFEHU904J2T3U">1352419080</int> <int id="PHFIS28II2D239P">1352419159</int> <int id="PCRP8GQE1OS1AJH">1352419253</int> <int id="PHFT66IJV2D29PS">1352419370</int> <int id="PUVRIARH04D3M95">1352419419</int> <int id="PUVTQUVF60B31ET">1352419846</int> <int id="PUVLRCU4RAD3PKB">1352420150</int> <int id="PUV979L46IB3HEE">1352420339</int> <int id="PUVJA2IREO83T33">1352420422</int> <int id="PA9BE3UF1VD2HR0">1352420422</int> <int id="PUV6LK2KR4G2RGC">1352420439</int> <int id="PUVSS7LVKEC318S">1352420538</int> <int id="PUV6JMHQ8QB32DL">1352420609</int> <int id="PUV4U37MK7C34S6">1352420716</int> <int id="PA9SI3EOAND2BDK">1352420919</int> <int id="PUV8DVRO19G2VCP">1352421334</int> <int id="PUV2BIBPKHG27EA">1352421395</int> <int id="PUVOJOU72UG25U6">1352421603</int> <int id="PUVDRHOGR9G26PU">1352421618</int> <int id="PHVCFTGJKT723Q0">1352421639</int> <int id="PCRBFCINGUT15SD">1352421655</int> <int id="PUVPC6P6SA839RS">1352421784</int> <int id="PCR101KU5UP1EAG">1352421902</int> <int id="PUVK1O2UN6D3479">1352422094</int> <int id="PHFRDC7RL4D2N6Q">1352422110</int> <int id="PUV6GUJ9FSH2EUV">1352422479</int> <int id="PUVG81UCRAB3LF0">1352422502</int> <int id="PUVVEUBT0KE20IO">1352422571</int> <int id="PHV7G2H1M642RO4">1352422756</int> </object> <object id="25-08-01"> <int id="PA9SI3EOAND2BDK">1352423124</int> <int id="PUVH21G381736TR">1352424241</int> </object> <object id="25-08-05"> <int id="PHVF1FRMV9929LG">1352491830</int> </object> <object id="25-08-15"> <int id="PUVVPQ3V7KA3DCO">1352635346</int> </object> <object id="25-08-17"> <int id="PUV1EQL5J783SNV">1352662553</int> </object> <object id="25-08-27"> <int id="PHVF1FRMV9929LG">1352806424</int> </object> <object id="25-08-28"> <int id="PUVV2L108LB3DGG">1352817808</int> </object> <object id="25-10-19"> <int id="PA9SEU1KQ5E2M49">1353287162</int> </object> <object id="25-10-23"> <int id="PCRNH6RCVNS1072">1353358118</int> </object> <object id="25-10-36"> <int id="PUVN43KAO6D2EQU">1353541696</int> </object> <object id="25-10-37"> <int id="PHVG5OB69952VP5">1353556608</int> </object> <object id="25-11-09"> <int id="PCRNH6RCVNS1072">1353825035</int> </object> <object id="25-11-10"> <int id="PUVCIOJLOC93UKT">1353834796</int> </object> <object id="26-03-04"> <int id="PA9TIG5TT8I2V6C">1354390812</int> </object> <object id="26-03-13"> <int id="PUVTMVI961G2PNI">1354514396</int> </object> <object id="26-03-42"> <int id="PUVLMA7JSQH265B">1354935340</int> <int id="PUVCE3RNDIB340P">1354937296</int> </object> <object id="26-04-01"> <int id="PUV766GM4TE2A3Q">1355103021</int> <int id="PUVUTSGV5JB37FB">1355103021</int> <int id="PUVB13LSIRI2JVO">1355103021</int> <int id="PHFIS28II2D239P">1355103021</int> <int id="PUVBPAVNEQJ2IOM">1355103021</int> <int id="PUV8C6CRE3F2RU3">1355103022</int> <int id="PHV4T5FLFC42GP7">1355103022</int> <int id="PUVTC68TKTE2VKV">1355103022</int> <int id="PHVF66LO2RA20PQ">1355103022</int> <int id="PUVBTTFKSVE2QNB">1355103029</int> <int id="PIFT94292L53H76">1355111816</int> </object> </object> <object id="hi_sign_evasion_record_history"> <object id="version_9"> <str id="pc_tsid">PUVM0NPD3QC3EDD</str> <str id="pc_label">Zauberbergy</str> <int id="secs">11</int> <int id="when">1352354607</int> <int id="version">9</int> <str id="day_key">25-07-09</str> </object> </object> <object id="hi_sign_evasion_record"> <str id="pc_tsid">PUVN43KAO6D2EQU</str> <str id="pc_label">Jendaline</str> <int id="secs">12</int> <int id="when">1352922958</int> <int id="version">10</int> <str id="day_key">25-08-35</str> </object> <object id="hi_sign_daily_evasion_record"> <str id="pc_tsid">PUVN43KAO6D2EQU</str> <str id="pc_label">Jendaline</str> <int id="secs">10</int> <int id="when">1354484455</int> <int id="version">10</int> <str id="day_key">26-03-11</str> </object> <object id="incantations_redux"> <object id="PUV3TM3OVAF27P9"> <int id="step">1</int> <int id="ts">1354917250</int> </object> <object id="PUVLQBGCGSM26QB"> <int id="step">1</int> <int id="ts">1354918631</int> </object> <object id="PHVK1TJ1MP62FCS"> <int id="step">2</int> <int id="ts">1354918646</int> </object> <object id="PUVS4SP1UHI26UI"> <int id="step">3</int> <int id="ts">1354918648</int> </object> <object id="PA9TLH9T15E2EVD"> <int id="step">1</int> <int id="ts">1354919268</int> </object> <object id="PUVNIBP02EE2L04"> <int id="step">2</int> <int id="ts">1354919274</int> </object> <object id="PUV3EGIE8GG2CSM"> <int id="step">3</int> <int id="ts">1354919275</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1354920249</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1354920251</int> </object> <object id="PHF9LSI6S4D2FTF"> <int id="step">3</int> <int id="ts">1354920270</int> </object> <object id="PA9JM8MCJKD21BM"> <int id="step">1</int> <int id="ts">1354921386</int> </object> <object id="PIFQHBL4S563QJT"> <int id="step">2</int> <int id="ts">1354921644</int> </object> <object id="PHVVPUDC4H72BRE"> <int id="step">1</int> <int id="ts">1354922480</int> </object> <object id="PUV6JPAODNB3FOK"> <int id="step">1</int> <int id="ts">1354923506</int> </object> <object id="PUVE1NGB27C36PP"> <int id="step">2</int> <int id="ts">1354923521</int> </object> <object id="PUVE0P38UUC3P2O"> <int id="step">1</int> <int id="ts">1354923669</int> </object> <object id="PUVCGKMH58C3E1E"> <int id="step">2</int> <int id="ts">1354923670</int> </object> <object id="PA95UHHMLID28OO"> <int id="step">3</int> <int id="ts">1354923671</int> </object> <object id="PCR6L4VMU3N1H72"> <int id="step">1</int> <int id="ts">1354925531</int> </object> <object id="PM1A3P8FSA0242M"> <int id="step">2</int> <int id="ts">1354925534</int> </object> <object id="PCR4R99KAUT1JQ7"> <int id="step">3</int> <int id="ts">1354925535</int> </object> <object id="PHFINSK9JCD29H5"> <int id="step">1</int> <int id="ts">1354926183</int> </object> <object id="PUVOSJVQQFD3OUB"> <int id="step">1</int> <int id="ts">1354927162</int> </object> <object id="PUV9NCGHN0Q2QAO"> <int id="step">2</int> <int id="ts">1354927163</int> </object> <object id="PUVKSMIKR8L2A6S"> <int id="step">1</int> <int id="ts">1354928292</int> </object> <object id="PUVJ2IDUJ4G2MKF"> <int id="step">2</int> <int id="ts">1354928295</int> </object> <object id="PUVTIP2E8F930BB"> <int id="step">3</int> <int id="ts">1354928296</int> </object> <object id="PUVCE3RNDIB340P"> <int id="step">1</int> <int id="ts">1354934766</int> </object> <object id="PUVLMA7JSQH265B"> <int id="step">1</int> <int id="ts">1354935316</int> </object> <object id="PUVGUSBSUSF297H"> <int id="step">2</int> <int id="ts">1354935320</int> </object> <object id="PUVFH6OPFTF2LF6"> <int id="step">3</int> <int id="ts">1354935322</int> </object> <object id="PUV8QE0JLNR2DEH"> <int id="step">1</int> <int id="ts">1354936762</int> </object> <object id="PUVCI5AC1SC3HR3"> <int id="step">1</int> <int id="ts">1354941413</int> </object> <object id="PIFHIBOVJ6632DF"> <int id="step">2</int> <int id="ts">1354942701</int> </object> <object id="PM1B73SDG602CVK"> <int id="step">3</int> <int id="ts">1354945564</int> </object> <object id="PHFKGTOEK4D24VC"> <int id="step">1</int> <int id="ts">1354967785</int> </object> <object id="PCR4KMJVCAO1OQ7"> <int id="step">1</int> <int id="ts">1354970098</int> </object> <object id="PUVN43KAO6D2EQU"> <int id="step">2</int> <int id="ts">1354972999</int> </object> <object id="PUVTTIURKLC3B30"> <int id="step">1</int> <int id="ts">1354974018</int> </object> <object id="PA9TADD9FPD233C"> <int id="step">1</int> <int id="ts">1354976223</int> </object> <object id="PHVR7F201F72EUM"> <int id="step">2</int> <int id="ts">1354977801</int> </object> <object id="PA9SSH8TMRD2VN8"> <int id="step">1</int> <int id="ts">1354978404</int> </object> <object id="PCRKFODORUT188S"> <int id="step">2</int> <int id="ts">1354986280</int> </object> <object id="PUVVILGJCUF27V0"> <int id="step">1</int> <int id="ts">1354987818</int> </object> <object id="PUVAK5P8TQ63FJO"> <int id="step">1</int> <int id="ts">1354989407</int> </object> <object id="PUV3O4O76GB3392"> <int id="step">2</int> <int id="ts">1354989409</int> </object> <object id="PUVGE0QBTOB3PJC"> <int id="step">3</int> <int id="ts">1354989412</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">1</int> <int id="ts">1354992628</int> </object> <object id="PIF101U0QF7SM"> <int id="step">2</int> <int id="ts">1354995680</int> </object> <object id="PHVM8V6IJOB2QQB"> <int id="step">1</int> <int id="ts">1354995837</int> </object> <object id="PUV6AO8NDP73I4V"> <int id="step">2</int> <int id="ts">1354995881</int> </object> <object id="PUV112Q33KC3BVF"> <int id="step">1</int> <int id="ts">1354996451</int> </object> <object id="PUVOS88N9N9342Q"> <int id="step">1</int> <int id="ts">1354997870</int> </object> <object id="PUVNT5NRGM836NM"> <int id="step">1</int> <int id="ts">1354998272</int> </object> <object id="PUV5FLF16L935CN"> <int id="step">2</int> <int id="ts">1354998274</int> </object> <object id="PUVOQGDCFTH21UN"> <int id="step">1</int> <int id="ts">1354998474</int> </object> <object id="PUVUTSGV5JB37FB"> <int id="step">2</int> <int id="ts">1354998477</int> </object> <object id="PUVNQ08H15C3F2V"> <int id="step">3</int> <int id="ts">1354998480</int> </object> <object id="PUV9TAHHD9G289O"> <int id="step">1</int> <int id="ts">1354999683</int> </object> <object id="PCRHHQ7QNNS1J1S"> <int id="step">1</int> <int id="ts">1355000026</int> </object> <object id="PUVTI5R3R4E3567"> <int id="step">2</int> <int id="ts">1355000050</int> </object> </object> </object> <objrefs id="items"> <objref tsid="ICRJORE36CO1VBT" label="Quoin"/> <objref tsid="ICRJOVE36CO1VCD" label="Shrine to Pot"/> <objref tsid="ICRJOUE36CO1VC9" label="Quoin"/> <objref tsid="ICRJP0E36CO1VC5" label="Quoin"/> <objref tsid="ICRJONE36CO1VA9" label="Quoin"/> <objref tsid="IA910BC1A0I3DG3" label="Piggy"/> <objref tsid="ICRJP6E36CO1VEK" label="Quoin"/> <objref tsid="ICRJP1E36CO1VDJ" label="Quoin"/> <objref tsid="ICRJOIE36CO1V89" label="Quoin"/> <objref tsid="IDOR2T9VBLQ233P" label="Qurazy marker"/> <objref tsid="ICRJP2E36CO1VD0" label="spawner"/> <objref tsid="IA5102U8T972UND" label="Street Spirit"/> <objref tsid="IDOE2V23LOF3MS9" label="Fruit Tree"/> <objref tsid="ICRJOEE36CO1V6S" label="Quoin"/> <objref tsid="IDOCM2VC4EF3RU4" label="Fruit Tree"/> <objref tsid="ICRJP5E36CO1VE8" label="Quoin"/> <objref tsid="IA9FQ3BMOTF3GEJ" label="Bean Tree"/> <objref tsid="ICRJOOE36CO1VA1" label="Quoin"/> <objref tsid="IA9GEQK778G3H1K" label="Fruit Tree"/> <objref tsid="ICRJOJE36CO1V8R" label="Quoin"/> <objref tsid="ICRJOPE36CO1VA5" label="Quoin"/> <objref tsid="ICRJOFE36CO1V74" label="Quoin"/> <objref tsid="ICRJOSE36CO1VBJ" label="Quoin"/> </objrefs> <objrefs id="players"> <objref tsid="PUVLRU32M6A392S" label="KyraCakez"/> <objref tsid="PUV495J1E1E3QR1" label="Hijuna"/> <objref tsid="PUV4TKEBD5D2K8C" label="ukeunidork"/> <objref tsid="PUVQKM59KCC34DA" label="Agent 80"/> <objref tsid="PUVPC9KAONC38T5" label="New Glitch 163393"/> <objref tsid="PHV5CCQTGS624VI" label="Ragsk"/> <objref tsid="PUVUUJAD3483748" label="Shadhar"/> <objref tsid="PHFL85KMBAD263R" label="ZiggyIggy"/> <objref tsid="PUV35CD860E3PUJ" label="abel145"/> <objref tsid="PA95AKF8H1E2Q58" label="meeblie"/> <objref tsid="PUV17QI45TD333O" label="New Glitch 179141"/> <objref tsid="PA9VMML1VHD2R9N" label="Kageneko"/> <objref tsid="PUV4EN57HGC3RIB" label="New Glitch 160826"/> <objref tsid="PUVVDV9J2CC3P7O" label="clacorat"/> <objref tsid="PUVFKH6IIGC3S5C" label="New Glitch 160934"/> <objref tsid="PUV61R810SC33MA" label="New Glitch 165318"/> <objref tsid="PHFSLS8OB0D2PM5" label="Luna Halo"/> <objref tsid="PUVUA49HDCB3UM5" label="New Glitch 145302"/> <objref tsid="PUV6NHE2RUD3MTF" label="New Glitch 182023"/> <objref tsid="PUVVVFSN1TD3HA8" label="New Glitch 178221"/> <objref tsid="PUVBURT8IGC3864" label="New Glitch 160888"/> <objref tsid="PUVF6FC1BUB3405" label="New Glitch 152980"/> <objref tsid="PUVRJCLG36H28DG" label="Anwyn"/> <objref tsid="PHF2A0N8S3D2PDF" label="Heinrich Von Chaos"/> <objref tsid="PUV3Q7PFVUD3V67" label="New Glitch 182347"/> <objref tsid="PUVH6RR3S6C34FN" label="Pip...x"/> <objref tsid="PUVDKE4NTDH27T5" label="Haras"/> <objref tsid="PUVSAS3T6UA334O" label="BetaBat"/> <objref tsid="PIF8BRDL8P535UT" label="Applefrog"/> <objref tsid="PUV82ADNCFC3578" label="Al-dabaran"/> <objref tsid="PA5OPDOM3SF3D6Q" label="New Glitch 191747"/> <objref tsid="PHF1V24FQTC2J6N" label="nicebento"/> <objref tsid="PUVES4LQ7GC3O78" label="New Glitch 159990"/> <objref tsid="PUVJB850F2D3Q65" label="Lee Chan"/> <objref tsid="PUV8A9PJAGC3CJ5" label="New Glitch 160254"/> <objref tsid="PHFNKCEPG3D22LD" label="Moop Mobley"/> <objref tsid="PHF4ERCIJ3D2DBD" label="The God of Biscuits"/> <objref tsid="PHFCR2VC94D25VF" label="wazapc"/> <objref tsid="PHFIBIV1QVC22S7" label="Zer0Cool"/> <objref tsid="PUVG7JK1NLD3SSS" label="Dothal"/> <objref tsid="PHVIM751RB92S2F" label="Xerthok"/> <objref tsid="PHFNELA2MTC22L7" label="Djfuzion"/> <objref tsid="PCR1502FBKV14TQ" label="Fuzzie"/> <objref tsid="PUVERCC9N1F3GGN" label="New Glitch 192274"/> <objref tsid="PUVJU9NSJEB30RP" label="New Glitch 145669"/> <objref tsid="PA9VQ31F0TD2NV7" label="Fancy Feast"/> <objref tsid="PHV444MT7RA2KDC" label="Master Mo"/> <objref tsid="PUV4JQVQI8B304S" label="Ravizant"/> <objref tsid="PHVPC198LF828HP" label="AlexLoveJulia"/> <objref tsid="PUVJ2TE4UEC3II0" label="New Glitch 158923"/> <objref tsid="PUVOR3L5Q1B3DES" label="Meenmee"/> <objref tsid="PUV5P0UKJQB311J" label="Barren"/> <objref tsid="PUVMI0K9RBE205E" label="LemonadeDeath"/> <objref tsid="PUVTF384C6A3SE2" label="Victory"/> <objref tsid="PHVI8A6R9K8274A" label="Barney Stinson"/> <objref tsid="PHFUNSS5JVC2APK" label="Ovidius"/> <objref tsid="PA9ESIAM0OD2E3P" label="lilikoi"/> <objref tsid="PA9IL98ASND2J36" label="Dick McPickles"/> <objref tsid="PHVJ23UBKI72FGV" label="Big Mike"/> <objref tsid="PUVUH02OLGP2N6C" label="Zelda Trixibelle"/> <objref tsid="PUVDFCMMPT83BTT" label="michaelneal"/> <objref tsid="PUVMHTDSM5D3LI9" label="Crow_anon"/> <objref tsid="PUVE4SCC3IB3OEM" label="Britt95"/> <objref tsid="PUV2CH239IB3N83" label="New Glitch 146787"/> <objref tsid="PUVTJ6OSDJH2070" label="arctiras"/> <objref tsid="PHFMN4FHUUC2EEQ" label="Gatsu80"/> <objref tsid="PA9ITG63A7E2D19" label="Shy Violet"/> <objref tsid="PUVSOK3E1LB355T" label="sinead.go.boom"/> <objref tsid="PHFNISRNP0D2KR1" label="Grimful"/> <objref tsid="PUVG8DUOLID3LDD" label="New Glitch 172926"/> <objref tsid="PUVDAN7N2RD354N" label="ProjectShade"/> <objref tsid="PUVNQ18V28D2QN3" label="PopTartCat"/> <objref tsid="PUVBPNDBUAD3JA4" label="New Glitch 170188"/> <objref tsid="PIF68J4G4663CTF" label="Merciless Cupcake"/> <objref tsid="PA9RP53CK1E2C41" label="Madame Kat"/> <objref tsid="PUV3LUHR3J83357" label="topas"/> <objref tsid="PUV1S0RU0OD3SC7" label="New Glitch 174089"/> <objref tsid="PUVT99RBI2D3CCQ" label="New Glitch 166897"/> <objref tsid="PUV68SPRI5C3J0C" label="Theotherguy"/> <objref tsid="PUVCUCSR85D26KF" label="Airlia"/> <objref tsid="PUVTMQ5AF9G2OUN" label="tsanth"/> <objref tsid="PUV553IETLB3FRD" label="eZalb"/> <objref tsid="PUVSCK0FOOC3TID" label="Octie"/> </objrefs> </game_object>
65,948
Common Lisp
.l
1,815
31.746556
202
0.67321
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
d259304b671af1a846a2da10c3a27f2802b287288fa18e6c5458a72487c2acbe
20,862
[ -1 ]
20,863
LHV15C8IEQ322UG.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV15C8IEQ322UG Firabiz Flaunts-vertical climbing rock/LHV15C8IEQ322UG.xml
<game_object tsid="LHV15C8IEQ322UG" ts="1364236154151" label="Firabiz Flaunts" class_tsid="town" hubid="85" moteid="9" letime="3g8et8k9" rbtime="25h9v8dn" upd_gs="gs6" load_time="2013-03-25 11:19:00.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-11-09/LHV15C8IEQ322UG_loading_1320867424.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <object id="image"> <str id="url">streets/2011-11-09/LHV15C8IEQ322UG_main_1320867437.jpg</str> <int id="w">720</int> <int id="h">1235</int> </object> <object id="jobs"> <object id="327"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> <str id="title_override">Build Firabiz Flaunts In Kajuu</str> <str id="desc_override">Expand Kajuu by building a new street, Firabiz Flaunts.</str> <object id="connecting_streets"> <str id="0">LHV15KA8NE42GSP</str> </object> </object> <object id="class_ids"> <object id="job_street_ph1_01c"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Clear the Ground</str> <str id="class_id">job_street_ph1_01c</str> </object> <object id="job_street_ph2_01c"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Lay the Foundation</str> </object> <object id="job_street_ph3_02"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Eat Up</str> </object> <object id="job_street_ph4_01b"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Plant &amp; Certify</str> </object> </object> </object> <object id="328"> <object id="street_info"> <int id="type">2</int> <int id="is_hidden">0</int> <str id="title_override">Build Sohan Sheer In Kajuu</str> <str id="desc_override">Expand Kajuu by building a new street, Sohan Sheer.</str> <str id="target_street">LHV1FUFU9442AKR</str> </object> <object id="class_ids"> <object id="job_street_ph1_02"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Lay the Turf</str> <str id="class_id">job_street_ph1_02</str> <objref id="instance" tsid="QHVRENPIK652Q0M"/> </object> <object id="job_street_ph2_03"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Get Energized</str> <str id="class_id">job_street_ph2_03</str> <objref id="instance" tsid="QHVC4UJN0852PQG"/> </object> <object id="job_street_ph2_01b"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Keep Working</str> <str id="class_id">job_street_ph2_01b</str> <objref id="instance" tsid="QHVL7BCE3852RN9"/> </object> <object id="job_street_ph4_03"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Complete the Task</str> <str id="class_id">job_street_ph4_03</str> <objref id="instance" tsid="QHVT9L6S5852932"/> </object> </object> </object> </object> <bool id="jobs_is_locked">false</bool> <object id="action_requests"> </object> <object id="delayed_sounds"> </object> <bool id="jobs_auto_unlock">false</bool> <bool id="no_teleportation">false</bool> <bool id="disallow_animals">false</bool> <bool id="no_rook">true</bool> <object id="keys"> </object> <object id="qurazy"> </object> <object id="incantations"> <object id="PUVESVJ9T3A3ROL"> <int id="step">1</int> <int id="ts">1350436806</int> </object> <object id="PUVTJ95EO3A3J7V"> <int id="step">2</int> <int id="ts">1350436806</int> </object> <object id="PHVO64TD9G825A5"> <int id="step">1</int> <int id="ts">1350437763</int> </object> <object id="PHVRRU38BG725U9"> <int id="step">2</int> <int id="ts">1350437767</int> </object> <object id="PCRDURAIHUM1915"> <int id="step">1</int> <int id="ts">1350438283</int> </object> <object id="PIFHJ5TCM6D1558"> <int id="step">2</int> <int id="ts">1350438286</int> </object> <object id="PM1B73SDG602CVK"> <int id="step">3</int> <int id="ts">1350438288</int> </object> <object id="PHF7NSKA3AD2PU5"> <int id="step">1</int> <int id="ts">1350438810</int> </object> <object id="PUV6IGTIOAK28D4"> <int id="step">1</int> <int id="ts">1350439076</int> </object> <object id="PUV45EL99Q93LQ6"> <int id="step">1</int> <int id="ts">1350439148</int> </object> <object id="PUV19GCAVGE2KI9"> <int id="step">2</int> <int id="ts">1350439149</int> </object> <object id="PUVPKG267HG206L"> <int id="step">3</int> <int id="ts">1350439150</int> </object> <object id="PUVJMEF10BB3SHV"> <int id="step">1</int> <int id="ts">1350439275</int> </object> <object id="PUV5FLF16L935CN"> <int id="step">2</int> <int id="ts">1350439277</int> </object> <object id="PUVGI68DJ9G2P24"> <int id="step">1</int> <int id="ts">1350439326</int> </object> <object id="PUV4ICBH7NB3R30"> <int id="step">2</int> <int id="ts">1350439327</int> </object> <object id="PUVN8LR3HQ63GE4"> <int id="step">3</int> <int id="ts">1350439328</int> </object> <object id="PHV3S3SLT662CAJ"> <int id="step">1</int> <int id="ts">1350439694</int> </object> <object id="PHVSCM4AFS627EF"> <int id="step">1</int> <int id="ts">1350439983</int> </object> <object id="PUVH20IS8T83G8M"> <int id="step">1</int> <int id="ts">1350440646</int> </object> <object id="PUVNK3MVGOL2UD9"> <int id="step">1</int> <int id="ts">1350443345</int> </object> <object id="PUVPOBK0AB83DS9"> <int id="step">2</int> <int id="ts">1350443346</int> </object> <object id="PUVCAD6F9A734MT"> <int id="step">3</int> <int id="ts">1350443347</int> </object> <object id="PUVH4JOK59G2BM3"> <int id="step">1</int> <int id="ts">1350444017</int> </object> <object id="PDOVLTKT6FU2N5E"> <int id="step">1</int> <int id="ts">1350445566</int> </object> <object id="PCRFSEAH3TJ15HS"> <int id="step">2</int> <int id="ts">1350445572</int> </object> <object id="PHF7GOMJS1D24NC"> <int id="step">1</int> <int id="ts">1350445772</int> </object> <object id="PUVFUD1UJRE26GD"> <int id="step">2</int> <int id="ts">1350445774</int> </object> <object id="PUVI4EDKGAJ207T"> <int id="step">3</int> <int id="ts">1350445775</int> </object> <object id="PUV2EGMNAHS2OQC"> <int id="step">1</int> <int id="ts">1350445869</int> </object> <object id="PM1RKGV70L12TIG"> <int id="step">2</int> <int id="ts">1350445885</int> </object> <object id="PUVBFKGAR9G2SOQ"> <int id="step">1</int> <int id="ts">1350445939</int> </object> <object id="PCRQC081VTM1N2C"> <int id="step">1</int> <int id="ts">1350445957</int> </object> <object id="PM120IAKPK123LN"> <int id="step">1</int> <int id="ts">1350446573</int> </object> <object id="PHFSE0A9D4D2NDB"> <int id="step">2</int> <int id="ts">1350446576</int> </object> <object id="PIF14GJO15D1P84"> <int id="step">3</int> <int id="ts">1350446582</int> </object> <object id="PHVERH6QNU621I8"> <int id="step">1</int> <int id="ts">1350446587</int> </object> <object id="PA9U3JQ0CTD2448"> <int id="step">1</int> <int id="ts">1350447265</int> </object> <object id="PUV3EGIE8GG2CSM"> <int id="step">2</int> <int id="ts">1350447267</int> </object> <object id="PUV4LC37N8D26UP"> <int id="step">3</int> <int id="ts">1350447268</int> </object> <object id="PUVFH6OPFTF2LF6"> <int id="step">1</int> <int id="ts">1350447544</int> </object> <object id="PUVGUSBSUSF297H"> <int id="step">2</int> <int id="ts">1350447546</int> </object> <object id="PUV2PCFUPSF2NBE"> <int id="step">3</int> <int id="ts">1350447548</int> </object> <object id="PIF6LVBP7L53SOB"> <int id="step">1</int> <int id="ts">1350449091</int> </object> <object id="PIFL0PPUT663NPS"> <int id="step">2</int> <int id="ts">1350449093</int> </object> <object id="PHF6EM6551D2OGQ"> <int id="step">3</int> <int id="ts">1350449094</int> </object> <object id="PHF3EMI4JDD2EUU"> <int id="step">1</int> <int id="ts">1350449103</int> </object> <object id="PUVP1FG41EB3NC6"> <int id="step">1</int> <int id="ts">1350449679</int> </object> <object id="PUVPVHJ81EB34UE"> <int id="step">2</int> <int id="ts">1350449688</int> </object> <object id="PUVTFKOIK4A3FPQ"> <int id="step">1</int> <int id="ts">1350450105</int> </object> <object id="PCR2HLTMPIL11HJ"> <int id="step">2</int> <int id="ts">1350450107</int> </object> <object id="PHFLR8ITJ1D21SC"> <int id="step">3</int> <int id="ts">1350450108</int> </object> <object id="PHFBTOM80AD2028"> <int id="step">1</int> <int id="ts">1350452328</int> </object> <object id="PUVCJ3V3R7D2N88"> <int id="step">2</int> <int id="ts">1350452334</int> </object> <object id="PUVPMQG5849388A"> <int id="step">1</int> <int id="ts">1350453502</int> </object> <object id="PHF9L3JP5BD2R6D"> <int id="step">1</int> <int id="ts">1350454017</int> </object> <object id="PHFJVIL04RC2ULD"> <int id="step">2</int> <int id="ts">1350454019</int> </object> <object id="PUVNQPF8V793A3I"> <int id="step">1</int> <int id="ts">1350456365</int> </object> <object id="PUVH4JVE4B93M5H"> <int id="step">2</int> <int id="ts">1350456368</int> </object> <object id="PUVA6OS08S832L9"> <int id="step">1</int> <int id="ts">1350466690</int> </object> <object id="PUVICMAK8SJ2MAS"> <int id="step">2</int> <int id="ts">1350466692</int> </object> <object id="PA9I3VQD2VD2L8S"> <int id="step">1</int> <int id="ts">1350475322</int> </object> <object id="PHF91JD8M2D2EAU"> <int id="step">2</int> <int id="ts">1350475693</int> </object> <object id="PUV10ALD09H22LB"> <int id="step">1</int> <int id="ts">1350476413</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1350476735</int> </object> <object id="PHFVN17DD0D2G3V"> <int id="step">2</int> <int id="ts">1350476736</int> </object> <object id="PHFLM7KOU2D24PL"> <int id="step">3</int> <int id="ts">1350476738</int> </object> <object id="PUVKCV8O9FK2L7J"> <int id="step">1</int> <int id="ts">1350477713</int> </object> <object id="PUVOV284NNA3T07"> <int id="step">1</int> <int id="ts">1350477855</int> </object> <object id="PUVEO0HVO0B3E00"> <int id="step">2</int> <int id="ts">1350477858</int> </object> <object id="PUV297JEH893M0T"> <int id="step">1</int> <int id="ts">1350478815</int> </object> <object id="PUV9H4HP7PL2SLO"> <int id="step">1</int> <int id="ts">1350479020</int> </object> <object id="PHVVS8IQOM92U22"> <int id="step">2</int> <int id="ts">1350479025</int> </object> <object id="PHVA4KMGON72S7L"> <int id="step">1</int> <int id="ts">1350479036</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">1</int> <int id="ts">1350479144</int> </object> <object id="PIF12MTPPQH5L"> <int id="step">1</int> <int id="ts">1350484035</int> </object> <object id="PHVL52757F92CQT"> <int id="step">1</int> <int id="ts">1350484939</int> </object> <object id="PUVIS05FIIA3SBO"> <int id="step">1</int> <int id="ts">1350485553</int> </object> <object id="PHVK2FSFOT22C3I"> <int id="step">2</int> <int id="ts">1350485554</int> </object> <object id="PHFTTVBJQ2D2PP8"> <int id="step">3</int> <int id="ts">1350485555</int> </object> <object id="PUV70B01CBG27J4"> <int id="step">1</int> <int id="ts">1350486555</int> </object> <object id="PUVTEISFLLB38P4"> <int id="step">1</int> <int id="ts">1350487666</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">2</int> <int id="ts">1350488097</int> </object> <object id="PUVQMCK0GOI2CE3"> <int id="step">1</int> <int id="ts">1350488553</int> </object> <object id="PUV2JU76I9D2LI5"> <int id="step">2</int> <int id="ts">1350488557</int> </object> <object id="PUV8AE45JLB3ULN"> <int id="step">1</int> <int id="ts">1350489048</int> </object> <object id="PHV19OKESO62P13"> <int id="step">2</int> <int id="ts">1350490382</int> </object> <object id="PHV129UF5G32V98"> <int id="step">3</int> <int id="ts">1350491017</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">1</int> <int id="ts">1350492044</int> </object> <object id="PHVND1LVIKB2K8T"> <int id="step">2</int> <int id="ts">1350494263</int> </object> <object id="PHVLEE66STA2M50"> <int id="step">1</int> <int id="ts">1350497048</int> </object> <object id="PUVVU8JOE9E2AN1"> <int id="step">1</int> <int id="ts">1350498067</int> </object> <object id="PA9K4D8K8MD27JH"> <int id="step">2</int> <int id="ts">1350498174</int> </object> <object id="PUV5EIOIUPB3D8D"> <int id="step">1</int> <int id="ts">1350498236</int> </object> <object id="PUVVE7C5HV93LDE"> <int id="step">1</int> <int id="ts">1350498269</int> </object> <object id="PHV7MNV1VO62BC4"> <int id="step">2</int> <int id="ts">1350498271</int> </object> <object id="PHFIS28II2D239P"> <int id="step">3</int> <int id="ts">1350498272</int> </object> <object id="PIFGD6890J63D16"> <int id="step">1</int> <int id="ts">1350498727</int> </object> <object id="PHV1C0HK6452IFG"> <int id="step">2</int> <int id="ts">1350498732</int> </object> <object id="PHF2VPV503D26FE"> <int id="step">1</int> <int id="ts">1350499011</int> </object> <object id="PHF43603F4D2I2C"> <int id="step">1</int> <int id="ts">1350499800</int> </object> <object id="PHVPD72CABA2UCJ"> <int id="step">2</int> <int id="ts">1350499916</int> </object> <object id="PCRDMHR3NDO1FVT"> <int id="step">3</int> <int id="ts">1350499920</int> </object> <object id="PHF11QGRI3D2KLQ"> <int id="step">1</int> <int id="ts">1350500703</int> </object> <object id="PA927UAN77E2QNA"> <int id="step">1</int> <int id="ts">1350501664</int> </object> <object id="PUV1U879OTE2HQ6"> <int id="step">1</int> <int id="ts">1350502739</int> </object> <object id="PUVLVOTFNVE224U"> <int id="step">2</int> <int id="ts">1350502744</int> </object> <object id="PIFMFCVP2S5305V"> <int id="step">3</int> <int id="ts">1350502748</int> </object> <object id="PUVBIORRBF93J9R"> <int id="step">1</int> <int id="ts">1350504172</int> </object> <object id="PUVNLHPAVM93IP6"> <int id="step">2</int> <int id="ts">1350504175</int> </object> <object id="PUVSL50F4LB36S3"> <int id="step">1</int> <int id="ts">1350504972</int> </object> <object id="PUV798MFLMB3B0P"> <int id="step">1</int> <int id="ts">1350505127</int> </object> <object id="PUVMLG1LUS83S32"> <int id="step">2</int> <int id="ts">1350505137</int> </object> <object id="PUV76BIV41O20KD"> <int id="step">1</int> <int id="ts">1350506063</int> </object> <object id="PUVD3J3SFPF2TRG"> <int id="step">1</int> <int id="ts">1350506428</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1350507873</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1350507874</int> </object> <object id="PHVRKEJ8VV22AU3"> <int id="step">1</int> <int id="ts">1350508128</int> </object> <object id="PHVO3VOR3N621PJ"> <int id="step">2</int> <int id="ts">1350508130</int> </object> <object id="PUV7VKHH3OA3E72"> <int id="step">1</int> <int id="ts">1350509032</int> </object> <object id="PA9TT1IARGD2V5S"> <int id="step">1</int> <int id="ts">1350510536</int> </object> <object id="PUVGK8HBCJB36GN"> <int id="step">1</int> <int id="ts">1350511790</int> </object> <object id="PUV42LEOBAF2MKD"> <int id="step">2</int> <int id="ts">1350511793</int> </object> <object id="PUVHR6OPKF83A1H"> <int id="step">3</int> <int id="ts">1350511798</int> </object> <object id="PUVE9KK5JDG2LAL"> <int id="step">1</int> <int id="ts">1350513628</int> </object> <object id="PHFJAE8FQVC2RNH"> <int id="step">1</int> <int id="ts">1350515433</int> </object> <object id="PHVCM54BMP72K56"> <int id="step">2</int> <int id="ts">1350515435</int> </object> <object id="PUVCAJTDPFH203K"> <int id="step">3</int> <int id="ts">1350515442</int> </object> <object id="PHF20O01HRC21FP"> <int id="step">1</int> <int id="ts">1350515469</int> </object> <object id="PM1GSNCGR502ADF"> <int id="step">1</int> <int id="ts">1350515897</int> </object> <object id="PUVGOKRKAHB3URJ"> <int id="step">1</int> <int id="ts">1350516343</int> </object> <object id="PHF9U3UPMVC26VO"> <int id="step">1</int> <int id="ts">1350517177</int> </object> <object id="PUVFVM8KG9B37F0"> <int id="step">1</int> <int id="ts">1350517307</int> </object> <object id="PUV7PU7B5JH2OP2"> <int id="step">2</int> <int id="ts">1350517310</int> </object> <object id="PUVEGG4T2FG2UCD"> <int id="step">3</int> <int id="ts">1350517312</int> </object> <object id="PA9NEEPG27E2DD0"> <int id="step">1</int> <int id="ts">1350518079</int> </object> <object id="PUVNJCEML7P2ES0"> <int id="step">1</int> <int id="ts">1350518116</int> </object> <object id="PUV3JOQHDGB322T"> <int id="step">2</int> <int id="ts">1350518117</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">3</int> <int id="ts">1350518118</int> </object> <object id="PUV9TAHHD9G289O"> <int id="step">1</int> <int id="ts">1350518313</int> </object> <object id="PIFAEM961663JG3"> <int id="step">2</int> <int id="ts">1350518315</int> </object> <object id="PIF9DO3KP8633H0"> <int id="step">3</int> <int id="ts">1350518318</int> </object> <object id="PCRNH6RCVNS1072"> <int id="step">1</int> <int id="ts">1350519481</int> </object> <object id="PUVIEI8TU2B3RIT"> <int id="step">1</int> <int id="ts">1350519615</int> </object> <object id="PUVFEH0507A3O9S"> <int id="step">1</int> <int id="ts">1350521287</int> </object> <object id="PA97I2RED7E2KE2"> <int id="step">1</int> <int id="ts">1350521328</int> </object> <object id="PUVHT8IMO5A3D69"> <int id="step">2</int> <int id="ts">1350521350</int> </object> <object id="PUV4QBL03D9394L"> <int id="step">1</int> <int id="ts">1354915862</int> </object> </object> <object id="emotes"> <object id="25-05-22"> </object> <object id="25-05-25"> </object> <object id="25-05-26"> <int id="PUV90O5SDJK20F4">1351270973</int> <int id="PUV2FJ85U993DDV">1351270976</int> <int id="PUVPPE5CM583388">1351271902</int> <int id="PUVSQT4IJVA3VSK">1351271904</int> <int id="PUV4MP5FJG83KA7">1351271971</int> <int id="PUVJ66KFO993AOI">1351271971</int> <int id="PUV68HKCS3A3DHC">1351272903</int> <int id="PUV2FMSV50F2CO7">1351272905</int> <int id="PUV4VSL3EEC3A1B">1351273243</int> <int id="PHFLM7KOU2D24PL">1351273245</int> <int id="PUVMQQRGT1A38Q5">1351273363</int> <int id="PUVIC2CQS5D2EEA">1351273387</int> <int id="PCRQC081VTM1N2C">1351273440</int> <int id="PUV1QK9Q61C3SF8">1351274561</int> <int id="PUV9PTEF20A3R3B">1351274563</int> <int id="PHVQJ78CUCC2FM3">1351276273</int> <int id="PUVPBGSGGI9363H">1351276580</int> <int id="PUVDH6PNO9G2H6L">1351276581</int> <int id="PHVVR6I43M72BB2">1351277999</int> <int id="PUVHLNMRPBC327N">1351278000</int> <int id="PHFKA411RVC22P0">1351278314</int> <int id="PCRFLA5IKNS19P1">1351279648</int> <int id="PUVDD92A2JE2I8O">1351279649</int> <int id="PUVF7MH98SB3R08">1351280206</int> <int id="PM17R1OPUP12I01">1351280732</int> <int id="PUV2T1MGQ9G2B9J">1351280733</int> <int id="PA91LFT7LOD27BB">1351280742</int> <int id="PUVPPTDCH6B3AM5">1351282370</int> <int id="PCR44OG2AUT12IH">1351282400</int> <int id="PUVUV5N3FFB3TDI">1351282628</int> <int id="PUVJU69IKJC3BOE">1351282750</int> <int id="PHFQNQQB6FD2E8G">1351283449</int> <int id="PUVJOOUTAFC35B8">1351283484</int> <int id="PUVL16RJ7IB3G0Q">1351283836</int> </object> <object id="25-05-27"> <int id="PCR91B3UB8N1O3S">1351285275</int> <int id="PUV68HKCS3A3DHC">1351285842</int> <int id="PUV15KDOAK930M3">1351286480</int> <int id="PUVE6LTBBHC37G8">1351286481</int> <int id="PUV1VFBK25C34EQ">1351287272</int> <int id="PUVISC96IQ83HJT">1351287277</int> <int id="PUVG1K0OHNE215U">1351287392</int> <int id="PHVQ5D15EK42F9U">1351287588</int> <int id="PUV8MKGHU6C3GIB">1351287589</int> <int id="PUV8V97LK293SOU">1351288441</int> <int id="PUVA5NTG3AG2UR1">1351288604</int> <int id="PUVEO0HVO0B3E00">1351289045</int> <int id="PUVL5M4K1VB3F61">1351289052</int> <int id="PHFIN187QVC224H">1351289132</int> <int id="PUVTTIURKLC3B30">1351289135</int> <int id="PUV946699DF2CCH">1351289143</int> <int id="PUVSL8IPBFC3144">1351289379</int> <int id="PUVHL9FSGF93U3Q">1351289379</int> <int id="PUV4U05FSGC3J8E">1351290100</int> <int id="PUVSHHC6A89379K">1351293172</int> <int id="PUV2QJOJLQ63INJ">1351293641</int> <int id="PM1A3P8FSA0242M">1351294212</int> <int id="PUVG48BJ7JC38C5">1351295009</int> <int id="PUVBBI0VJGE28C2">1351295196</int> <int id="PUVCG9K8U9G24DD">1351296706</int> <int id="PUV3MOGR9P73IK4">1351297718</int> <int id="PUVLBLFI1JB35NT">1351297724</int> <int id="PUVDQROTC4C3H2Q">1351297747</int> <int id="PUV520ELEDB3588">1351297787</int> <int id="PUVNQ9GGBO93DP2">1351297796</int> </object> <object id="25-05-28"> <int id="PUV8V97LK293SOU">1351300008</int> <int id="PUVNLHPAVM93IP6">1351300009</int> <int id="PA9BE3UF1VD2HR0">1351300017</int> <int id="PUVS2D0L37C3E3I">1351300841</int> <int id="PUV12U42M9C3M7N">1351300904</int> <int id="PUV2LHC33FC3CI1">1351303088</int> <int id="PUVSHHC6A89379K">1351303339</int> <int id="PUV2IHARV7F2GRE">1351303349</int> <int id="PUVG48BJ7JC38C5">1351303425</int> <int id="PHV3NCJDAS62VM0">1351303593</int> <int id="PUVE8P3162C3IVC">1351304196</int> <int id="PUVJRJ6SJEC3H8O">1351304198</int> <int id="PUVSVALD06C3B9R">1351304599</int> <int id="PUVILQ9RS5D2PO0">1351304708</int> <int id="PUV6HHHJ9FC3UBA">1351304708</int> <int id="PIFN1P22MDB1MHK">1351306516</int> <int id="PUV7HG7UG9C35EM">1351306517</int> <int id="PUV771P9IME25MS">1351306970</int> <int id="PCR1I23C34U1ASQ">1351308029</int> <int id="PUVVVRNMA7C3L6P">1351308048</int> <int id="PUV7K08N17C36FO">1351308057</int> <int id="PHFDHMNLA2D2TTC">1351311978</int> <int id="PUVIP510L5B3ODM">1351312015</int> <int id="PUVGOKRKAHB3URJ">1351312060</int> <int id="PUVP8QNAEVB33UN">1351313118</int> </object> <object id="25-05-29"> <int id="PUVESOHKE9C311B">1351314592</int> <int id="PHF20O01HRC21FP">1351317234</int> <int id="PUVDP12GGLB3T9K">1351317237</int> <int id="PUVSVALD06C3B9R">1351318618</int> <int id="PUVPKPA8UI93PCF">1351318619</int> <int id="PUVTHP3U6BJ2FCM">1351318691</int> <int id="PUV4TSD7AIC3HNK">1351320339</int> <int id="PUVTU0O31MB3T1E">1351320340</int> <int id="PUVLOKM16N93SRA">1351320435</int> <int id="PUVPDEUHUL832K5">1351324927</int> <int id="PUVBKN54PRE2VUI">1351325201</int> <int id="PUVSV5CH69C309F">1351325353</int> <int id="PUVH3D6VKFC37GA">1351325399</int> </object> <object id="25-05-30"> <int id="PUVKM6CODFB3MSK">1351331122</int> <int id="PUV14N2LA8D2JIJ">1351331130</int> <int id="PUVHSIG3T5C3RL2">1351331141</int> <int id="PUV3PQC7PEC3L79">1351334111</int> <int id="PUVGOKRKAHB3URJ">1351336846</int> <int id="PHF7NSKA3AD2PU5">1351342171</int> <int id="PUVQFL2SV2B3C5K">1351342183</int> </object> <object id="25-05-31"> <int id="PUV750ROV3C3V32">1351344656</int> <int id="PIF1G1UD3L63H0C">1351350670</int> <int id="PUVQEB5OE6H22K9">1351351796</int> <int id="PUVSRKDKT993SB7">1351352813</int> <int id="PUVR92GN0HG2582">1351352813</int> <int id="PHV1B8J6SL32QAU">1351355127</int> <int id="PUVV91RDAUE2VQG">1351355153</int> <int id="PUVOGHCJUIF2F4F">1351355241</int> <int id="PUVIHJRJOKC3LP1">1351355696</int> <int id="PUVJU69IKJC3BOE">1351356830</int> <int id="PA9HSMK86ID2F1A">1351356831</int> </object> <object id="25-05-32"> </object> <object id="25-05-33"> </object> <object id="25-05-34"> </object> <object id="25-05-35"> </object> <object id="25-05-36"> </object> <object id="25-05-37"> </object> <object id="25-05-38"> </object> <object id="25-05-39"> </object> <object id="25-05-40"> </object> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PUVK4347KHE2JL8">1352337869</int> <int id="PUVUCJ1BR4A3NOC">1352337900</int> <int id="PHVCIHQ7LN0268R">1352337934</int> <int id="PUVCBCBO7VC3IUR">1352338143</int> <int id="PHFQ3QMFHVC281F">1352338165</int> <int id="PUVETL2VN9N2505">1352338352</int> <int id="PUV8726GUNH2L21">1352338368</int> <int id="PUVVE7C5HV93LDE">1352338391</int> <int id="PUVJIPPFIBD398T">1352338415</int> <int id="PIF4FNVAOB637D9">1352338442</int> <int id="PUVI9K99OSF2GOV">1352338459</int> <int id="PHVK39K3OO62T72">1352338518</int> <int id="PUV9DTUIM4F2DCV">1352338534</int> <int id="PUV17MB5HTB3G68">1352338536</int> <int id="PCR8C825C6N1BC2">1352338552</int> <int id="PHVCFT53VN6228O">1352338642</int> <int id="PUVHGT5JDLB30F7">1352338686</int> <int id="PUVDP005IKG2P8J">1352338848</int> <int id="PUVO9GST65D2T6C">1352338872</int> <int id="PUVTSM0S8EC30IQ">1352338879</int> <int id="PHVNJ4LKTQ626HM">1352338931</int> <int id="PUVFVR5B54C379Q">1352338946</int> <int id="PHV7MNV1VO62BC4">1352339017</int> <int id="PUVFPHN2E6D2QT7">1352339145</int> <int id="PUVJIQCTAIB304S">1352339170</int> <int id="PIFHIBOVJ6632DF">1352339180</int> <int id="PHFNCFTVB4D2DNN">1352339190</int> <int id="PHFEGT1UT2D2SE9">1352339334</int> <int id="PHVJ7JP2DSA2JLQ">1352339342</int> <int id="PUVGI68DJ9G2P24">1352339462</int> <int id="PUVLFPT60BB3COT">1352339466</int> <int id="PHVDS5SQK542N9H">1352339470</int> <int id="PUVLVUTLM9G2DA1">1352339503</int> <int id="PUVKJ8IP6LB39B1">1352339518</int> <int id="PUV2GQ5IIPF2GQ1">1352339566</int> <int id="PUV47RD2IOB3OLL">1352339583</int> <int id="PUVAQHDU4B83CVG">1352339667</int> <int id="PM1G1B33140297G">1352339773</int> <int id="PUV8UJR6O7C3S6U">1352339792</int> <int id="PM1HDTV02402DBO">1352339805</int> <int id="PUVNA0KGQE93NLA">1352339826</int> <int id="PHFOTIREL1D24VG">1352339953</int> <int id="PUVSPN0LCP73J6A">1352339962</int> <int id="PUV7DBINAS73IFR">1352339975</int> <int id="PUV13VCGCPL2OEP">1352339983</int> <int id="PUVJA2IREO83T33">1352340061</int> <int id="PUV77CBGEL836KM">1352340061</int> <int id="PUVHV1J9EJ833AL">1352340061</int> <int id="PA9BE3UF1VD2HR0">1352340061</int> <int id="PUV1632D4HA3RJU">1352340069</int> <int id="PHV1FFBMFU22A7E">1352340131</int> <int id="PUVQDMSP2DG2MF2">1352340186</int> <int id="PUVG2EDJV8G2ADK">1352340222</int> <int id="PUVJMB9UG8D2JKB">1352340301</int> <int id="PHF624MH10D2RFE">1352340327</int> <int id="PHVCGP4OKH22FSK">1352340331</int> <int id="PUVUBU7O23D317B">1352340358</int> <int id="PA9DMKLVGUD2HOA">1352340364</int> <int id="PHFMVJCKSVC2BRL">1352340423</int> <int id="PUVR4MQSVE8394R">1352340488</int> <int id="PUVI9DR31TC3VEU">1352340488</int> <int id="PHFAM2DUH4D23RG">1352340575</int> <int id="PUVG4P4NOG83FO0">1352340620</int> <int id="PUV676M25FG2SMJ">1352340641</int> <int id="PUVKIT6A3FB38C7">1352340684</int> <int id="PHFBFIHOM2D210N">1352340745</int> <int id="PHVPD72CABA2UCJ">1352340761</int> <int id="PUV8MOTETCC3S24">1352340798</int> <int id="PUVFDC083PE2F30">1352340905</int> <int id="PHVVS8IQOM92U22">1352340927</int> <int id="PCRDANB1INS1PBD">1352340931</int> <int id="PUVOLKHFI6H2R0J">1352340936</int> <int id="PUV1HNKSULC3PF2">1352340983</int> <int id="PUVTEISFLLB38P4">1352340989</int> <int id="PUVHH62HCPE2TQ5">1352340989</int> <int id="PUV6P0F50NC3M6U">1352341100</int> <int id="PUVONSK33OB3H64">1352341214</int> <int id="PUVGUOIEDOB35M3">1352341251</int> <int id="PUVEHJQG89N2LRV">1352341254</int> <int id="PUVPDD0F6N93HN1">1352341254</int> <int id="PUVH7U7Q7GB3HL9">1352341284</int> <int id="PUVJLRC39NB3NMH">1352341328</int> <int id="PUVKO2U467C3IL6">1352341374</int> <int id="PM1FUK88Q502Q0E">1352341409</int> <int id="PUVOQVJ074A3F6S">1352341502</int> <int id="PUV48VHMH893134">1352341508</int> <int id="PCRIKN3FPNS1BQN">1352341548</int> <int id="PDOL4F1IM8R26LN">1352341593</int> <int id="PHFGJ20K02D2C6J">1352341649</int> <int id="PCR12I603OL1GJD">1352341680</int> <int id="PUV4PLH2HT83FJ2">1352341682</int> <int id="PUVI9HTJCB83FMS">1352341856</int> <int id="PHVL52757F92CQT">1352341926</int> <int id="PUVOPQSAKL93LVT">1352341930</int> <int id="PUVB50SQBF93PVC">1352342015</int> <int id="PUVRN17STBD3VC9">1352342028</int> <int id="PUVG1MUCTA93KMM">1352342046</int> <int id="PHVPT6F2H542DQD">1352342068</int> <int id="PUVO2S7TU293F2E">1352342145</int> <int id="PUVI26UI8183IRD">1352342196</int> <int id="PUVPPEC3I683PE4">1352342337</int> <int id="PUV4H32DJ5B3RKO">1352342455</int> <int id="PUV9NBIC7MG2727">1352342557</int> <int id="PUV8OPNP40C34FL">1352342626</int> <int id="PHVTIPH9I5A2DJI">1352342670</int> <int id="PHF3SVTUB3D2MGO">1352342797</int> <int id="PUV72LIAQGM22AJ">1352342943</int> <int id="PUVDP12GGLB3T9K">1352342967</int> <int id="PUVS1NSLELC3SBD">1352343080</int> <int id="PM168JRREN12LHU">1352343094</int> <int id="PUVKKRET75B328O">1352343261</int> <int id="PUVLBC6O27F2FKP">1352343264</int> <int id="PUVA9SQAFU93V9U">1352343281</int> <int id="PUVTMS30BHD3C3C">1352343298</int> <int id="PUV766GM4TE2A3Q">1352343322</int> <int id="PUVV59RSH9G2VTU">1352343502</int> <int id="PHV6KOHGPP62TMB">1352343544</int> <int id="PHFEKECS94D2STE">1352343552</int> <int id="PUVNIED25Q93D4F">1352343571</int> <int id="PUVKT7UCP7C3Q9T">1352343663</int> <int id="PIFK14N8TM53LGJ">1352343924</int> <int id="PUVKP5AMB8D3J38">1352343969</int> <int id="PHV3TEP4ML326VP">1352344150</int> <int id="PUVGV2K6PBG24Q2">1352344262</int> <int id="PA9AK9S914E206A">1352344305</int> <int id="PUVU94EEQOH2155">1352344371</int> <int id="PIF6HVTEMHA17HQ">1352344512</int> <int id="PA9ADGI5MND20Q0">1352344522</int> <int id="PUVQ6I3032D3097">1352344526</int> <int id="PUVUJVN9LQ63SKB">1352344577</int> <int id="PUVUVBVSDIF23GG">1352344620</int> <int id="PUVR92UTEBD331L">1352344826</int> <int id="PUVJHOIT2JC3VIN">1352344841</int> <int id="PUVMSQGD5C83B7L">1352344975</int> <int id="PUVJG6AHAAD3O39">1352344976</int> <int id="PHF6AUDHLVC2988">1352345365</int> <int id="PHFF3M4JOVC2RBM">1352345540</int> <int id="PUV68HKCS3A3DHC">1352345760</int> <int id="PUVPR5J5GB838S5">1352345830</int> <int id="PUVOM8F6A3H2T74">1352345914</int> <int id="PUV3MQV14G93IO4">1352346003</int> <int id="PHV1LA19H312CR9">1352346012</int> <int id="PUV53017RHC3DQJ">1352346222</int> <int id="PUVRC0S1GJE2PJ9">1352346300</int> <int id="PUVQK9NC2CA3UM4">1352346309</int> <int id="PHVV60T1DI829GR">1352346342</int> <int id="PUVN27LFLKC38I7">1352346633</int> <int id="PUVG3MQRMMB3J88">1352346785</int> <int id="PUV4SH21DSC3BDL">1352346902</int> <int id="PUV38HK9V4D32N1">1352346920</int> <int id="PUVL4LENIBD3AQQ">1352347245</int> <int id="PUV4VVQ437G2S17">1352347753</int> <int id="PUVANK930CC3FME">1352347776</int> <int id="PHVIB9OFMG72ULQ">1352348057</int> <int id="PUV5ECT7ECG2D87">1352348329</int> <int id="PA9O6A3F67E224V">1352348467</int> <int id="PHFK48ANI2D2F12">1352348534</int> <int id="PUVLS7T267D2L93">1352348651</int> <int id="PUVIQSKFO7I2GVJ">1352348732</int> <int id="PUVBVPH8ABC3I0U">1352348815</int> <int id="PHFP13C56FD2BL8">1352349094</int> <int id="PA98V79M07E2RVP">1352349104</int> <int id="PUVEUMROI7D2IPU">1352349427</int> <int id="PUVJQI7MGPE2PTB">1352349427</int> <int id="PHVKVH6RCK42C3J">1352349499</int> <int id="PUV21KAI91L201C">1352349510</int> <int id="PHFGIBN0F3D2R8O">1352349602</int> <int id="PUV9D8KTK2B3PUN">1352349628</int> <int id="PHFF9RF1U2D2JM4">1352350051</int> <int id="PUVDA80N87C30HF">1352350108</int> <int id="PUVNJ2OIMAD36BR">1352350112</int> <int id="PHV1AV0JOP62IOS">1352350166</int> <int id="PHFNB9CGD2D2E9Q">1352350624</int> </object> <object id="25-07-09"> <int id="PCRT0VFI6OS14VF">1352350844</int> <int id="PUVL88N12R93662">1352350856</int> <int id="PUVTJ95EO3A3J7V">1352350980</int> <int id="PUVKRDNLRLB39GO">1352351049</int> <int id="PUVNJ2OIMAD36BR">1352351142</int> <int id="PUVEUMROI7D2IPU">1352351180</int> <int id="PUVJQI7MGPE2PTB">1352351180</int> <int id="PUV523037AD3VO0">1352351245</int> <int id="PUVJMEF10BB3SHV">1352351347</int> <int id="PIFMVLG211631PP">1352351441</int> <int id="PUVT20H20PC39SF">1352351500</int> <int id="PUV13VCGCPL2OEP">1352351508</int> <int id="PUVAHGOVSS83RTK">1352351532</int> <int id="PHFQ8BJAR0D28JI">1352351701</int> <int id="PUVKG8UAD0C3SJK">1352351860</int> <int id="PHFJERMET9D2JTA">1352351867</int> <int id="PUV21KAI91L201C">1352351869</int> <int id="PUVFQFKLETB3V67">1352352060</int> <int id="PUVL6SNU4FC3EBM">1352352847</int> <int id="PUVPLCPBVC93R44">1352352929</int> <int id="PUVRLNMCJ2B30C1">1352352977</int> <int id="PUVURLNMO2F24E9">1352353103</int> <int id="PUVTODJO9G935QH">1352353227</int> <int id="PUV4628EBPC3I5E">1352353229</int> <int id="PIFLU0M82V53HEC">1352353267</int> <int id="PUVKT051TAG2L34">1352353374</int> <int id="PUV9AJO0HED3FTQ">1352353453</int> <int id="PUVC074D4KC3PPU">1352353571</int> <int id="PUV7U3V812C3S7H">1352353814</int> <int id="PHVKK3A7QN62IQP">1352353901</int> <int id="PUVHGT5JDLB30F7">1352354415</int> <int id="PUVFRIHJS5D259C">1352354427</int> <int id="PUVCL6N7L8D38GF">1352354608</int> <int id="PM1HNSIBL402J03">1352354812</int> <int id="PA9MTNTQ1ND29LQ">1352354914</int> <int id="PUVP6JUU8JB3FNS">1352354928</int> <int id="PUVIDSPAINE2PH8">1352355238</int> <int id="PUVCTG0BGKE2E65">1352355390</int> <int id="PHVQ4RKB595294A">1352355564</int> <int id="PCR12K6MG5S14JV">1352355574</int> <int id="PUVOK86Q1NH22PA">1352355600</int> <int id="PCRAFRDJFUT1PGB">1352356192</int> <int id="PHVRLO0EBDC23R1">1352356249</int> <int id="PHV3SOHNMB52ELG">1352356694</int> <int id="PUVFPCGIS5C311N">1352357054</int> <int id="PHF154A801D2A0H">1352357056</int> <int id="PUVCIOJLOC93UKT">1352357166</int> <int id="PIFK14N8TM53LGJ">1352357358</int> <int id="PUVML5U8C9C3CL5">1352357384</int> <int id="PA96973H0SD2C6Q">1352357388</int> <int id="PA9DNN7MF4E2AAV">1352357468</int> <int id="PHFS0IK652D2K0L">1352357692</int> <int id="PUVTDQHE0KA3RM8">1352357810</int> <int id="PM1VP9MKT602436">1352357828</int> <int id="PUVSAFI1QC93GC4">1352357837</int> <int id="PUV48UD1R7C3MC6">1352357839</int> <int id="PUVV7T1PDUC3768">1352358013</int> <int id="PUVADSECH07300L">1352358557</int> <int id="PUVNUAQ182A3LTM">1352358802</int> <int id="PHFB9U6BRQC2IEB">1352359085</int> <int id="PM1A4MDNG402AR4">1352359141</int> <int id="PUVVG7H0FJB3A8N">1352360108</int> <int id="PHVMDLHPLG82Q4B">1352360235</int> <int id="PUVJP8KO4CC3PUK">1352360639</int> <int id="PUV6FUO75V93AII">1352360752</int> <int id="PUVHKHKSFDC3H9E">1352360752</int> <int id="PHVCIHQ7LN0268R">1352360773</int> <int id="PUVHER8O0BA3OCL">1352360923</int> <int id="PUVAJKHV28G2BQR">1352361119</int> <int id="PUVBVPH8ABC3I0U">1352361160</int> <int id="PUVILST9GUI2GNT">1352361490</int> <int id="PA9GRIVLPRD2662">1352361530</int> <int id="PA9E9SC8Q0E2TV1">1352361553</int> <int id="PHFINSK9JCD29H5">1352361933</int> <int id="PCRSVJC3CFV19J7">1352362374</int> <int id="PUVU7KAB3VC3292">1352362694</int> <int id="PUVO54G4RGC394I">1352363078</int> <int id="PUVL5M4K1VB3F61">1352363410</int> <int id="PUVDG8GBNQB3Q90">1352363543</int> <int id="PUV1S8K1OAD3GDS">1352363582</int> <int id="PUVQCK47VAC3FD9">1352364018</int> <int id="PUVHDDQBDOI2NH0">1352364106</int> <int id="PUVEO9C0JF93FBC">1352364502</int> <int id="PCRE2VRLINS18V4">1352364686</int> <int id="PUVLVN26LPB3IAF">1352364784</int> <int id="PUVD1R35GNC3PP0">1352364885</int> <int id="PA9O4G9BPQD2U6D">1352365151</int> <int id="PUVDML8BPK93CKI">1352365185</int> </object> <object id="25-07-10"> <int id="PUVLDBAAO673ORE">1352365631</int> <int id="PUVN8RFT0J73V4A">1352365710</int> <int id="PUVHER8O0BA3OCL">1352365821</int> <int id="PUVEO9C0JF93FBC">1352366180</int> <int id="PUVITB8GICG24NJ">1352366388</int> <int id="PCRSVJC3CFV19J7">1352366474</int> <int id="PUVH7BU7IQC3O8D">1352366588</int> <int id="PUVR4MQSVE8394R">1352366912</int> <int id="PUVPL4QIRFC3P3P">1352366987</int> <int id="PUV3LP2HLKB3QL9">1352367044</int> <int id="PUVCK0THA3J2RTL">1352367277</int> <int id="PHV901F7DF72R87">1352367830</int> <int id="PUVR8FONASE2GES">1352368119</int> <int id="PUVNTDFC8RC34UR">1352368810</int> <int id="PNVK4E8SE8E2NH0">1352369764</int> <int id="PHVF60VGU952KIM">1352369783</int> <int id="PUVKTS44N2C3KDO">1352369851</int> <int id="PHF31BRLV4D27G0">1352370016</int> <int id="PUVVJ936BCA3M1E">1352370022</int> <int id="PCRBFCINGUT15SD">1352370567</int> <int id="PUVPLDCEPPC3IJA">1352370845</int> <int id="PUVAUDH2LG9353H">1352370889</int> <int id="PUV14N2LA8D2JIJ">1352370995</int> <int id="PA9P7M83LMD2FAO">1352371261</int> <int id="PUVBHA1C58C33PQ">1352371264</int> <int id="PUVP0UBER9C30DP">1352371296</int> <int id="PUVV5HJ6RD93NIJ">1352371350</int> <int id="PUVOIO5NTF93QO1">1352371350</int> <int id="PHVNJ4LKTQ626HM">1352371356</int> <int id="PUVDML8BPK93CKI">1352371680</int> <int id="PUV95LJVTHF26QI">1352372495</int> <int id="PUV76Q57EHD3FKV">1352372954</int> <int id="PIFOC6038Q53T2J">1352373599</int> <int id="PUVRJVHGCMB3VRA">1352373599</int> <int id="PUVCE3RNDIB340P">1352373897</int> <int id="PUVSVMTPFIJ2M6B">1352374077</int> <int id="PUVS76IBB0S2R71">1352374226</int> <int id="PUV6DVMA5J731JE">1352374302</int> <int id="PUV4DE6TGQB3AE8">1352374310</int> <int id="PHV3NCJDAS62VM0">1352374336</int> <int id="PHF929RLK3D276G">1352374642</int> <int id="PM1H4VJ4ED22MV5">1352375350</int> <int id="PUVQOVN59ME2QM9">1352375724</int> <int id="PHV18UFRTL72ISG">1352376454</int> <int id="PUVR92UTEBD331L">1352376492</int> <int id="PUVSLPFE06D2FMT">1352376684</int> <int id="PHVH9I4T2892DK9">1352377481</int> <int id="PUVNA3D96O6306F">1352377507</int> <int id="PHFINSK9JCD29H5">1352377673</int> <int id="PUVN96O1J9B3LKU">1352377907</int> <int id="PUVIB6F3R6D28O1">1352378196</int> <int id="PHVHVMKM9G92N10">1352378284</int> <int id="PHVMDLHPLG82Q4B">1352378287</int> <int id="PCRT0VFI6OS14VF">1352378316</int> <int id="PUV50C46PKF2MOK">1352378753</int> <int id="PA9CPTVMJ4E2J61">1352378864</int> <int id="PHF6D1A582D2N40">1352379063</int> <int id="PUVK9FIJ399331H">1352379134</int> <int id="PCRNBUJSCJL1SOG">1352379142</int> <int id="PUVE6QIUFSC3B80">1352379549</int> </object> <object id="25-07-11"> <int id="PUV416QL88D3HMC">1352380047</int> <int id="PUVQAVTGUBC3QUV">1352380142</int> <int id="PUVBUB7PT9E2HLL">1352380253</int> <int id="PCRNBUJSCJL1SOG">1352380298</int> <int id="PHF11QGRI3D2KLQ">1352380372</int> <int id="PUVNJCEML7P2ES0">1352380608</int> <int id="PUVUCOQRRFD3PH6">1352380927</int> <int id="PCRFLA5IKNS19P1">1352381073</int> <int id="PUVTARTIND830E8">1352381280</int> <int id="PUVHGT5JDLB30F7">1352381477</int> <int id="PUV6FUO75V93AII">1352381477</int> <int id="PUVP0UBER9C30DP">1352381638</int> <int id="PIFPR4B4AA63QV5">1352381806</int> <int id="PHVGLP2L2892QFQ">1352381968</int> <int id="PUV16JMR69C3LLN">1352382185</int> <int id="PUVS76IBB0S2R71">1352382210</int> <int id="PHF2VPV503D26FE">1352382602</int> <int id="PCRT0VFI6OS14VF">1352383088</int> <int id="PUVJNEJQ6EE2C1E">1352383106</int> <int id="PHFBMADAEAD2JND">1352383264</int> <int id="PUV9L2ANGBG2NGO">1352383525</int> <int id="PUVC1O1O1TF26EU">1352384119</int> <int id="PUV79OMQOAD3VBP">1352384418</int> <int id="PUVCRP7HC2D398Q">1352384534</int> <int id="PUVHOFNNILC3SMC">1352384574</int> <int id="PA9N3O7N5PD2BP8">1352384929</int> <int id="PUV5HCPV7893L5E">1352385511</int> <int id="PUVSHIJ0C8A392V">1352385636</int> <int id="PUVHPAD7L5N292B">1352385749</int> <int id="PUVVLIPFM5D2UC5">1352385749</int> <int id="PUV9C064K4C352I">1352385944</int> <int id="PUVVJ936BCA3M1E">1352385944</int> <int id="PA9BE3UF1VD2HR0">1352385944</int> <int id="PUVTTIURKLC3B30">1352386130</int> <int id="PUVHL9FSGF93U3Q">1352386189</int> <int id="PDOA16ER4TT2PEU">1352386502</int> <int id="PHVFSV9R04A2DO9">1352386685</int> <int id="PCRBFCINGUT15SD">1352386730</int> <int id="PCRIELI3PNS1E5L">1352386941</int> <int id="PIF2R4A1BL631K5">1352387020</int> <int id="PUVUCMK66OE2S7S">1352387206</int> <int id="PUVLQGI8HRA3O57">1352387319</int> <int id="PHF5OTALG4D2QME">1352388323</int> <int id="PHF45DAP9AD2SN3">1352388699</int> <int id="PIFKK50HFL53NDN">1352389030</int> <int id="PUV2IPH9NF83QFO">1352389142</int> <int id="PIFTD4GOCF63P8S">1352389429</int> <int id="PHV95NLAUG22JIQ">1352390144</int> <int id="PUVHB7KP49E202R">1352390189</int> <int id="PCR6L4VMU3N1H72">1352390347</int> <int id="PCR8C825C6N1BC2">1352390358</int> <int id="PHF8MHR920D2UTQ">1352390614</int> <int id="PCROPEN11OS1K51">1352390634</int> <int id="PUVNH75MGPC3R5B">1352390739</int> <int id="PUVSVALD06C3B9R">1352391031</int> <int id="PUV47KUT16C3RL1">1352391189</int> <int id="PUVPC6P6SA839RS">1352391455</int> <int id="PUVKVMUGQFC32NK">1352391794</int> <int id="PHV85UFRD082GAS">1352391869</int> <int id="PUV7DBINAS73IFR">1352391982</int> <int id="PUV8V97LK293SOU">1352392137</int> <int id="PUVSFSPLFNB3DHR">1352392396</int> <int id="PHFKA411RVC22P0">1352392484</int> <int id="PHFVN17DD0D2G3V">1352392494</int> <int id="PUVGV2K6PBG24Q2">1352392683</int> <int id="PCRDBVC21JL12OL">1352392804</int> <int id="PHF91JD8M2D2EAU">1352392875</int> <int id="PHV11H22PQA2JEL">1352392973</int> <int id="PIFPJ1R3BP53G67">1352393021</int> <int id="PUVSS7LVKEC318S">1352393102</int> <int id="PUVR4E5C8IB3G0B">1352393103</int> <int id="PHFS0IK652D2K0L">1352393300</int> <int id="PCRR6HQFR0U1SRC">1352393303</int> <int id="PUVB50SQBF93PVC">1352393422</int> <int id="PUV4HF8UOSC326L">1352393428</int> <int id="PUVBHA1C58C33PQ">1352393739</int> <int id="PUV9EUTOH6D2SD9">1352393739</int> <int id="PUV9TAHHD9G289O">1352393739</int> <int id="PUV18LEKGV83BT3">1352393797</int> <int id="PHFIDIHDU2D27C6">1352393835</int> </object> <object id="25-07-12"> <int id="PA9U3JQ0CTD2448">1352394115</int> <int id="PUVGPGR6I6J2QDT">1352394246</int> <int id="PHFIPVH38TC2PIV">1352394686</int> <int id="PUVJIPPFIBD398T">1352394856</int> <int id="PUVL4LENIBD3AQQ">1352395200</int> <int id="PUV6L7AB0JH22K3">1352395280</int> <int id="PCR10H57OAV1816">1352395368</int> <int id="PUVDLL0ENLC3GCE">1352395653</int> <int id="PCRBFCINGUT15SD">1352395684</int> <int id="PUVOK86Q1NH22PA">1352395700</int> <int id="PA9FV3ID0HD22MP">1352395842</int> <int id="PUV5GM00M6D2HVS">1352395919</int> <int id="PUVHT82E1AP2E7H">1352395943</int> <int id="PUVV2191PIA34EO">1352396733</int> <int id="PUVHER8O0BA3OCL">1352396802</int> <int id="PUVP0UBER9C30DP">1352396808</int> <int id="PUVKJ8IP6LB39B1">1352396904</int> <int id="PUV7DBINAS73IFR">1352397128</int> <int id="PUV2JI34A1D30LC">1352397131</int> <int id="PUVVJ936BCA3M1E">1352397186</int> <int id="PUV9C064K4C352I">1352397186</int> <int id="PUV6KCLJ9FC3UGK">1352397385</int> <int id="PHFS0IK652D2K0L">1352397523</int> <int id="PUVDDSU75K73PHI">1352398128</int> <int id="PHVABLN44H22DKA">1352398301</int> <int id="PA9F3EHI36E2JIG">1352398409</int> <int id="PUVUEFJABRG2LND">1352398984</int> <int id="PUV21KAI91L201C">1352399053</int> <int id="PUV4HF8UOSC326L">1352399180</int> <int id="PHFL7P0N83D2P1R">1352399448</int> <int id="PUV82VIBQFE2L6U">1352399498</int> <int id="PUV42LEOBAF2MKD">1352399630</int> <int id="PHF7GOMJS1D24NC">1352399906</int> <int id="PUVJIQCTAIB304S">1352400068</int> <int id="PUV22S2QJIF2GFM">1352400339</int> <int id="PUVVU9MBBC93PS0">1352400350</int> <int id="PUVURDPJ76D2U81">1352400380</int> <int id="PUVT923UO1A340U">1352400442</int> <int id="PUV12F0B8QB3L9I">1352400559</int> <int id="PCR6L4VMU3N1H72">1352400607</int> <int id="PUV5E5K85LB37M1">1352400623</int> <int id="PUV1QK9Q61C3SF8">1352400702</int> <int id="PUV94MUVPHE2IQJ">1352400747</int> <int id="PUVCUCM4C8D2PLF">1352400902</int> <int id="PUV7ET6A07G2VK7">1352401167</int> <int id="PUVL0NBHFAC35NH">1352401326</int> <int id="PCR10CGI60N1LG6">1352401386</int> <int id="PUVCGSD5SHI2CS0">1352401551</int> <int id="PUVIQLROID83HIE">1352401702</int> <int id="PA92MJIOKQD2IMA">1352401813</int> <int id="PUVV5HJ6RD93NIJ">1352401832</int> <int id="PUVOIO5NTF93QO1">1352401832</int> <int id="PIFSHV34U0636F0">1352401873</int> <int id="PUV7RPO3O7C3HHP">1352401888</int> <int id="PA9O6A3F67E224V">1352401911</int> <int id="PCR3FFPN51N1SQD">1352402092</int> <int id="PUVMC9R45BM2O6U">1352402130</int> <int id="PCRHA593D1N1EB3">1352402196</int> <int id="PUV87SCA12C39H5">1352402331</int> <int id="PHF274E9E0D23V6">1352402361</int> <int id="PUVMAEO5BUC31VI">1352402371</int> <int id="PIF3Q9V7UV53GHM">1352402474</int> <int id="PUVKS32H9ID3C7O">1352402670</int> <int id="PUVS2L05QPF2N3H">1352402697</int> <int id="PHF43603F4D2I2C">1352402848</int> <int id="PUVPTF7N2DG203S">1352402859</int> <int id="PUVT8691EI93FIR">1352402859</int> <int id="PHVVO7CASCB21O5">1352402985</int> <int id="PUVSVDEIMTG26B0">1352403047</int> <int id="PUVFNV4N43Q2AD4">1352403204</int> <int id="PUVTMVI961G2PNI">1352403207</int> <int id="PUVHGT5JDLB30F7">1352403646</int> <int id="PUV6FUO75V93AII">1352403646</int> <int id="PUVHKHKSFDC3H9E">1352403646</int> <int id="PUVGV2K6PBG24Q2">1352403646</int> <int id="PUVPPE5CM583388">1352403647</int> <int id="PUV78MGI48C3NKP">1352403647</int> <int id="PUV7MROEEHD3BPR">1352403652</int> <int id="PIF14GJO15D1P84">1352403664</int> <int id="PA9SSH8TMRD2VN8">1352403719</int> <int id="PUV6CUQICFC3A75">1352403812</int> <int id="PHVFG0THJF827TB">1352404283</int> <int id="PUVGDDTPQMC3NJL">1352404341</int> <int id="PHV2N3G3AF825OC">1352404397</int> <int id="PIFHCQSRUS53B6M">1352404815</int> <int id="PHVCAFEPHL4277G">1352405197</int> <int id="PA9VG19QR2E2BA0">1352405366</int> <int id="PHFS39PTU4D2OTR">1352405391</int> <int id="PUV9QFOV3ME2DOV">1352405462</int> <int id="PUV36H4TQLC3BH7">1352405509</int> <int id="PUVAMQBU51D3DR7">1352405977</int> <int id="PUVANK930CC3FME">1352406052</int> <int id="PUVCLLJADHA3I84">1352406083</int> <int id="PUVUII6QVHF26B7">1352406243</int> <int id="PHFQ3QMFHVC281F">1352406291</int> <int id="PUVH5K5FGJA3TQU">1352406295</int> <int id="PHFRPBQSMBD2KL6">1352406302</int> <int id="PUVJGQE2GOC3G4J">1352406312</int> <int id="PHVMUHUM3N622HJ">1352406368</int> <int id="PHV80NGSGM727T9">1352406391</int> <int id="PA9AAQRSQ1E2VC8">1352406596</int> <int id="PHFQFJG5KCD2TET">1352406622</int> <int id="PHV19AFHTB922VQ">1352406629</int> <int id="PUVDD92A2JE2I8O">1352407121</int> <int id="PUVHDDQBDOI2NH0">1352407176</int> <int id="PHVJ14RPRN02Q0M">1352407183</int> <int id="PHFOSFVBC4D2JAT">1352407358</int> <int id="PUVEOLGEO6K2O7N">1352407358</int> <int id="PHV3SOHNMB52ELG">1352407422</int> <int id="PUVCBCBO7VC3IUR">1352407521</int> <int id="PHV3D8SBQM82UGE">1352407580</int> <int id="PHF65AU745D2LO9">1352407711</int> <int id="PUVAJK0ESSC3HNF">1352407718</int> <int id="PUV72LIAQGM22AJ">1352407808</int> <int id="PIF5FULJ8V53P8M">1352407892</int> <int id="PHVIKAFLJS62FVP">1352407968</int> </object> <object id="25-07-13"> <int id="PHVO64TD9G825A5">1352408411</int> <int id="PUVVJ936BCA3M1E">1352408474</int> <int id="PUV12F0B8QB3L9I">1352408554</int> <int id="PHFSPUG0PTC2LBA">1352408602</int> <int id="PUVERNFNDQB3TAD">1352408708</int> <int id="PUV6A7K0QKD3BSC">1352408711</int> <int id="PUVCBCBO7VC3IUR">1352408728</int> <int id="PHFDBNU6E3D2PAK">1352408781</int> <int id="PUVA9MCI77D2D9F">1352408823</int> <int id="PHVCM54BMP72K56">1352408850</int> <int id="PUVDU6QF35D3B6F">1352409096</int> <int id="PUVUBU7O23D317B">1352409103</int> <int id="PUV4AHCDIDF25RF">1352409521</int> <int id="PUVDVCR2D3D375L">1352409620</int> <int id="PA9F3EHI36E2JIG">1352409775</int> <int id="PUV979L46IB3HEE">1352409939</int> <int id="PHVAVUNO6CC2MT5">1352410090</int> <int id="PIF73NQUM7634IP">1352410117</int> <int id="PUVHCH6SH3A30DK">1352410288</int> <int id="PUV7STN5V5D3P7F">1352410342</int> <int id="PUVT923UO1A340U">1352410413</int> <int id="PHFM0PHNTUC2S8E">1352410516</int> <int id="PUV2BIBPKHG27EA">1352410645</int> <int id="PA9FAS8AVOD28QF">1352410680</int> <int id="PHF43603F4D2I2C">1352410796</int> <int id="PUVI4EDKGAJ207T">1352410825</int> <int id="PUVDBC62NLB338E">1352411069</int> <int id="PA9MTNTQ1ND29LQ">1352411080</int> <int id="PUVQ5E7NNTE2BMF">1352411444</int> <int id="PUV3G7UGUF933VH">1352411504</int> <int id="PHV3SOHNMB52ELG">1352411620</int> <int id="PUVVQVKJH993IU1">1352411656</int> <int id="PUV58DRO99D38NV">1352412027</int> <int id="PHFT6U31UBD2A1I">1352412117</int> <int id="PUVT5TK2G6D28QU">1352412175</int> <int id="PUVNAEJ0PH936S7">1352412181</int> <int id="PHVRT17MLN527I4">1352412279</int> <int id="PUVKEU5V42A3CCQ">1352412411</int> <int id="PUV79OMQOAD3VBP">1352412533</int> <int id="PHV5NI0UGK42FR1">1352412786</int> <int id="PUVJ4DBJTKD37QR">1352412803</int> <int id="PUVCG72AQP93JFB">1352412836</int> <int id="PIFP6921PP53VO4">1352413033</int> <int id="PUVLF6M40R73D3D">1352413181</int> <int id="PUVISC96IQ83HJT">1352413213</int> <int id="PHF9BGSKEUC2HD7">1352413216</int> <int id="PHFT5IMBBTC2N16">1352413332</int> <int id="PIFN6FM97U53EAH">1352413674</int> <int id="PUVKR50JSQG2UIS">1352413765</int> <int id="PUV4QNVMORC354R">1352413812</int> <int id="PUV14N2LA8D2JIJ">1352413876</int> <int id="PHV80NGSGM727T9">1352413957</int> <int id="PUVEGG4T2FG2UCD">1352414356</int> <int id="PUV22H6M4NI2QLH">1352414356</int> <int id="PUV7PU7B5JH2OP2">1352414356</int> <int id="PUVTMVI961G2PNI">1352414415</int> <int id="PHF45DAP9AD2SN3">1352414582</int> <int id="PUVOD0NVMC931HR">1352414687</int> <int id="PUVB28QUNL93RU9">1352414699</int> <int id="PA96LR4D8CI2CCO">1352414921</int> <int id="PHVA4KMGON72S7L">1352415314</int> <int id="PDO2V71MMAR2SER">1352415584</int> <int id="PUV9QFOV3ME2DOV">1352415644</int> <int id="PUVCHOBQA6D3721">1352415878</int> <int id="PUV655DJ70B3J9R">1352416021</int> <int id="PUVP0UBER9C30DP">1352416039</int> <int id="PIF157VFN063CTQ">1352416062</int> <int id="PHFDI7L7D1D2BLA">1352416098</int> <int id="PIFIB286VS5338G">1352416116</int> <int id="PUV5E5K85LB37M1">1352416146</int> <int id="PUVAMQBU51D3DR7">1352416389</int> <int id="PIFE71FIF663BLR">1352416462</int> <int id="PUVN3VKS6OB3G65">1352416466</int> <int id="PUV436C3SBC3QNA">1352416563</int> <int id="PUVL0NBHFAC35NH">1352416619</int> <int id="PUVV2191PIA34EO">1352416931</int> <int id="PUVBJQLIQLB38JN">1352416956</int> <int id="PUVI7PM3SED3M90">1352417188</int> <int id="PHVHN86I5H228T6">1352417227</int> <int id="PHVVS8IQOM92U22">1352417418</int> <int id="PUVNRUQH83D3N7S">1352417437</int> <int id="PCRICS10PNS1LHA">1352417556</int> <int id="PA9O3QNPFID2ENR">1352417845</int> <int id="PUVDBF021HC31M4">1352418021</int> <int id="PHFMVJCKSVC2BRL">1352418080</int> <int id="PUVFJ07T04L2GD7">1352418390</int> <int id="PUVFSQD8LV93KN6">1352418547</int> <int id="PUVFCMR5UCD3PQ1">1352418942</int> <int id="PUVP6M2EH9G2Q22">1352418988</int> <int id="PUVFN2LHIHC3LN7">1352419075</int> <int id="PHFP13C56FD2BL8">1352419264</int> <int id="PUV5F8DU3KB3L24">1352419317</int> <int id="PM1EMRJKJ4027KO">1352419511</int> <int id="PCRR6HQFR0U1SRC">1352419511</int> <int id="PUV36R4JTGD3TJF">1352419628</int> <int id="PIFGD6890J63D16">1352419646</int> <int id="PHVKK3A7QN62IQP">1352419797</int> <int id="PIF2TA3RK563FSR">1352419798</int> <int id="PUVG7J5JMBD3PCN">1352419986</int> <int id="PUVC9PPFMA93ADI">1352420036</int> <int id="PUVQV3M0UDF22Q0">1352420104</int> <int id="PHFO9KEJ25D2MBL">1352420375</int> <int id="PHVNJ4LKTQ626HM">1352420565</int> <int id="PIF1RQODKF01DG2">1352420742</int> <int id="PUVASEM4FOC35UV">1352420753</int> <int id="PHV9N1HUDP52O02">1352420834</int> <int id="PUVESVJ9T3A3ROL">1352420946</int> <int id="PUVTJ95EO3A3J7V">1352420946</int> <int id="PUVGBDEJMDC329S">1352421142</int> <int id="PUV72LIAQGM22AJ">1352421211</int> <int id="PUV2UEH8VRC3684">1352421212</int> <int id="PUV82D053MC3M13">1352421586</int> <int id="PUV9L2ANGBG2NGO">1352421655</int> <int id="PUVRCMAEKLC3HGO">1352421766</int> <int id="PUVKV1JNB8D3BAD">1352422203</int> <int id="PUV6ERH6FUC3QJM">1352422528</int> <int id="PCRETDAKJNS1E7V">1352422538</int> <int id="PUVI9HTJCB83FMS">1352422680</int> </object> <object id="25-08-01"> <int id="PUV1LJQR2GD3P65">1352423188</int> <int id="PHV9DPVLSJ22OL6">1352423756</int> <int id="PUV271CR6JF2S8J">1352424730</int> <int id="PUV3SLSTM1A3IN2">1352425136</int> <int id="PUVC9PPFMA93ADI">1352425158</int> <int id="PUVMQQRGT1A38Q5">1352432222</int> <int id="PUVT2NJVO9D36FT">1352433778</int> </object> <object id="25-08-02"> <int id="PUV9L691CFI2GRM">1352437952</int> <int id="PUV12E0QUBD3N2G">1352442625</int> </object> <object id="25-08-03"> <int id="PUV26OQ5GJD3SOV">1352456382</int> <int id="PUV2D2D4UDB35UB">1352464966</int> </object> <object id="25-08-04"> <int id="PM1G1B33140297G">1352470273</int> </object> <object id="25-08-06"> <int id="PUVSMVLI78D3VUD">1352506481</int> </object> <object id="25-08-07"> <int id="PUV27HCU39B3HUV">1352519650</int> <int id="PA998GBOSJD2EDI">1352520616</int> <int id="PUVTHTTHFF93BKJ">1352521319</int> </object> <object id="25-08-12"> <int id="PUV8S9J1PAD3RO7">1352588143</int> <int id="PHFIVEU4P4D2H9O">1352589904</int> </object> <object id="25-08-13"> <int id="PA9N1FRNSFD2UKI">1352601149</int> </object> <object id="25-08-17"> <int id="PUVAFFD08UC30D0">1352660828</int> <int id="PUV6LVN435B3IG4">1352665266</int> <int id="PUV79QJ22TB3F4O">1352666263</int> </object> <object id="25-08-18"> <int id="PHV9OKQHBF82NDQ">1352674621</int> </object> <object id="25-08-19"> <int id="PUV4BFTRRUC3RLF">1352687772</int> </object> <object id="25-08-21"> <int id="PUVCB55Q85D2438">1352714339</int> </object> <object id="25-08-22"> <int id="PA9SRFS850E2GJ0">1352737141</int> </object> <object id="25-08-28"> <int id="PUV3LDPE1IC3SJT">1352820905</int> </object> <object id="25-08-32"> <int id="PUVSNKTVQ2B3QMM">1352876711</int> </object> <object id="25-08-35"> <int id="PUV9JMO5CVB3G24">1352924606</int> </object> <object id="25-08-37"> <int id="PUV5UJTSU2C35KR">1352942916</int> </object> <object id="25-09-01"> <int id="PUVIEPUBHMC3M0M">1352956495</int> </object> <object id="25-10-07"> <int id="PUVTFBPUTVD3NPD">1353116044</int> </object> <object id="25-10-10"> <int id="PUVB5F5VDPB3AKP">1353167811</int> </object> <object id="25-10-13"> <int id="PUVFQFKLETB3V67">1353212153</int> </object> <object id="25-10-35"> <int id="PUV4BFTRRUC3RLF">1353521010</int> </object> <object id="25-11-07"> <int id="PUVDU6QF35D3B6F">1353799280</int> </object> <object id="26-01-01"> <int id="PUVE1A6PIFE3QJ1">1353882317</int> </object> <object id="26-02-02"> <int id="PUVDN5UO3L934L1">1354309374</int> </object> <object id="26-03-16"> <int id="PUVDU6QF35D3B6F">1354567726</int> </object> <object id="26-03-35"> <int id="PUVDVLGF40E38JT">1354833574</int> </object> <object id="26-03-42"> <int id="PUVG4P4NOG83FO0">1354933079</int> </object> <object id="26-03-44"> <int id="PA99P57G76E2KT7">1354963270</int> </object> <object id="26-04-01"> <int id="PUVG2FNSD2C3H3P">1355105055</int> <int id="PUVBIVECL7C3TI7">1355110531</int> </object> </object> <object id="hi_sign_evasion_record_history"> <object id="version_0"> <str id="pc_tsid">PUVN628F70D3JO7</str> <str id="pc_label">Nadre</str> <int id="secs">5</int> <int id="when">1351722836</int> <int id="version">0</int> </object> </object> <object id="hi_sign_daily_evasion_record"> <str id="pc_tsid">PA9TE01R56E25RU</str> <str id="pc_label">Sare</str> <int id="secs">15</int> <int id="when">1352500431</int> <int id="version">10</int> <str id="day_key">25-08-06</str> </object> <object id="hi_sign_evasion_record"> <str id="pc_tsid">PA9TE01R56E25RU</str> <str id="pc_label">Sare</str> <int id="secs">15</int> <int id="when">1352500431</int> <int id="version">10</int> <str id="day_key">25-08-06</str> </object> <object id="incantations_redux"> <object id="PUVI79TPFEC36S0"> <int id="step">1</int> <int id="ts">1354917386</int> </object> <object id="PHF14ABLCTC2U52"> <int id="step">2</int> <int id="ts">1354917387</int> </object> <object id="PHVROH851L22Q5T"> <int id="step">3</int> <int id="ts">1354917389</int> </object> <object id="PHFMI32SK4D2U1L"> <int id="step">1</int> <int id="ts">1354917420</int> </object> <object id="PHVQ5D15EK42F9U"> <int id="step">1</int> <int id="ts">1354923094</int> </object> <object id="PUVM6Q60R9D2HIC"> <int id="step">2</int> <int id="ts">1354923096</int> </object> <object id="PCR11792JRL10T9"> <int id="step">3</int> <int id="ts">1354923097</int> </object> <object id="PHF3EMI4JDD2EUU"> <int id="step">1</int> <int id="ts">1354923557</int> </object> <object id="PUVG6IV8J5F28N1"> <int id="step">1</int> <int id="ts">1354925574</int> </object> <object id="PUVI4EDKGAJ207T"> <int id="step">2</int> <int id="ts">1354925746</int> </object> <object id="PUVTVRH3K1A30EQ"> <int id="step">3</int> <int id="ts">1354926732</int> </object> <object id="PUV42LEOBAF2MKD"> <int id="step">1</int> <int id="ts">1354931311</int> </object> <object id="PUVR66N0OVE2BLN"> <int id="step">1</int> <int id="ts">1354931326</int> </object> <object id="PUV5DGRMO4H2DNG"> <int id="step">1</int> <int id="ts">1354931597</int> </object> <object id="PCRLR85EFDV1F9B"> <int id="step">2</int> <int id="ts">1354931601</int> </object> <object id="PHFTE76HQ4D2CLU"> <int id="step">1</int> <int id="ts">1354932804</int> </object> <object id="PUVG4P4NOG83FO0"> <int id="step">1</int> <int id="ts">1354933056</int> </object> <object id="PA9BOM42OVD28JC"> <int id="step">2</int> <int id="ts">1354934510</int> </object> <object id="PIFB7QP3SH63DL7"> <int id="step">3</int> <int id="ts">1354934515</int> </object> <object id="PUVFT2DM44G2VBP"> <int id="step">1</int> <int id="ts">1354935136</int> </object> <object id="PUVFCSC45C937DP"> <int id="step">1</int> <int id="ts">1354939429</int> </object> <object id="PM1DM7LBVA02ABN"> <int id="step">2</int> <int id="ts">1354939449</int> </object> <object id="PUVU0H1NB7E3U57"> <int id="step">3</int> <int id="ts">1354939454</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1354945437</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1354945438</int> </object> <object id="PUVI9N9CSSI2JSM"> <int id="step">1</int> <int id="ts">1354946014</int> </object> <object id="PHF3SVTUB3D2MGO"> <int id="step">2</int> <int id="ts">1354946015</int> </object> <object id="PUVN67TRKMC3N0V"> <int id="step">3</int> <int id="ts">1354946017</int> </object> <object id="PUV6JPAODNB3FOK"> <int id="step">1</int> <int id="ts">1354949959</int> </object> <object id="PUV8ROTVQC93BP5"> <int id="step">2</int> <int id="ts">1354950357</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1354955520</int> </object> <object id="PUVUTSGV5JB37FB"> <int id="step">2</int> <int id="ts">1354955523</int> </object> <object id="PA95UHHMLID28OO"> <int id="step">3</int> <int id="ts">1354955532</int> </object> <object id="PUVN6CPQEC73TB0"> <int id="step">1</int> <int id="ts">1354962209</int> </object> <object id="PHVKRTT1FM52HVG"> <int id="step">2</int> <int id="ts">1354962211</int> </object> <object id="PA99P57G76E2KT7"> <int id="step">1</int> <int id="ts">1354963246</int> </object> <object id="PUVFLODI6EL2FC5"> <int id="step">2</int> <int id="ts">1354963250</int> </object> <object id="PUVG9BPQG5D221T"> <int id="step">1</int> <int id="ts">1354963598</int> </object> <object id="PUV50NR5NV93OO1"> <int id="step">1</int> <int id="ts">1354967026</int> </object> <object id="PHF11QGRI3D2KLQ"> <int id="step">1</int> <int id="ts">1354968605</int> </object> <object id="PUVJ86DSLSM2BDC"> <int id="step">1</int> <int id="ts">1354971580</int> </object> <object id="PDOQHB9V1AR2F84"> <int id="step">2</int> <int id="ts">1354971583</int> </object> <object id="PUV4M2F46LL2DPA"> <int id="step">1</int> <int id="ts">1354975603</int> </object> <object id="PUVC3QVT90H2E1H"> <int id="step">1</int> <int id="ts">1354990297</int> </object> <object id="PUV8UJR6O7C3S6U"> <int id="step">1</int> <int id="ts">1354990820</int> </object> <object id="PCR3M6A0A0N1KVG"> <int id="step">1</int> <int id="ts">1354990826</int> </object> <object id="PUVR861LOJC33QV"> <int id="step">1</int> <int id="ts">1354994638</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">2</int> <int id="ts">1354994832</int> </object> <object id="PUV112Q33KC3BVF"> <int id="step">1</int> <int id="ts">1354997966</int> </object> <object id="PUVIC40CG9D2V6M"> <int id="step">1</int> <int id="ts">1354999727</int> </object> <object id="PHFMGAVRMAD2DGU"> <int id="step">2</int> <int id="ts">1354999732</int> </object> <object id="PUV29EQBK5D2GI0"> <int id="step">3</int> <int id="ts">1354999733</int> </object> </object> </object> <objrefs id="items"> <objref tsid="IHF89F8PEL83LIH" label="Coin"/> <objref tsid="IHV4A7L2RH42HS3" label="Quoin"/> <objref tsid="IHV15BIQID6256S" label="Street Spirit"/> <objref tsid="IHV13S7V0F42A2L" label="Dirt Pile"/> <objref tsid="IHVLOKJ147B2FOU" label="Quest Spawner"/> <objref tsid="IDOSS8KNAJQ2H6B" label="Qurazy marker"/> <objref tsid="IHV142P11F4275G" label="Dirt Pile"/> <objref tsid="IHV46RO1RH420NL" label="Quoin"/> <objref tsid="IHF89E8PEL83LH1" label="Coin"/> <objref tsid="IHV144521F420Q3" label="Dirt Pile"/> <objref tsid="IHV45FB1RH42R2V" label="Quoin"/> <objref tsid="IHV141U01F42AJN" label="Shrine to Alph"/> <objref tsid="IHV48132RH42Q7J" label="Quoin"/> <objref tsid="IHF5S884BQE3O97" label="Egg Plant"/> <objref tsid="IHV13TMV0F426RP" label="Dirt Pile"/> <objref tsid="IHV48O92RH42LEN" label="Quoin"/> <objref tsid="IHV48G62RH429H9" label="Quoin"/> </objrefs> <objrefs id="players"> <objref tsid="PUV7CLFGU5D2SRD" label="Azix"/> <objref tsid="PUV409KBEK93479" label="Ewereka"/> <objref tsid="PUVBQGUFF9D2MUS" label="Anna Keye"/> <objref tsid="PA9IEOPU6VD286O" label="Pechenye"/> <objref tsid="PUV747OH7LE27H1" label="The 11th Doctor"/> <objref tsid="PUVGMU4IO683OF6" label="Lemmie"/> <objref tsid="PUVRB0EUP683BK4" label="emmasaur"/> <objref tsid="PUVGV2KUU7D20SH" label="MorrisDew"/> <objref tsid="PHFHAQEH15D2FH4" label="flooky"/> <objref tsid="PUVFHFV74BF2CNM" label="Miss Mag"/> <objref tsid="PUV8I1U94VL2GEV" label="Cadorna Elindale"/> <objref tsid="PUVT65T0FVD34E5" label="Papagelos"/> <objref tsid="PHVAN48UQQA2H2I" label="Hydrazine"/> <objref tsid="PIFMJNIFKR533V3" label="Diego3Ke"/> <objref tsid="PUVPN8HTBNI248I" label="GlendaCute"/> <objref tsid="PHFK2E7EBCD29TH" label="Tomatte"/> <objref tsid="PHFTDN6L6FD22OR" label="Wenchman"/> <objref tsid="PHFAMOBV9ED2B14" label="Sporty Shorty"/> <objref tsid="PHFD86D7TAD2PDA" label="Callipygea"/> <objref tsid="PA9VR3LCNRD265R" label="Coffeerage"/> <objref tsid="PHFDRA1LEFD2MBV" label="Crudi"/> <objref tsid="PUVSMLSBAB83I44" label="Adolet"/> <objref tsid="PA95U62DKPD2KPK" label="Little Bo Burnham"/> <objref tsid="PDO76S95T1U22OU" label="LadyLigeia"/> <objref tsid="PUVSPL88GFP2H1I" label="InsomanicRena"/> <objref tsid="PUV34V31D0H27SJ" label="GlitchedMaster"/> <objref tsid="PUVMBALN70F277Q" label="Vavs"/> <objref tsid="PHFSF9MAA3D2RFJ" label="Zarf Monoid"/> <objref tsid="PUV1070BFFC32MQ" label="Acidline"/> <objref tsid="PUVKAKAF0PG21DJ" label="kittenmewmew"/> <objref tsid="PHFN2KVFK1D2UIM" label="Kefa"/> <objref tsid="PUVU2IG6Q9G22HJ" label="El Kabo the Unseen"/> <objref tsid="PHVM4UGDPPA2U86" label="Punkinberry"/> <objref tsid="PUV4QT928MB3D2R" label="Caelyn"/> <objref tsid="PUVSVUV6USI2F3P" label="maobao"/> <objref tsid="PUV988TBLB839A4" label="Meulin"/> <objref tsid="PUVC7IJTBF93UJ9" label="Jaza"/> <objref tsid="PHFGKCV4I2D2LRR" label="Larry Llama"/> <objref tsid="PUV6L2RJ19G2O3O" label="seagullette"/> <objref tsid="PUVAC42KDR93ADN" label="CricketJihad"/> <objref tsid="PUVMV9RH0S73SGA" label="Aaron5010"/> <objref tsid="PUV1AHV5O0G20IL" label="ShushMuffin"/> <objref tsid="PUVKA5VAV7D27Q5" label="horrivel"/> <objref tsid="PUVH1CBBLJF2CKS" label="Adroc the Destroyer"/> <objref tsid="PA9TURMLKID2HI5" label="Pine Siskin"/> <objref tsid="PIF5CQV04P53UBD" label="Reve"/> <objref tsid="PIFKB3R8QL534TA" label="Beadfairy"/> </objrefs> </game_object>
69,316
Common Lisp
.l
1,916
31.51096
204
0.670994
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
cd6691e721da06892536a77bee84a6b61d7b86608e8d6009f7e71b73b8847d25
20,863
[ -1 ]
20,864
GHV15C8IEQ322UG.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV15C8IEQ322UG Firabiz Flaunts-vertical climbing rock/GHV15C8IEQ322UG.xml
<game_object tsid="GHV15C8IEQ322UG" ts="1339085765397" label="Firabiz Flaunts" class_tsid="" lastUpdateTime="1339085745060" upd_gs="gs12" load_time="2012-06-07 09:15:44.893" upd_time="2012-06-07 09:15:55.103"> <object id="dynamic"> <int id="l">-700</int> <int id="r">700</int> <int id="t">-2400</int> <int id="b">0</int> <str id="label">Firabiz Flaunts</str> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="T_1306520684234"> <object id="filtersNEW"> <object id="contrast"> <int id="value">-24</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="brightness"> <int id="value">-70</int> </object> <object id="saturation"> <int id="value">-25</int> </object> <object id="blur"> <int id="value">3</int> </object> </object> <int id="w">1484</int> <int id="h">2640</int> <int id="z">2</int> <str id="name">fg</str> <object id="decos"> <object id="stalagmite_1_1307648149805"> <int id="w">124</int> <str id="name">stalagmite_1_1307648149805</str> <int id="x">1378</int> <str id="sprite_class">stalagmite_1</str> <int id="y">2701</int> <int id="h">328</int> <int id="z">8</int> </object> <object id="heights_bandaid_2_1306530344099"> <int id="w">147</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">1144</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-129</int> <int id="h">509</int> <int id="z">5</int> </object> <object id="heights_bandaid_2_1306520684242"> <int id="w">117</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">341</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">2804</int> <int id="h">421</int> <int id="z">1</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1306520684237"> <int id="w">147</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">576</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-84</int> <int id="h">509</int> <int id="z">2</int> </object> <object id="stalagmite_1_1307648149807"> <int id="w">124</int> <int id="r">180</int> <str id="name">stalagmite_1_1307648149804</str> <int id="x">563</int> <str id="sprite_class">stalagmite_1</str> <int id="y">-46</int> <int id="h">328</int> <int id="z">3</int> </object> <object id="heights_bandaid_2_1306530344100"> <int id="w">147</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">1104</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-67</int> <int id="h">509</int> <int id="z">6</int> </object> <object id="stalagmite_1_1307648149806"> <int id="w">181</int> <str id="name">stalagmite_1_1307648149805</str> <int id="x">807</int> <str id="sprite_class">stalagmite_1</str> <int id="y">2710</int> <int id="h">479</int> <int id="z">9</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_1_1307648149808"> <int id="w">103</int> <int id="r">180</int> <str id="name">stalagmite_1_1307648149804</str> <int id="x">265</int> <str id="sprite_class">stalagmite_1</str> <int id="y">-39</int> <int id="h">272</int> <int id="z">4</int> </object> <object id="stalagmite_2_1307648149817"> <int id="w">158</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">1109</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-34</int> <int id="h">361</int> <int id="z">7</int> </object> <object id="heights_bandaid_2_1306520684235"> <int id="w">117</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">354</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">2689</int> <int id="h">421</int> <int id="z">0</int> <bool id="h_flip">true</bool> </object> </object> </object> <object id="T_1305054546661"> <object id="filtersNEW"> <object id="contrast"> <int id="value">-24</int> </object> <object id="brightness"> <int id="value">-50</int> </object> <object id="saturation"> <int id="value">-32</int> </object> <object id="blur"> <int id="value">3</int> </object> </object> <int id="w">1302</int> <int id="h">1920</int> <int id="z">-2</int> <str id="name">sky</str> <object id="decos"> <object id="ug_wall_heights_1306520684213"> <int id="w">660</int> <str id="name">ug_wall_heights_1306520684213</str> <int id="x">362</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">400</int> <int id="h">406</int> <int id="z">6</int> </object> <object id="stalagmite_1_1307648149832"> <int id="w">124</int> <str id="name">stalagmite_1_1307648149796</str> <int id="x">704</int> <str id="sprite_class">stalagmite_1</str> <int id="y">969</int> <int id="h">328</int> <int id="z">27</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1306530344053"> <int id="w">87</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">984</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">766</int> <int id="h">271</int> <int id="z">24</int> </object> <object id="heights_mound_3_1305142152677"> <int id="w">455</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">444</int> <str id="sprite_class">heights_mound_3</str> <int id="y">494</int> <int id="h">172</int> <int id="z">13</int> </object> <object id="heights_bandaid_2_1306520684250"> <int id="w">128</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">325</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">441</int> <int id="h">399</int> <int id="z">20</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1306530344051"> <int id="w">52</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">609</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">1053</int> <int id="h">162</int> <int id="z">21</int> </object> <object id="ug_wall_heights_1320867050622"> <int id="w">660</int> <str id="name">ug_wall_heights_1306520684213</str> <int id="x">143</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">1071</int> <int id="h">406</int> <int id="z">2</int> </object> <object id="heights_bandaid_2_1306530344052"> <int id="w">52</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">865</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">786</int> <int id="h">162</int> <int id="z">22</int> </object> <object id="ug_wall_heights_1306520684214"> <int id="w">660</int> <str id="name">ug_wall_heights_1306520684213</str> <int id="x">1006</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">383</int> <int id="h">406</int> <int id="z">8</int> </object> <object id="heights_mound_3_1305142152676"> <int id="w">370</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">301</int> <str id="sprite_class">heights_mound_3</str> <int id="y">366</int> <int id="h">140</int> <int id="z">11</int> </object> <object id="ug_wall_heights_1320867050620"> <int id="w">660</int> <str id="name">ug_wall_heights_1306520684213</str> <int id="x">1082</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">771</int> <int id="h">406</int> <int id="z">7</int> </object> <object id="heights_mound_3_1306530344066"> <int id="w">455</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">327</int> <str id="sprite_class">heights_mound_3</str> <int id="y">1552</int> <int id="h">172</int> <int id="z">26</int> </object> <object id="heights_bandaid_2_1306520684211"> <int id="w">80</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">861</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-63</int> <int id="h">249</int> <int id="z">15</int> </object> <object id="heights_bandaid_2_1306520684205"> <int id="w">52</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">221</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-21</int> <int id="h">162</int> <int id="z">18</int> </object> <object id="heights_bandaid_2_1306530344057"> <int id="w">95</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">921</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">1281</int> <int id="h">296</int> <int id="z">4</int> <bool id="h_flip">true</bool> </object> <object id="ug_wall_heights_1320867050625"> <int id="w">660</int> <str id="name">ug_wall_heights_1306520684213</str> <int id="x">-261</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">105</int> <int id="h">406</int> <int id="z">9</int> </object> <object id="ug_wall_heights_1306530344059"> <int id="w">660</int> <str id="name">ug_wall_heights_1306520684213</str> <int id="x">1049</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">1232</int> <int id="h">406</int> <int id="z">1</int> </object> <object id="heights_bandaid_2_1306530344067"> <int id="w">95</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">115</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">1516</int> <int id="h">296</int> <int id="z">5</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1306520684249"> <int id="w">95</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">858</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">427</int> <int id="h">296</int> <int id="z">19</int> <bool id="h_flip">true</bool> </object> <object id="ug_wall_heights_1320867050621"> <int id="w">660</int> <str id="name">ug_wall_heights_1306520684213</str> <int id="x">1051</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">847</int> <int id="h">406</int> <int id="z">0</int> </object> <object id="heights_mound_3_1306530344056"> <int id="w">455</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">938</int> <str id="sprite_class">heights_mound_3</str> <int id="y">1291</int> <int id="h">172</int> <int id="z">25</int> </object> <object id="heights_bandaid_2_1306520684202"> <int id="w">52</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">551</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-19</int> <int id="h">162</int> <int id="z">14</int> </object> <object id="ug_wall_heights_1306530344065"> <int id="w">660</int> <str id="name">ug_wall_heights_1306520684213</str> <int id="x">153</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">1459</int> <int id="h">406</int> <int id="z">3</int> </object> <object id="heights_bandaid_2_1306520684225"> <int id="w">81</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">337</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">263</int> <int id="h">252</int> <int id="z">12</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1306520684203"> <int id="w">52</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">663</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-32</int> <int id="h">162</int> <int id="z">16</int> </object> <object id="heights_mound_3_1305142152675"> <int id="w">370</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">96</int> <str id="sprite_class">heights_mound_3</str> <int id="y">282</int> <int id="h">140</int> <int id="z">10</int> </object> <object id="heights_bandaid_2_1306530344061"> <int id="w">52</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">1118</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">816</int> <int id="h">162</int> <int id="z">23</int> </object> <object id="heights_bandaid_2_1306520684204"> <int id="w">52</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">372</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-63</int> <int id="h">162</int> <int id="z">17</int> </object> </object> </object> <object id="middleground"> <object id="walls"> </object> <object id="targets"> </object> <object id="filtersNEW"> <object id="contrast"> <int id="value">-12</int> </object> <object id="tintColor"> <int id="value">13734479</int> </object> <object id="brightness"> <int id="value">-36</int> </object> <object id="saturation"> <int id="value">-28</int> </object> <object id="tintAmount"> <int id="value">39</int> </object> </object> <object id="platform_lines"> <object id="plat_1305220159048"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-173</int> <int id="x">81</int> </object> <object id="end"> <int id="y">-153</int> <int id="x">104</int> </object> </object> <object id="plat_1305142152888"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1813</int> <int id="x">485</int> </object> <object id="end"> <int id="y">-1814</int> <int id="x">611</int> </object> </object> <object id="plat_1305064258743"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-801</int> <int id="x">-141</int> </object> <object id="end"> <int id="y">-819</int> <int id="x">-124</int> </object> </object> <object id="plat_1305220159052"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-243</int> <int id="x">-334</int> </object> <object id="end"> <int id="y">-206</int> <int id="x">-267</int> </object> </object> <object id="plat_1305830603843"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-202</int> <int id="x">-53</int> </object> <object id="end"> <int id="y">-193</int> <int id="x">-8</int> </object> </object> <object id="plat_1305220159158"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-153</int> <int id="x">104</int> </object> <object id="end"> <int id="y">-118</int> <int id="x">280</int> </object> </object> <object id="plat_1305220159060"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-404</int> <int id="x">-512</int> </object> <object id="end"> <int id="y">-412</int> <int id="x">-485</int> </object> </object> <object id="plat_1305220159125"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-723</int> <int id="x">-333</int> </object> <object id="end"> <int id="y">-739</int> <int id="x">-259</int> </object> </object> <object id="plat_1305142152887"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1813</int> <int id="x">328</int> </object> <object id="end"> <int id="y">-1813</int> <int id="x">485</int> </object> </object> <object id="plat_1305064258716"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1552</int> <int id="x">-534</int> </object> <object id="end"> <int id="y">-1525</int> <int id="x">-361</int> </object> </object> <object id="plat_1305220159127"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-720</int> <int id="x">-141</int> </object> <object id="end"> <int id="y">-700</int> <int id="x">-128</int> </object> </object> <object id="plat_1305064258670"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1436</int> <int id="x">352</int> </object> <object id="end"> <int id="y">-1419</int> <int id="x">581</int> </object> </object> <object id="plat_1305064258668"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1417</int> <int id="x">-27</int> </object> <object id="end"> <int id="y">-1419</int> <int id="x">81</int> </object> </object> <object id="plat_1305142152889"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1814</int> <int id="x">611</int> </object> <object id="end"> <int id="y">-1809</int> <int id="x">659</int> </object> </object> <object id="plat_1315955164704"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-2267</int> <int id="x">-699</int> </object> <object id="end"> <int id="y">-2246</int> <int id="x">-590</int> </object> </object> <object id="plat_1305220159031"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1849</int> <int id="x">-326</int> </object> <object id="end"> <int id="y">-1850</int> <int id="x">-251</int> </object> </object> <object id="plat_1305220159063"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-450</int> <int id="x">-310</int> </object> <object id="end"> <int id="y">-483</int> <int id="x">-263</int> </object> </object> <object id="plat_1305152694810"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1884</int> <int id="x">-558</int> </object> <object id="end"> <int id="y">-1870</int> <int id="x">-509</int> </object> </object> <object id="plat_1305064258747"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-847</int> <int id="x">587</int> </object> <object id="end"> <int id="y">-861</int> <int id="x">699</int> </object> </object> <object id="plat_1305220159049"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-208</int> <int id="x">-184</int> </object> <object id="end"> <int id="y">-202</int> <int id="x">-53</int> </object> </object> <object id="plat_1305142152901"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1809</int> <int id="x">659</int> </object> <object id="end"> <int id="y">-1810</int> <int id="x">698</int> </object> </object> <object id="plat_1305220159062"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-424</int> <int id="x">-407</int> </object> <object id="end"> <int id="y">-450</int> <int id="x">-310</int> </object> </object> <object id="plat_1305064258744"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-823</int> <int id="x">100</int> </object> <object id="end"> <int id="y">-824</int> <int id="x">218</int> </object> </object> <object id="plat_1308356161917"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1294</int> <int id="x">-37</int> </object> <object id="end"> <int id="y">-1285</int> <int id="x">2</int> </object> </object> <object id="plat_1305220159081"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-819</int> <int id="x">-124</int> </object> <object id="end"> <int id="y">-830</int> <int id="x">-13</int> </object> </object> <object id="plat_1305064258525"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-53</int> <int id="x">503</int> </object> <object id="end"> <int id="y">-56</int> <int id="x">699</int> </object> </object> <object id="plat_1305220159114"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-591</int> <int id="x">-345</int> </object> <object id="end"> <int id="y">-577</int> <int id="x">-301</int> </object> </object> <object id="plat_1305064258715"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1559</int> <int id="x">-696</int> </object> <object id="end"> <int id="y">-1552</int> <int id="x">-534</int> </object> </object> <object id="plat_1305064258524"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-82</int> <int id="x">409</int> </object> <object id="end"> <int id="y">-53</int> <int id="x">503</int> </object> </object> <object id="plat_1305064258746"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-846</int> <int id="x">393</int> </object> <object id="end"> <int id="y">-847</int> <int id="x">587</int> </object> </object> <object id="plat_1305830603844"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-193</int> <int id="x">-8</int> </object> <object id="end"> <int id="y">-179</int> <int id="x">18</int> </object> </object> <object id="plat_1305142152905"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1475</int> <int id="x">-127</int> </object> <object id="end"> <int id="y">-1455</int> <int id="x">-104</int> </object> </object> <object id="plat_1305220159051"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-245</int> <int id="x">-391</int> </object> <object id="end"> <int id="y">-243</int> <int id="x">-334</int> </object> </object> <object id="plat_1305220159157"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-118</int> <int id="x">280</int> </object> <object id="end"> <int id="y">-92</int> <int id="x">303</int> </object> </object> <object id="plat_1305220159110"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-270</int> <int id="x">-419</int> </object> <object id="end"> <int id="y">-245</int> <int id="x">-391</int> </object> </object> <object id="plat_1305220159047"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-92</int> <int id="x">303</int> </object> <object id="end"> <int id="y">-82</int> <int id="x">409</int> </object> </object> <object id="plat_1305064258602"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-490</int> <int id="x">173</int> </object> <object id="end"> <int id="y">-483</int> <int id="x">200</int> </object> </object> <object id="plat_1305064258575"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1101</int> <int id="x">-699</int> </object> <object id="end"> <int id="y">-1102</int> <int id="x">-560</int> </object> </object> <object id="plat_1305064258578"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1147</int> <int id="x">-94</int> </object> <object id="end"> <int id="y">-1124</int> <int id="x">35</int> </object> </object> <object id="plat_1305220159113"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-601</int> <int id="x">-525</int> </object> <object id="end"> <int id="y">-591</int> <int id="x">-345</int> </object> </object> <object id="plat_1305220159050"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-283</int> <int id="x">-699</int> </object> <object id="end"> <int id="y">-279</int> <int id="x">-495</int> </object> </object> <object id="plat_1305220159111"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-279</int> <int id="x">-495</int> </object> <object id="end"> <int id="y">-270</int> <int id="x">-419</int> </object> </object> <object id="plat_1305064258745"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-824</int> <int id="x">218</int> </object> <object id="end"> <int id="y">-846</int> <int id="x">393</int> </object> </object> <object id="plat_1305064258577"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1144</int> <int id="x">-367</int> </object> <object id="end"> <int id="y">-1166</int> <int id="x">-238</int> </object> </object> <object id="plat_1308080805191"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1947</int> <int id="x">237</int> </object> <object id="end"> <int id="y">-1949</int> <int id="x">278</int> </object> </object> <object id="plat_1308356161916"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1286</int> <int id="x">-207</int> </object> <object id="end"> <int id="y">-1297</int> <int id="x">-178</int> </object> </object> <object id="plat_1305064258576"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1102</int> <int id="x">-560</int> </object> <object id="end"> <int id="y">-1144</int> <int id="x">-367</int> </object> </object> <object id="plat_1308080805190"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1947</int> <int id="x">55</int> </object> <object id="end"> <int id="y">-1947</int> <int id="x">237</int> </object> </object> <object id="plat_1305220159126"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-739</int> <int id="x">-259</int> </object> <object id="end"> <int id="y">-720</int> <int id="x">-141</int> </object> </object> <object id="plat_1305142152855"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1864</int> <int id="x">-439</int> </object> <object id="end"> <int id="y">-1849</int> <int id="x">-326</int> </object> </object> <object id="plat_1305064258717"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1525</int> <int id="x">-361</int> </object> <object id="end"> <int id="y">-1489</int> <int id="x">-171</int> </object> </object> <object id="plat_1315955164703"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-2246</int> <int id="x">-590</int> </object> <object id="end"> <int id="y">-2222</int> <int id="x">-524</int> </object> </object> <object id="plat_1305220159124"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-706</int> <int id="x">-344</int> </object> <object id="end"> <int id="y">-723</int> <int id="x">-333</int> </object> </object> <object id="plat_1308085852825"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1863</int> <int id="x">-129</int> </object> <object id="end"> <int id="y">-1854</int> <int id="x">-83</int> </object> </object> <object id="plat_1305142152854"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1870</int> <int id="x">-509</int> </object> <object id="end"> <int id="y">-1864</int> <int id="x">-439</int> </object> </object> <object id="plat_1305064258718"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1489</int> <int id="x">-171</int> </object> <object id="end"> <int id="y">-1475</int> <int id="x">-127</int> </object> </object> <object id="plat_1305830603845"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-179</int> <int id="x">18</int> </object> <object id="end"> <int id="y">-173</int> <int id="x">81</int> </object> </object> <object id="plat_1305064258579"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1124</int> <int id="x">35</int> </object> <object id="end"> <int id="y">-1111</int> <int id="x">66</int> </object> </object> <object id="plat_1305142152822"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1297</int> <int id="x">-178</int> </object> <object id="end"> <int id="y">-1294</int> <int id="x">-37</int> </object> </object> <object id="plat_1305142152886"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1805</int> <int id="x">226</int> </object> <object id="end"> <int id="y">-1813</int> <int id="x">328</int> </object> </object> <object id="plat_1305220159082"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-830</int> <int id="x">-13</int> </object> <object id="end"> <int id="y">-823</int> <int id="x">100</int> </object> </object> <object id="plat_1305220159053"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-206</int> <int id="x">-267</int> </object> <object id="end"> <int id="y">-208</int> <int id="x">-184</int> </object> </object> <object id="plat_1305064258671"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1419</int> <int id="x">581</int> </object> <object id="end"> <int id="y">-1406</int> <int id="x">699</int> </object> </object> <object id="plat_1305064258669"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1419</int> <int id="x">81</int> </object> <object id="end"> <int id="y">-1436</int> <int id="x">352</int> </object> </object> <object id="plat_1305064258502"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-498</int> <int id="x">-107</int> </object> <object id="end"> <int id="y">-490</int> <int id="x">173</int> </object> </object> <object id="plat_1305064258504"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-483</int> <int id="x">-263</int> </object> <object id="end"> <int id="y">-498</int> <int id="x">-107</int> </object> </object> <object id="plat_1308085852824"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1850</int> <int id="x">-251</int> </object> <object id="end"> <int id="y">-1863</int> <int id="x">-129</int> </object> </object> <object id="plat_1305142152853"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1891</int> <int id="x">-700</int> </object> <object id="end"> <int id="y">-1884</int> <int id="x">-558</int> </object> </object> <object id="plat_1308085852823"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1166</int> <int id="x">-238</int> </object> <object id="end"> <int id="y">-1147</int> <int id="x">-94</int> </object> </object> <object id="plat_1308080805189"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1949</int> <int id="x">-47</int> </object> <object id="end"> <int id="y">-1947</int> <int id="x">55</int> </object> </object> <object id="plat_1305220159061"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-412</int> <int id="x">-485</int> </object> <object id="end"> <int id="y">-424</int> <int id="x">-407</int> </object> </object> <object id="plat_1305142152885"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1789</int> <int id="x">209</int> </object> <object id="end"> <int id="y">-1805</int> <int id="x">226</int> </object> </object> <object id="plat_1305220159032"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1854</int> <int id="x">-83</int> </object> <object id="end"> <int id="y">-1843</int> <int id="x">-56</int> </object> </object> <object id="plat_1305220159112"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-600</int> <int id="x">-694</int> </object> <object id="end"> <int id="y">-601</int> <int id="x">-525</int> </object> </object> </object> <object id="decos"> <object id="ug_ground_heights_1306530344043"> <int id="w">496</int> <str id="name">ug_ground_heights_1306530344041</str> <int id="x">611</int> <str id="sprite_class">ug_ground_heights</str> <int id="y">-1359</int> <int id="h">40</int> <int id="z">345</int> </object> <object id="gravel_1_1307648149851"> <int id="w">280</int> <str id="name">gravel_1_1307648149849</str> <int id="x">426</int> <str id="sprite_class">gravel_1</str> <int id="y">-1446</int> <int id="h">51</int> <int id="z">406</int> </object> <object id="gravel_1_1307648149849"> <int id="w">280</int> <str id="name">gravel_1_1307648149849</str> <int id="x">515</int> <str id="sprite_class">gravel_1</str> <int id="y">-865</int> <int id="h">51</int> <int id="z">404</int> </object> <object id="heights_topper_2_1305142152817"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-53</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1242</int> <int id="h">44</int> <int id="z">208</int> </object> <object id="heights_moss_2_1305152694813"> <int id="w">199</int> <str id="name">heights_moss_2_1305152694811</str> <int id="x">-613</int> <str id="sprite_class">heights_moss_2</str> <int id="y">-1881</int> <int id="h">30</int> <int id="z">230</int> </object> <object id="alakol_beach_1_1307648149845"> <int id="w">707</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-503</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1841</int> <int id="h">79</int> <int id="z">401</int> </object> <object id="heights_topper_stone_1_1305064258550"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-673</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-1112</int> <int id="h">38</int> <int id="z">86</int> </object> <object id="alakol_beach_1_1308085852821"> <int id="w">707</int> <int id="r">-4</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-634</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-566</int> <int id="h">79</int> <int id="z">429</int> </object> <object id="heights_topper_2_1305064258594"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-550</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-550</int> <int id="h">44</int> <int id="z">270</int> </object> <object id="heights_topper_2_1305220159097"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">51</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-146</int> <int id="h">44</int> <int id="z">283</int> </object> <object id="trunk_ladder_1_1305220159084"> <int id="w">121</int> <str id="name">trunk_ladder_1_1305220159084</str> <int id="x">164</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">-880</int> <int id="h">139</int> <int id="z">263</int> </object> <object id="heights_moss_3_1305142152691"> <int id="w">358</int> <str id="name">heights_moss_3_1305142152689</str> <int id="x">-147</int> <str id="sprite_class">heights_moss_3</str> <int id="y">-388</int> <int id="h">135</int> <int id="z">403</int> </object> <object id="heights_face_rock_2_1305220159039"> <int id="w">616</int> <int id="r">2</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">-655</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-1896</int> <int id="h">226</int> <int id="z">242</int> </object> <object id="heights_topper_2_1305220159072"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">68</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-785</int> <int id="h">44</int> <int id="z">256</int> </object> <object id="heights_moss_1_1305142152694"> <int id="w">210</int> <int id="r">-5</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-240</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1011</int> <int id="h">114</int> <int id="z">392</int> </object> <object id="patch_dirt_2a_1305142152723"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">-608</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-80</int> <int id="h">49</int> <int id="z">36</int> </object> <object id="moss_3_1305142152835"> <int id="w">188</int> <str id="name">moss_3_1305142152832</str> <int id="x">-619</int> <str id="sprite_class">moss_3</str> <int id="y">-1555</int> <int id="h">36</int> <int id="z">213</int> </object> <object id="heights_moss_1_1305142152781"> <int id="w">210</int> <int id="r">-2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-370</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-335</int> <int id="h">114</int> <int id="z">329</int> </object> <object id="heights_topper_2_1305142152902"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">672</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1749</int> <int id="h">44</int> <int id="z">223</int> </object> <object id="trunk_ladder_1_1305220159085"> <int id="w">121</int> <str id="name">trunk_ladder_1_1305220159084</str> <int id="x">168</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">-972</int> <int id="h">139</int> <int id="z">264</int> </object> <object id="patch_dirt_2a_1308085852806"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">110</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1953</int> <int id="h">49</int> <int id="z">14</int> </object> <object id="heights_topper_2_1305220159103"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-549</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-234</int> <int id="h">44</int> <int id="z">303</int> </object> <object id="heights_topper_2_1305220159138"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">563</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-17</int> <int id="h">44</int> <int id="z">290</int> </object> <object id="alakol_beach_1_1307648149840"> <int id="w">707</int> <int id="r">1</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-414</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1090</int> <int id="h">79</int> <int id="z">388</int> </object> <object id="gravel_1_1305142152743"> <int id="w">280</int> <str id="name">gravel_1_1305142152740</str> <int id="x">66</int> <str id="sprite_class">gravel_1</str> <int id="y">-15</int> <int id="h">51</int> <int id="z">188</int> </object> <object id="heights_topper_2_1305220159101"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-362</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-204</int> <int id="h">44</int> <int id="z">300</int> </object> <object id="patch_dirt_2a_1308085852801"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">-11</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-514</int> <int id="h">49</int> <int id="z">149</int> </object> <object id="heights_face_rock_1_1306530344039"> <int id="w">281</int> <int id="r">11</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-234</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-1343</int> <int id="h">89</int> <int id="z">358</int> </object> <object id="heights_topper_stone_1_1305064258598"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-382</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-593</int> <int id="h">38</int> <int id="z">151</int> </object> <object id="heights_mound_3_1305220159043"> <int id="w">628</int> <int id="r">1</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">-529</int> <str id="sprite_class">heights_mound_3</str> <int id="y">-62</int> <int id="h">237</int> <int id="z">243</int> </object> <object id="heights_moss_2_1306530344082"> <int id="w">199</int> <str id="name">heights_moss_2_1306530344079</str> <int id="x">477</int> <str id="sprite_class">heights_moss_2</str> <int id="y">-1406</int> <int id="h">33</int> <int id="z">364</int> </object> <object id="heights_face_rock_2_1305064258536"> <int id="w">527</int> <int id="r">2</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">-170</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-1121</int> <int id="h">193</int> <int id="z">53</int> </object> <object id="heights_topper_2_1305064258564"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-364</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1076</int> <int id="h">44</int> <int id="z">126</int> </object> <object id="heights_moss_1_1305220159189"> <int id="w">210</int> <int id="r">2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">590</int> <str id="sprite_class">heights_moss_1</str> <int id="y">76</int> <int id="h">114</int> <int id="z">319</int> </object> <object id="heights_topper_2_1305220159107"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-571</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-262</int> <int id="h">44</int> <int id="z">307</int> </object> <object id="heights_face_1_1305064258491"> <int id="w">613</int> <int id="r">10</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">456</int> <str id="sprite_class">heights_face_1</str> <int id="y">-1229</int> <int id="h">419</int> <int id="z">20</int> </object> <object id="heights_bandaid_2_1305142152793"> <int id="w">77</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-108</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1032</int> <int id="h">178</int> <int id="z">203</int> </object> <object id="heights_face_rock_1_1305220159022"> <int id="w">281</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-352</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-1753</int> <int id="h">89</int> <int id="z">231</int> </object> <object id="crosssection_heights_underside_1305064258612"> <int id="w">585</int> <int id="r">3</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">264</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-1250</int> <int id="h">113</int> <int id="z">78</int> </object> <object id="heights_topper_2_1305064258728"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-565</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1537</int> <int id="h">44</int> <int id="z">120</int> </object> <object id="heights_bandaid_2_1306530344089"> <int id="w">52</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-70</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1659</int> <int id="h">163</int> <int id="z">368</int> </object> <object id="heights_face_rock_1_1305220159089"> <int id="w">303</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-430</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-471</int> <int id="h">112</int> <int id="z">194</int> </object> <object id="alakol_beach_1_1308080805188"> <int id="w">707</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">565</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1817</int> <int id="h">79</int> <int id="z">413</int> </object> <object id="heights_topper_2_1305220159135"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">354</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-65</int> <int id="h">44</int> <int id="z">287</int> </object> <object id="heights_topper_1_1315955164700"> <int id="w">269</int> <int id="r">25</int> <str id="name">heights_topper_1_1315955164700</str> <int id="x">-633</int> <str id="sprite_class">heights_topper_1</str> <int id="y">-2212</int> <int id="h">69</int> <int id="z">4</int> </object> <object id="heights_bandaid_2_1306530344088"> <int id="w">64</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-59</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1397</int> <int id="h">200</int> <int id="z">348</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_2_1305220159076"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">185</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-821</int> <int id="h">44</int> <int id="z">260</int> </object> <object id="heights_bandaid_2_1306530344095"> <int id="w">70</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">312</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-2378</int> <int id="h">202</int> <int id="z">369</int> </object> <object id="crosssection_heights_underside_1306530344037"> <int id="w">515</int> <int id="r">2</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">610</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-1665</int> <int id="h">99</int> <int id="z">350</int> </object> <object id="heights_face_rock_2_1305064258529"> <int id="w">681</int> <int id="r">-1</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">453</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-491</int> <int id="h">193</int> <int id="z">55</int> </object> <object id="crosssection_heights_underside_1305064258662"> <int id="w">637</int> <int id="r">-7</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-180</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-372</int> <int id="h">123</int> <int id="z">74</int> </object> <object id="heights_bandaid_1_1305064258641"> <int id="w">131</int> <int id="r">190</int> <str id="name">heights_bandaid_1_1305064258640</str> <int id="x">-666</int> <str id="sprite_class">heights_bandaid_1</str> <int id="y">-392</int> <int id="h">143</int> <int id="z">159</int> </object> <object id="stalagmite_base_1_1308080805187"> <int id="w">227</int> <str id="name">stalagmite_base_1_1308080805187</str> <int id="x">417</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">-1847</int> <int id="h">83</int> <int id="z">418</int> </object> <object id="heights_topper_2_1305220159075"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-51</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-811</int> <int id="h">44</int> <int id="z">259</int> </object> <object id="heights_bandaid_1_1305064258640"> <int id="w">131</int> <int id="r">190</int> <str id="name">heights_bandaid_1_1305064258640</str> <int id="x">-487</int> <str id="sprite_class">heights_bandaid_1</str> <int id="y">-394</int> <int id="h">143</int> <int id="z">156</int> </object> <object id="heights_topper_2_1305220159137"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">671</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-21</int> <int id="h">44</int> <int id="z">289</int> </object> <object id="heights_face_1_1305064258483"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-345</int> <str id="sprite_class">heights_face_1</str> <int id="y">-914</int> <int id="h">419</int> <int id="z">28</int> </object> <object id="heights_moss_1_1305142152884"> <int id="w">210</int> <int id="r">-2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">563</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1684</int> <int id="h">114</int> <int id="z">325</int> </object> <object id="heights_topper_1_1315955164702"> <int id="w">269</int> <str id="name">heights_topper_1_1315955164700</str> <int id="x">-646</int> <str id="sprite_class">heights_topper_1</str> <int id="y">-2194</int> <int id="h">69</int> <int id="z">5</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_2_1305064258712"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">402</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-805</int> <int id="h">44</int> <int id="z">109</int> </object> <object id="heights_topper_2_1305142152871"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-490</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1846</int> <int id="h">44</int> <int id="z">167</int> </object> <object id="alakol_beach_1_1308085852818"> <int id="w">223</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">356</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-58</int> <int id="h">43</int> <int id="z">317</int> </object> <object id="heights_topper_2_1305220159064"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">157</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-445</int> <int id="h">44</int> <int id="z">250</int> </object> <object id="gravel_1_1305142152740"> <int id="w">280</int> <str id="name">gravel_1_1305142152740</str> <int id="x">-425</int> <str id="sprite_class">gravel_1</str> <int id="y">-62</int> <int id="h">51</int> <int id="z">186</int> </object> <object id="heights_topper_stone_1_1305220159148"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-675</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-586</int> <int id="h">38</int> <int id="z">316</int> </object> <object id="heights_bandaid_1_1305064258657"> <int id="w">86</int> <int id="r">190</int> <str id="name">heights_bandaid_1_1305064258640</str> <int id="x">189</int> <str id="sprite_class">heights_bandaid_1</str> <int id="y">-487</int> <int id="h">94</int> <int id="z">164</int> </object> <object id="heights_face_rock_1_1305142152829"> <int id="w">281</int> <int id="r">11</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-247</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-1394</int> <int id="h">89</int> <int id="z">357</int> </object> <object id="heights_topper_2_1305142152881"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">327</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1797</int> <int id="h">37</int> <int id="z">224</int> </object> <object id="heights_topper_stone_1_1305064258601"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-570</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-572</int> <int id="h">38</int> <int id="z">153</int> </object> <object id="heights_face_rock_1_1305142152874"> <int id="w">281</int> <int id="r">-4</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">543</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-1715</int> <int id="h">89</int> <int id="z">219</int> </object> <object id="crosssection_heights_underside_1305064258568"> <int id="w">580</int> <int id="r">-8</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-586</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-981</int> <int id="h">112</int> <int id="z">63</int> </object> <object id="patch_dirt_2a_1308085852800"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">-21</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-494</int> <int id="h">49</int> <int id="z">148</int> </object> <object id="heights_moss_1_1305220159164"> <int id="w">254</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-157</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1731</int> <int id="h">157</int> <int id="z">402</int> </object> <object id="heights_hole_back_1306520684226"> <int id="w">373</int> <str id="name">heights_hole_back_1306520684226</str> <int id="x">-557</int> <str id="sprite_class">heights_hole_back</str> <int id="y">-16</int> <int id="h">82</int> <int id="z">336</int> </object> <object id="stalagmite_1_1307648149796"> <int id="w">124</int> <str id="name">stalagmite_1_1307648149796</str> <int id="x">279</int> <str id="sprite_class">stalagmite_1</str> <int id="y">-839</int> <int id="h">328</int> <int id="z">84</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_stone_1_1305064258597"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-459</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-578</int> <int id="h">38</int> <int id="z">150</int> </object> <object id="heights_topper_2_1305220159098"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-32</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-171</int> <int id="h">44</int> <int id="z">297</int> </object> <object id="heights_topper_2_1305064258555"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-517</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1112</int> <int id="h">44</int> <int id="z">93</int> </object> <object id="alakol_beach_1_1307648149843"> <int id="w">707</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">453</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1418</int> <int id="h">79</int> <int id="z">395</int> </object> <object id="patch_dirt_2a_1308085852798"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">557</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-50</int> <int id="h">49</int> <int id="z">422</int> </object> <object id="heights_face_rock_2_1305064258531"> <int id="w">592</int> <int id="r">2</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">-155</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-501</int> <int id="h">216</int> <int id="z">54</int> </object> <object id="groddle_shadow_spot_1_1305064258571"> <int id="w">894</int> <str id="name">groddle_shadow_spot_1_1305064258571</str> <int id="x">-521</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="y">-118</int> <int id="h">297</int> <int id="z">49</int> </object> <object id="stalagmite_2_1307648149814"> <int id="w">92</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">-17</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-2412</int> <int id="h">210</int> <int id="z">370</int> </object> <object id="trunk_ladder_1_1306530344046"> <int id="w">121</int> <str id="name">trunk_ladder_1_1305220159084</str> <int id="x">187</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">-1253</int> <int id="h">139</int> <int id="z">366</int> </object> <object id="heights_topper_2_1305220159144"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">317</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-53</int> <int id="h">44</int> <int id="z">296</int> </object> <object id="heights_topper_2_1305220159027"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-257</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1843</int> <int id="h">44</int> <int id="z">236</int> </object> <object id="heights_topper_2_1305220159059"> <int id="w">135</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-475</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-392</int> <int id="h">44</int> <int id="z">249</int> </object> <object id="alakol_beach_1_1308085852817"> <int id="w">270</int> <int id="r">8</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">218</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-109</int> <int id="h">45</int> <int id="z">314</int> </object> <object id="stalagmite_2_1307648149813"> <int id="w">80</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">166</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-432</int> <int id="h">226</int> <int id="z">377</int> </object> <object id="heights_topper_2_1305142152866"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-342</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1628</int> <int id="h">44</int> <int id="z">8</int> </object> <object id="alakol_beach_1_1308085852822"> <int id="w">247</int> <int id="r">1</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-96</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1273</int> <int id="h">42</int> <int id="z">211</int> </object> <object id="stalagmite_2_1308852759304"> <int id="w">80</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">-546</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-935</int> <int id="h">183</int> <int id="z">65</int> </object> <object id="heights_topper_2_1305064258566"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-541</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1060</int> <int id="h">44</int> <int id="z">128</int> </object> <object id="heights_face_1_1305064258487"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-803</int> <str id="sprite_class">heights_face_1</str> <int id="y">-1182</int> <int id="h">419</int> <int id="z">24</int> </object> <object id="stalagmite_2_1307648149798"> <int id="w">70</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">-62</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-1434</int> <int id="h">160</int> <int id="z">367</int> </object> <object id="heights_bandaid_2_1306530344055"> <int id="w">52</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">435</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1281</int> <int id="h">162</int> <int id="z">363</int> </object> <object id="heights_hole_back_1306520684228"> <int id="w">373</int> <str id="name">heights_hole_back_1306520684226</str> <int id="x">576</int> <str id="sprite_class">heights_hole_back</str> <int id="y">-95</int> <int id="h">73</int> <int id="z">44</int> </object> <object id="penaltybox_cell_background_1306530344033"> <int id="w">1101</int> <str id="name">penaltybox_cell_background_1306530344033</str> <int id="x">413</int> <str id="sprite_class">penaltybox_cell_background</str> <int id="y">-1350</int> <int id="h">378</int> <int id="z">341</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1305064258643"> <int id="w">121</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-686</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-373</int> <int id="h">197</int> <int id="z">157</int> </object> <object id="patch_dirt_2a_1305142152732"> <int id="w">420</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">-163</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-27</int> <int id="h">72</int> <int id="z">182</int> </object> <object id="heights_topper_2_1305064258558"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-445</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1082</int> <int id="h">44</int> <int id="z">96</int> </object> <object id="heights_face_1_1305064258486"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">3</int> <str id="sprite_class">heights_face_1</str> <int id="y">-778</int> <int id="h">419</int> <int id="z">25</int> </object> <object id="gravel_2_1305142152750"> <int id="w">85</int> <str id="name">gravel_2_1305142152747</str> <int id="x">-451</int> <str id="sprite_class">gravel_2</str> <int id="y">-1168</int> <int id="h">48</int> <int id="z">394</int> </object> <object id="moss_3_1305220159093"> <int id="w">188</int> <str id="name">moss_3_1305142152832</str> <int id="x">-430</int> <str id="sprite_class">moss_3</str> <int id="y">-415</int> <int id="h">36</int> <int id="z">330</int> </object> <object id="heights_face_1_1305064258492"> <int id="w">613</int> <int id="r">10</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-6</int> <str id="sprite_class">heights_face_1</str> <int id="y">-1299</int> <int id="h">419</int> <int id="z">21</int> </object> <object id="heights_hole_back_1306520684229"> <int id="w">373</int> <str id="name">heights_hole_back_1306520684226</str> <int id="x">-280</int> <str id="sprite_class">heights_hole_back</str> <int id="y">49</int> <int id="h">94</int> <int id="z">245</int> </object> <object id="patch_dirt_2a_1308085852805"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">470</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1419</int> <int id="h">49</int> <int id="z">425</int> </object> <object id="groddle_shadow_spot_1_1305064258702"> <int id="w">894</int> <int id="r">-8</int> <str id="name">groddle_shadow_spot_1_1305064258571</str> <int id="x">595</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="y">-569</int> <int id="h">297</int> <int id="z">56</int> </object> <object id="heights_topper_2_1305142152914"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-376</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1657</int> <int id="h">44</int> <int id="z">7</int> </object> <object id="heights_topper_2_1305220159071"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-6</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-788</int> <int id="h">44</int> <int id="z">255</int> </object> <object id="heights_topper_2_1305142152872"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-490</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1861</int> <int id="h">44</int> <int id="z">168</int> </object> <object id="heights_moss_2_1306530344083"> <int id="w">199</int> <str id="name">heights_moss_2_1306530344079</str> <int id="x">674</int> <str id="sprite_class">heights_moss_2</str> <int id="y">-1409</int> <int id="h">33</int> <int id="z">365</int> </object> <object id="heights_topper_stone_1_1305220159146"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">266</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-96</int> <int id="h">38</int> <int id="z">313</int> </object> <object id="heights_face_rock_1_1305142152873"> <int id="w">281</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">308</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-1693</int> <int id="h">89</int> <int id="z">409</int> </object> <object id="patch_dirt_2a_1305142152730"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">355</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-44</int> <int id="h">49</int> <int id="z">178</int> </object> <object id="heights_face_rock_1_1305220159069"> <int id="w">282</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-45</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-722</int> <int id="h">89</int> <int id="z">198</int> </object> <object id="patch_dirt_2a_1308085852809"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">338</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1825</int> <int id="h">49</int> <int id="z">414</int> </object> <object id="heights_topper_stone_1_1305064258720"> <int id="w">153</int> <int id="r">8</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-465</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-1562</int> <int id="h">38</int> <int id="z">91</int> </object> <object id="heights_topper_2_1305064258632"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-28</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-461</int> <int id="h">44</int> <int id="z">142</int> </object> <object id="heights_topper_stone_1_1305064258553"> <int id="w">153</int> <int id="r">8</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-351</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-1111</int> <int id="h">38</int> <int id="z">89</int> </object> <object id="heights_topper_2_1305064258561"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">29</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1093</int> <int id="h">44</int> <int id="z">99</int> </object> <object id="roots_ug_2_1307648149835"> <int id="w">116</int> <str id="name">roots_ug_2_1307648149826</str> <int id="x">699</int> <str id="sprite_class">roots_ug_2</str> <int id="y">-626</int> <int id="h">149</int> <int id="z">383</int> </object> <object id="heights_moss_1_1305220159168"> <int id="w">210</int> <int id="r">-2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">702</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1678</int> <int id="h">114</int> <int id="z">326</int> </object> <object id="heights_mound_3_1305220159037"> <int id="w">628</int> <int id="r">6</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">-587</int> <str id="sprite_class">heights_mound_3</str> <int id="y">-1914</int> <int id="h">237</int> <int id="z">240</int> </object> <object id="heights_bandaid_2_1305064258638"> <int id="w">121</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-505</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-386</int> <int id="h">197</int> <int id="z">154</int> </object> <object id="heights_topper_2_1305220159105"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-677</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-270</int> <int id="h">44</int> <int id="z">305</int> </object> <object id="crosssection_heights_underside_1305064258580"> <int id="w">637</int> <int id="r">-7</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-510</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-352</int> <int id="h">123</int> <int id="z">72</int> </object> <object id="heights_moss_1_1305142152686"> <int id="w">210</int> <int id="r">5</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-521</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1456</int> <int id="h">114</int> <int id="z">174</int> </object> <object id="heights_bandaid_2_1305064258642"> <int id="w">121</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-683</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-101</int> <int id="h">197</int> <int id="z">158</int> <bool id="h_flip">true</bool> </object> <object id="roots_ug_2_1307648149826"> <int id="w">116</int> <str id="name">roots_ug_2_1307648149826</str> <int id="x">-335</int> <str id="sprite_class">roots_ug_2</str> <int id="y">-835</int> <int id="h">149</int> <int id="z">382</int> </object> <object id="trunk_ladder_1_1305220159129"> <int id="w">121</int> <str id="name">trunk_ladder_1_1305220159084</str> <int id="x">-300</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">-1578</int> <int id="h">139</int> <int id="z">267</int> </object> <object id="heights_topper_2_1305064258590"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">11</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-480</int> <int id="h">44</int> <int id="z">137</int> </object> <object id="heights_topper_2_1305064258588"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-237</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-478</int> <int id="h">44</int> <int id="z">135</int> </object> <object id="heights_bandaid_2_1306530344063"> <int id="w">114</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">260</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1318</int> <int id="h">355</int> <int id="z">81</int> </object> <object id="heights_bandaid_2_1305064258742"> <int id="w">149</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">36</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1041</int> <int id="h">269</int> <int id="z">161</int> </object> <object id="heights_topper_2_1305142152710"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-584</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1870</int> <int id="h">44</int> <int id="z">169</int> </object> <object id="alakol_beach_1_1308085852813"> <int id="w">394</int> <int id="r">3</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-106</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-168</int> <int id="h">72</int> <int id="z">427</int> </object> <object id="heights_topper_1_1315955164701"> <int id="w">269</int> <int id="r">20</int> <str id="name">heights_topper_1_1315955164700</str> <int id="x">-702</int> <str id="sprite_class">heights_topper_1</str> <int id="y">-2249</int> <int id="h">69</int> <int id="z">3</int> </object> <object id="heights_topper_2_1305220159054"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-445</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-408</int> <int id="h">44</int> <int id="z">132</int> </object> <object id="heights_topper_2_1305220159016"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-101</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1827</int> <int id="h">44</int> <int id="z">217</int> </object> <object id="heights_bandaid_1_1305064258740"> <int id="w">107</int> <int id="r">190</int> <str id="name">heights_bandaid_1_1305064258640</str> <int id="x">349</int> <str id="sprite_class">heights_bandaid_1</str> <int id="y">-796</int> <int id="h">117</int> <int id="z">202</int> </object> <object id="heights_topper_2_1305064258559"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-178</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1091</int> <int id="h">44</int> <int id="z">97</int> </object> <object id="heights_topper_stone_1_1305064258551"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-579</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-1115</int> <int id="h">38</int> <int id="z">87</int> </object> <object id="heights_face_1_1305054546673"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-455</int> <str id="sprite_class">heights_face_1</str> <int id="y">-135</int> <int id="h">419</int> <int id="z">32</int> </object> <object id="heights_topper_2_1305064258731"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-258</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1484</int> <int id="h">44</int> <int id="z">125</int> </object> <object id="heights_moss_1_1305220159080"> <int id="w">250</int> <int id="r">-1</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">310</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-714</int> <int id="h">136</int> <int id="z">389</int> </object> <object id="stalagmite_3_1307648149810"> <int id="w">122</int> <str id="name">stalagmite_3_1307648149803</str> <int id="x">-530</int> <str id="sprite_class">stalagmite_3</str> <int id="y">-2121</int> <int id="h">277</int> <int id="z">0</int> <bool id="h_flip">true</bool> </object> <object id="heights_face_1_1305064258695"> <int id="w">613</int> <int id="r">-25</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">68</int> <str id="sprite_class">heights_face_1</str> <int id="y">-1541</int> <int id="h">419</int> <int id="z">11</int> </object> <object id="heights_face_rock_2_1305220159010"> <int id="w">527</int> <int id="r">2</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">-412</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-1523</int> <int id="h">193</int> <int id="z">61</int> </object> <object id="alakol_beach_1_1308085852815"> <int id="w">138</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-360</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-217</int> <int id="h">39</int> <int id="z">301</int> </object> <object id="gravel_1_1305142152746"> <int id="w">236</int> <str id="name">gravel_1_1305142152740</str> <int id="x">309</int> <str id="sprite_class">gravel_1</str> <int id="y">-822</int> <int id="h">43</int> <int id="z">190</int> </object> <object id="heights_face_rock_1_1305142152815"> <int id="w">235</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-116</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-1189</int> <int id="h">100</int> <int id="z">206</int> </object> <object id="roots_ug_3_1307648149820"> <int id="w">104</int> <str id="name">roots_ug_3_1307648149820</str> <int id="x">575</int> <str id="sprite_class">roots_ug_3</str> <int id="y">-1459</int> <int id="h">301</int> <int id="z">380</int> </object> <object id="heights_topper_2_1305064258709"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">317</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-825</int> <int id="h">44</int> <int id="z">106</int> </object> <object id="groddle_fern_1_1305142152733"> <int id="w">151</int> <str id="name">groddle_fern_1_1305142152733</str> <int id="x">-91</int> <str id="sprite_class">groddle_fern_1</str> <int id="y">-130</int> <int id="h">90</int> <int id="z">184</int> </object> <object id="heights_topper_stone_1_1305064258719"> <int id="w">153</int> <int id="r">8</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-669</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-1581</int> <int id="h">38</int> <int id="z">90</int> </object> <object id="heights_moss_1_1305142152685"> <int id="w">210</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-630</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1457</int> <int id="h">114</int> <int id="z">173</int> </object> <object id="heights_topper_2_1305064258635"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-210</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-458</int> <int id="h">44</int> <int id="z">144</int> </object> <object id="heights_moss_1_1305142152755"> <int id="w">189</int> <int id="r">9</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-272</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1418</int> <int id="h">103</int> <int id="z">361</int> </object> <object id="heights_topper_2_1305220159136"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">437</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-22</int> <int id="h">44</int> <int id="z">288</int> </object> <object id="heights_topper_2_1305064258554"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-261</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1101</int> <int id="h">44</int> <int id="z">92</int> </object> <object id="groddle_fern_1_1305142152734"> <int id="w">151</int> <str id="name">groddle_fern_1_1305142152733</str> <int id="x">76</int> <str id="sprite_class">groddle_fern_1</str> <int id="y">-143</int> <int id="h">90</int> <int id="z">183</int> </object> <object id="heights_bandaid_2_1306530344054"> <int id="w">71</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">398</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1275</int> <int id="h">221</int> <int id="z">79</int> </object> <object id="heights_topper_2_1305064258585"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-483</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-590</int> <int id="h">44</int> <int id="z">130</int> </object> <object id="heights_topper_2_1305220159102"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-439</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-231</int> <int id="h">44</int> <int id="z">302</int> </object> <object id="heights_moss_1_1306530344078"> <int id="w">291</int> <int id="r">-5</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">585</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1278</int> <int id="h">158</int> <int id="z">400</int> </object> <object id="roots_ug_1_1307648149827"> <int id="w">88</int> <int id="r">5</int> <str id="name">roots_ug_1_1307648149827</str> <int id="x">-117</int> <str id="sprite_class">roots_ug_1</str> <int id="y">-1532</int> <int id="h">195</int> <int id="z">384</int> </object> <object id="heights_topper_2_1305220159029"> <int id="w">166</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-328</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1800</int> <int id="h">53</int> <int id="z">238</int> </object> <object id="stalagmite_2_1307648149818"> <int id="w">70</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">-118</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-2389</int> <int id="h">160</int> <int id="z">379</int> </object> <object id="heights_topper_2_1305142152880"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">626</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1769</int> <int id="h">44</int> <int id="z">222</int> </object> <object id="heights_topper_2_1305220159119"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-180</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-690</int> <int id="h">44</int> <int id="z">273</int> </object> <object id="heights_topper_2_1305220159091"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-263</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-448</int> <int id="h">44</int> <int id="z">332</int> </object> <object id="heights_topper_2_1305064258730"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-333</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1503</int> <int id="h">44</int> <int id="z">124</int> </object> <object id="heights_topper_2_1305220159040"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">141</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-478</int> <int id="h">44</int> <int id="z">139</int> </object> <object id="roots_ug_5_1307648149819"> <int id="w">86</int> <str id="name">roots_ug_5_1307648149819</str> <int id="x">-9</int> <str id="sprite_class">roots_ug_5</str> <int id="y">-1508</int> <int id="h">274</int> <int id="z">408</int> </object> <object id="heights_topper_2_1305220159132"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">137</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-110</int> <int id="h">44</int> <int id="z">284</int> </object> <object id="patch_dirt_2a_1308085852804"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">451</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1437</int> <int id="h">49</int> <int id="z">424</int> </object> <object id="heights_moss_1_1305220159155"> <int id="w">210</int> <int id="r">4</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">347</int> <str id="sprite_class">heights_moss_1</str> <int id="y">16</int> <int id="h">114</int> <int id="z">318</int> </object> <object id="heights_topper_2_1305064258722"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-568</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1570</int> <int id="h">44</int> <int id="z">115</int> </object> <object id="heights_topper_2_1305142152876"> <int id="w">158</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">259</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1768</int> <int id="h">48</int> <int id="z">410</int> </object> <object id="stalagmite_1_1307648149825"> <int id="w">124</int> <str id="name">stalagmite_1_1307648149796</str> <int id="x">-357</int> <str id="sprite_class">stalagmite_1</str> <int id="y">-602</int> <int id="h">328</int> <int id="z">85</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_2_1305220159042"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">157</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-462</int> <int id="h">44</int> <int id="z">141</int> </object> <object id="heights_topper_2_1305220159121"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-167</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-685</int> <int id="h">44</int> <int id="z">275</int> </object> <object id="heights_topper_2_1305064258710"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">212</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-785</int> <int id="h">44</int> <int id="z">107</int> </object> <object id="heights_face_rock_1_1305220159171"> <int id="w">303</int> <int id="r">180</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-602</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-392</int> <int id="h">112</int> <int id="z">193</int> <bool id="h_flip">true</bool> </object> <object id="heights_moss_1_1305220159079"> <int id="w">210</int> <int id="r">-1</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">183</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-725</int> <int id="h">114</int> <int id="z">390</int> </object> <object id="alakol_beach_1_1307648149837"> <int id="w">707</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">576</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-836</int> <int id="h">79</int> <int id="z">385</int> </object> <object id="heights_topper_2_1305064258563"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-291</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1071</int> <int id="h">44</int> <int id="z">113</int> </object> <object id="heights_topper_stone_1_1305220159188"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">437</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">10</int> <int id="h">38</int> <int id="z">312</int> </object> <object id="heights_face_rock_3_1305220159165"> <int id="w">374</int> <str id="name">heights_face_rock_3_1305220159165</str> <int id="x">-411</int> <str id="sprite_class">heights_face_rock_3</str> <int id="y">-1302</int> <int id="h">139</int> <int id="z">58</int> </object> <object id="stalagmite_2_1307648149801"> <int id="w">106</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">280</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-1717</int> <int id="h">201</int> <int id="z">417</int> </object> <object id="crosssection_heights_underside_1305064258574"> <int id="w">580</int> <int id="r">-5</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-209</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-943</int> <int id="h">112</int> <int id="z">68</int> </object> <object id="alakol_beach_1_1308085852795"> <int id="w">554</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">585</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-39</int> <int id="h">91</int> <int id="z">45</int> </object> <object id="heights_moss_1_1305142152719"> <int id="w">291</int> <int id="r">5</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-399</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1404</int> <int id="h">158</int> <int id="z">362</int> </object> <object id="heights_moss_1_1305220159123"> <int id="w">210</int> <int id="r">-2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-233</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-630</int> <int id="h">114</int> <int id="z">278</int> </object> <object id="patch_dirt_2a_1305142152722"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">-593</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-111</int> <int id="h">49</int> <int id="z">35</int> </object> <object id="alakol_beach_1_1307648149839"> <int id="w">707</int> <int id="r">1</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-253</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1114</int> <int id="h">79</int> <int id="z">387</int> </object> <object id="heights_face_rock_2_1305064258541"> <int id="w">681</int> <int id="r">-1</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">483</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-140</int> <int id="h">193</int> <int id="z">41</int> </object> <object id="trunk_ladder_1_1305220159087"> <int id="w">121</int> <str id="name">trunk_ladder_1_1305220159084</str> <int id="x">182</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">-1159</int> <int id="h">139</int> <int id="z">266</int> </object> <object id="heights_mound_3_1305220159038"> <int id="w">628</int> <int id="r">21</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">-761</int> <str id="sprite_class">heights_mound_3</str> <int id="y">-2102</int> <int id="h">237</int> <int id="z">2</int> </object> <object id="patch_dirt_2a_1305161853564"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">115</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-109</int> <int id="h">49</int> <int id="z">180</int> </object> <object id="crosssection_heights_underside_1305064258611"> <int id="w">585</int> <int id="r">8</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">559</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-1232</int> <int id="h">113</int> <int id="z">77</int> </object> <object id="heights_face_1_1305064258484"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-906</int> <str id="sprite_class">heights_face_1</str> <int id="y">-875</int> <int id="h">419</int> <int id="z">27</int> </object> <object id="patch_dirt_2a_1308085852803"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">358</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1424</int> <int id="h">49</int> <int id="z">423</int> </object> <object id="patch_dirt_2a_1308085852796"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">521</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-69</int> <int id="h">49</int> <int id="z">420</int> </object> <object id="heights_face_rock_1_1305142152782"> <int id="w">303</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">191</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-705</int> <int id="h">96</int> <int id="z">196</int> </object> <object id="heights_face_rock_3_1305220159167"> <int id="w">374</int> <str id="name">heights_face_rock_3_1305220159165</str> <int id="x">678</int> <str id="sprite_class">heights_face_rock_3</str> <int id="y">-1615</int> <int id="h">139</int> <int id="z">324</int> </object> <object id="heights_topper_2_1305220159057"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-303</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-399</int> <int id="h">44</int> <int id="z">134</int> </object> <object id="heights_topper_2_1305064258706"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">595</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-825</int> <int id="h">44</int> <int id="z">103</int> </object> <object id="stalagmite_3_1307648149828"> <int id="w">174</int> <str id="name">stalagmite_3_1307648149803</str> <int id="x">-344</int> <str id="sprite_class">stalagmite_3</str> <int id="y">-1890</int> <int id="h">495</int> <int id="z">241</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_2_1305142152816"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-138</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1251</int> <int id="h">44</int> <int id="z">207</int> </object> <object id="crosssection_heights_underside_1306530344093"> <int id="w">515</int> <int id="r">2</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">517</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-2326</int> <int id="h">99</int> <int id="z">351</int> </object> <object id="heights_moss_1_1307648149847"> <int id="w">210</int> <int id="r">-2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-101</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-398</int> <int id="h">114</int> <int id="z">252</int> </object> <object id="patch_dirt_2a_1308085852812"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">-522</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1878</int> <int id="h">49</int> <int id="z">426</int> </object> <object id="patch_dirt_2a_1305142152726"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">-297</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-89</int> <int id="h">49</int> <int id="z">39</int> </object> <object id="heights_topper_2_1305064258633"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">83</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-465</int> <int id="h">44</int> <int id="z">143</int> </object> <object id="ug_ground_heights_1306530344044"> <int id="w">496</int> <str id="name">ug_ground_heights_1306530344041</str> <int id="x">141</int> <str id="sprite_class">ug_ground_heights</str> <int id="y">-1398</int> <int id="h">40</int> <int id="z">343</int> </object> <object id="heights_face_rock_2_1305220159045"> <int id="w">876</int> <int id="r">-1</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">-281</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-136</int> <int id="h">248</int> <int id="z">47</int> </object> <object id="patch_dirt_2a_1308085852807"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">157</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1945</int> <int id="h">49</int> <int id="z">15</int> </object> <object id="heights_moss_1_1305142152780"> <int id="w">210</int> <int id="r">-2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">126</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-393</int> <int id="h">114</int> <int id="z">251</int> </object> <object id="heights_topper_2_1305064258557"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-568</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1085</int> <int id="h">44</int> <int id="z">95</int> </object> <object id="alakol_beach_1_1307648149838"> <int id="w">707</int> <int id="r">-4</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">175</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-806</int> <int id="h">79</int> <int id="z">386</int> </object> <object id="heights_topper_2_1305220159120"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-255</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-712</int> <int id="h">44</int> <int id="z">274</int> </object> <object id="heights_bandaid_2_1306520684201"> <int id="w">64</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-374</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1451</int> <int id="h">200</int> <int id="z">205</int> </object> <object id="crosssection_heights_pillar_2_1306530344038"> <int id="w">138</int> <int id="r">-195</int> <str id="name">crosssection_heights_pillar_2_1306530344038</str> <int id="x">-169</int> <str id="sprite_class">crosssection_heights_pillar_2</str> <int id="y">-1654</int> <int id="h">312</int> <int id="z">349</int> </object> <object id="alakol_beach_1_1308085852820"> <int id="w">267</int> <int id="r">-4</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-225</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-700</int> <int id="h">49</int> <int id="z">277</int> </object> <object id="groddle_fern_1_1305142152735"> <int id="w">151</int> <str id="name">groddle_fern_1_1305142152733</str> <int id="x">-91</int> <str id="sprite_class">groddle_fern_1</str> <int id="y">-130</int> <int id="h">90</int> <int id="z">185</int> </object> <object id="heights_face_rock_1_1305220159058"> <int id="w">303</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-403</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-307</int> <int id="h">112</int> <int id="z">191</int> </object> <object id="heights_topper_2_1305064258724"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-280</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1516</int> <int id="h">44</int> <int id="z">117</int> </object> <object id="crosssection_heights_underside_1305064258700"> <int id="w">580</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">598</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-716</int> <int id="h">112</int> <int id="z">69</int> </object> <object id="heights_topper_2_1305064258707"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">510</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-826</int> <int id="h">44</int> <int id="z">104</int> </object> <object id="heights_moss_1_1305220159154"> <int id="w">249</int> <int id="r">2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-132</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-99</int> <int id="h">135</int> <int id="z">428</int> </object> <object id="heights_face_1_1305064258480"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">458</int> <str id="sprite_class">heights_face_1</str> <int id="y">-400</int> <int id="h">419</int> <int id="z">26</int> </object> <object id="patch_dirt_2a_1308085852811"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">532</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1850</int> <int id="h">49</int> <int id="z">416</int> </object> <object id="heights_mound_3_1305220159009"> <int id="w">418</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">-285</int> <str id="sprite_class">heights_mound_3</str> <int id="y">-1563</int> <int id="h">158</int> <int id="z">6</int> </object> <object id="heights_topper_2_1305220159122"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-171</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-702</int> <int id="h">44</int> <int id="z">276</int> </object> <object id="crosssection_heights_underside_1305064258581"> <int id="w">637</int> <int id="r">-7</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">93</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-382</int> <int id="h">123</int> <int id="z">75</int> </object> <object id="crosssection_heights_underside_1305064258738"> <int id="w">580</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">859</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-739</int> <int id="h">112</int> <int id="z">71</int> </object> <object id="gravel_1_1305142152741"> <int id="w">280</int> <str id="name">gravel_1_1305142152740</str> <int id="x">-162</int> <str id="sprite_class">gravel_1</str> <int id="y">-46</int> <int id="h">51</int> <int id="z">187</int> </object> <object id="heights_topper_2_1305220159077"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">158</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-801</int> <int id="h">44</int> <int id="z">261</int> </object> <object id="heights_topper_2_1305142152713"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-603</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1844</int> <int id="h">44</int> <int id="z">172</int> </object> <object id="heights_hole_back_1320867050624"> <int id="w">373</int> <str id="name">heights_hole_back_1306520684226</str> <int id="x">426</int> <str id="sprite_class">heights_hole_back</str> <int id="y">-81</int> <int id="h">73</int> <int id="z">43</int> </object> <object id="heights_moss_2_1305142152833"> <int id="w">199</int> <int id="r">15</int> <str id="name">heights_moss_2_1305142152833</str> <int id="x">-253</int> <str id="sprite_class">heights_moss_2</str> <int id="y">-1528</int> <int id="h">33</int> <int id="z">214</int> </object> <object id="crosssection_heights_underside_1305064258569"> <int id="w">580</int> <int id="r">-12</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-558</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-911</int> <int id="h">139</int> <int id="z">64</int> </object> <object id="groddle_shadow_spot_1_1305064258660"> <int id="w">894</int> <str id="name">groddle_shadow_spot_1_1305064258571</str> <int id="x">17</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="y">-218</int> <int id="h">297</int> <int id="z">50</int> </object> <object id="heights_moss_1_1305142152903"> <int id="w">210</int> <int id="r">-2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">701</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1697</int> <int id="h">114</int> <int id="z">227</int> </object> <object id="heights_moss_2_1305220159162"> <int id="w">199</int> <int id="r">-1</int> <str id="name">heights_moss_2_1305142152833</str> <int id="x">-382</int> <str id="sprite_class">heights_moss_2</str> <int id="y">-1876</int> <int id="h">33</int> <int id="z">322</int> </object> <object id="heights_topper_stone_1_1305220159172"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-453</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-389</int> <int id="h">38</int> <int id="z">327</int> </object> <object id="heights_topper_2_1305220159078"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">252</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-828</int> <int id="h">44</int> <int id="z">262</int> </object> <object id="crosssection_heights_underside_1305064258570"> <int id="w">580</int> <int id="r">-20</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-547</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-873</int> <int id="h">112</int> <int id="z">66</int> </object> <object id="heights_face_1_1308080805186"> <int id="w">613</int> <int id="r">10</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">288</int> <str id="sprite_class">heights_face_1</str> <int id="y">-1532</int> <int id="h">419</int> <int id="z">12</int> </object> <object id="stalagmite_2_1307648149799"> <int id="w">80</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">-14</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-1669</int> <int id="h">183</int> <int id="z">371</int> </object> <object id="crosssection_heights_underside_1306530344094"> <int id="w">515</int> <int id="r">2</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">13</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-2348</int> <int id="h">99</int> <int id="z">354</int> </object> <object id="heights_face_rock_2_1305064258535"> <int id="w">681</int> <int id="r">2</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">-398</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-1128</int> <int id="h">249</int> <int id="z">52</int> </object> <object id="heights_topper_2_1305142152818"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-60</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1246</int> <int id="h">44</int> <int id="z">209</int> </object> <object id="heights_topper_2_1305064258735"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-431</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1499</int> <int id="h">44</int> <int id="z">123</int> </object> <object id="heights_topper_2_1305220159100"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-244</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-175</int> <int id="h">44</int> <int id="z">299</int> </object> <object id="heights_topper_2_1305220159134"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">273</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-89</int> <int id="h">44</int> <int id="z">286</int> </object> <object id="heights_face_rock_2_1305064258542"> <int id="w">876</int> <int id="r">-1</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">64</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-139</int> <int id="h">248</int> <int id="z">42</int> </object> <object id="heights_topper_2_1305071515179"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-296</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1571</int> <int id="h">44</int> <int id="z">10</int> </object> <object id="heights_face_1_1305054546672"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-478</int> <str id="sprite_class">heights_face_1</str> <int id="y">-59</int> <int id="h">419</int> <int id="z">31</int> </object> <object id="heights_moss_3_1305220159147"> <int id="w">358</int> <str id="name">heights_moss_3_1305220159147</str> <int id="x">-600</int> <str id="sprite_class">heights_moss_3</str> <int id="y">-168</int> <int id="h">135</int> <int id="z">315</int> </object> <object id="gravel_1_1307648149852"> <int id="w">280</int> <str id="name">gravel_1_1307648149849</str> <int id="x">-434</int> <str id="sprite_class">gravel_1</str> <int id="y">-1867</int> <int id="h">51</int> <int id="z">407</int> </object> <object id="heights_face_1_1305064258489"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-54</int> <str id="sprite_class">heights_face_1</str> <int id="y">-1072</int> <int id="h">419</int> <int id="z">22</int> </object> <object id="heights_topper_2_1305064258721"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-674</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1551</int> <int id="h">44</int> <int id="z">114</int> </object> <object id="heights_topper_stone_1_1305064258599"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-374</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-574</int> <int id="h">38</int> <int id="z">152</int> </object> <object id="heights_face_1_1305064258488"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-348</int> <str id="sprite_class">heights_face_1</str> <int id="y">-1150</int> <int id="h">419</int> <int id="z">23</int> </object> <object id="heights_topper_2_1305220159030"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-247</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1818</int> <int id="h">44</int> <int id="z">239</int> </object> <object id="heights_topper_2_1305064258727"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-666</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1523</int> <int id="h">44</int> <int id="z">119</int> </object> <object id="heights_mound_3_1305220159046"> <int id="w">628</int> <int id="r">1</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">204</int> <str id="sprite_class">heights_mound_3</str> <int id="y">110</int> <int id="h">237</int> <int id="z">247</int> </object> <object id="patch_dirt_2a_1308085852797"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">642</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-64</int> <int id="h">49</int> <int id="z">421</int> </object> <object id="heights_bandaid_2_1305064258645"> <int id="w">131</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-693</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-603</int> <int id="h">213</int> <int id="z">162</int> <bool id="h_flip">true</bool> </object> <object id="crosssection_heights_underside_1305064258567"> <int id="w">580</int> <int id="r">-8</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-175</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-996</int> <int id="h">112</int> <int id="z">62</int> </object> <object id="heights_moss_3_1305142152690"> <int id="w">358</int> <str id="name">heights_moss_3_1305142152689</str> <int id="x">-657</int> <str id="sprite_class">heights_moss_3</str> <int id="y">-1002</int> <int id="h">135</int> <int id="z">175</int> </object> <object id="alakol_beach_1_1307648149842"> <int id="w">707</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">278</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1381</int> <int id="h">79</int> <int id="z">396</int> </object> <object id="heights_topper_2_1305220159070"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-102</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-790</int> <int id="h">44</int> <int id="z">254</int> </object> <object id="heights_topper_2_1305064258589"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-118</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-469</int> <int id="h">44</int> <int id="z">136</int> </object> <object id="gravel_1_1305220159174"> <int id="w">280</int> <str id="name">gravel_1_1305142152740</str> <int id="x">35</int> <str id="sprite_class">gravel_1</str> <int id="y">-809</int> <int id="h">51</int> <int id="z">333</int> </object> <object id="heights_bandaid_1_1305064258741"> <int id="w">120</int> <int id="r">190</int> <str id="name">heights_bandaid_1_1305064258640</str> <int id="x">60</int> <str id="sprite_class">heights_bandaid_1</str> <int id="y">-1050</int> <int id="h">143</int> <int id="z">166</int> </object> <object id="heights_topper_2_1305064258562"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-159</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1074</int> <int id="h">44</int> <int id="z">112</int> </object> <object id="heights_topper_2_1308085852826"> <int id="w">176</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-645</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1806</int> <int id="h">58</int> <int id="z">340</int> </object> <object id="heights_face_1_1305054546671"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">505</int> <str id="sprite_class">heights_face_1</str> <int id="y">-124</int> <int id="h">419</int> <int id="z">33</int> </object> <object id="crosssection_heights_underside_1306530344036"> <int id="w">515</int> <int id="r">352</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">113</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-1642</int> <int id="h">99</int> <int id="z">347</int> </object> <object id="alakol_beach_1_1308085852819"> <int id="w">393</int> <int id="r">16</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-279</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1482</int> <int id="h">66</int> <int id="z">360</int> </object> <object id="heights_topper_2_1305220159026"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-266</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1869</int> <int id="h">44</int> <int id="z">235</int> </object> <object id="heights_topper_2_1305142152711"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-665</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1876</int> <int id="h">44</int> <int id="z">170</int> </object> <object id="heights_topper_2_1305142152883"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">535</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1786</int> <int id="h">44</int> <int id="z">226</int> </object> <object id="heights_topper_2_1305064258556"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-674</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1081</int> <int id="h">44</int> <int id="z">94</int> </object> <object id="heights_topper_stone_1_1305220159131"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">28</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-183</int> <int id="h">38</int> <int id="z">282</int> </object> <object id="heights_topper_2_1305064258584"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-693</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-566</int> <int id="h">44</int> <int id="z">129</int> </object> <object id="trunk_ladder_1_1305220159086"> <int id="w">121</int> <str id="name">trunk_ladder_1_1305220159084</str> <int id="x">174</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">-1064</int> <int id="h">139</int> <int id="z">265</int> </object> <object id="heights_face_1_1305064258493"> <int id="w">613</int> <int id="r">-5</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-668</int> <str id="sprite_class">heights_face_1</str> <int id="y">-1514</int> <int id="h">419</int> <int id="z">18</int> </object> <object id="heights_topper_stone_1_1305064258552"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-469</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-1109</int> <int id="h">38</int> <int id="z">88</int> </object> <object id="heights_topper_2_1305220159109"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-436</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-244</int> <int id="h">44</int> <int id="z">309</int> </object> <object id="crosssection_heights_underside_1305064258701"> <int id="w">580</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">322</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-716</int> <int id="h">112</int> <int id="z">70</int> </object> <object id="heights_topper_2_1305220159099"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-136</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-184</int> <int id="h">44</int> <int id="z">298</int> </object> <object id="heights_face_rock_2_1305064258530"> <int id="w">681</int> <int id="r">2</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">43</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-489</int> <int id="h">249</int> <int id="z">57</int> </object> <object id="heights_topper_2_1305142152712"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-704</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1855</int> <int id="h">44</int> <int id="z">171</int> </object> <object id="heights_topper_stone_1_1305220159094"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-239</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-206</int> <int id="h">38</int> <int id="z">279</int> </object> <object id="heights_topper_2_1305064258734"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-543</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1515</int> <int id="h">44</int> <int id="z">122</int> </object> <object id="heights_topper_2_1305220159017"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-176</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1827</int> <int id="h">44</int> <int id="z">218</int> </object> <object id="heights_face_rock_2_1305220159012"> <int id="w">527</int> <int id="r">2</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">-336</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-1530</int> <int id="h">258</int> <int id="z">60</int> </object> <object id="heights_topper_2_1305064258726"> <int id="w">145</int> <int id="r">8</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-221</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1510</int> <int id="h">44</int> <int id="z">165</int> </object> <object id="patch_dirt_2a_1308085852802"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">313</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1434</int> <int id="h">49</int> <int id="z">397</int> </object> <object id="gravel_1_1307648149850"> <int id="w">280</int> <str id="name">gravel_1_1307648149849</str> <int id="x">72</int> <str id="sprite_class">gravel_1</str> <int id="y">-828</int> <int id="h">51</int> <int id="z">405</int> </object> <object id="heights_topper_2_1305142152877"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">333</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1768</int> <int id="h">44</int> <int id="z">220</int> </object> <object id="heights_moss_1_1305142152714"> <int id="w">210</int> <int id="r">1</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-660</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1793</int> <int id="h">114</int> <int id="z">323</int> </object> <object id="patch_dirt_2a_1305142152727"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">-161</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-78</int> <int id="h">49</int> <int id="z">40</int> </object> <object id="heights_face_1_1305064258481"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">-11</int> <str id="sprite_class">heights_face_1</str> <int id="y">-518</int> <int id="h">419</int> <int id="z">29</int> </object> <object id="stalagmite_1_1307648149823"> <int id="w">124</int> <int id="r">180</int> <str id="name">stalagmite_1_1307648149804</str> <int id="x">505</int> <str id="sprite_class">stalagmite_1</str> <int id="y">-2384</int> <int id="h">328</int> <int id="z">353</int> </object> <object id="heights_topper_2_1305220159108"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-506</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-249</int> <int id="h">44</int> <int id="z">308</int> </object> <object id="crosssection_heights_underside_1305064258573"> <int id="w">491</int> <int id="r">3</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-130</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-988</int> <int id="h">95</int> <int id="z">76</int> </object> <object id="heights_face_rock_1_1305220159117"> <int id="w">235</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-251</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-632</int> <int id="h">87</int> <int id="z">195</int> </object> <object id="heights_topper_2_1305142152867"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-226</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1625</int> <int id="h">44</int> <int id="z">9</int> </object> <object id="alakol_beach_1_1308085852814"> <int id="w">233</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-421</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-393</int> <int id="h">52</int> <int id="z">328</int> </object> <object id="alakol_water_rock_1_1307648149797"> <int id="w">220</int> <str id="name">alakol_water_rock_1_1307648149797</str> <int id="x">396</int> <str id="sprite_class">alakol_water_rock_1</str> <int id="y">-827</int> <int id="h">179</int> <int id="z">82</int> </object> <object id="patch_dirt_2a_1308085852808"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">63</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1938</int> <int id="h">49</int> <int id="z">16</int> </object> <object id="heights_topper_2_1305064258711"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">297</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-799</int> <int id="h">44</int> <int id="z">108</int> </object> <object id="heights_topper_2_1305064258591"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">73</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-492</int> <int id="h">44</int> <int id="z">138</int> </object> <object id="heights_moss_1_1307648149848"> <int id="w">210</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-39</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-396</int> <int id="h">114</int> <int id="z">253</int> </object> <object id="ug_ground_heights_1306530344042"> <int id="w">496</int> <str id="name">ug_ground_heights_1306530344041</str> <int id="x">165</int> <str id="sprite_class">ug_ground_heights</str> <int id="y">-1366</int> <int id="h">40</int> <int id="z">342</int> </object> <object id="heights_hole_back_1306520684227"> <int id="w">373</int> <str id="name">heights_hole_back_1306520684226</str> <int id="x">242</int> <str id="sprite_class">heights_hole_back</str> <int id="y">-103</int> <int id="h">75</int> <int id="z">46</int> </object> <object id="heights_topper_2_1305142152882"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">427</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1792</int> <int id="h">44</int> <int id="z">225</int> </object> <object id="heights_face_rock_2_1305064258534"> <int id="w">775</int> <int id="r">2</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">-645</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-1155</int> <int id="h">283</int> <int id="z">51</int> </object> <object id="heights_face_rock_3_1305220159166"> <int id="w">444</int> <str id="name">heights_face_rock_3_1305220159165</str> <int id="x">-662</int> <str id="sprite_class">heights_face_rock_3</str> <int id="y">-1276</int> <int id="h">165</int> <int id="z">59</int> </object> <object id="patch_dirt_2a_1308085852799"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">-96</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-512</int> <int id="h">49</int> <int id="z">147</int> </object> <object id="heights_topper_2_1305064258587"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-345</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-552</int> <int id="h">44</int> <int id="z">269</int> </object> <object id="heights_moss_1_1305142152820"> <int id="w">212</int> <int id="r">-1</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-91</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1201</int> <int id="h">116</int> <int id="z">212</int> </object> <object id="patch_dirt_2a_1308085852810"> <int id="w">286</int> <str id="name">patch_dirt_2a_1308085852796</str> <int id="x">463</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-1828</int> <int id="h">49</int> <int id="z">415</int> </object> <object id="heights_topper_2_1305220159088"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-603</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-583</int> <int id="h">44</int> <int id="z">131</int> </object> <object id="heights_face_rock_1_1305220159018"> <int id="w">281</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-166</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-1759</int> <int id="h">89</int> <int id="z">200</int> </object> <object id="stalagmite_2_1307648149812"> <int id="w">80</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">610</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-750</int> <int id="h">257</int> <int id="z">375</int> </object> <object id="heights_topper_2_1305220159024"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-310</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1864</int> <int id="h">44</int> <int id="z">233</int> </object> <object id="heights_topper_2_1305142152879"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">539</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1763</int> <int id="h">44</int> <int id="z">221</int> </object> <object id="alakol_beach_1_1308085852816"> <int id="w">554</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-617</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-231</int> <int id="h">91</int> <int id="z">310</int> </object> <object id="heights_topper_2_1305142152819"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-142</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1260</int> <int id="h">44</int> <int id="z">210</int> </object> <object id="heights_topper_2_1305064258705"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">684</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-835</int> <int id="h">44</int> <int id="z">102</int> </object> <object id="heights_face_rock_1_1305220159068"> <int id="w">360</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">74</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-691</int> <int id="h">114</int> <int id="z">197</int> </object> <object id="heights_topper_2_1305220159140"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">635</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-5</int> <int id="h">44</int> <int id="z">292</int> </object> <object id="crosssection_heights_underside_1306530344096"> <int id="w">515</int> <int id="r">2</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-495</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-2363</int> <int id="h">99</int> <int id="z">355</int> </object> <object id="heights_bandaid_2_1305064258646"> <int id="w">149</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-686</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-866</int> <int id="h">243</int> <int id="z">160</int> </object> <object id="heights_face_1_1305064258694"> <int id="w">613</int> <int id="r">-5</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">516</int> <str id="sprite_class">heights_face_1</str> <int id="y">-1508</int> <int id="h">419</int> <int id="z">17</int> </object> <object id="patch_dirt_2a_1305161853563"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">499</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-8</int> <int id="h">49</int> <int id="z">179</int> </object> <object id="heights_moss_2_1305220159163"> <int id="w">199</int> <int id="r">2</int> <str id="name">heights_moss_2_1305142152833</str> <int id="x">-518</int> <str id="sprite_class">heights_moss_2</str> <int id="y">-1885</int> <int id="h">33</int> <int id="z">321</int> </object> <object id="heights_topper_2_1305064258586"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-461</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-553</int> <int id="h">44</int> <int id="z">271</int> </object> <object id="heights_bandaid_2_1306530344064"> <int id="w">114</int> <int id="r">359</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">298</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-834</int> <int id="h">406</int> <int id="z">83</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_stone_1_1305220159145"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">526</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-3</int> <int id="h">38</int> <int id="z">311</int> </object> <object id="alakol_beach_1_1308080805185"> <int id="w">441</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">144</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1919</int> <int id="h">78</int> <int id="z">13</int> </object> <object id="patch_dirt_2a_1305142152728"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">31</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-65</int> <int id="h">49</int> <int id="z">176</int> </object> <object id="heights_topper_2_1305142152830"> <int id="w">145</int> <int id="r">15</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-165</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1447</int> <int id="h">44</int> <int id="z">359</int> </object> <object id="patch_dirt_2a_1305142152725"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">-466</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-96</int> <int id="h">49</int> <int id="z">38</int> </object> <object id="heights_topper_stone_1_1305220159095"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-133</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-198</int> <int id="h">38</int> <int id="z">280</int> </object> <object id="stalagmite_2_1307648149811"> <int id="w">80</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">414</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-1283</int> <int id="h">183</int> <int id="z">80</int> </object> <object id="alakol_beach_1_1307648149841"> <int id="w">707</int> <int id="r">-4</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">553</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1385</int> <int id="h">79</int> <int id="z">398</int> </object> <object id="heights_bandaid_2_1306520684200"> <int id="w">64</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-573</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1457</int> <int id="h">200</int> <int id="z">204</int> </object> <object id="patch_dirt_2a_1305142152731"> <int id="w">361</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">142</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-21</int> <int id="h">62</int> <int id="z">181</int> </object> <object id="heights_topper_2_1305220159041"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">118</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-453</int> <int id="h">44</int> <int id="z">140</int> </object> <object id="moss_3_1305220159156"> <int id="w">188</int> <str id="name">moss_3_1305142152832</str> <int id="x">204</int> <str id="sprite_class">moss_3</str> <int id="y">-110</int> <int id="h">36</int> <int id="z">320</int> </object> <object id="heights_bandaid_2_1306520684233"> <int id="w">71</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">-648</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">38</int> <int id="h">294</int> <int id="z">338</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_2_1305220159028"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-358</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1836</int> <int id="h">44</int> <int id="z">237</int> </object> <object id="heights_topper_2_1305064258565"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-653</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1053</int> <int id="h">44</int> <int id="z">127</int> </object> <object id="gravel_1_1305142152745"> <int id="w">280</int> <str id="name">gravel_1_1305142152740</str> <int id="x">-548</int> <str id="sprite_class">gravel_1</str> <int id="y">-1094</int> <int id="h">51</int> <int id="z">189</int> </object> <object id="heights_face_rock_1_1305220159170"> <int id="w">303</int> <int id="r">180</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-486</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-371</int> <int id="h">112</int> <int id="z">192</int> <bool id="h_flip">true</bool> </object> <object id="ug_ground_heights_1306530344045"> <int id="w">496</int> <str id="name">ug_ground_heights_1306530344041</str> <int id="x">612</int> <str id="sprite_class">ug_ground_heights</str> <int id="y">-1392</int> <int id="h">40</int> <int id="z">344</int> </object> <object id="heights_face_rock_1_1305220159021"> <int id="w">365</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-296</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-1699</int> <int id="h">116</int> <int id="z">201</int> </object> <object id="stalagmite_2_1307648149802"> <int id="w">53</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">484</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-1701</int> <int id="h">121</int> <int id="z">373</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_2_1305220159073"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">127</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-822</int> <int id="h">44</int> <int id="z">257</int> </object> <object id="heights_topper_2_1305220159023"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-205</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1861</int> <int id="h">44</int> <int id="z">232</int> </object> <object id="heights_moss_1_1305142152688"> <int id="w">210</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-443</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1003</int> <int id="h">114</int> <int id="z">393</int> </object> <object id="heights_topper_2_1305220159141"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">660</int> <str id="sprite_class">heights_topper_2</str> <int id="y">14</int> <int id="h">44</int> <int id="z">293</int> </object> <object id="heights_topper_2_1305064258729"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-447</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1522</int> <int id="h">44</int> <int id="z">121</int> </object> <object id="heights_topper_2_1305064258593"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-651</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-540</int> <int id="h">44</int> <int id="z">145</int> </object> <object id="moss_3_1305142152836"> <int id="w">188</int> <str id="name">moss_3_1305142152832</str> <int id="x">-535</int> <str id="sprite_class">moss_3</str> <int id="y">-1868</int> <int id="h">36</int> <int id="z">215</int> </object> <object id="heights_topper_stone_1_1305220159096"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-28</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-207</int> <int id="h">38</int> <int id="z">281</int> </object> <object id="heights_topper_2_1305064258714"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">641</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-809</int> <int id="h">44</int> <int id="z">111</int> </object> <object id="patch_dirt_2a_1305142152729"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">195</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-57</int> <int id="h">49</int> <int id="z">177</int> </object> <object id="heights_topper_2_1305220159142"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">570</int> <str id="sprite_class">heights_topper_2</str> <int id="y">19</int> <int id="h">44</int> <int id="z">294</int> </object> <object id="heights_topper_2_1305220159025"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-405</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1859</int> <int id="h">44</int> <int id="z">234</int> </object> <object id="heights_topper_2_1305064258703"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">124</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-793</int> <int id="h">44</int> <int id="z">100</int> </object> <object id="heights_topper_stone_1_1305220159173"> <int id="w">153</int> <str id="name">heights_topper_stone_1_1305064258550</str> <int id="x">-287</int> <str id="sprite_class">heights_topper_stone_1</str> <int id="y">-437</int> <int id="h">38</int> <int id="z">331</int> </object> <object id="heights_topper_2_1305220159106"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-663</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-248</int> <int id="h">44</int> <int id="z">306</int> </object> <object id="stalagmite_2_1307648149816"> <int id="w">128</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">-605</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-1475</int> <int id="h">293</int> <int id="z">335</int> </object> <object id="heights_topper_2_1305064258732"> <int id="w">145</int> <int id="r">15</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-175</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1475</int> <int id="h">44</int> <int id="z">356</int> </object> <object id="heights_face_1_1305054546669"> <int id="w">613</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">24</int> <str id="sprite_class">heights_face_1</str> <int id="y">-104</int> <int id="h">419</int> <int id="z">30</int> </object> <object id="trunk_ladder_1_1305220159130"> <int id="w">121</int> <str id="name">trunk_ladder_1_1305220159084</str> <int id="x">-293</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">-1672</int> <int id="h">139</int> <int id="z">268</int> </object> <object id="heights_topper_2_1305220159015"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-117</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1849</int> <int id="h">44</int> <int id="z">216</int> </object> <object id="groddle_shadow_spot_1_1305064258596"> <int id="w">894</int> <str id="name">groddle_shadow_spot_1_1305064258571</str> <int id="x">-521</int> <str id="sprite_class">groddle_shadow_spot_1</str> <int id="y">-118</int> <int id="h">297</int> <int id="z">48</int> </object> <object id="heights_face_rock_2_1305064258546"> <int id="w">527</int> <int id="r">2</int> <str id="name">heights_face_rock_2_1305064258529</str> <int id="x">-651</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">-1572</int> <int id="h">193</int> <int id="z">19</int> </object> <object id="heights_face_rock_1_1305142152773"> <int id="w">365</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">-258</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-889</int> <int id="h">116</int> <int id="z">67</int> </object> <object id="heights_moss_2_1305152694811"> <int id="w">199</int> <str id="name">heights_moss_2_1305152694811</str> <int id="x">-631</int> <str id="sprite_class">heights_moss_2</str> <int id="y">-1899</int> <int id="h">30</int> <int id="z">228</int> </object> <object id="heights_bandaid_2_1306530344077"> <int id="w">87</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-334</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-509</int> <int id="h">280</int> <int id="z">1</int> <bool id="h_flip">true</bool> </object> <object id="alakol_beach_1_1307648149846"> <int id="w">554</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">-33</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-469</int> <int id="h">91</int> <int id="z">146</int> </object> <object id="heights_bandaid_1_1305064258644"> <int id="w">159</int> <int id="r">190</int> <str id="name">heights_bandaid_1_1305064258640</str> <int id="x">-689</int> <str id="sprite_class">heights_bandaid_1</str> <int id="y">-925</int> <int id="h">174</int> <int id="z">163</int> </object> <object id="heights_moss_2_1305152694812"> <int id="w">199</int> <str id="name">heights_moss_2_1305152694811</str> <int id="x">-526</int> <str id="sprite_class">heights_moss_2</str> <int id="y">-1885</int> <int id="h">30</int> <int id="z">229</int> </object> <object id="heights_moss_1_1306530344040"> <int id="w">222</int> <int id="r">5</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">47</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-1301</int> <int id="h">121</int> <int id="z">399</int> </object> <object id="heights_bandaid_2_1306520684232"> <int id="w">74</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">-615</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">38</int> <int id="h">244</int> <int id="z">337</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_2_1305064258725"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-206</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1501</int> <int id="h">44</int> <int id="z">118</int> </object> <object id="crosssection_heights_underside_1305064258583"> <int id="w">637</int> <int id="r">-7</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">-493</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-310</int> <int id="h">123</int> <int id="z">73</int> </object> <object id="alakol_beach_1_1307648149844"> <int id="w">707</int> <int id="r">-2</int> <str id="name">alakol_beach_1_1307648149837</str> <int id="x">531</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">-1792</int> <int id="h">79</int> <int id="z">412</int> </object> <object id="heights_moss_1_1305220159090"> <int id="w">210</int> <int id="r">-2</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">-404</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-495</int> <int id="h">114</int> <int id="z">431</int> </object> <object id="heights_face_rock_1_1305142152875"> <int id="w">328</int> <str id="name">heights_face_rock_1_1305142152765</str> <int id="x">397</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">-1667</int> <int id="h">104</int> <int id="z">199</int> </object> <object id="gravel_2_1305142152749"> <int id="w">85</int> <str id="name">gravel_2_1305142152747</str> <int id="x">-621</int> <str id="sprite_class">gravel_2</str> <int id="y">-626</int> <int id="h">48</int> <int id="z">430</int> </object> <object id="heights_topper_2_1305064258713"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">516</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-798</int> <int id="h">44</int> <int id="z">110</int> </object> <object id="stalagmite_1_1307648149804"> <int id="w">124</int> <str id="name">stalagmite_1_1307648149804</str> <int id="x">417</int> <str id="sprite_class">stalagmite_1</str> <int id="y">-1891</int> <int id="h">328</int> <int id="z">419</int> <bool id="h_flip">true</bool> </object> <object id="heights_hole_back_1306520684230"> <int id="w">373</int> <str id="name">heights_hole_back_1306520684226</str> <int id="x">2</int> <str id="sprite_class">heights_hole_back</str> <int id="y">35</int> <int id="h">75</int> <int id="z">246</int> </object> <object id="heights_topper_2_1305220159143"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">375</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-33</int> <int id="h">44</int> <int id="z">295</int> </object> <object id="heights_topper_2_1305220159104"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-651</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-225</int> <int id="h">44</int> <int id="z">304</int> </object> <object id="heights_topper_2_1305064258560"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-79</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1088</int> <int id="h">44</int> <int id="z">98</int> </object> <object id="stalagmite_3_1307648149803"> <int id="w">134</int> <str id="name">stalagmite_3_1307648149803</str> <int id="x">-223</int> <str id="sprite_class">stalagmite_3</str> <int id="y">-1881</int> <int id="h">214</int> <int id="z">374</int> <bool id="h_flip">true</bool> </object> <object id="heights_topper_2_1305220159139"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">514</int> <str id="sprite_class">heights_topper_2</str> <int id="y">9</int> <int id="h">44</int> <int id="z">291</int> </object> <object id="heights_topper_2_1305220159055"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-378</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-404</int> <int id="h">44</int> <int id="z">133</int> </object> <object id="heights_topper_2_1305142152878"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">391</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1762</int> <int id="h">50</int> <int id="z">411</int> </object> <object id="stalagmite_1_1307648149822"> <int id="w">124</int> <str id="name">stalagmite_1_1307648149804</str> <int id="x">506</int> <str id="sprite_class">stalagmite_1</str> <int id="y">-1851</int> <int id="h">328</int> <int id="z">381</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_2_1307648149800"> <int id="w">65</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">25</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-1693</int> <int id="h">183</int> <int id="z">372</int> </object> <object id="heights_topper_2_1305142152709"> <int id="w">176</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-444</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1805</int> <int id="h">58</int> <int id="z">339</int> </object> <object id="crosssection_heights_underside_1306530344035"> <int id="w">515</int> <int id="r">181</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">617</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">-1407</int> <int id="h">99</int> <int id="z">346</int> </object> <object id="patch_dirt_2a_1305142152724"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">-692</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-52</int> <int id="h">49</int> <int id="z">37</int> </object> <object id="heights_topper_2_1305220159074"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">49</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-813</int> <int id="h">44</int> <int id="z">258</int> </object> <object id="roots_ug_5_1307648149836"> <int id="w">71</int> <str id="name">roots_ug_5_1307648149836</str> <int id="x">623</int> <str id="sprite_class">roots_ug_5</str> <int id="y">-2165</int> <int id="h">226</int> <int id="z">352</int> </object> <object id="heights_topper_2_1305220159118"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-288</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-694</int> <int id="h">44</int> <int id="z">272</int> </object> <object id="heights_topper_2_1305220159133"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">184</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-97</int> <int id="h">44</int> <int id="z">285</int> </object> <object id="heights_mound_3_1305220159044"> <int id="w">628</int> <int id="r">1</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">-101</int> <str id="sprite_class">heights_mound_3</str> <int id="y">12</int> <int id="h">237</int> <int id="z">244</int> </object> <object id="heights_topper_2_1305064258723"> <int id="w">145</int> <int id="r">5</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-375</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-1535</int> <int id="h">44</int> <int id="z">116</int> </object> <object id="heights_topper_2_1305220159056"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">-409</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-393</int> <int id="h">44</int> <int id="z">248</int> </object> <object id="heights_bandaid_2_1306520684219"> <int id="w">93</int> <int id="r">178</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-629</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-1466</int> <int id="h">268</int> <int id="z">334</int> </object> <object id="patch_dirt_2a_1305142152721"> <int id="w">286</int> <str id="name">patch_dirt_2a_1305142152720</str> <int id="x">-122</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">-105</int> <int id="h">49</int> <int id="z">34</int> </object> <object id="heights_moss_1_1305142152757"> <int id="w">210</int> <int id="r">-1</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">473</int> <str id="sprite_class">heights_moss_1</str> <int id="y">-740</int> <int id="h">114</int> <int id="z">391</int> </object> <object id="heights_bandaid_2_1305064258639"> <int id="w">121</int> <str id="name">heights_bandaid_2_1305064258638</str> <int id="x">-506</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-98</int> <int id="h">197</int> <int id="z">155</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_2_1307648149834"> <int id="w">79</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">336</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-757</int> <int id="h">221</int> <int id="z">376</int> </object> <object id="heights_topper_2_1305064258704"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">213</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-809</int> <int id="h">44</int> <int id="z">101</int> </object> <object id="stalagmite_2_1307648149815"> <int id="w">118</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">301</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-2380</int> <int id="h">269</int> <int id="z">378</int> </object> <object id="heights_topper_2_1305064258708"> <int id="w">145</int> <str id="name">heights_topper_2_1305064258554</str> <int id="x">408</int> <str id="sprite_class">heights_topper_2</str> <int id="y">-828</int> <int id="h">44</int> <int id="z">105</int> </object> </object> <int id="w">1400</int> <object id="boxes"> <object id="box_1"> <int id="y">-2266</int> <int id="h">100</int> <int id="w">80</int> <int id="x">-585</int> <str id="id">11spots_kajuu_04</str> </object> </object> <str id="name">middleground</str> <object id="doors"> </object> <object id="ladders"> <object id="ladder_1305220159083"> <int id="y">-852</int> <int id="w">50</int> <int id="h">582</int> <int id="x">178</int> </object> <object id="ladder_1305220159128"> <int id="y">-1532</int> <int id="w">50</int> <int id="h">323</int> <int id="x">-293</int> </object> </object> <int id="h">2400</int> <int id="z">0</int> <object id="signposts"> <object id="signpost_2"> <int id="y">-1150</int> <int id="h">200</int> <int id="w">100</int> <object id="connects"> <object id="0"> <str id="hub_id">85</str> <int id="x">630</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf</str> <int id="y">-92</int> <str id="mote_id">9</str> <objref id="target" tsid="LHV1FUFU9442AKR" label="Sohan Sheer"/> </object> </object> <str id="id">signpost_2</str> <int id="x">-550</int> </object> <object id="signpost_1"> <int id="y">-1827</int> <int id="h">200</int> <int id="w">100</int> <object id="connects"> <object id="0"> <str id="hub_id">85</str> <int id="x">-2897</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf</str> <int id="y">-160</int> <str id="mote_id">9</str> <objref id="target" tsid="LHV15KA8NE42GSP" label="Fesenjan Freeq"/> </object> <object id="1"> <str id="hub_id">85</str> <int id="x">2920</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf</str> <int id="y">-145</int> <str id="mote_id">9</str> <objref id="target" tsid="LHV1PHOQH442RKT" label="Sappatu Slinks"/> </object> </object> <str id="id">signpost_1</str> <int id="x">499</int> </object> </object> </object> <object id="T_1308080805183"> <int id="w">1400</int> <int id="h">2400</int> <int id="z">1</int> <str id="name">middleplus</str> <object id="decos"> </object> </object> <object id="T_1305054546660"> <object id="filtersNEW"> <object id="contrast"> <int id="value">-26</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="brightness"> <int id="value">-67</int> </object> <object id="saturation"> <int id="value">-27</int> </object> <object id="blur"> <int id="value">2</int> </object> </object> <int id="w">1330</int> <int id="h">2160</int> <int id="z">-1</int> <str id="name">T_1305054546660</str> <object id="decos"> <object id="heights_bandaid_2_1306530344060"> <int id="w">90</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">1004</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">1470</int> <int id="h">281</int> <int id="z">0</int> <bool id="h_flip">true</bool> </object> <object id="penaltybox_roof_1306530344092"> <int id="w">997</int> <int id="r">10</int> <str id="name">penaltybox_roof_1306530344091</str> <int id="x">860</int> <str id="sprite_class">penaltybox_roof</str> <int id="y">78</int> <int id="h">238</int> <int id="z">32</int> </object> <object id="heights_bandaid_2_1306520684224"> <int id="w">90</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">1021</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">385</int> <int id="h">281</int> <int id="z">20</int> <bool id="h_flip">true</bool> </object> <object id="heights_mound_3_1305220159008"> <int id="w">418</int> <int id="r">5</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">1001</int> <str id="sprite_class">heights_mound_3</str> <int id="y">495</int> <int id="h">158</int> <int id="z">19</int> </object> <object id="heights_mound_3_1306530344071"> <int id="w">485</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">154</int> <str id="sprite_class">heights_mound_3</str> <int id="y">1738</int> <int id="h">183</int> <int id="z">28</int> </object> <object id="heights_mound_3_1306530344048"> <int id="w">485</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">1308</int> <str id="sprite_class">heights_mound_3</str> <int id="y">1465</int> <int id="h">183</int> <int id="z">27</int> </object> <object id="roots_ug_1_1308356161918"> <int id="w">88</int> <int id="r">-20</int> <str id="name">roots_ug_1_1307648149827</str> <int id="x">1075</int> <str id="sprite_class">roots_ug_1</str> <int id="y">185</int> <int id="h">195</int> <int id="z">36</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1305142152763"> <int id="w">65</int> <int id="r">181</int> <str id="name">heights_bandaid_2_1305142152762</str> <int id="x">373</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">592</int> <int id="h">157</int> <int id="z">14</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1306530344049"> <int id="w">90</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">910</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">1434</int> <int id="h">281</int> <int id="z">29</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1305142152762"> <int id="w">45</int> <int id="r">181</int> <str id="name">heights_bandaid_2_1305142152762</str> <int id="x">315</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">600</int> <int id="h">109</int> <int id="z">13</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_1_1307648149831"> <int id="w">124</int> <str id="name">stalagmite_1_1307648149796</str> <int id="x">1228</int> <str id="sprite_class">stalagmite_1</str> <int id="y">1337</int> <int id="h">328</int> <int id="z">34</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1306520684212"> <int id="w">122</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">793</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-101</int> <int id="h">380</int> <int id="z">25</int> </object> <object id="heights_mound_3_1305142152679"> <int id="w">485</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">166</int> <str id="sprite_class">heights_mound_3</str> <int id="y">580</int> <int id="h">183</int> <int id="z">3</int> </object> <object id="heights_mound_3_1305220159007"> <int id="w">418</int> <int id="r">4</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">759</int> <str id="sprite_class">heights_mound_3</str> <int id="y">454</int> <int id="h">158</int> <int id="z">5</int> </object> <object id="heights_bandaid_2_1306520684206"> <int id="w">111</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">470</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-101</int> <int id="h">346</int> <int id="z">22</int> </object> <object id="stalagmite_3_1307648149829"> <int id="w">134</int> <str id="name">stalagmite_3_1307648149803</str> <int id="x">422</int> <str id="sprite_class">stalagmite_3</str> <int id="y">526</int> <int id="h">381</int> <int id="z">33</int> <bool id="h_flip">true</bool> </object> <object id="heights_mound_3_1305142152680"> <int id="w">485</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">426</int> <str id="sprite_class">heights_mound_3</str> <int id="y">617</int> <int id="h">183</int> <int id="z">4</int> </object> <object id="ug_wall_heights_1305071515181"> <int id="w">357</int> <str id="name">ug_wall_heights_1305071515181</str> <int id="x">597</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">787</int> <int id="h">208</int> <int id="z">10</int> </object> <object id="heights_mound_3_1305220159034"> <int id="w">418</int> <int id="r">10</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">25</int> <str id="sprite_class">heights_mound_3</str> <int id="y">309</int> <int id="h">158</int> <int id="z">2</int> </object> <object id="stalagmite_2_1307648149833"> <int id="w">80</int> <int id="r">180</int> <str id="name">stalagmite_2_1307648149798</str> <int id="x">227</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1275</int> <int id="h">275</int> <int id="z">35</int> </object> <object id="heights_moss_1_1305142152682"> <int id="w">210</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">100</int> <str id="sprite_class">heights_moss_1</str> <int id="y">509</int> <int id="h">114</int> <int id="z">16</int> </object> <object id="ug_wall_heights_1305071515182"> <int id="w">375</int> <str id="name">ug_wall_heights_1305071515181</str> <int id="x">237</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">799</int> <int id="h">218</int> <int id="z">11</int> </object> <object id="heights_moss_1_1305142152683"> <int id="w">210</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">215</int> <str id="sprite_class">heights_moss_1</str> <int id="y">512</int> <int id="h">114</int> <int id="z">17</int> </object> <object id="heights_bandaid_2_1306530344068"> <int id="w">90</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">306</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">1634</int> <int id="h">281</int> <int id="z">30</int> <bool id="h_flip">true</bool> </object> <object id="heights_mound_3_1305220159020"> <int id="w">418</int> <int id="r">5</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">1151</int> <str id="sprite_class">heights_mound_3</str> <int id="y">555</int> <int id="h">158</int> <int id="z">21</int> </object> <object id="heights_mound_3_1305220159035"> <int id="w">418</int> <int id="r">6</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">-45</int> <str id="sprite_class">heights_mound_3</str> <int id="y">212</int> <int id="h">158</int> <int id="z">1</int> </object> <object id="heights_bandaid_2_1306520684223"> <int id="w">111</int> <int id="r">1</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">699</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">450</int> <int id="h">346</int> <int id="z">23</int> <bool id="h_flip">true</bool> </object> <object id="heights_mound_3_1305220159036"> <int id="w">418</int> <int id="r">27</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">282</int> <str id="sprite_class">heights_mound_3</str> <int id="y">493</int> <int id="h">158</int> <int id="z">7</int> </object> <object id="heights_moss_1_1305142152681"> <int id="w">210</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">7</int> <str id="sprite_class">heights_moss_1</str> <int id="y">507</int> <int id="h">114</int> <int id="z">15</int> </object> <object id="heights_face_1_1305071515184"> <int id="w">461</int> <int id="r">-5</int> <str id="name">heights_face_1_1305054546669</str> <int id="x">412</int> <str id="sprite_class">heights_face_1</str> <int id="y">804</int> <int id="h">315</int> <int id="z">9</int> </object> <object id="heights_mound_3_1306530344047"> <int id="w">485</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">1015</int> <str id="sprite_class">heights_mound_3</str> <int id="y">1494</int> <int id="h">183</int> <int id="z">26</int> </object> <object id="heights_bandaid_2_1306520684207"> <int id="w">72</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">713</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-43</int> <int id="h">224</int> <int id="z">24</int> </object> <object id="heights_mound_3_1305220159033"> <int id="w">418</int> <int id="r">4</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">91</int> <str id="sprite_class">heights_mound_3</str> <int id="y">432</int> <int id="h">158</int> <int id="z">6</int> </object> <object id="heights_mound_3_1305142152715"> <int id="w">485</int> <str id="name">heights_mound_3_1305142152675</str> <int id="x">675</int> <str id="sprite_class">heights_mound_3</str> <int id="y">571</int> <int id="h">183</int> <int id="z">8</int> </object> <object id="heights_moss_1_1305142152684"> <int id="w">210</int> <str id="name">heights_moss_1_1305142152681</str> <int id="x">290</int> <str id="sprite_class">heights_moss_1</str> <int id="y">522</int> <int id="h">114</int> <int id="z">18</int> </object> <object id="heights_bandaid_2_1306530344062"> <int id="w">92</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1306520684202</str> <int id="x">968</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">950</int> <int id="h">287</int> <int id="z">31</int> </object> <object id="crosssection_heights_underside_1305071515183"> <int id="w">416</int> <int id="r">-5</int> <str id="name">crosssection_heights_underside_1305064258547</str> <int id="x">379</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">629</int> <int id="h">80</int> <int id="z">12</int> </object> </object> </object> </object> <object id="gradient"> <str id="top">170000</str> <str id="bottom">000000</str> </object> <null id="img_file_versioned"/> <int id="ground_y">-293</int> <str id="tsid">LHV15C8IEQ322UG</str> <null id="loading_label"/> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf</str> <int id="rookable_type">0</int> <null id="physics"/> <object id="sources"> <int id="LHV1PHOQH442RKT">1</int> <int id="LHV15KA8NE42GSP">1</int> <int id="LHV1FUFU9442AKR">1</int> </object> <str id="music_file"></str> </object> </game_object>
198,756
Common Lisp
.l
5,928
26.71778
209
0.548572
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
35bd8565548f2f334ede4cc961ffc23a7b826a476155201873d1f93b80ed6177
20,864
[ -1 ]
20,865
LA5VDIGU3G525F9.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA5VDIGU3G525F9 Boonbi Books-multi level vertical cave/LA5VDIGU3G525F9.xml
<game_object tsid="LA5VDIGU3G525F9" ts="1364231110617" label="Boonbi Books" class_tsid="town" hubid="89" moteid="9" letime="3g8ejpg8" rbtime="25ire61p" upd_gs="gs6" load_time="2013-03-25 09:54:48.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-11-09/LA5VDIGU3G525F9_loading_1320868548.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <object id="image"> <str id="url">streets/2011-11-09/LA5VDIGU3G525F9_main_1320868552.jpg</str> <int id="w">720</int> <int id="h">960</int> </object> <object id="jobs"> <object id="489"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> <str id="title_override">Build Boonbi Books In Andra</str> <str id="desc_override">Expand Andra by building a new street, Boonbi Books.</str> <object id="connecting_streets"> <str id="0">LA51CGIGKK62NV8</str> </object> </object> <object id="class_ids"> <object id="job_street_ph2_04"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Engineer &amp; Build</str> <str id="class_id">job_street_ph2_04</str> </object> <object id="job_street_ph1_08"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Get Busy</str> </object> <object id="job_street_ph2_03"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Backyard BBQ</str> </object> <object id="job_street_ph2_07"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Party!</str> </object> </object> </object> <object id="490"> <object id="street_info"> <int id="type">2</int> <int id="is_hidden">0</int> <str id="title_override">Build Lavu Lane In Andra</str> <str id="desc_override">Expand Andra by building a new street, Lavu Lane.</str> <str id="target_street">LA5QBAL9SL52I02</str> </object> <object id="class_ids"> <object id="job_street_ph1_07"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Ready, Go!</str> <str id="class_id">job_street_ph1_07</str> <objref id="instance" tsid="QA510TT07V6239V"/> </object> <object id="job_street_ph2_08"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Garden Picnic</str> <str id="class_id">job_street_ph2_08</str> <objref id="instance" tsid="QA5MOT91DJ72HPJ"/> </object> <object id="job_street_ph3_08"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Strange Brew</str> <str id="class_id">job_street_ph3_08</str> <objref id="instance" tsid="QA54UT83HJ72K62"/> </object> <object id="job_street_ph4_03"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Pleasant Pretirement</str> <str id="class_id">job_street_ph4_03</str> <objref id="instance" tsid="QA5H6EDGLJ72EK9"/> </object> </object> </object> </object> <bool id="jobs_is_locked">false</bool> <object id="delayed_sounds"> </object> <object id="action_requests"> </object> <bool id="jobs_auto_unlock">false</bool> <bool id="no_teleportation">false</bool> <bool id="disallow_animals">false</bool> <bool id="no_rook">true</bool> <object id="keys"> </object> <object id="qurazy"> </object> <object id="incantations"> <object id="PUVS8FCV0BB3QIN"> <int id="step">1</int> <int id="ts">1350436989</int> </object> <object id="PCRJCSPFQNS10NR"> <int id="step">1</int> <int id="ts">1350437962</int> </object> <object id="PCRG9CKLLNS1KTS"> <int id="step">2</int> <int id="ts">1350437964</int> </object> <object id="PHV7V1JJOE22AQI"> <int id="step">1</int> <int id="ts">1350438364</int> </object> <object id="PUV7Q0QGO773EUS"> <int id="step">1</int> <int id="ts">1350438911</int> </object> <object id="PUVTQDQPHDF2870"> <int id="step">2</int> <int id="ts">1350438914</int> </object> <object id="PUVOGHCJUIF2F4F"> <int id="step">3</int> <int id="ts">1350438915</int> </object> <object id="PUVHT82E1AP2E7H"> <int id="step">1</int> <int id="ts">1350440192</int> </object> <object id="PHFQ8BJAR0D28JI"> <int id="step">2</int> <int id="ts">1350440194</int> </object> <object id="PUV76BIV41O20KD"> <int id="step">3</int> <int id="ts">1350440196</int> </object> <object id="PUVG6IV8J5F28N1"> <int id="step">1</int> <int id="ts">1350440864</int> </object> <object id="PUVUK07BTH93RE9"> <int id="step">1</int> <int id="ts">1350441886</int> </object> <object id="PUV766GM4TE2A3Q"> <int id="step">1</int> <int id="ts">1350441898</int> </object> <object id="PUV6H82RC8H2CIH"> <int id="step">2</int> <int id="ts">1350441899</int> </object> <object id="PUV5SMGPEHG2DP8"> <int id="step">3</int> <int id="ts">1350441900</int> </object> <object id="PUVIJ7TCMQA3P45"> <int id="step">1</int> <int id="ts">1350442146</int> </object> <object id="PHFETULK40D2O8D"> <int id="step">2</int> <int id="ts">1350442147</int> </object> <object id="PUVTVRH3K1A30EQ"> <int id="step">1</int> <int id="ts">1350442324</int> </object> <object id="PUVGI68DJ9G2P24"> <int id="step">1</int> <int id="ts">1350442449</int> </object> <object id="PUV4ICBH7NB3R30"> <int id="step">2</int> <int id="ts">1350442451</int> </object> <object id="PUVN8LR3HQ63GE4"> <int id="step">3</int> <int id="ts">1350442451</int> </object> <object id="PUVPO60VKMS2GTK"> <int id="step">1</int> <int id="ts">1350442532</int> </object> <object id="PHFUA8HSGCD2A56"> <int id="step">2</int> <int id="ts">1350442534</int> </object> <object id="PCRHA593D1N1EB3"> <int id="step">3</int> <int id="ts">1350442536</int> </object> <object id="PUV99QHSN8D2ERD"> <int id="step">1</int> <int id="ts">1350443373</int> </object> <object id="PUVBI388O8D2I9P"> <int id="step">2</int> <int id="ts">1350443376</int> </object> <object id="PUV6L7AB0JH22K3"> <int id="step">3</int> <int id="ts">1350443396</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">1</int> <int id="ts">1350443544</int> </object> <object id="PUVFUD1UJRE26GD"> <int id="step">1</int> <int id="ts">1350444092</int> </object> <object id="PUVI4EDKGAJ207T"> <int id="step">2</int> <int id="ts">1350444093</int> </object> <object id="PHF7GOMJS1D24NC"> <int id="step">3</int> <int id="ts">1350444096</int> </object> <object id="PA9D1LN98GD222R"> <int id="step">1</int> <int id="ts">1350444360</int> </object> <object id="PUVIBNJ5IIB3TV7"> <int id="step">1</int> <int id="ts">1350445368</int> </object> <object id="PUVT4G8H1IB3FQA"> <int id="step">2</int> <int id="ts">1350445369</int> </object> <object id="PUVV5EPO1IB39IQ"> <int id="step">3</int> <int id="ts">1350445370</int> </object> <object id="PA9MTNTQ1ND29LQ"> <int id="step">1</int> <int id="ts">1350446062</int> </object> <object id="PIFCK7G7SH63VO2"> <int id="step">1</int> <int id="ts">1350446453</int> </object> <object id="PUVU70T41MB3OUK"> <int id="step">2</int> <int id="ts">1350446876</int> </object> <object id="PIFV7JNC6163LDM"> <int id="step">1</int> <int id="ts">1350446920</int> </object> <object id="PUVUCJ1BR4A3NOC"> <int id="step">2</int> <int id="ts">1350446988</int> </object> <object id="PUVRM21FD983JNO"> <int id="step">1</int> <int id="ts">1350447002</int> </object> <object id="PHF2VPV503D26FE"> <int id="step">1</int> <int id="ts">1350451280</int> </object> <object id="PUV177GEM5B3T5M"> <int id="step">2</int> <int id="ts">1350451281</int> </object> <object id="PUVICMAK8SJ2MAS"> <int id="step">3</int> <int id="ts">1350451283</int> </object> <object id="PHF9L3JP5BD2R6D"> <int id="step">1</int> <int id="ts">1350452096</int> </object> <object id="PUVPOBK0AB83DS9"> <int id="step">1</int> <int id="ts">1350452127</int> </object> <object id="PHFJVIL04RC2ULD"> <int id="step">2</int> <int id="ts">1350452132</int> </object> <object id="PHF2CSR1OCD2E6B"> <int id="step">1</int> <int id="ts">1350452185</int> </object> <object id="PIF1AB3PVG63M4B"> <int id="step">2</int> <int id="ts">1350452591</int> </object> <object id="PUVO7EKBSC93K41"> <int id="step">3</int> <int id="ts">1350452597</int> </object> <object id="PHVDOPS0FC92L2P"> <int id="step">1</int> <int id="ts">1350452629</int> </object> <object id="PUVPMQG5849388A"> <int id="step">2</int> <int id="ts">1350452755</int> </object> <object id="PUVIJILB95D21G5"> <int id="step">1</int> <int id="ts">1350452829</int> </object> <object id="PHV22CFP5942TMI"> <int id="step">2</int> <int id="ts">1350453014</int> </object> <object id="PUV1TNS227D23C2"> <int id="step">1</int> <int id="ts">1350467493</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">1</int> <int id="ts">1350467619</int> </object> <object id="PHFL7P0N83D2P1R"> <int id="step">2</int> <int id="ts">1350467621</int> </object> <object id="PHFNOU1GP2D2P9K"> <int id="step">3</int> <int id="ts">1350467622</int> </object> <object id="PHF31BRLV4D27G0"> <int id="step">1</int> <int id="ts">1350471487</int> </object> <object id="PUVQV9G5RB838CE"> <int id="step">1</int> <int id="ts">1350473885</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1350477462</int> </object> <object id="PHFVN17DD0D2G3V"> <int id="step">2</int> <int id="ts">1350477463</int> </object> <object id="PHFLM7KOU2D24PL"> <int id="step">3</int> <int id="ts">1350477467</int> </object> <object id="PUVKF3K8M483LRV"> <int id="step">1</int> <int id="ts">1350480718</int> </object> <object id="PHFT6U31UBD2A1I"> <int id="step">2</int> <int id="ts">1350480722</int> </object> <object id="PUVTVHBGAB83HBI"> <int id="step">3</int> <int id="ts">1350480723</int> </object> <object id="PUV9H4HP7PL2SLO"> <int id="step">1</int> <int id="ts">1350481380</int> </object> <object id="PHVVS8IQOM92U22"> <int id="step">2</int> <int id="ts">1350481381</int> </object> <object id="PHVA4KMGON72S7L"> <int id="step">3</int> <int id="ts">1350481382</int> </object> <object id="PUVU3P2UH5D2F65"> <int id="step">1</int> <int id="ts">1350481596</int> </object> <object id="PUV5QNHBI9G276R"> <int id="step">1</int> <int id="ts">1350482317</int> </object> <object id="PUVT5TK2G6D28QU"> <int id="step">1</int> <int id="ts">1350482820</int> </object> <object id="PUVQMCK0GOI2CE3"> <int id="step">2</int> <int id="ts">1350487227</int> </object> <object id="PUV2JU76I9D2LI5"> <int id="step">3</int> <int id="ts">1350487238</int> </object> <object id="PUVP69BUJRB3N1U"> <int id="step">1</int> <int id="ts">1350488046</int> </object> <object id="PUVHCH6SH3A30DK"> <int id="step">1</int> <int id="ts">1350488803</int> </object> <object id="PUVTEISFLLB38P4"> <int id="step">1</int> <int id="ts">1350489104</int> </object> <object id="PUV4J03EN3B3U0K"> <int id="step">1</int> <int id="ts">1350493976</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">1</int> <int id="ts">1350495737</int> </object> <object id="PHFM0PHNTUC2S8E"> <int id="step">1</int> <int id="ts">1350497201</int> </object> <object id="PUV70B01CBG27J4"> <int id="step">2</int> <int id="ts">1350497204</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">1</int> <int id="ts">1350497518</int> </object> <object id="PA9A85FUBUD2DMH"> <int id="step">1</int> <int id="ts">1350498256</int> </object> <object id="PUVR4MQSVE8394R"> <int id="step">1</int> <int id="ts">1350499722</int> </object> <object id="PIFF7I4MJR53326"> <int id="step">2</int> <int id="ts">1350499723</int> </object> <object id="PIFENEKT8R61CML"> <int id="step">3</int> <int id="ts">1350499724</int> </object> <object id="PIFAVSBAJR538UD"> <int id="step">1</int> <int id="ts">1350500338</int> </object> <object id="PIF37IOVLQ53B17"> <int id="step">1</int> <int id="ts">1350502678</int> </object> <object id="PIFG7LQVTG6356J"> <int id="step">1</int> <int id="ts">1350503734</int> </object> <object id="PUVPD6H08L93VT6"> <int id="step">2</int> <int id="ts">1350503739</int> </object> <object id="PUV9BBKR19G2T3T"> <int id="step">1</int> <int id="ts">1350504692</int> </object> <object id="PIF8HF26KV53M2P"> <int id="step">1</int> <int id="ts">1350507253</int> </object> <object id="PUVBB77UOBB3KGE"> <int id="step">1</int> <int id="ts">1350508404</int> </object> <object id="PUVBFKGAR9G2SOQ"> <int id="step">1</int> <int id="ts">1350509037</int> </object> <object id="PA9TT1IARGD2V5S"> <int id="step">1</int> <int id="ts">1350510013</int> </object> <object id="PUVTE0MHB9B3U6Q"> <int id="step">2</int> <int id="ts">1350510026</int> </object> <object id="PHVSCM4AFS627EF"> <int id="step">3</int> <int id="ts">1350510105</int> </object> <object id="PHFT0IUIV2D2S17"> <int id="step">1</int> <int id="ts">1350510513</int> </object> <object id="PCR44OG2AUT12IH"> <int id="step">1</int> <int id="ts">1350511722</int> </object> <object id="PDODTQK43DR27CB"> <int id="step">2</int> <int id="ts">1350511723</int> </object> <object id="PHVNJ4LKTQ626HM"> <int id="step">1</int> <int id="ts">1350514564</int> </object> <object id="PCRSVJC3CFV19J7"> <int id="step">1</int> <int id="ts">1350515323</int> </object> <object id="PA9MQ5QSGJD2VP4"> <int id="step">1</int> <int id="ts">1350515989</int> </object> <object id="PUVU3V9NIE831IS"> <int id="step">2</int> <int id="ts">1350515993</int> </object> <object id="PUV1UO50AS73EED"> <int id="step">3</int> <int id="ts">1350516014</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1350516274</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1350516275</int> </object> <object id="PUVV1BJVGTB3LNU"> <int id="step">1</int> <int id="ts">1350516301</int> </object> <object id="PUVBODMTD5D2253"> <int id="step">2</int> <int id="ts">1350516303</int> </object> <object id="PUV6EFH977D20ED"> <int id="step">3</int> <int id="ts">1350516311</int> </object> <object id="PUVA8FOICAG2MV6"> <int id="step">1</int> <int id="ts">1350516314</int> </object> <object id="PUVL2EQ7J7D25OS"> <int id="step">2</int> <int id="ts">1350516323</int> </object> <object id="PUV7281593F2747"> <int id="step">1</int> <int id="ts">1350516833</int> </object> <object id="PUVSFSPLFNB3DHR"> <int id="step">1</int> <int id="ts">1350516987</int> </object> <object id="PUVURSJJOQA3ERR"> <int id="step">2</int> <int id="ts">1350516989</int> </object> <object id="PCR45R93AUT1EMH"> <int id="step">1</int> <int id="ts">1350517534</int> </object> <object id="PCRNH6RCVNS1072"> <int id="step">1</int> <int id="ts">1350518368</int> </object> <object id="PHFN9R9390D25C1"> <int id="step">2</int> <int id="ts">1350518428</int> </object> <object id="PUVFVM8KG9B37F0"> <int id="step">1</int> <int id="ts">1350518529</int> </object> <object id="PUV7PU7B5JH2OP2"> <int id="step">2</int> <int id="ts">1350518532</int> </object> <object id="PUVEGG4T2FG2UCD"> <int id="step">3</int> <int id="ts">1350518535</int> </object> <object id="PA9K8H9L9RD2ISS"> <int id="step">1</int> <int id="ts">1350518894</int> </object> <object id="PUVNJCEML7P2ES0"> <int id="step">1</int> <int id="ts">1350519442</int> </object> <object id="PUV3JOQHDGB322T"> <int id="step">2</int> <int id="ts">1350519442</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">3</int> <int id="ts">1350519443</int> </object> <object id="PA9K4D8K8MD27JH"> <int id="step">1</int> <int id="ts">1350520308</int> </object> <object id="PUV4M2F46LL2DPA"> <int id="step">1</int> <int id="ts">1350520350</int> </object> <object id="PCR6L4VMU3N1H72"> <int id="step">2</int> <int id="ts">1350520734</int> </object> <object id="PUVUQ4FCGL931UO"> <int id="step">1</int> <int id="ts">1350520897</int> </object> </object> <int id="incantations_step">1</int> <object id="emotes"> <object id="25-05-23"> </object> <object id="25-05-25"> </object> <object id="25-05-26"> <int id="PUV4U05FSGC3J8E">1351271942</int> <int id="PUVD2QJ05G934PG">1351272431</int> <int id="PUVQITRUOHB3CUO">1351272523</int> <int id="PA9BE3UF1VD2HR0">1351275203</int> <int id="PUV1TNS227D23C2">1351275449</int> <int id="PCRD007C83N19S4">1351275469</int> <int id="PCRJ6LP7QNS17JQ">1351277212</int> <int id="PHFEVQHPITC2G4D">1351277369</int> <int id="PCR42DQMSCV1P9O">1351277418</int> <int id="PUVAS64J8I93DP7">1351277580</int> <int id="PHV3O08VEE2287J">1351277689</int> <int id="PHV9E3ID45A249Q">1351277689</int> <int id="PUVAF4G4FG9398I">1351278905</int> <int id="PUV4Q57J6BS22VT">1351281555</int> <int id="PUVCJDEVLC938VM">1351284397</int> <int id="PUV4BNDS8F93JL3">1351284407</int> <int id="PUVPDEUHUL832K5">1351285009</int> <int id="PUVS62270NB35UP">1351285010</int> </object> <object id="25-05-27"> <int id="PCR7T82R11K14AP">1351285230</int> <int id="PHV3TEP4ML326VP">1351285526</int> <int id="PUVUCKR0LKB3IN1">1351286973</int> <int id="PUV8IOCRVBC31KM">1351286975</int> <int id="PUVQAVTGUBC3QUV">1351288487</int> <int id="PUVUMRB0PJC3TUK">1351289406</int> <int id="PUV6KSA5FQB3QTG">1351289414</int> <int id="PUVSGG1ULJE2EBJ">1351290675</int> <int id="PUVOSJNP0NF2OSG">1351291696</int> <int id="PUV42LEOBAF2MKD">1351291698</int> <int id="PUVBA0BI3LE2QBN">1351293181</int> <int id="PUV57G8B3FC3Q67">1351293184</int> <int id="PIFKV75KG163LL9">1351293465</int> <int id="PUVSSK922EF27LP">1351295616</int> <int id="PCRIQ6OSD1N166M">1351296520</int> <int id="PIF8B5RA6R53ATT">1351297563</int> <int id="PUV1TNS227D23C2">1351297565</int> </object> <object id="25-05-28"> <int id="PUV5U05UFFC3152">1351306224</int> <int id="PUVQK9NC2CA3UM4">1351306740</int> <int id="PUV5FLF16L935CN">1351307908</int> <int id="PUVLM1T4LQB3B39">1351308191</int> <int id="PA9AAQRSQ1E2VC8">1351308198</int> <int id="PUV1T6VPCAC3I2C">1351312674</int> <int id="PUVDM3K3CCG2ERK">1351312675</int> </object> <object id="25-05-29"> <int id="PUVTEISFLLB38P4">1351316798</int> <int id="PHF9S44VTTC24T5">1351321542</int> <int id="PUVC6FB10GC3TB8">1351321640</int> </object> <object id="25-05-30"> <int id="PHFMC95PB4D22H5">1351339736</int> <int id="PUVA0VV258C3ROR">1351340681</int> <int id="PUV1TNS227D23C2">1351341988</int> </object> <object id="25-05-31"> <int id="PUV4R9677HC34N2">1351344704</int> <int id="PUVJO54O12F2NJ3">1351344724</int> <int id="PUV5KOGK3VB31HI">1351350682</int> <int id="PUVLDBAAO673ORE">1351351332</int> <int id="PUVNL8QJPC93O14">1351351521</int> <int id="PIF1G096IR53DG9">1351352968</int> <int id="PUVIC2CQS5D2EEA">1351352973</int> <int id="PUVQ44T8D9832CL">1351356202</int> <int id="PUV7U3KUK2C3MCG">1351356629</int> <int id="PUV1TNS227D23C2">1351356631</int> </object> <object id="25-05-32"> </object> <object id="25-05-33"> </object> <object id="25-05-34"> </object> <object id="25-05-35"> </object> <object id="25-05-36"> </object> <object id="25-05-37"> </object> <object id="25-05-38"> </object> <object id="25-05-39"> </object> <object id="25-05-40"> </object> </object> <object id="hi_sign_evasion_record"> <str id="pc_tsid">PUV1QK9Q61C3SF8</str> <str id="pc_label">Acyclic</str> <int id="secs">1</int> <int id="when">1351720560</int> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PUVILST9GUI2GNT">1352338010</int> <int id="PIFHGN941I632RQ">1352338124</int> <int id="PUVICQRI1KC39TV">1352338487</int> <int id="PHFT66IJV2D29PS">1352338713</int> <int id="PCRQC081VTM1N2C">1352338764</int> <int id="PM1DM7LBVA02ABN">1352338774</int> <int id="PUV8D0AJPV639FM">1352338899</int> <int id="PUVNKQ5NLQC3VAI">1352338980</int> <int id="PUV75LCP7AD3H5F">1352339211</int> <int id="PUV53017RHC3DQJ">1352339465</int> <int id="PHF624MH10D2RFE">1352339829</int> <int id="PUVNL8QJPC93O14">1352339843</int> <int id="PUVPJ29FELB3U33">1352339966</int> <int id="PUVS76IBB0S2R71">1352340217</int> <int id="PIFKV75KG163LL9">1352340217</int> <int id="PHFQ3QMFHVC281F">1352340449</int> <int id="PUVPJIH5OGA3EL4">1352340467</int> <int id="PUV4O6C6GBD3ITF">1352340471</int> <int id="PUVRT27U67C3P2D">1352340487</int> <int id="PUVBJQLIQLB38JN">1352340630</int> <int id="PUVCOTKKG683UCO">1352340637</int> <int id="PUVOK86Q1NH22PA">1352340953</int> <int id="PIF157VFN063CTQ">1352341062</int> <int id="PUVPL4QIRFC3P3P">1352341097</int> <int id="PUV4H32DJ5B3RKO">1352341134</int> <int id="PUV2PAADR773LO4">1352341230</int> <int id="PUVFDC083PE2F30">1352341454</int> <int id="PUVJIPPFIBD398T">1352341502</int> <int id="PUVGOKRKAHB3URJ">1352341532</int> <int id="PUVLC2BEDDE2MGD">1352342366</int> <int id="PUVURSJJOQA3ERR">1352342653</int> <int id="PUV743BJDAC34HC">1352342678</int> <int id="PUVMGK6V6D732VR">1352342857</int> <int id="PUVJU69IKJC3BOE">1352343185</int> <int id="PUVBH5U8J8F29VD">1352343363</int> <int id="PIFH87H32963H19">1352343690</int> <int id="PUV22S2QJIF2GFM">1352343969</int> <int id="PM11J0LUK902GQV">1352344105</int> <int id="PUVAP0H77CC36BE">1352344219</int> <int id="PUVSFSPLFNB3DHR">1352345006</int> <int id="PUVOM8F6A3H2T74">1352345674</int> <int id="PHVLEE66STA2M50">1352346096</int> <int id="PA9HSMK86ID2F1A">1352346202</int> <int id="PHFNCFTVB4D2DNN">1352346518</int> <int id="PUVHV1J9EJ833AL">1352346572</int> <int id="PUVI4EDKGAJ207T">1352346641</int> <int id="PUVKKEO10TB32H1">1352346660</int> <int id="PUVER2ENULH2DBE">1352346689</int> <int id="PA9VHKNCKQD2LUN">1352347332</int> <int id="PHVT0GKF9T02136">1352347389</int> <int id="PUVVP3Q1VKB3O0M">1352348327</int> <int id="PUVVEUBT0KE20IO">1352348979</int> <int id="PUV7RQL8K7D3I10">1352349090</int> <int id="PA9Q94G71PD2M59">1352349192</int> <int id="PHFF9RF1U2D2JM4">1352349522</int> <int id="PUVL88N12R93662">1352349936</int> <int id="PUVH5K5FGJA3TQU">1352349987</int> <int id="PUVHT82E1AP2E7H">1352350009</int> <int id="PUVTJ95EO3A3J7V">1352350171</int> <int id="PUVUHK1IICA397A">1352350430</int> <int id="PUVB50SQBF93PVC">1352350612</int> </object> <object id="25-07-09"> <int id="PUVL6SNU4FC3EBM">1352351570</int> <int id="PHFBJB377AD29TL">1352351838</int> <int id="PUVTD2NVTID3NDN">1352352316</int> <int id="PHFFIBQRICD28H9">1352352433</int> <int id="PCR4FCCFCSM10NT">1352352773</int> <int id="PUVIJILB95D21G5">1352353087</int> <int id="PUV9L691CFI2GRM">1352353108</int> <int id="PUVU760TM4H2155">1352353277</int> <int id="PUVBJ8PTEEA3QVT">1352353551</int> <int id="PCRAFRDJFUT1PGB">1352353571</int> <int id="PUVFH6OPFTF2LF6">1352353999</int> <int id="PUVFRIHJS5D259C">1352355056</int> <int id="PHVCIHQ7LN0268R">1352355079</int> <int id="PUVJ8B0F9Q7361D">1352355082</int> <int id="PUV36R4JTGD3TJF">1352355181</int> <int id="PUVDML8BPK93CKI">1352355281</int> <int id="PIFNHNBDMK63AN5">1352355739</int> <int id="PUV12E0QUBD3N2G">1352356144</int> <int id="PUVGV2K6PBG24Q2">1352356783</int> <int id="PA9NO43L7VD26VP">1352356919</int> <int id="PUVHCFH35MG2UOI">1352357293</int> <int id="PUVBDC5ET583TJS">1352357478</int> <int id="PUVV9B24MTB363H">1352358160</int> <int id="PA9MH98IKVD27CP">1352358185</int> <int id="PIFM7B1LC963BTO">1352358692</int> <int id="PA9MTNTQ1ND29LQ">1352359994</int> <int id="PHFUGVFQA3D28P7">1352360424</int> <int id="PUVPC6P6SA839RS">1352360684</int> <int id="PUVQJQHA6G93AQJ">1352360766</int> <int id="PUVO54G4RGC394I">1352360849</int> <int id="PUVVG7H0FJB3A8N">1352360960</int> <int id="PHVPBUH9R3A23NS">1352361316</int> <int id="PHFVCRK8V4D22NS">1352361847</int> <int id="PUVKDO4T9783BCF">1352361874</int> <int id="PIFEQLIRTS53BH9">1352362242</int> <int id="PHFTTPBQ52D2EAM">1352362691</int> <int id="PUVD1R35GNC3PP0">1352363529</int> <int id="PCRF91L4KNS1SSI">1352364676</int> </object> <object id="25-07-10"> <int id="PUVNTDFC8RC34UR">1352365974</int> <int id="PUVKRH3AA7D2CPT">1352367064</int> <int id="PCR12K6MG5S14JV">1352367260</int> <int id="PUV979L46IB3HEE">1352368555</int> <int id="PUV14N2LA8D2JIJ">1352369566</int> <int id="PUVT888FTNA3KV6">1352369890</int> <int id="PHVFSV9R04A2DO9">1352370156</int> <int id="PUV94MUVPHE2IQJ">1352371085</int> <int id="PHFBMADAEAD2JND">1352371196</int> <int id="PUVD5U87HNB3HQU">1352371391</int> <int id="PIF37IOVLQ53B17">1352371960</int> <int id="PUVSVMTPFIJ2M6B">1352373149</int> <int id="PHFINSK9JCD29H5">1352374053</int> <int id="PUV96R35IRF24SR">1352375998</int> </object> <object id="25-07-11"> <int id="PUVH7BU7IQC3O8D">1352379887</int> <int id="PUVJ14GQK8D2BAC">1352380195</int> <int id="PUV4DE6TGQB3AE8">1352381472</int> <int id="PUV7EHQA6SC3P1N">1352381993</int> <int id="PCRFLA5IKNS19P1">1352382727</int> <int id="PUV70B01CBG27J4">1352382961</int> <int id="PUV5L7HCIF8378N">1352383631</int> <int id="PUVL4LENIBD3AQQ">1352383920</int> <int id="PUV9CNLNK7D3MR7">1352384124</int> <int id="PUVBDPMKLPC3JB3">1352384355</int> <int id="PUV1IT5MDEC35J8">1352384450</int> <int id="PHVKLAV9JEC2F4B">1352384792</int> <int id="PUVNJQNIC7D29GA">1352385065</int> <int id="PUVQN4IADGG28KK">1352385103</int> <int id="PUV8PBHEH5K2E9N">1352385583</int> <int id="PUV22S2QJIF2GFM">1352385772</int> <int id="PCR825CVE0N1DVT">1352386191</int> <int id="PHFINSK9JCD29H5">1352386196</int> <int id="PHVAI4B3TK82G0N">1352386383</int> <int id="PUVHB7KP49E202R">1352386770</int> <int id="PCR10CGI60N1LG6">1352386936</int> <int id="PUV2NS4UP8G2BAS">1352387841</int> <int id="PIFG2ITIPK63M0R">1352388108</int> <int id="PUVKIT6A3FB38C7">1352388164</int> <int id="PUVG6BCRFA93SGL">1352388763</int> <int id="PUVSVALD06C3B9R">1352389081</int> <int id="PUVBHA1C58C33PQ">1352389257</int> <int id="PUVM4P3TPBG2CTI">1352389258</int> <int id="PHVBQSO3LG22530">1352389258</int> <int id="PUV9EUTOH6D2SD9">1352389258</int> <int id="PUV9TAHHD9G289O">1352389258</int> <int id="PUVC77TNAEC356A">1352389509</int> <int id="PUV6IJITA1F2VFO">1352389651</int> <int id="PUV9BBKR19G2T3T">1352389844</int> <int id="PUVKP5AMB8D3J38">1352389856</int> <int id="PUVLDBAAO673ORE">1352390085</int> <int id="PUV4UJHN39E2828">1352391628</int> <int id="PUV5BRNNP2C304V">1352392007</int> <int id="PUV3L6COM5B3O35">1352392464</int> <int id="PUVPE4DEUBC3E4F">1352392759</int> <int id="PUV473G116D2GUS">1352393203</int> </object> <object id="25-07-12"> <int id="PHFIPVH38TC2PIV">1352394252</int> <int id="PUVVJ936BCA3M1E">1352395216</int> <int id="PUV9C064K4C352I">1352395216</int> <int id="PUVFDC083PE2F30">1352395604</int> <int id="PUVPRKF3VAC3NFG">1352395842</int> <int id="PUVLE608CNB3GA3">1352395972</int> <int id="PCROPEN11OS1K51">1352395999</int> <int id="PUVHT82E1AP2E7H">1352396518</int> <int id="PUV611DPFLE2TKH">1352397558</int> <int id="PUVDLL0ENLC3GCE">1352397782</int> <int id="PHV90CU6KG22L76">1352397842</int> <int id="PUVJ0E8EINE276C">1352397904</int> <int id="PCRE77SPB0U14V3">1352398102</int> <int id="PHFIVA1983D25F9">1352398144</int> <int id="PHFQF61M2CD2DOI">1352398144</int> <int id="PUVDML8BPK93CKI">1352398400</int> <int id="PUVV5Q9GL9D2P2N">1352398432</int> <int id="PIFLC6T4UK63AKI">1352398453</int> <int id="PUVPTF7N2DG203S">1352398453</int> <int id="PUVJ9O4VKPB3JV2">1352398813</int> <int id="PCRE2VRLINS18V4">1352398889</int> <int id="PHVP4B1U0H22UNL">1352399723</int> <int id="PUVUEFJABRG2LND">1352400092</int> <int id="PIFH2M74I363P2I">1352400177</int> <int id="PUVTEUHGBSC3H20">1352400300</int> <int id="PA998GBOSJD2EDI">1352400666</int> <int id="PHVSGKDV7SA2FK8">1352401008</int> <int id="PCRDBVC21JL12OL">1352401182</int> <int id="PUVS2L05QPF2N3H">1352402153</int> <int id="PUVQF34IQ7B3GQ2">1352402247</int> <int id="PA92MJIOKQD2IMA">1352402389</int> <int id="PHFQ8BJAR0D28JI">1352402746</int> <int id="PUVHIS3DV5D20RQ">1352403633</int> <int id="PUV9DATQ15D3NHB">1352403674</int> <int id="PUVI0LUOTEP2QE4">1352404034</int> <int id="PUVTMGFFBQ63516">1352404252</int> <int id="PUV7TUKE35C3U5F">1352404927</int> <int id="PHFDH2M9ITC263E">1352405067</int> <int id="PUVANK930CC3FME">1352405552</int> <int id="PHVNJ4LKTQ626HM">1352405757</int> <int id="PHFINSK9JCD29H5">1352405892</int> <int id="PUVMAEO5BUC31VI">1352405892</int> <int id="PUVHV1J9EJ833AL">1352406253</int> <int id="PHVT2V3P3U22T8R">1352406941</int> <int id="PUV2PAADR773LO4">1352407324</int> <int id="PHVCAFEPHL4277G">1352407441</int> <int id="PCR2CQ0NIOS1BSK">1352407459</int> <int id="PUVHS2V1RJC3U6F">1352408024</int> <int id="PHF43603F4D2I2C">1352408085</int> <int id="PA9TE01R56E25RU">1352408166</int> <int id="PUVP1TO9SNB3U06">1352408200</int> </object> <object id="25-07-13"> <int id="PUVQ71U5MVK20D3">1352409005</int> <int id="PUV3CEMES9C31A5">1352409869</int> <int id="PUV14N2LA8D2JIJ">1352410060</int> <int id="PUV979L46IB3HEE">1352410453</int> <int id="PUV1D62CP6D2M64">1352410542</int> <int id="PHVSGKDV7SA2FK8">1352410542</int> <int id="PUVSVDEIMTG26B0">1352410556</int> <int id="PCR3M6A0A0N1KVG">1352410637</int> <int id="PCRBEFESFUM1J0T">1352411151</int> <int id="PUV60PE6S6D3BT0">1352411236</int> <int id="PUVH20B9EL73O40">1352411442</int> <int id="PUVU7J20FVB3065">1352411587</int> <int id="PUV3R5M8VN63HKK">1352411937</int> <int id="PCR14AIGQJO1V4O">1352412731</int> <int id="PUVSLU0J4AD36SK">1352412788</int> <int id="PHF4VCR245D2MK3">1352413041</int> <int id="PUVF79KMEGC3EU4">1352413159</int> <int id="PUVI0LUOTEP2QE4">1352413297</int> <int id="PHFU9TB1JVC2JE6">1352413432</int> <int id="PA9UFDR4JJD224N">1352413432</int> <int id="PHFSSK0KN1D2MJL">1352413520</int> <int id="PUV16JMR69C3LLN">1352413744</int> <int id="PUVBDPMKLPC3JB3">1352414408</int> <int id="PHF9BGSKEUC2HD7">1352414662</int> <int id="PHVSCM4AFS627EF">1352414674</int> <int id="PUV4DAEQGTH2M1R">1352414910</int> <int id="PUVE46Q101A3SHJ">1352415543</int> <int id="PUV8726GUNH2L21">1352415571</int> <int id="PUVOU2RQF3D3LSK">1352415791</int> <int id="PDO2V71MMAR2SER">1352416061</int> <int id="PUV8S9J1PAD3RO7">1352416207</int> <int id="PHVT6D96EL22G4P">1352416876</int> <int id="PA9TS1I877E2TF3">1352417039</int> <int id="PUVBUB7PT9E2HLL">1352417206</int> <int id="PUVRINE0QJL2GOH">1352417367</int> <int id="PUVRKFKFDGG2OPH">1352417541</int> <int id="PUVGVHKPT3D3JN7">1352417666</int> <int id="PUV5R64J6FC3QRP">1352418131</int> <int id="PUVS01MGFEH2MAJ">1352418166</int> <int id="PUV42LEOBAF2MKD">1352418224</int> <int id="PUVA2RGKSPK263G">1352418537</int> <int id="PHV3SOHNMB52ELG">1352418781</int> <int id="PUVSLPFE06D2FMT">1352419217</int> <int id="PUV682PVF5D23FH">1352419380</int> <int id="PUVN10CBHLB3GIG">1352420070</int> <int id="PUVRG5H7NC93PKJ">1352420187</int> <int id="PUV4N334I9E2IT1">1352420212</int> <int id="PCR7T82R11K14AP">1352420277</int> <int id="PUV7U3V812C3S7H">1352420596</int> <int id="PUVTSH9ODK9337I">1352420616</int> <int id="PIF7H9834L63PBV">1352421632</int> <int id="PUV3N5URCTB3SGH">1352421778</int> <int id="PUV9N3PK4G9370C">1352422294</int> <int id="PUV8PBHEH5K2E9N">1352422415</int> <int id="PUV4TQTEMAH2OIS">1352422606</int> </object> <object id="25-08-01"> <int id="PUVA1JND5373D20">1352422886</int> <int id="PUVR52G3AB93JMR">1352423041</int> <int id="PUV3KH2MQSB3LR9">1352425467</int> </object> <object id="25-08-02"> <int id="PHV11H22PQA2JEL">1352450571</int> </object> <object id="25-08-05"> <int id="PUVT08IK8H93JLQ">1352484727</int> <int id="PUVJQJP8QFC3V0E">1352493547</int> </object> <object id="25-08-06"> <int id="PHVF1FRMV9929LG">1352509082</int> </object> <object id="25-08-07"> <int id="PHVF1FRMV9929LG">1352509649</int> <int id="PUVDU6QF35D3B6F">1352510862</int> <int id="PA9N1FRNSFD2UKI">1352513828</int> </object> <object id="25-08-18"> <int id="PUVVH9M65UC3908">1352674746</int> </object> <object id="25-08-19"> <int id="PUV79QJ22TB3F4O">1352693692</int> </object> <object id="25-08-20"> <int id="PUV7JB00JKB3KR5">1352710286</int> </object> <object id="25-08-23"> <int id="PUV2T1MGQ9G2B9J">1352753193</int> </object> <object id="25-08-24"> <int id="PUVAFFD08UC30D0">1352758765</int> </object> <object id="25-08-33"> <int id="PUVBDC5ET583TJS">1352890697</int> </object> <object id="25-08-36"> <int id="PHVF1FRMV9929LG">1352928841</int> </object> <object id="25-09-02"> <int id="PIF4G0OQMF01PSQ">1352973604</int> </object> <object id="25-10-32"> <int id="PHVKLAQBJ3A2O56">1353478003</int> </object> <object id="26-01-12"> <int id="PUVDU6QF35D3B6F">1354047127</int> </object> <object id="26-01-21"> <int id="PUVP9HSCJT83QGH">1354166478</int> </object> <object id="26-01-25"> <int id="PUVP9HSCJT83QGH">1354234722</int> </object> <object id="26-03-47"> <int id="PIFK9I4C8063A0M">1355012241</int> </object> <object id="26-04-01"> <int id="PUVFJEMMT2F2N0V">1355103153</int> <int id="PUVB6DDK0NC3OCG">1355103981</int> <int id="PUVSRKDKT993SB7">1355105440</int> </object> </object> <object id="incantations_redux"> <object id="PHF31BRLV4D27G0"> <int id="step">1</int> <int id="ts">1354918934</int> </object> <object id="PUVA3N81DSK2MT2"> <int id="step">2</int> <int id="ts">1354918938</int> </object> <object id="PHFINSK9JCD29H5"> <int id="step">3</int> <int id="ts">1354918950</int> </object> <object id="PUVLDBAAO673ORE"> <int id="step">1</int> <int id="ts">1354919246</int> </object> <object id="PUVUCMK66OE2S7S"> <int id="step">1</int> <int id="ts">1354919986</int> </object> <object id="PUVHT82E1AP2E7H"> <int id="step">2</int> <int id="ts">1354919988</int> </object> <object id="PUV42LEOBAF2MKD"> <int id="step">3</int> <int id="ts">1354919998</int> </object> <object id="PUV4MAIL2873TVV"> <int id="step">1</int> <int id="ts">1354920228</int> </object> <object id="PUV1C9DM7JE2KRJ"> <int id="step">2</int> <int id="ts">1354920233</int> </object> <object id="PUVQ6I3032D3097"> <int id="step">3</int> <int id="ts">1354920237</int> </object> <object id="PCRE15VHINS1RJI"> <int id="step">1</int> <int id="ts">1354920307</int> </object> <object id="PUVEMM5D8IH26SE"> <int id="step">2</int> <int id="ts">1354920308</int> </object> <object id="PUVU0H1NB7E3U57"> <int id="step">3</int> <int id="ts">1354920310</int> </object> <object id="PUVLQBGCGSM26QB"> <int id="step">1</int> <int id="ts">1354923754</int> </object> <object id="PHVC0HO5CF228AQ"> <int id="step">2</int> <int id="ts">1354923756</int> </object> <object id="PUVB6DVSMTM27ND"> <int id="step">3</int> <int id="ts">1354923763</int> </object> <object id="PUV5DGRMO4H2DNG"> <int id="step">1</int> <int id="ts">1354924177</int> </object> <object id="PCRLR85EFDV1F9B"> <int id="step">2</int> <int id="ts">1354924179</int> </object> <object id="PIF101U0QF7SM"> <int id="step">3</int> <int id="ts">1354925687</int> </object> <object id="PUV4TQTEMAH2OIS"> <int id="step">1</int> <int id="ts">1354927418</int> </object> <object id="PUVF02HO6AG2E66"> <int id="step">1</int> <int id="ts">1354927778</int> </object> <object id="PUVP0UBER9C30DP"> <int id="step">1</int> <int id="ts">1354928291</int> </object> <object id="PUVTVRH3K1A30EQ"> <int id="step">1</int> <int id="ts">1354928752</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1354931836</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1354931836</int> </object> <object id="PA9IG1OCQUD2DLT"> <int id="step">3</int> <int id="ts">1354931838</int> </object> <object id="PHFNS9AVU2D2BE6"> <int id="step">1</int> <int id="ts">1354939024</int> </object> <object id="PUVETOAC09D3VCT"> <int id="step">2</int> <int id="ts">1354941989</int> </object> <object id="PUVQOVN59ME2QM9"> <int id="step">1</int> <int id="ts">1354943781</int> </object> <object id="PUVN67TRKMC3N0V"> <int id="step">1</int> <int id="ts">1354943890</int> </object> <object id="PHF3SVTUB3D2MGO"> <int id="step">2</int> <int id="ts">1354943891</int> </object> <object id="PUVI9N9CSSI2JSM"> <int id="step">3</int> <int id="ts">1354943893</int> </object> <object id="PUVVMO4U93T23J4"> <int id="step">1</int> <int id="ts">1354947412</int> </object> <object id="PUVBUB7PT9E2HLL"> <int id="step">2</int> <int id="ts">1354947426</int> </object> <object id="PA92MJIOKQD2IMA"> <int id="step">1</int> <int id="ts">1354949645</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1354954772</int> </object> <object id="PUVUTSGV5JB37FB"> <int id="step">2</int> <int id="ts">1354954773</int> </object> <object id="PA95UHHMLID28OO"> <int id="step">3</int> <int id="ts">1354954774</int> </object> <object id="PUVOV284NNA3T07"> <int id="step">1</int> <int id="ts">1354966537</int> </object> <object id="PA97PHPM54E2M0U"> <int id="step">2</int> <int id="ts">1354975032</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">3</int> <int id="ts">1354975036</int> </object> <object id="PIFB7QP3SH63DL7"> <int id="step">1</int> <int id="ts">1354975481</int> </object> <object id="PUV766GM4TE2A3Q"> <int id="step">1</int> <int id="ts">1354982145</int> </object> <object id="PIFLC6T4UK63AKI"> <int id="step">2</int> <int id="ts">1354982147</int> </object> <object id="PUV51L15LQE2I86"> <int id="step">3</int> <int id="ts">1354985876</int> </object> <object id="PUV4J86UJPC3TEN"> <int id="step">1</int> <int id="ts">1354989376</int> </object> <object id="PUV5EVLD0KF2669"> <int id="step">2</int> <int id="ts">1354989381</int> </object> <object id="PA9QGBL6FSD20U9"> <int id="step">1</int> <int id="ts">1354989954</int> </object> <object id="PUV6JPAODNB3FOK"> <int id="step">2</int> <int id="ts">1354991605</int> </object> <object id="PHFIU1P4P4D2PHL"> <int id="step">1</int> <int id="ts">1354997417</int> </object> <object id="PHV76S67V9A2DUA"> <int id="step">2</int> <int id="ts">1354997779</int> </object> <object id="PHVAN0R6UK8249B"> <int id="step">1</int> <int id="ts">1354997919</int> </object> <object id="PUVG6IV8J5F28N1"> <int id="step">2</int> <int id="ts">1354998389</int> </object> <object id="PUVEV5DE2KA32AE"> <int id="step">1</int> <int id="ts">1355000296</int> </object> </object> <int id="incantations_redux_step">1</int> </object> <objrefs id="items"> <objref tsid="IA51EMS4VK62NRO" label="Quoin"/> <objref tsid="IA51HCIKBC62244" label="Street Spirit"/> <objref tsid="IA51EKT2VK62D0K" label="Quoin"/> <objref tsid="IA51EL03VK62SMP" label="Quoin"/> <objref tsid="IA51EGK1VK62PPD" label="Quoin"/> <objref tsid="IA518AMNQ26276H" label="Quoin"/> <objref tsid="IA512NQUTI52BK2" label="Dirt Pile"/> <objref tsid="IA51EHR1VK62PQK" label="Quoin"/> <objref tsid="IA51EI62VK62861" label="Quoin"/> <objref tsid="IA512MCTTI5253H" label="Shrine to Pot"/> <objref tsid="IA5189JNQ262SOB" label="Quoin"/> <objref tsid="INVOD7H77GQ2DKS" label="Qurazy marker"/> <objref tsid="IIFGM5QIED838OQ" label="Coin"/> <objref tsid="IA51EJK2VK627V3" label="Quoin"/> <objref tsid="IHVOP456G6G36AQ" label="Fruit Tree"/> </objrefs> <objrefs id="players"> <objref tsid="PUVFC1PNKFC33N7" label="DIPPY DAWG"/> <objref tsid="PUVE0DNAO6S2CG8" label="Veyr"/> <objref tsid="PUVAR9OF9F73ORI" label="Big Matty"/> <objref tsid="PUV9EFS4T9F2ETS" label="smokebomb67"/> <objref tsid="PUV76ELMT8E21ME" label="Aristides"/> <objref tsid="PA9VF0ON1GD2E9F" label="cosdem"/> <objref tsid="PUVVM8OHVTF2P1H" label="wargasm"/> <objref tsid="PHFCJ7I55TC2DUN" label="Saiyanne"/> <objref tsid="PUVGB5A3JTD3HTQ" label="JimmyJoe"/> <objref tsid="PHFIVPSII2D2G06" label="Grant_McGroarty"/> <objref tsid="PUVTVFAIJE93OP5" label="Rugnicon"/> <objref tsid="PDOMQ7AAAJT2QNL" label="gothic katt"/> <objref tsid="PUV3A1SG4UD3REC" label="Clever Nickname"/> <objref tsid="PUVBONMHFOB3H9K" label="PooBaJo"/> <objref tsid="PUV4B78SN1F266D" label="Arisato"/> <objref tsid="PUVJSQDUS5D236S" label="gery"/> <objref tsid="PUVSALB0RE93ICB" label="Blasfemous"/> <objref tsid="PUVMIOOE4QH22CD" label="spyderfry"/> <objref tsid="PUV7479TQCE220M" label="Imalimabean"/> <objref tsid="PUVI1L13HTA3AVJ" label="CaptainMacGavin"/> <objref tsid="PDOE1G5HR4U2KM0" label="Vulpix"/> <objref tsid="PUV6SVATK7C32IM" label="Talice"/> <objref tsid="PUVANAMG7KC3S5A" label="CassieTheGeek"/> <objref tsid="PA9Q9268NUD2L5F" label="Minimel"/> <objref tsid="PUV1P1E7MNI2HJ6" label="Rungalo"/> <objref tsid="PIF5L9SSEL63FAK" label="Lambo Bovino"/> <objref tsid="PHFJ6KMKN0D2CPS" label="lowgman"/> <objref tsid="PUVVKCA4FR63T9F" label="Null Andvoid"/> <objref tsid="PUVLLSSTE2G2US2" label="Mickey Knox"/> <objref tsid="PUVLLV4688F2KQS" label="Prettyxx"/> <objref tsid="PUVVHODF05E3R1A" label="Swanky"/> <objref tsid="PHVJVTB5EH72SRV" label="noties"/> <objref tsid="PIF9FJ9VEG63LA9" label="Mocksoup"/> <objref tsid="PUVJQP82QFD3AS9" label="Coala A"/> <objref tsid="PUV59OJ6V7C3LTV" label="EmberSparx"/> <objref tsid="PUVGJQ0AO7D2TTM" label="Jewelxo"/> <objref tsid="PUV3OVH61KE2RBE" label="Poli"/> <objref tsid="PUV4Q7G2S4E364K" label="Pinkie Swirl"/> <objref tsid="PUV4PURE0BG2GJP" label="Crowstone"/> <objref tsid="PUVEUBTQ7KG2IAJ" label="Bluebelle"/> <objref tsid="PUVVM6A85IB398D" label="Kong of Flax"/> <objref tsid="PUV7N2KPI8C3CGC" label="Werensztajn"/> <objref tsid="PUVM1LTS8NC3MKR" label="DoctorRomana"/> </objrefs> </game_object>
44,790
Common Lisp
.l
1,348
28.640208
201
0.652594
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
557a3a5cfa86bd5c189f168931c16c95f49482feda723ac579bd0a9406bf802e
20,865
[ -1 ]
20,866
GA5VDIGU3G525F9.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA5VDIGU3G525F9 Boonbi Books-multi level vertical cave/GA5VDIGU3G525F9.xml
<game_object tsid="GA5VDIGU3G525F9" ts="1336603261247" label="Boonbi Books" class_tsid="" lastUpdateTime="1336603251000" upd_gs="gs10" load_time="2012-05-09 15:29:15.322" upd_time="2012-05-09 15:40:42.843"> <object id="dynamic"> <int id="l">-750</int> <int id="r">750</int> <int id="t">-2000</int> <int id="b">0</int> <str id="label">Boonbi Books</str> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="T_1309194693385"> <object id="filtersNEW"> <object id="contrast"> <int id="value">-80</int> </object> <object id="tintColor"> <int id="value">2977</int> </object> <object id="brightness"> <int id="value">-44</int> </object> <object id="saturation"> <int id="value">-40</int> </object> <object id="tintAmount"> <int id="value">32</int> </object> </object> <int id="w">1320</int> <int id="h">2000</int> <int id="z">-4</int> <str id="name">sky</str> <object id="decos"> <object id="heights_topper_wide_1_1309194693418"> <int id="w">716</int> <str id="name">heights_topper_wide_1_1309194693417</str> <int id="x">846</int> <str id="sprite_class">heights_topper_wide_1</str> <int id="y">1781</int> <int id="h">48</int> <int id="z">1</int> </object> <object id="heights_topper_wide_1_1309194693417"> <int id="w">716</int> <str id="name">heights_topper_wide_1_1309194693417</str> <int id="x">1148</int> <str id="sprite_class">heights_topper_wide_1</str> <int id="y">1785</int> <int id="h">48</int> <int id="z">0</int> </object> <object id="alakol_cliff_1_1309376088053"> <int id="w">236</int> <str id="name">alakol_cliff_1_1309376088053</str> <int id="x">1104</int> <str id="sprite_class">alakol_cliff_1</str> <int id="y">1748</int> <int id="h">40</int> <int id="z">4</int> </object> <object id="tree_acacia_3_1309194693420"> <int id="w">225</int> <str id="name">tree_acacia_3_1309194693420</str> <int id="x">827</int> <str id="sprite_class">tree_acacia_3</str> <int id="y">1737</int> <int id="h">103</int> <int id="z">2</int> </object> <object id="alakol_cliff_1_1309376088054"> <int id="w">236</int> <str id="name">alakol_cliff_1_1309376088053</str> <int id="x">1309</int> <str id="sprite_class">alakol_cliff_1</str> <int id="y">1747</int> <int id="h">40</int> <int id="z">5</int> </object> <object id="alakol_cliff_1_1309376088055"> <int id="w">236</int> <str id="name">alakol_cliff_1_1309376088053</str> <int id="x">1256</int> <str id="sprite_class">alakol_cliff_1</str> <int id="y">1726</int> <int id="h">40</int> <int id="z">6</int> </object> <object id="cloud_fluffy_2_1309217175518"> <int id="w">694</int> <str id="name">cloud_fluffy_2_1309217175518</str> <int id="x">373</int> <str id="sprite_class">cloud_fluffy_2</str> <int id="y">218</int> <int id="h">103</int> <int id="z">3</int> </object> </object> </object> <object id="middleground"> <object id="walls"> </object> <object id="targets"> </object> <object id="filtersNEW"> <object id="contrast"> <int id="value">-20</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="brightness"> <int id="value">-27</int> </object> <object id="saturation"> <int id="value">-29</int> </object> </object> <object id="platform_lines"> <object id="plat_1310429962202"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-624</int> <int id="x">-488</int> </object> <object id="end"> <int id="y">-608</int> <int id="x">-334</int> </object> </object> <object id="plat_1309206165332"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1075</int> <int id="x">-267</int> </object> <object id="end"> <int id="y">-1101</int> <int id="x">-71</int> </object> </object> <object id="plat_1310429962197"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-632</int> <int id="x">367</int> </object> <object id="end"> <int id="y">-629</int> <int id="x">472</int> </object> </object> <object id="plat_1309206165303"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1627</int> <int id="x">-234</int> </object> <object id="end"> <int id="y">-1665</int> <int id="x">-59</int> </object> </object> <object id="plat_1310429962209"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1097</int> <int id="x">124</int> </object> <object id="end"> <int id="y">-1090</int> <int id="x">201</int> </object> </object> <object id="plat_1309206165308"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1667</int> <int id="x">580</int> </object> <object id="end"> <int id="y">-1691</int> <int id="x">749</int> </object> </object> <object id="plat_1310429962200"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-614</int> <int id="x">-116</int> </object> <object id="end"> <int id="y">-634</int> <int id="x">158</int> </object> </object> <object id="plat_1309206165305"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1689</int> <int id="x">102</int> </object> <object id="end"> <int id="y">-1694</int> <int id="x">247</int> </object> </object> <object id="plat_1310429962201"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-608</int> <int id="x">-334</int> </object> <object id="end"> <int id="y">-614</int> <int id="x">-116</int> </object> </object> <object id="plat_1310429962207"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1095</int> <int id="x">290</int> </object> <object id="end"> <int id="y">-1103</int> <int id="x">369</int> </object> </object> <object id="plat_1310429962208"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1090</int> <int id="x">201</int> </object> <object id="end"> <int id="y">-1095</int> <int id="x">290</int> </object> </object> <object id="plat_1309194693387"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-177</int> <int id="x">73</int> </object> <object id="end"> <int id="y">-163</int> <int id="x">745</int> </object> </object> <object id="plat_1310429962204"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-664</int> <int id="x">-749</int> </object> <object id="end"> <int id="y">-646</int> <int id="x">-592</int> </object> </object> <object id="plat_1310429962199"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-634</int> <int id="x">158</int> </object> <object id="end"> <int id="y">-642</int> <int id="x">325</int> </object> </object> <object id="plat_1310429962206"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1103</int> <int id="x">369</int> </object> <object id="end"> <int id="y">-1117</int> <int id="x">438</int> </object> </object> <object id="plat_1310429962210"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1101</int> <int id="x">-71</int> </object> <object id="end"> <int id="y">-1097</int> <int id="x">124</int> </object> </object> <object id="plat_1309206165302"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1601</int> <int id="x">-749</int> </object> <object id="end"> <int id="y">-1580</int> <int id="x">-539</int> </object> </object> <object id="plat_1310429962205"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1117</int> <int id="x">438</int> </object> <object id="end"> <int id="y">-1116</int> <int id="x">497</int> </object> </object> <object id="plat_1309376088060"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-182</int> <int id="x">-749</int> </object> <object id="end"> <int id="y">-182</int> <int id="x">-573</int> </object> </object> <object id="plat_1309206165301"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1580</int> <int id="x">-539</int> </object> <object id="end"> <int id="y">-1581</int> <int id="x">-453</int> </object> </object> <object id="plat_1309194693389"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1066</int> <int id="x">-750</int> </object> <object id="end"> <int id="y">-1075</int> <int id="x">-267</int> </object> </object> <object id="plat_1309206165304"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1665</int> <int id="x">-59</int> </object> <object id="end"> <int id="y">-1689</int> <int id="x">102</int> </object> </object> <object id="plat_1309194693388"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-629</int> <int id="x">472</int> </object> <object id="end"> <int id="y">-628</int> <int id="x">749</int> </object> </object> <object id="plat_1320800238966"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1482</int> <int id="x">-49</int> </object> <object id="end"> <int id="y">-1486</int> <int id="x">-8</int> </object> </object> <object id="plat_1309206165300"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1581</int> <int id="x">-453</int> </object> <object id="end"> <int id="y">-1627</int> <int id="x">-234</int> </object> </object> <object id="plat_1309376088059"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-182</int> <int id="x">-573</int> </object> <object id="end"> <int id="y">-160</int> <int id="x">-299</int> </object> </object> <object id="plat_1309206165306"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1694</int> <int id="x">247</int> </object> <object id="end"> <int id="y">-1677</int> <int id="x">416</int> </object> </object> <object id="plat_1310429962203"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-646</int> <int id="x">-592</int> </object> <object id="end"> <int id="y">-624</int> <int id="x">-488</int> </object> </object> <object id="plat_1309376088058"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-160</int> <int id="x">-299</int> </object> <object id="end"> <int id="y">-177</int> <int id="x">73</int> </object> </object> <object id="plat_1310429962198"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-642</int> <int id="x">325</int> </object> <object id="end"> <int id="y">-632</int> <int id="x">367</int> </object> </object> <object id="plat_1309206165335"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1116</int> <int id="x">497</int> </object> <object id="end"> <int id="y">-1092</int> <int id="x">749</int> </object> </object> <object id="plat_1320800238968"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1485</int> <int id="x">103</int> </object> <object id="end"> <int id="y">-1475</int> <int id="x">217</int> </object> </object> <object id="plat_1320800238967"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1486</int> <int id="x">-8</int> </object> <object id="end"> <int id="y">-1485</int> <int id="x">103</int> </object> </object> <object id="plat_1309206165307"> <int id="platform_item_perm">-1</int> <int id="platform_pc_perm">-1</int> <object id="start"> <int id="y">-1677</int> <int id="x">416</int> </object> <object id="end"> <int id="y">-1667</int> <int id="x">580</int> </object> </object> </object> <object id="decos"> </object> <int id="w">1500</int> <object id="boxes"> <object id="box_1"> <int id="y">-1508</int> <int id="h">100</int> <int id="w">80</int> <int id="x">91</int> <str id="id">11spots_andra_03</str> </object> </object> <str id="name">middleground</str> <object id="doors"> </object> <object id="ladders"> <object id="ladder_1309194693409"> <int id="y">-650</int> <int id="w">50</int> <int id="h">451</int> <int id="x">246</int> </object> <object id="ladder_1309194693408"> <int id="y">-178</int> <int id="w">50</int> <int id="h">441</int> <int id="x">-281</int> </object> <object id="ladder_1309194693407"> <int id="y">-1140</int> <int id="w">50</int> <int id="h">540</int> <int id="x">475</int> </object> </object> <int id="h">2000</int> <int id="z">0</int> <object id="signposts"> <object id="signpost_1"> <int id="y">-193</int> <int id="h">200</int> <int id="w">100</int> <object id="connects"> <object id="0"> <str id="hub_id">89</str> <int id="x">-2710</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf</str> <int id="y">-510</int> <str id="mote_id">9</str> <objref id="target" tsid="LA5QBAL9SL52I02" label="Lavu Lane"/> </object> <object id="1"> <str id="hub_id">89</str> <int id="x">2673</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf,http://c2.glitch.bz/locations/subway_ext/1316715607.swf</str> <int id="y">-170</int> <str id="mote_id">9</str> <objref id="target" tsid="LA51CGIGKK62NV8" label="Kongu Hop"/> </object> </object> <int id="x">446</int> </object> <object id="signpost_2"> <int id="y">-1601</int> <int id="h">200</int> <int id="w">100</int> <object id="connects"> <object id="0"> <str id="hub_id">89</str> <int id="x">2645</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf</str> <int id="y">-250</int> <str id="mote_id">9</str> <objref id="target" tsid="LA51701PF262LC8" label="Arisa Annex"/> </object> <object id="1"> <str id="hub_id">89</str> <int id="x">-2675</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf</str> <int id="y">-250</int> <str id="mote_id">9</str> <objref id="target" tsid="LA519RU9M462NJ1" label="Manggai Mile"/> </object> <object id="2"> <str id="hub_id">89</str> <int id="x">-2650</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf</str> <int id="y">-152</int> <str id="mote_id">9</str> <objref id="target" tsid="LA51A5VM3K62P49" label="Annam Angst"/> </object> </object> <str id="id">signpost_2</str> <int id="x">-521</int> </object> </object> </object> <object id="T_1309194693411"> <object id="filtersNEW"> <object id="brightness"> <int id="value">-43</int> </object> <object id="tintColor"> <int id="value">0</int> </object> </object> <int id="w">1455</int> <int id="h">1940</int> <int id="z">-2</int> <str id="name">bg1</str> <object id="decos"> <object id="stalagmite_3_1309285511435"> <int id="w">119</int> <int id="r">180</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">97</int> <str id="sprite_class">stalagmite_3</str> <int id="y">530</int> <int id="h">236</int> <int id="z">16</int> <bool id="h_flip">true</bool> </object> <object id="alakol_beach_1_1309376088086"> <int id="w">1083</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">828</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1750</int> <int id="h">79</int> <int id="z">25</int> </object> <object id="stalagmite_2_1309285511446"> <int id="w">95</int> <int id="r">180</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">1355</int> <str id="sprite_class">stalagmite_2</str> <int id="y">10</int> <int id="h">217</int> <int id="z">23</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_3_1309285511436"> <int id="w">119</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">213</int> <str id="sprite_class">stalagmite_3</str> <int id="y">919</int> <int id="h">236</int> <int id="z">15</int> </object> <object id="stalagmite_3_1309285511437"> <int id="w">119</int> <int id="r">180</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">588</int> <str id="sprite_class">stalagmite_3</str> <int id="y">1441</int> <int id="h">236</int> <int id="z">18</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_2_1309285511456"> <int id="w">95</int> <int id="r">180</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">983</int> <str id="sprite_class">stalagmite_2</str> <int id="y">-31</int> <int id="h">217</int> <int id="z">21</int> <bool id="h_flip">true</bool> </object> <object id="crosssection_heights_underside_1309217175508"> <int id="w">601</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">-16</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">619</int> <int id="h">114</int> <int id="z">7</int> </object> <object id="crosssection_heights_underside_1309217175517"> <int id="w">610</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">1385</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1552</int> <int id="h">118</int> <int id="z">12</int> </object> <object id="crosssection_heights_underside_1309206165283"> <int id="w">688</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">340</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">101</int> <int id="h">131</int> <int id="z">4</int> </object> <object id="heights_mound_3_1309217175505"> <int id="w">412</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">542</int> <str id="sprite_class">heights_mound_3</str> <int id="y">446</int> <int id="h">156</int> <int id="z">6</int> </object> <object id="crosssection_heights_underside_1309206165282"> <int id="w">688</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">1004</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">94</int> <int id="h">131</int> <int id="z">2</int> </object> <object id="stalagmite_3_1309285511433"> <int id="w">148</int> <int id="r">180</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">587</int> <str id="sprite_class">stalagmite_3</str> <int id="y">1005</int> <int id="h">294</int> <int id="z">14</int> <bool id="h_flip">true</bool> </object> <object id="light_shafts_1317061920933"> <int id="w">935</int> <str id="name">light_shafts_1309217175520</str> <int id="x">891</int> <str id="sprite_class">light_shafts</str> <int id="y">1146</int> <int id="h">780</int> <int id="z">26</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_2_1309285511445"> <int id="w">95</int> <int id="r">180</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">1448</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1440</int> <int id="h">217</int> <int id="z">22</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_3_1309376088087"> <int id="w">82</int> <int id="r">180</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">514</int> <str id="sprite_class">stalagmite_3</str> <int id="y">530</int> <int id="h">163</int> <int id="z">1</int> </object> <object id="crosssection_heights_underside_1309217175510"> <int id="w">601</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">1143</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">627</int> <int id="h">114</int> <int id="z">9</int> </object> <object id="heights_mound_3_1309217175504"> <int id="w">412</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">287</int> <str id="sprite_class">heights_mound_3</str> <int id="y">436</int> <int id="h">156</int> <int id="z">5</int> </object> <object id="stalagmite_3_1309285511438"> <int id="w">119</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">702</int> <str id="sprite_class">stalagmite_3</str> <int id="y">1781</int> <int id="h">236</int> <int id="z">17</int> </object> <object id="crosssection_heights_underside_1309217175516"> <int id="w">610</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">783</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1546</int> <int id="h">118</int> <int id="z">11</int> </object> <object id="alakol_beach_1_1309376088085"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">158</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">360</int> <int id="h">57</int> <int id="z">24</int> </object> <object id="stalagmite_2_1309285511442"> <int id="w">95</int> <int id="r">180</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">866</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1423</int> <int id="h">217</int> <int id="z">19</int> </object> <object id="crosssection_heights_underside_1309285511426"> <int id="w">688</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">1679</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">101</int> <int id="h">131</int> <int id="z">3</int> </object> <object id="stalagmite_2_1309285511443"> <int id="w">95</int> <int id="r">180</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">839</int> <str id="sprite_class">stalagmite_2</str> <int id="y">543</int> <int id="h">217</int> <int id="z">20</int> <bool id="h_flip">true</bool> </object> <object id="crosssection_heights_underside_1309217175509"> <int id="w">601</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">562</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">623</int> <int id="h">114</int> <int id="z">8</int> </object> <object id="crosssection_heights_underside_1309217175515"> <int id="w">550</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">554</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1124</int> <int id="h">106</int> <int id="z">10</int> </object> <object id="stalagmite_3_1309376088074"> <int id="w">119</int> <int id="r">180</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">279</int> <str id="sprite_class">stalagmite_3</str> <int id="y">581</int> <int id="h">236</int> <int id="z">0</int> </object> <object id="stalagmite_3_1309285511434"> <int id="w">90</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">702</int> <str id="sprite_class">stalagmite_3</str> <int id="y">1387</int> <int id="h">178</int> <int id="z">13</int> </object> </object> </object> <object id="T_1309194693390"> <object id="filtersNEW"> <object id="brightness"> <int id="value">-50</int> </object> <object id="tintColor"> <int id="value">0</int> </object> </object> <int id="w">1425</int> <int id="h">1920</int> <int id="z">-3</int> <str id="name">bg2</str> <object id="decos"> <object id="stalagmite_2_1309206165254"> <int id="w">95</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">748</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1784</int> <int id="h">217</int> <int id="z">20</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_2_1309285511441"> <int id="w">95</int> <int id="r">180</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">1057</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1467</int> <int id="h">217</int> <int id="z">23</int> </object> <object id="light_shafts_1309217175520"> <int id="w">761</int> <str id="name">light_shafts_1309217175520</str> <int id="x">717</int> <str id="sprite_class">light_shafts</str> <int id="y">1055</int> <int id="h">723</int> <int id="z">32</int> <bool id="h_flip">true</bool> </object> <object id="alakol_beach_1_1309285511465"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">539</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">883</int> <int id="h">79</int> <int id="z">43</int> </object> <object id="alakol_beach_1_1309285511466"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1238</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">308</int> <int id="h">79</int> <int id="z">44</int> </object> <object id="ug_wall_heights_1309194693394"> <int id="w">829</int> <str id="name">ug_wall_heights_1309194693391</str> <int id="x">326</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">1394</int> <int id="h">526</int> <int id="z">6</int> </object> <object id="heights_mound_3_1309217175506"> <int id="w">385</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">528</int> <str id="sprite_class">heights_mound_3</str> <int id="y">398</int> <int id="h">146</int> <int id="z">28</int> </object> <object id="heights_bandaid_2_1309217175522"> <int id="w">121</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1309203942617</str> <int id="x">482</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">6</int> <int id="h">245</int> <int id="z">12</int> <bool id="h_flip">true</bool> </object> <object id="heights_mound_3_1309217175507"> <int id="w">385</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">258</int> <str id="sprite_class">heights_mound_3</str> <int id="y">404</int> <int id="h">146</int> <int id="z">29</int> </object> <object id="stalagmite_2_1309206165255"> <int id="w">95</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">893</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1843</int> <int id="h">217</int> <int id="z">24</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_3_1309285511427"> <int id="w">119</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">1232</int> <str id="sprite_class">stalagmite_3</str> <int id="y">379</int> <int id="h">236</int> <int id="z">33</int> </object> <object id="penaltybox_roof_1309194693438"> <int id="w">997</int> <str id="name">penaltybox_roof_1309194693425</str> <int id="x">1228</int> <str id="sprite_class">penaltybox_roof</str> <int id="y">1503</int> <int id="h">238</int> <int id="z">5</int> </object> <object id="ug_wall_heights_1309194693422"> <int id="w">718</int> <str id="name">ug_wall_heights_1309194693391</str> <int id="x">11</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">1785</int> <int id="h">526</int> <int id="z">16</int> </object> <object id="ug_wall_heights_1309194693393"> <int id="w">829</int> <str id="name">ug_wall_heights_1309194693391</str> <int id="x">1130</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">1462</int> <int id="h">575</int> <int id="z">3</int> </object> <object id="heights_bandaid_2_1309376088056"> <int id="w">121</int> <int id="r">180</int> <str id="name">heights_bandaid_2_1309203942617</str> <int id="x">249</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">-93</int> <int id="h">245</int> <int id="z">13</int> <bool id="h_flip">true</bool> </object> <object id="ug_wall_heights_1309194693396"> <int id="w">829</int> <str id="name">ug_wall_heights_1309194693391</str> <int id="x">1151</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">922</int> <int id="h">526</int> <int id="z">8</int> </object> <object id="stalagmite_3_1309376088073"> <int id="w">135</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">461</int> <str id="sprite_class">stalagmite_3</str> <int id="y">328</int> <int id="h">214</int> <int id="z">30</int> </object> <object id="penaltybox_roof_1309194693425"> <int id="w">922</int> <str id="name">penaltybox_roof_1309194693425</str> <int id="x">1006</int> <str id="sprite_class">penaltybox_roof</str> <int id="y">39</int> <int id="h">220</int> <int id="z">17</int> </object> <object id="alakol_beach_1_1309376088052"> <int id="w">1145</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1172</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1756</int> <int id="h">79</int> <int id="z">22</int> </object> <object id="stalagmite_3_1309285511432"> <int id="w">119</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">623</int> <str id="sprite_class">stalagmite_3</str> <int id="y">1372</int> <int id="h">236</int> <int id="z">37</int> </object> <object id="penaltybox_roof_1309194693426"> <int id="w">866</int> <str id="name">penaltybox_roof_1309194693425</str> <int id="x">118</int> <str id="sprite_class">penaltybox_roof</str> <int id="y">67</int> <int id="h">207</int> <int id="z">18</int> </object> <object id="stalagmite_3_1309285511430"> <int id="w">80</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">556</int> <str id="sprite_class">stalagmite_3</str> <int id="y">886</int> <int id="h">159</int> <int id="z">35</int> </object> <object id="stalagmite_3_1309285511428"> <int id="w">119</int> <int id="r">180</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">1117</int> <str id="sprite_class">stalagmite_3</str> <int id="y">-3</int> <int id="h">236</int> <int id="z">34</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_2_1309285511444"> <int id="w">95</int> <int id="r">180</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">1398</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1449</int> <int id="h">217</int> <int id="z">39</int> <bool id="h_flip">true</bool> </object> <object id="heights_bandaid_2_1309217175521"> <int id="w">121</int> <int id="r">-10</int> <str id="name">heights_bandaid_2_1309203942617</str> <int id="x">570</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">318</int> <int id="h">245</int> <int id="z">11</int> </object> <object id="alakol_beach_1_1309285511463"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">260</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1306</int> <int id="h">79</int> <int id="z">41</int> </object> <object id="penaltybox_roof_1309194693437"> <int id="w">997</int> <str id="name">penaltybox_roof_1309194693425</str> <int id="x">776</int> <str id="sprite_class">penaltybox_roof</str> <int id="y">1501</int> <int id="h">238</int> <int id="z">4</int> </object> <object id="stalagmite_2_1309285511457"> <int id="w">95</int> <int id="r">180</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">1054</int> <str id="sprite_class">stalagmite_2</str> <int id="y">24</int> <int id="h">217</int> <int id="z">40</int> <bool id="h_flip">true</bool> </object> <object id="alakol_beach_1_1309376088084"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">542</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">330</int> <int id="h">50</int> <int id="z">46</int> </object> <object id="heights_bandaid_2_1309206165253"> <int id="w">121</int> <str id="name">heights_bandaid_2_1309203942617</str> <int id="x">786</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">1711</int> <int id="h">265</int> <int id="z">2</int> <bool id="h_flip">true</bool> </object> <object id="bureaucratic_hall_light_ray_1_1317061920934"> <int id="w">734</int> <str id="name">bureaucratic_hall_light_ray_1_1317061920934</str> <int id="x">399</int> <str id="sprite_class">bureaucratic_hall_light_ray_1</str> <int id="y">634</int> <int id="h">636</int> <int id="z">31</int> </object> <object id="alakol_beach_1_1309285511464"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">215</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">878</int> <int id="h">79</int> <int id="z">42</int> </object> <object id="stalagmite_2_1309206165256"> <int id="w">95</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">448</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1310</int> <int id="h">217</int> <int id="z">26</int> </object> <object id="ug_wall_heights_1309194693398"> <int id="w">1037</int> <str id="name">ug_wall_heights_1309194693391</str> <int id="x">1022</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">443</int> <int id="h">656</int> <int id="z">9</int> </object> <object id="stalagmite_2_1309206165280"> <int id="w">95</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">504</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1752</int> <int id="h">217</int> <int id="z">25</int> <bool id="h_flip">true</bool> </object> <object id="penaltybox_roof_1309194693439"> <int id="w">997</int> <str id="name">penaltybox_roof_1309194693425</str> <int id="x">237</int> <str id="sprite_class">penaltybox_roof</str> <int id="y">1535</int> <int id="h">238</int> <int id="z">19</int> </object> <object id="stalagmite_3_1309285511431"> <int id="w">119</int> <int id="r">180</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">508</int> <str id="sprite_class">stalagmite_3</str> <int id="y">990</int> <int id="h">236</int> <int id="z">38</int> <bool id="h_flip">true</bool> </object> <object id="alakol_beach_1_1309285511462"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">671</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1771</int> <int id="h">79</int> <int id="z">21</int> </object> <object id="crosssection_heights_underside_1309206165249"> <int id="w">591</int> <int id="r">-90</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">205</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">145</int> <int id="h">114</int> <int id="z">15</int> </object> <object id="ug_wall_heights_1309194693404"> <int id="w">872</int> <str id="name">ug_wall_heights_1309194693391</str> <int id="x">-280</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">446</int> <int id="h">649</int> <int id="z">14</int> </object> <object id="crosssection_heights_underside_1309206165250"> <int id="w">591</int> <int id="r">85</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">441</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">160</int> <int id="h">114</int> <int id="z">10</int> </object> <object id="ug_wall_heights_1309194693395"> <int id="w">829</int> <str id="name">ug_wall_heights_1309194693391</str> <int id="x">350</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">906</int> <int id="h">526</int> <int id="z">7</int> </object> <object id="stalagmite_3_1309285511429"> <int id="w">119</int> <int id="r">180</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">731</int> <str id="sprite_class">stalagmite_3</str> <int id="y">517</int> <int id="h">236</int> <int id="z">36</int> <bool id="h_flip">true</bool> </object> <object id="crosssection_heights_underside_1309206165247"> <int id="w">591</int> <int id="r">-100</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">881</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1581</int> <int id="h">114</int> <int id="z">1</int> </object> <object id="alakol_beach_1_1309376088083"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">232</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">320</int> <int id="h">46</int> <int id="z">45</int> </object> <object id="ug_wall_heights_1309194693391"> <int id="w">718</int> <str id="name">ug_wall_heights_1309194693391</str> <int id="x">475</int> <str id="sprite_class">ug_wall_heights</str> <int id="y">1798</int> <int id="h">526</int> <int id="z">0</int> </object> <object id="stalagmite_2_1309206165281"> <int id="w">95</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">546</int> <str id="sprite_class">stalagmite_2</str> <int id="y">429</int> <int id="h">217</int> <int id="z">27</int> </object> </object> </object> <object id="T_1309194693410"> <object id="filtersNEW"> <object id="contrast"> <int id="value">2</int> </object> <object id="tintColor"> <int id="value">0</int> </object> <object id="brightness"> <int id="value">-42</int> </object> <object id="saturation"> <int id="value">-14</int> </object> </object> <int id="w">1500</int> <int id="h">2000</int> <int id="z">-1</int> <str id="name">asset middleground</str> <object id="decos"> <object id="heights_bandaid_2_1309203942617"> <int id="w">121</int> <str id="name">heights_bandaid_2_1309203942617</str> <int id="x">407</int> <str id="sprite_class">heights_bandaid_2</str> <int id="y">1787</int> <int id="h">245</int> <int id="z">88</int> <bool id="h_flip">true</bool> </object> <object id="alakol_water_rock_2_1309376088065"> <int id="w">198</int> <str id="name">alakol_water_rock_2_1309376088064</str> <int id="x">902</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="y">1328</int> <int id="h">76</int> <int id="z">173</int> </object> <object id="heights_mound_3_1309194693413"> <int id="w">498</int> <str id="name">heights_mound_3_1309194693399</str> <int id="x">673</int> <str id="sprite_class">heights_mound_3</str> <int id="y">2020</int> <int id="h">189</int> <int id="z">38</int> </object> <object id="heights_mound_3_1309206165345"> <int id="w">482</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">1058</int> <str id="sprite_class">heights_mound_3</str> <int id="y">549</int> <int id="h">182</int> <int id="z">7</int> </object> <object id="heights_mound_3_1309376088043"> <int id="w">391</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">397</int> <str id="sprite_class">heights_mound_3</str> <int id="y">1056</int> <int id="h">148</int> <int id="z">3</int> </object> <object id="alakol_water_rock_1_1309376088063"> <int id="w">131</int> <str id="name">alakol_water_rock_1_1309376088062</str> <int id="x">298</int> <str id="sprite_class">alakol_water_rock_1</str> <int id="y">1324</int> <int id="h">98</int> <int id="z">170</int> </object> <object id="stalagmite_base_1_1309206165265"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">291</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">1346</int> <int id="h">56</int> <int id="z">93</int> </object> <object id="heights_face_rock_1_1309206165233"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1026</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1536</int> <int id="h">74</int> <int id="z">76</int> </object> <object id="heights_face_rock_1_1309285511460"> <int id="w">298</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">-45</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1486</int> <int id="h">95</int> <int id="z">67</int> </object> <object id="heights_mound_3_1309206165290"> <int id="w">391</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">675</int> <str id="sprite_class">heights_mound_3</str> <int id="y">446</int> <int id="h">148</int> <int id="z">11</int> </object> <object id="heights_face_rock_1_1309206165235"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1661</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1534</int> <int id="h">74</int> <int id="z">80</int> </object> <object id="patch_dirt_2a_1309285511453"> <int id="w">286</int> <str id="name">patch_dirt_2a_1309285511447</str> <int id="x">566</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">1353</int> <int id="h">49</int> <int id="z">94</int> </object> <object id="trunk_ladder_1_1309206165263"> <int id="w">92</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">458</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">1648</int> <int id="h">105</int> <int id="z">91</int> </object> <object id="heights_face_rock_1_1309217175495"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">504</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1018</int> <int id="h">74</int> <int id="z">140</int> </object> <object id="heights_face_rock_1_1309206165244"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1430</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1943</int> <int id="h">74</int> <int id="z">83</int> </object> <object id="heights_mound_3_1309206165293"> <int id="w">439</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">1317</int> <str id="sprite_class">heights_mound_3</str> <int id="y">497</int> <int id="h">166</int> <int id="z">14</int> </object> <object id="crosssection_heights_underside_1309194693451"> <int id="w">591</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">785</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1545</int> <int id="h">114</int> <int id="z">32</int> </object> <object id="heights_face_rock_1_1309206165279"> <int id="w">325</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">758</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">474</int> <int id="h">103</int> <int id="z">120</int> </object> <object id="alakol_beach_1_1309285511440"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">827</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">895</int> <int id="h">73</int> <int id="z">5</int> </object> <object id="alakol_beach_1_1309194693469"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">687</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1371</int> <int id="h">60</int> <int id="z">50</int> </object> <object id="alakol_beach_1_1309206165331"> <int id="w">648</int> <int id="r">3</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1184</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">948</int> <int id="h">79</int> <int id="z">136</int> </object> <object id="alakol_beach_1_1309194693471"> <int id="w">727</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1168</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1391</int> <int id="h">79</int> <int id="z">51</int> </object> <object id="crosssection_heights_underside_1309194693453"> <int id="w">591</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">1369</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1542</int> <int id="h">114</int> <int id="z">34</int> </object> <object id="crosssection_heights_underside_1309194693462"> <int id="w">491</int> <int id="r">80</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">351</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1779</int> <int id="h">139</int> <int id="z">30</int> </object> <object id="penaltybox_cell_background_1309194693456"> <int id="w">1101</int> <str id="name">penaltybox_cell_background_1309194693455</str> <int id="x">-48</int> <str id="sprite_class">penaltybox_cell_background</str> <int id="y">1879</int> <int id="h">378</int> <int id="z">27</int> </object> <object id="heights_topper_2_1320800238962"> <int id="w">145</int> <str id="name">heights_topper_2_1320800238961</str> <int id="x">773</int> <str id="sprite_class">heights_topper_2</str> <int id="y">550</int> <int id="h">60</int> <int id="z">193</int> </object> <object id="alakol_beach_1_1309206165298"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">-47</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">441</int> <int id="h">79</int> <int id="z">74</int> </object> <object id="heights_mound_3_1309206165322"> <int id="w">517</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">1169</int> <str id="sprite_class">heights_mound_3</str> <int id="y">910</int> <int id="h">196</int> <int id="z">126</int> </object> <object id="alakol_beach_1_1309206165309"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1023</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">320</int> <int id="h">79</int> <int id="z">10</int> </object> <object id="crosssection_heights_underside_1309206165272"> <int id="w">699</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">246</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">610</int> <int id="h">135</int> <int id="z">17</int> </object> <object id="alakol_beach_1_1309194693468"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">31</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1415</int> <int id="h">73</int> <int id="z">184</int> </object> <object id="heights_bandaid_1_1309285511458"> <int id="w">131</int> <str id="name">heights_bandaid_1_1309285511458</str> <int id="x">1308</int> <str id="sprite_class">heights_bandaid_1</str> <int id="y">868</int> <int id="h">102</int> <int id="z">166</int> </object> <object id="alakol_beach_1_1309285511423"> <int id="w">479</int> <int id="r">2</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1370</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">316</int> <int id="h">72</int> <int id="z">6</int> </object> <object id="trunk_ladder_1_1309206165352"> <int id="w">102</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">984</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">1304</int> <int id="h">116</int> <int id="z">149</int> </object> <object id="alakol_beach_1_1309217175492"> <int id="w">648</int> <int id="r">-5</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">693</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">950</int> <int id="h">79</int> <int id="z">141</int> </object> <object id="stalagmite_3_1309285511422"> <int id="w">135</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">729</int> <str id="sprite_class">stalagmite_3</str> <int id="y">291</int> <int id="h">214</int> <int id="z">161</int> </object> <object id="heights_face_rock_2_1309206165330"> <int id="w">683</int> <int id="r">3</int> <str id="name">heights_face_rock_2_1309206165313</str> <int id="x">1058</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">948</int> <int id="h">199</int> <int id="z">129</int> </object> <object id="heights_face_rock_1_1309194693459"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">375</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1528</int> <int id="h">74</int> <int id="z">54</int> </object> <object id="heights_face_rock_1_1309206165240"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1030</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1143</int> <int id="h">74</int> <int id="z">45</int> </object> <object id="heights_mound_3_1309206165320"> <int id="w">517</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">956</int> <str id="sprite_class">heights_mound_3</str> <int id="y">1050</int> <int id="h">196</int> <int id="z">124</int> </object> <object id="heights_mound_3_1309206165321"> <int id="w">517</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">1354</int> <str id="sprite_class">heights_mound_3</str> <int id="y">1067</int> <int id="h">196</int> <int id="z">125</int> </object> <object id="patch_dirt_2a_1309285511448"> <int id="w">286</int> <str id="name">patch_dirt_2a_1309285511447</str> <int id="x">456</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">912</int> <int id="h">49</int> <int id="z">162</int> </object> <object id="alakol_beach_1_1309376088057"> <int id="w">1551</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1123</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1834</int> <int id="h">79</int> <int id="z">0</int> </object> <object id="heights_mound_3_1309194693414"> <int id="w">498</int> <str id="name">heights_mound_3_1309194693399</str> <int id="x">361</int> <str id="sprite_class">heights_mound_3</str> <int id="y">2025</int> <int id="h">189</int> <int id="z">37</int> </object> <object id="trunk_ladder_1_1309206165264"> <int id="w">86</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">468</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">1772</int> <int id="h">98</int> <int id="z">92</int> </object> <object id="heights_mound_3_1309194693412"> <int id="w">498</int> <str id="name">heights_mound_3_1309194693399</str> <int id="x">980</int> <str id="sprite_class">heights_mound_3</str> <int id="y">2020</int> <int id="h">189</int> <int id="z">39</int> </object> <object id="trunk_ladder_1_1309206165354"> <int id="w">102</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">992</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">1057</int> <int id="h">116</int> <int id="z">151</int> </object> <object id="stalagmite_2_1309206165271"> <int id="w">111</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">1081</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1303</int> <int id="h">153</int> <int id="z">100</int> </object> <object id="heights_face_rock_1_1309206165234"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1191</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1568</int> <int id="h">74</int> <int id="z">75</int> </object> <object id="trunk_ladder_1_1309206165262"> <int id="w">92</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">471</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">1520</int> <int id="h">105</int> <int id="z">90</int> </object> <object id="heights_bandaid_3_1309206165285"> <int id="w">135</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">-32</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">1131</int> <int id="h">164</int> <int id="z">109</int> </object> <object id="heights_face_1_1309206165342"> <int id="w">587</int> <str id="name">heights_face_1_1309206165337</str> <int id="x">-97</int> <str id="sprite_class">heights_face_1</str> <int id="y">561</int> <int id="h">401</int> <int id="z">16</int> </object> <object id="penaltybox_cell_background_1309217175501"> <int id="w">1101</int> <str id="name">penaltybox_cell_background_1309217175501</str> <int id="x">-177</int> <str id="sprite_class">penaltybox_cell_background</str> <int id="y">1353</int> <int id="h">378</int> <int id="z">1</int> </object> <object id="heights_face_rock_1_1309217175499"> <int id="w">323</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">620</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1969</int> <int id="h">103</int> <int id="z">63</int> </object> <object id="heights_face_rock_1_1309376088041"> <int id="w">325</int> <int id="r">-8</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">603</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">506</int> <int id="h">103</int> <int id="z">121</int> </object> <object id="heights_face_rock_1_1309376088077"> <int id="w">281</int> <int id="r">2</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">181</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1550</int> <int id="h">89</int> <int id="z">181</int> </object> <object id="crosssection_heights_underside_1309217175512"> <int id="w">684</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">451</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">76</int> <int id="h">130</int> <int id="z">159</int> </object> <object id="heights_bandaid_3_1309206165228"> <int id="w">106</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">339</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">1238</int> <int id="h">192</int> <int id="z">20</int> </object> <object id="alakol_beach_1_1309194693464"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">598</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1880</int> <int id="h">79</int> <int id="z">64</int> </object> <object id="heights_mound_3_1309206165291"> <int id="w">391</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">870</int> <str id="sprite_class">heights_mound_3</str> <int id="y">477</int> <int id="h">148</int> <int id="z">12</int> </object> <object id="heights_face_rock_1_1309206165275"> <int id="w">293</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">960</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">442</int> <int id="h">93</int> <int id="z">119</int> </object> <object id="alakol_beach_1_1320868470099"> <int id="w">309</int> <int id="r">1</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">838</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">539</int> <int id="h">61</int> <int id="z">194</int> </object> <object id="patch_dirt_2a_1309285511455"> <int id="w">286</int> <str id="name">patch_dirt_2a_1309285511447</str> <int id="x">646</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">1370</int> <int id="h">49</int> <int id="z">96</int> </object> <object id="heights_mound_3_1309206165286"> <int id="w">391</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">138</int> <str id="sprite_class">heights_mound_3</str> <int id="y">913</int> <int id="h">148</int> <int id="z">110</int> </object> <object id="heights_face_rock_1_1309206165239"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">865</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1111</int> <int id="h">74</int> <int id="z">46</int> </object> <object id="trunk_ladder_1_1309206165358"> <int id="w">102</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">1219</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">833</int> <int id="h">116</int> <int id="z">155</int> </object> <object id="alakol_beach_1_1309194693475"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">944</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">967</int> <int id="h">79</int> <int id="z">71</int> </object> <object id="stalagmite_base_1_1309206165266"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">448</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">1357</int> <int id="h">56</int> <int id="z">97</int> </object> <object id="heights_face_rock_1_1309376088046"> <int id="w">274</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1016</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1009</int> <int id="h">87</int> <int id="z">133</int> </object> <object id="alakol_beach_1_1309285511425"> <int id="w">499</int> <int id="r">-6</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">486</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">437</int> <int id="h">108</int> <int id="z">145</int> </object> <object id="heights_platform_4_1309194693428"> <int id="w">513</int> <str id="name">heights_platform_4_1309194693427</str> <int id="x">1261</int> <str id="sprite_class">heights_platform_4</str> <int id="y">1555</int> <int id="h">217</int> <int id="z">41</int> </object> <object id="heights_face_rock_1_1309206165343"> <int id="w">277</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">444</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">536</int> <int id="h">88</int> <int id="z">105</int> </object> <object id="heights_bandaid_3_1309376088076"> <int id="w">91</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">64</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">1559</int> <int id="h">111</int> <int id="z">180</int> </object> <object id="heights_bandaid_3_1309206165261"> <int id="w">106</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">469</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">1772</int> <int id="h">192</int> <int id="z">87</int> </object> <object id="stalagmite_base_1_1309217175503"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">858</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">275</int> <int id="h">56</int> <int id="z">156</int> </object> <object id="heights_face_rock_1_1309376088045"> <int id="w">274</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">299</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1027</int> <int id="h">87</int> <int id="z">112</int> </object> <object id="heights_face_rock_1_1309217175498"> <int id="w">336</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">762</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1985</int> <int id="h">123</int> <int id="z">62</int> </object> <object id="heights_bandaid_3_1309206165350"> <int id="w">136</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">1006</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">567</int> <int id="h">246</int> <int id="z">116</int> </object> <object id="patch_dirt_2a_1309285511450"> <int id="w">286</int> <str id="name">patch_dirt_2a_1309285511447</str> <int id="x">461</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">930</int> <int id="h">49</int> <int id="z">164</int> </object> <object id="alakol_beach_1_1309194693466"> <int id="w">743</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1227</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1882</int> <int id="h">79</int> <int id="z">66</int> </object> <object id="alakol_beach_1_1309285511421"> <int id="w">170</int> <int id="r">-4</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">856</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">257</int> <int id="h">36</int> <int id="z">157</int> </object> <object id="alakol_beach_1_1309285511439"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">79</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1352</int> <int id="h">73</int> <int id="z">68</int> </object> <object id="patch_dirt_2a_1309285511449"> <int id="w">286</int> <str id="name">patch_dirt_2a_1309285511447</str> <int id="x">332</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">929</int> <int id="h">49</int> <int id="z">163</int> </object> <object id="stalagmite_base_1_1309206165257"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">413</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">1818</int> <int id="h">67</int> <int id="z">84</int> </object> <object id="alakol_beach_1_1309206165299"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">319</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">423</int> <int id="h">79</int> <int id="z">72</int> </object> <object id="crosssection_heights_underside_1309194693452"> <int id="w">591</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">786</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1589</int> <int id="h">114</int> <int id="z">33</int> </object> <object id="stalagmite_3_1309376088075"> <int id="w">119</int> <int id="r">180</int> <str id="name">stalagmite_3_1309285511422</str> <int id="x">236</int> <str id="sprite_class">stalagmite_3</str> <int id="y">1524</int> <int id="h">236</int> <int id="z">108</int> </object> <object id="alakol_water_rock_2_1309376088071"> <int id="w">198</int> <str id="name">alakol_water_rock_2_1309376088064</str> <int id="x">188</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="y">901</int> <int id="h">76</int> <int id="z">179</int> </object> <object id="alakol_beach_1_1309285511461"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1177</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1849</int> <int id="h">79</int> <int id="z">4</int> </object> <object id="crosssection_heights_pillar_2_1309194693490"> <int id="w">138</int> <str id="name">crosssection_heights_pillar_2_1309194693490</str> <int id="x">308</int> <str id="sprite_class">crosssection_heights_pillar_2</str> <int id="y">1366</int> <int id="h">312</int> <int id="z">18</int> </object> <object id="heights_mound_3_1309376088042"> <int id="w">391</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">155</int> <str id="sprite_class">heights_mound_3</str> <int id="y">1046</int> <int id="h">148</int> <int id="z">2</int> </object> <object id="alakol_beach_1_1309206165296"> <int id="w">489</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1404</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">350</int> <int id="h">60</int> <int id="z">73</int> </object> <object id="heights_bandaid_3_1309206165348"> <int id="w">133</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">1346</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">621</int> <int id="h">241</int> <int id="z">148</int> </object> <object id="heights_face_rock_1_1309376088078"> <int id="w">278</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">83</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1492</int> <int id="h">88</int> <int id="z">183</int> </object> <object id="alakol_beach_1_1309203942615"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1491</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1856</int> <int id="h">79</int> <int id="z">65</int> </object> <object id="stalagmite_base_1_1309376088050"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">23</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">382</int> <int id="h">51</int> <int id="z">168</int> </object> <object id="heights_face_rock_1_1309217175496"> <int id="w">274</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">568</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1036</int> <int id="h">87</int> <int id="z">139</int> </object> <object id="trunk_ladder_1_1309206165353"> <int id="w">102</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">993</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">1178</int> <int id="h">116</int> <int id="z">150</int> </object> <object id="heights_face_rock_1_1309376088044"> <int id="w">274</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">99</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1027</int> <int id="h">87</int> <int id="z">111</int> </object> <object id="patch_dirt_2a_1309285511451"> <int id="w">286</int> <str id="name">patch_dirt_2a_1309285511447</str> <int id="x">618</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">918</int> <int id="h">49</int> <int id="z">165</int> </object> <object id="trunk_ladder_1_1309206165357"> <int id="w">102</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">1224</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">752</int> <int id="h">116</int> <int id="z">154</int> </object> <object id="stalagmite_base_1_1309376088049"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">15</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">904</int> <int id="h">56</int> <int id="z">167</int> </object> <object id="heights_mound_2_1309194693487"> <int id="w">294</int> <str id="name">heights_mound_2_1309194693484</str> <int id="x">969</int> <str id="sprite_class">heights_mound_2</str> <int id="y">1204</int> <int id="h">206</int> <int id="z">24</int> </object> <object id="heights_face_rock_1_1309285511424"> <int id="w">277</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">465</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">504</int> <int id="h">88</int> <int id="z">106</int> </object> <object id="alakol_beach_1_1309206165325"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1099</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">905</int> <int id="h">65</int> <int id="z">131</int> </object> <object id="heights_face_rock_1_1309376088081"> <int id="w">281</int> <int id="r">2</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">255</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1931</int> <int id="h">89</int> <int id="z">59</int> </object> <object id="stalagmite_base_1_1309206165269"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">1079</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">1338</int> <int id="h">56</int> <int id="z">99</int> </object> <object id="alakol_beach_1_1309194693463"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">-13</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1868</int> <int id="h">79</int> <int id="z">186</int> </object> <object id="alakol_beach_1_1309194693472"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">868</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1411</int> <int id="h">79</int> <int id="z">52</int> </object> <object id="crosssection_heights_underside_1309206165231"> <int id="w">591</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">1373</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1136</int> <int id="h">114</int> <int id="z">44</int> </object> <object id="heights_face_rock_1_1309206165246"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1324</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1950</int> <int id="h">74</int> <int id="z">81</int> </object> <object id="heights_mound_3_1309206165310"> <int id="w">476</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">800</int> <str id="sprite_class">heights_mound_3</str> <int id="y">533</int> <int id="h">180</int> <int id="z">115</int> </object> <object id="alakol_beach_1_1309376088061"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">-10</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1809</int> <int id="h">64</int> <int id="z">56</int> </object> <object id="heights_platform_4_1309194693429"> <int id="w">513</int> <str id="name">heights_platform_4_1309194693427</str> <int id="x">787</int> <str id="sprite_class">heights_platform_4</str> <int id="y">1552</int> <int id="h">217</int> <int id="z">42</int> </object> <object id="heights_bandaid_3_1309206165347"> <int id="w">106</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">1461</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">586</int> <int id="h">192</int> <int id="z">147</int> </object> <object id="stalagmite_2_1309206165259"> <int id="w">95</int> <str id="name">stalagmite_2_1309206165254</str> <int id="x">536</int> <str id="sprite_class">stalagmite_2</str> <int id="y">1795</int> <int id="h">217</int> <int id="z">89</int> </object> <object id="crosssection_heights_underside_1309203942616"> <int id="w">491</int> <int id="r">280</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">613</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1670</int> <int id="h">139</int> <int id="z">31</int> <bool id="h_flip">true</bool> </object> <object id="crosssection_heights_underside_1309194693454"> <int id="w">591</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">1368</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1591</int> <int id="h">114</int> <int id="z">35</int> </object> <object id="alakol_beach_1_1309206165295"> <int id="w">489</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1178</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">340</int> <int id="h">74</int> <int id="z">114</int> </object> <object id="heights_face_rock_1_1309376088047"> <int id="w">274</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1217</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1017</int> <int id="h">87</int> <int id="z">134</int> </object> <object id="heights_face_rock_1_1309217175497"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">441</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1933</int> <int id="h">74</int> <int id="z">61</int> </object> <object id="heights_face_rock_2_1309206165336"> <int id="w">612</int> <int id="r">3</int> <str id="name">heights_face_rock_2_1309206165313</str> <int id="x">1393</int> <str id="sprite_class">heights_face_rock_2</str> <int id="y">899</int> <int id="h">178</int> <int id="z">130</int> </object> <object id="alakol_beach_1_1309194693480"> <int id="w">525</int> <int id="r">-5</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">235</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">467</int> <int id="h">79</int> <int id="z">144</int> </object> <object id="heights_face_rock_1_1320800238964"> <int id="w">247</int> <str id="name">heights_face_rock_1_1320800238963</str> <int id="x">873</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">600</int> <int id="h">79</int> <int id="z">190</int> <bool id="h_flip">true</bool> </object> <object id="stalagmite_base_1_1309206165267"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">852</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">1342</int> <int id="h">56</int> <int id="z">98</int> </object> <object id="heights_face_1_1309206165344"> <int id="w">587</int> <str id="name">heights_face_1_1309206165337</str> <int id="x">1456</int> <str id="sprite_class">heights_face_1</str> <int id="y">740</int> <int id="h">401</int> <int id="z">8</int> </object> <object id="heights_face_rock_1_1309206165276"> <int id="w">277</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">230</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">538</int> <int id="h">88</int> <int id="z">104</int> </object> <object id="trunk_ladder_1_1309206165355"> <int id="w">102</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">1217</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">466</int> <int id="h">116</int> <int id="z">152</int> </object> <object id="heights_face_rock_1_1309206165278"> <int id="w">296</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">106</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">579</int> <int id="h">94</int> <int id="z">102</int> </object> <object id="heights_face_rock_1_1320800238965"> <int id="w">247</int> <int id="r">-10</int> <str id="name">heights_face_rock_1_1320800238963</str> <int id="x">851</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">600</int> <int id="h">79</int> <int id="z">188</int> </object> <object id="heights_face_1_1309206165340"> <int id="w">587</int> <str id="name">heights_face_1_1309206165337</str> <int id="x">-159</int> <str id="sprite_class">heights_face_1</str> <int id="y">256</int> <int id="h">401</int> <int id="z">142</int> </object> <object id="heights_face_rock_1_1309217175494"> <int id="w">274</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">796</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1003</int> <int id="h">87</int> <int id="z">138</int> </object> <object id="heights_bandaid_3_1309206165260"> <int id="w">106</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">455</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">1727</int> <int id="h">192</int> <int id="z">86</int> </object> <object id="heights_face_rock_1_1309376088079"> <int id="w">281</int> <int id="r">2</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1539</int> <int id="h">89</int> <int id="z">182</int> </object> <object id="heights_face_rock_1_1320800238963"> <int id="w">247</int> <str id="name">heights_face_rock_1_1320800238963</str> <int id="x">778</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">600</int> <int id="h">79</int> <int id="z">189</int> </object> <object id="alakol_water_rock_2_1309376088067"> <int id="w">198</int> <str id="name">alakol_water_rock_2_1309376088064</str> <int id="x">1478</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="y">882</int> <int id="h">76</int> <int id="z">175</int> </object> <object id="crosssection_heights_underside_1309217175513"> <int id="w">733</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">1147</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">80</int> <int id="h">134</int> <int id="z">160</int> </object> <object id="alakol_beach_1_1309194693470"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">402</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1413</int> <int id="h">79</int> <int id="z">69</int> </object> <object id="heights_platform_4_1309194693431"> <int id="w">513</int> <str id="name">heights_platform_4_1309194693427</str> <int id="x">11</int> <str id="sprite_class">heights_platform_4</str> <int id="y">1545</int> <int id="h">217</int> <int id="z">49</int> </object> <object id="alakol_water_rock_2_1309376088064"> <int id="w">198</int> <str id="name">alakol_water_rock_2_1309376088064</str> <int id="x">402</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="y">1332</int> <int id="h">76</int> <int id="z">171</int> </object> <object id="alakol_beach_1_1309194693473"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">560</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">929</int> <int id="h">79</int> <int id="z">70</int> </object> <object id="heights_mound_3_1309206165323"> <int id="w">517</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">1472</int> <str id="sprite_class">heights_mound_3</str> <int id="y">935</int> <int id="h">196</int> <int id="z">128</int> </object> <object id="stalagmite_base_1_1309206165268"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">982</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">1356</int> <int id="h">56</int> <int id="z">101</int> </object> <object id="alakol_beach_1_1309194693467"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">908</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1863</int> <int id="h">79</int> <int id="z">58</int> </object> <object id="heights_face_rock_1_1309206165277"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">32</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">517</int> <int id="h">74</int> <int id="z">103</int> </object> <object id="crosssection_heights_pillar_1_1309206165227"> <int id="w">166</int> <str id="name">crosssection_heights_pillar_1_1309206165227</str> <int id="x">387</int> <str id="sprite_class">crosssection_heights_pillar_1</str> <int id="y">1346</int> <int id="h">311</int> <int id="z">19</int> </object> <object id="heights_bandaid_3_1309206165284"> <int id="w">135</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">137</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">1557</int> <int id="h">164</int> <int id="z">107</int> </object> <object id="crosssection_heights_underside_1309206165273"> <int id="w">688</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">923</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">612</int> <int id="h">131</int> <int id="z">146</int> </object> <object id="heights_mound_3_1309194693416"> <int id="w">498</int> <str id="name">heights_mound_3_1309194693399</str> <int id="x">1321</int> <str id="sprite_class">heights_mound_3</str> <int id="y">2018</int> <int id="h">189</int> <int id="z">40</int> </object> <object id="penaltybox_cell_background_1309194693457"> <int id="w">1101</int> <str id="name">penaltybox_cell_background_1309194693455</str> <int id="x">1636</int> <str id="sprite_class">penaltybox_cell_background</str> <int id="y">1373</int> <int id="h">378</int> <int id="z">26</int> <bool id="h_flip">true</bool> </object> <object id="heights_platform_4_1309194693430"> <int id="w">513</int> <str id="name">heights_platform_4_1309194693427</str> <int id="x">312</int> <str id="sprite_class">heights_platform_4</str> <int id="y">1550</int> <int id="h">217</int> <int id="z">48</int> </object> <object id="trunk_ladder_1_1309206165356"> <int id="w">102</int> <str id="name">trunk_ladder_1_1309206165262</str> <int id="x">1218</int> <str id="sprite_class">trunk_ladder_1</str> <int id="y">606</int> <int id="h">116</int> <int id="z">153</int> </object> <object id="heights_platform_4_1309194693441"> <int id="w">513</int> <str id="name">heights_platform_4_1309194693427</str> <int id="x">684</int> <str id="sprite_class">heights_platform_4</str> <int id="y">1126</int> <int id="h">217</int> <int id="z">43</int> </object> <object id="crosssection_heights_underside_1309194693488"> <int id="w">591</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">286</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1117</int> <int id="h">114</int> <int id="z">23</int> </object> <object id="heights_face_rock_1_1309194693460"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">540</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1560</int> <int id="h">74</int> <int id="z">53</int> </object> <object id="alakol_water_rock_1_1309376088072"> <int id="w">131</int> <str id="name">alakol_water_rock_1_1309376088062</str> <int id="x">23</int> <str id="sprite_class">alakol_water_rock_1</str> <int id="y">880</int> <int id="h">98</int> <int id="z">178</int> </object> <object id="alakol_beach_1_1309217175523"> <int id="w">648</int> <int id="r">-4</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">655</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">394</int> <int id="h">79</int> <int id="z">123</int> </object> <object id="heights_face_rock_1_1309206165232"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1239</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1534</int> <int id="h">74</int> <int id="z">77</int> </object> <object id="heights_face_rock_1_1309376088082"> <int id="w">281</int> <int id="r">2</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">-33</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1974</int> <int id="h">89</int> <int id="z">60</int> </object> <object id="crosssection_heights_underside_1309194693449"> <int id="w">591</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">208</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1552</int> <int id="h">114</int> <int id="z">28</int> </object> <object id="alakol_water_rock_1_1309376088066"> <int id="w">131</int> <str id="name">alakol_water_rock_1_1309376088062</str> <int id="x">856</int> <str id="sprite_class">alakol_water_rock_1</str> <int id="y">1319</int> <int id="h">98</int> <int id="z">172</int> </object> <object id="alakol_water_rock_1_1309376088068"> <int id="w">131</int> <str id="name">alakol_water_rock_1_1309376088062</str> <int id="x">1374</int> <str id="sprite_class">alakol_water_rock_1</str> <int id="y">874</int> <int id="h">98</int> <int id="z">174</int> </object> <object id="stalagmite_base_1_1309206165258"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">541</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">1832</int> <int id="h">67</int> <int id="z">85</int> </object> <object id="alakol_beach_1_1309194693474"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">192</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">957</int> <int id="h">79</int> <int id="z">113</int> </object> <object id="heights_mound_3_1309206165341"> <int id="w">463</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">427</int> <str id="sprite_class">heights_mound_3</str> <int id="y">562</int> <int id="h">175</int> <int id="z">9</int> </object> <object id="heights_face_rock_1_1309376088080"> <int id="w">281</int> <int id="r">2</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">53</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1939</int> <int id="h">89</int> <int id="z">185</int> </object> <object id="heights_bandaid_3_1309206165351"> <int id="w">136</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">1171</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">592</int> <int id="h">246</int> <int id="z">117</int> </object> <object id="patch_dirt_2a_1309285511454"> <int id="w">286</int> <str id="name">patch_dirt_2a_1309285511447</str> <int id="x">715</int> <str id="sprite_class">patch_dirt_2a</str> <int id="y">1352</int> <int id="h">49</int> <int id="z">95</int> </object> <object id="alakol_beach_1_1309206165326"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">1511</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">933</int> <int id="h">79</int> <int id="z">132</int> </object> <object id="heights_bandaid_3_1309206165229"> <int id="w">106</int> <str id="name">heights_bandaid_3_1309206165228</str> <int id="x">340</int> <str id="sprite_class">heights_bandaid_3</str> <int id="y">1397</int> <int id="h">192</int> <int id="z">21</int> </object> <object id="alakol_water_rock_1_1309376088070"> <int id="w">131</int> <str id="name">alakol_water_rock_1_1309376088062</str> <int id="x">843</int> <str id="sprite_class">alakol_water_rock_1</str> <int id="y">859</int> <int id="h">98</int> <int id="z">176</int> </object> <object id="heights_face_rock_1_1309194693461"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">588</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1526</int> <int id="h">74</int> <int id="z">55</int> </object> <object id="heights_face_rock_1_1309206165236"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1448</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1536</int> <int id="h">74</int> <int id="z">79</int> </object> <object id="alakol_beach_1_1309194693465"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">295</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">1845</int> <int id="h">64</int> <int id="z">57</int> </object> <object id="alakol_water_rock_2_1309376088069"> <int id="w">198</int> <str id="name">alakol_water_rock_2_1309376088064</str> <int id="x">947</int> <str id="sprite_class">alakol_water_rock_2</str> <int id="y">867</int> <int id="h">76</int> <int id="z">177</int> </object> <object id="heights_face_rock_1_1309376088048"> <int id="w">274</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1406</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1022</int> <int id="h">87</int> <int id="z">135</int> </object> <object id="crosssection_heights_underside_1309194693450"> <int id="w">591</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">200</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1583</int> <int id="h">114</int> <int id="z">29</int> </object> <object id="heights_mound_3_1309206165292"> <int id="w">391</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">1099</int> <str id="sprite_class">heights_mound_3</str> <int id="y">424</int> <int id="h">148</int> <int id="z">13</int> </object> <object id="heights_mound_2_1309194693486"> <int id="w">294</int> <str id="name">heights_mound_2_1309194693484</str> <int id="x">954</int> <str id="sprite_class">heights_mound_2</str> <int id="y">1344</int> <int id="h">206</int> <int id="z">25</int> </object> <object id="alakol_beach_1_1309376088051"> <int id="w">170</int> <int id="r">-4</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">15</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">364</int> <int id="h">36</int> <int id="z">169</int> </object> <object id="heights_mound_3_1309194693415"> <int id="w">498</int> <str id="name">heights_mound_3_1309194693399</str> <int id="x">126</int> <str id="sprite_class">heights_mound_3</str> <int id="y">2028</int> <int id="h">189</int> <int id="z">36</int> </object> <object id="heights_face_rock_1_1309206165238"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1078</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1109</int> <int id="h">74</int> <int id="z">47</int> </object> <object id="heights_mound_3_1309206165324"> <int id="w">517</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">1324</int> <str id="sprite_class">heights_mound_3</str> <int id="y">769</int> <int id="h">196</int> <int id="z">127</int> </object> <object id="heights_face_rock_1_1309206165316"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1202</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">417</int> <int id="h">74</int> <int id="z">118</int> </object> <object id="alakol_beach_1_1309206165339"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">-63</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">444</int> <int id="h">79</int> <int id="z">143</int> </object> <object id="heights_mound_3_1309206165297"> <int id="w">482</int> <str id="name">heights_mound_3_1309206165286</str> <int id="x">1539</int> <str id="sprite_class">heights_mound_3</str> <int id="y">494</int> <int id="h">182</int> <int id="z">15</int> </object> <object id="crosssection_heights_underside_1309194693489"> <int id="w">591</int> <str id="name">crosssection_heights_underside_1309194693447</str> <int id="x">856</int> <str id="sprite_class">crosssection_heights_underside</str> <int id="y">1129</int> <int id="h">114</int> <int id="z">22</int> </object> <object id="heights_topper_1_1320800238960"> <int id="w">269</int> <int id="r">5</int> <str id="name">heights_topper_1_1320800238958</str> <int id="x">865</int> <str id="sprite_class">heights_topper_1</str> <int id="y">573</int> <int id="h">69</int> <int id="z">191</int> </object> <object id="heights_face_rock_1_1309217175493"> <int id="w">277</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">691</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1029</int> <int id="h">88</int> <int id="z">137</int> </object> <object id="heights_topper_2_1320800238961"> <int id="w">145</int> <str id="name">heights_topper_2_1320800238961</str> <int id="x">895</int> <str id="sprite_class">heights_topper_2</str> <int id="y">549</int> <int id="h">60</int> <int id="z">192</int> </object> <object id="heights_face_rock_1_1309206165237"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1613</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1568</int> <int id="h">74</int> <int id="z">78</int> </object> <object id="heights_face_rock_1_1309206165245"> <int id="w">233</int> <int id="r">-1</int> <str id="name">heights_face_rock_1_1309194693459</str> <int id="x">1171</int> <str id="sprite_class">heights_face_rock_1</str> <int id="y">1946</int> <int id="h">74</int> <int id="z">82</int> </object> <object id="stalagmite_base_1_1309217175502"> <int id="w">220</int> <str id="name">stalagmite_base_1_1309206165257</str> <int id="x">734</int> <str id="sprite_class">stalagmite_base_1</str> <int id="y">312</int> <int id="h">56</int> <int id="z">158</int> </object> <object id="alakol_beach_1_1309206165294"> <int id="w">648</int> <str id="name">alakol_beach_1_1309194693463</str> <int id="x">856</int> <str id="sprite_class">alakol_beach_1</str> <int id="y">357</int> <int id="h">79</int> <int id="z">122</int> </object> <object id="heights_topper_1_1320800238959"> <int id="w">269</int> <str id="name">heights_topper_1_1320800238958</str> <int id="x">797</int> <str id="sprite_class">heights_topper_1</str> <int id="y">554</int> <int id="h">69</int> <int id="z">187</int> </object> </object> </object> </object> <str id="tsid">LA5VDIGU3G525F9</str> <null id="loading_label"/> <null id="img_file_versioned"/> <null id="physics"/> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1319854280.swf</str> <object id="gradient"> <str id="top">A7C8D9</str> <str id="bottom">D9B166</str> </object> <int id="ground_y">-192</int> <int id="rookable_type">0</int> <object id="sources"> <int id="LA51CGIGKK62NV8">1</int> <int id="LA5QBAL9SL52I02">1</int> <int id="LA51701PF262LC8">1</int> <int id="LA519RU9M462NJ1">1</int> <int id="LA51A5VM3K62P49">1</int> </object> <str id="music_file"></str> </object> </game_object>
109,225
Common Lisp
.l
3,225
27.091783
206
0.557142
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
e5792db502b6ff72231bb73993c39453fa1b9ea7470becbd153695c54b0f9a82
20,866
[ -1 ]
20,867
GA9NRNJSB792OG4.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA9NRNJSB792OG4 Akaki Cape-shows depth/GA9NRNJSB792OG4.xml
<game_object tsid="GA9NRNJSB792OG4" ts="1336604186268" label="Akaki Cape" class_tsid="" lastUpdateTime="1336604176200" upd_gs="gs7" load_time="2012-05-09 15:54:38.845" upd_time="2012-05-09 15:56:21.658"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id="b">0</int> <str id="label">forest_89367</str> <str id="swf_file">groddle1.swf</str> <object id="layers"> <object id="middleground"> <int id="h">1000</int> <object id="filtersNEW"> <object id="brightness"> <int id="value">-15</int> </object> <object id="contrast"> <int id="value">-20</int> </object> <object id="saturation"> <int id="value">-5</int> </object> </object> <object id="targets"> </object> <object id="decos"> <object id="dirt_platform_long_1310578060334"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-604</int> <int id="y">-107</int> <int id="h">57</int> <int id="z">16</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_fern_1_1313188516006"> <bool id="h_flip">true</bool> <int id="w">162</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">976</int> <int id="y">-179</int> <int id="h">97</int> <int id="z">190</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="patch_dirt_2a_1313016699425"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1808</int> <int id="y">-73</int> <int id="h">49</int> <int id="z">96</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_1313090991642"> <bool id="h_flip">true</bool> <int id="w">292</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-507</int> <int id="y">-155</int> <int id="h">35</int> <int id="z">135</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="groddle_fern_1_1309801546661"> <int id="w">181</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">-2194</int> <int id="y">-150</int> <int id="h">108</int> <int id="z">67</int> <str id="name">groddle_fern_1_1309801546661</str> </object> <object id="patch_dirt_2a_1313427419286"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1363</int> <int id="y">-69</int> <int id="h">49</int> <int id="z">80</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_fern_1_1313188515997"> <int id="w">181</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">673</int> <int id="y">-199</int> <int id="h">108</int> <int id="z">184</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_grass_1_1313106981074"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">1136</int> <int id="y">-165</int> <int id="h">51</int> <int id="z">196</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="alakol_grass_top_2_1309824035988"> <int id="w">209</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">1851</int> <int id="y">-143</int> <int id="h">43</int> <int id="z">63</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="lens_grass_2_1309481037945"> <int id="w">3102</int> <int id="r">-1</int> <str id="sprite_class">lens_grass_2</str> <int id="x">2534</int> <int id="y">70</int> <int id="h">219</int> <int id="z">23</int> <str id="name">lens_grass_2_1309481037911</str> </object> <object id="groddle_cover_clover2_1313188515956"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-2950</int> <int id="y">-165</int> <int id="h">47</int> <int id="z">109</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="alakol_grass_top_2_1313016699419"> <int id="w">410</int> <int id="r">-2</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2665</int> <int id="y">-157</int> <int id="h">35</int> <int id="z">103</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_cover_clover2_1309801546655"> <int id="w">119</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-1968</int> <int id="y">-134</int> <int id="h">45</int> <int id="z">89</int> <str id="name">groddle_cover_clover2_1309801546655</str> </object> <object id="dirt_platform_short_1309824035939"> <int id="w">204</int> <int id="r">1</int> <str id="sprite_class">dirt_platform_short</str> <int id="x">1491</int> <int id="y">-156</int> <int id="h">33</int> <int id="z">44</int> <str id="name">dirt_platform_short_1309824035925</str> </object> <object id="patch_dirt_2a_1310580389936"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1346</int> <int id="y">-8</int> <int id="h">49</int> <int id="z">48</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_grass_1_1313427419253"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2464</int> <int id="y">-157</int> <int id="h">51</int> <int id="z">206</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="dirt_platform_long_1309824035936"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">1062</int> <int id="y">-95</int> <int id="h">57</int> <int id="z">43</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="alakol_grass_top_2_1309824035990"> <int id="w">410</int> <int id="r">-2</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">2000</int> <int id="y">-157</int> <int id="h">35</int> <int id="z">52</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="patch_dirt_2a_1310580389928"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2711</int> <int id="y">-50</int> <int id="h">49</int> <int id="z">36</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_cover_clover1_1313188516003"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">1343</int> <int id="y">-143</int> <int id="h">78</int> <int id="z">193</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="alakol_grass_top_1310578060326"> <int id="w">471</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">2915</int> <int id="y">-158</int> <int id="h">40</int> <int id="z">53</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_2_1313090991639"> <int id="w">537</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1029</int> <int id="y">-39</int> <int id="h">78</int> <int id="z">140</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="patch_dirt_2a_1310580389924"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2790</int> <int id="y">-117</int> <int id="h">49</int> <int id="z">33</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_bush4_1313188515939"> <int id="w">171</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush4</str> <int id="x">-2014</int> <int id="y">-170</int> <int id="h">82</int> <int id="z">165</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="patch_dirt_2a_1313013414311"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1219</int> <int id="y">-120</int> <int id="h">49</int> <int id="z">79</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_grass_1_1313427419264"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">1881</int> <int id="y">-164</int> <int id="h">51</int> <int id="z">209</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="transition_dirt_3_1309824036015"> <int id="w">212</int> <str id="sprite_class">transition_dirt_3</str> <int id="x">1642</int> <int id="y">-49</int> <int id="h">32</int> <int id="z">51</int> <str id="name">transition_dirt_3_1309798585340</str> </object> <object id="tree_coniferous_fg_2_1313106980962"> <int id="w">563</int> <str id="sprite_class">tree_coniferous_fg_2</str> <int id="x">-2368</int> <int id="y">-111</int> <int id="h">1214</int> <int id="z">169</int> <str id="name">tree_coniferous_fg_2_1313106980961</str> </object> <object id="patch_dirt_2a_1310591248928"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">176</int> <int id="y">-101</int> <int id="h">49</int> <int id="z">14</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_cover_clover2_1313427419262"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">1789</int> <int id="y">-154</int> <int id="h">47</int> <int id="z">210</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="dirt_platform_long_1309898715152"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-1649</int> <int id="y">11</int> <int id="h">57</int> <int id="z">82</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="dirt_platform_long_1309824035933"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">1776</int> <int id="y">21</int> <int id="h">57</int> <int id="z">38</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_bush4_1313188516029"> <int id="w">226</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush4</str> <int id="x">2649</int> <int id="y">-158</int> <int id="h">108</int> <int id="z">204</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="dirt_platform_long_1309898715150"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-258</int> <int id="y">25</int> <int id="h">57</int> <int id="z">41</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="dirt_platform_long_1309824035995"> <int id="w">850</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">2718</int> <int id="y">-80</int> <int id="h">57</int> <int id="z">31</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_grass_1_1313188516021"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">1326</int> <int id="y">-135</int> <int id="h">51</int> <int id="z">200</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_grass_1_1313427419261"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">1747</int> <int id="y">-158</int> <int id="h">51</int> <int id="z">211</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="trunk_ladder_2_1313431787571"> <int id="w">61</int> <str id="sprite_class">trunk_ladder_2</str> <int id="x">-2380</int> <int id="y">-316</int> <int id="h">70</int> <int id="z">220</int> <str id="name">trunk_ladder_2_1313431787568</str> </object> <object id="alakol_grass_top_1313090991643"> <int id="w">471</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-561</int> <int id="y">-171</int> <int id="h">40</int> <int id="z">133</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="transition_dirt_2_1309898715166"> <int id="w">292</int> <int id="r">5</int> <str id="sprite_class">transition_dirt_2</str> <int id="x">-609</int> <int id="y">-43</int> <int id="h">36</int> <int id="z">83</int> <str id="name">transition_dirt_2_1309798585341</str> </object> <object id="groddle_grass_1_1313427419247"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">1279</int> <int id="y">-182</int> <int id="h">51</int> <int id="z">192</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="gravel_1_1313188515931"> <int id="w">280</int> <str id="sprite_class">gravel_1</str> <int id="x">-1727</int> <int id="y">-93</int> <int id="h">51</int> <int id="z">181</int> <str id="name">gravel_1_1313016699544</str> </object> <object id="dirt_platform_long_1313090991626"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">234</int> <int id="y">4</int> <int id="h">57</int> <int id="z">1</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="alakol_grass_top_2_1313016699443"> <int id="w">281</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2572</int> <int id="y">-179</int> <int id="h">32</int> <int id="z">101</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_2_1313090991655"> <int id="w">537</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">1240</int> <int id="y">38</int> <int id="h">78</int> <int id="z">159</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_grass_2_1313188516020"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1437</int> <int id="y">-155</int> <int id="h">94</int> <int id="z">195</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="alakol_grass_top_2_1313186252603"> <int id="w">508</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2118</int> <int id="y">-41</int> <int id="h">112</int> <int id="z">115</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_2_1313016699440"> <int id="w">281</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2919</int> <int id="y">-176</int> <int id="h">32</int> <int id="z">98</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_cover_clover2_1313427419314"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-1448</int> <int id="y">-149</int> <int id="h">47</int> <int id="z">218</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="alakol_grass_top_2_1313186252607"> <int id="w">235</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2426</int> <int id="y">30</int> <int id="h">60</int> <int id="z">118</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_2_1313016699412"> <int id="w">219</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-3155</int> <int id="y">-41</int> <int id="h">52</int> <int id="z">111</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_cover_clover2_1313188516011"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">1534</int> <int id="y">-119</int> <int id="h">47</int> <int id="z">199</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="alakol_grass_top_2_1313090991644"> <int id="w">410</int> <int id="r">-2</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1251</int> <int id="y">-156</int> <int id="h">35</int> <int id="z">132</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="dirt_platform_long_1309824035934"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">982</int> <int id="y">8</int> <int id="h">57</int> <int id="z">39</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="alakol_grass_top_1309824035994"> <int id="w">449</int> <int id="r">-9</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">2484</int> <int id="y">-108</int> <int id="h">60</int> <int id="z">57</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_2_1313090991649"> <int id="w">209</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1038</int> <int id="y">-115</int> <int id="h">35</int> <int id="z">137</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="transition_dirt_3_1309801546665"> <int id="w">235</int> <str id="sprite_class">transition_dirt_3</str> <int id="x">-2131</int> <int id="y">-111</int> <int id="h">36</int> <int id="z">19</int> <str id="name">transition_dirt_3_1309481037924</str> </object> <object id="alakol_grass_top_1313090991662"> <bool id="h_flip">true</bool> <int id="w">292</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">1258</int> <int id="y">-101</int> <int id="h">35</int> <int id="z">153</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="patch_dirt_2a_1310580389927"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2621</int> <int id="y">-96</int> <int id="h">49</int> <int id="z">35</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_1313427419258"> <int id="w">323</int> <int id="r">-3</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">668</int> <int id="y">-173</int> <int id="h">46</int> <int id="z">122</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="dirt_platform_long_1309824035932"> <int id="w">1051</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">2506</int> <int id="y">-30</int> <int id="h">57</int> <int id="z">30</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_cover_clover1_1313188515949"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">-2705</int> <int id="y">-108</int> <int id="h">78</int> <int id="z">179</int> <str id="name">groddle_cover_clover1_1313188515940</str> </object> <object id="groddle_cover_clover2_1313188516009"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">1455</int> <int id="y">-131</int> <int id="h">47</int> <int id="z">198</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="alakol_grass_top_1310578060328"> <bool id="h_flip">true</bool> <int id="w">292</int> <int id="r">2</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">3017</int> <int id="y">-136</int> <int id="h">35</int> <int id="z">55</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="groddle_fern_1_1313188516005"> <int id="w">201</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">1094</int> <int id="y">-174</int> <int id="h">120</int> <int id="z">189</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_cover_clover2_1313186252601"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-2500</int> <int id="y">-172</int> <int id="h">47</int> <int id="z">112</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="alakol_grass_top_2_1313090991657"> <int id="w">537</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">506</int> <int id="y">9</int> <int id="h">78</int> <int id="z">156</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_fern_1_1309801546663"> <bool id="h_flip">true</bool> <int id="w">130</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">-2241</int> <int id="y">-143</int> <int id="h">78</int> <int id="z">68</int> <str id="name">groddle_fern_1_1309801546661</str> </object> <object id="groddle_fern_1_1313427419301"> <int id="w">201</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">-289</int> <int id="y">-155</int> <int id="h">120</int> <int id="z">213</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="alakol_grass_top_2_1313016699442"> <int id="w">281</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2698</int> <int id="y">-177</int> <int id="h">32</int> <int id="z">100</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_grass_1_1313427419252"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2278</int> <int id="y">-178</int> <int id="h">51</int> <int id="z">205</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_cover_clover2_1313427419251"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">2326</int> <int id="y">-174</int> <int id="h">47</int> <int id="z">203</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="alakol_grass_top_2_1313016699420"> <int id="w">281</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2917</int> <int id="y">-160</int> <int id="h">32</int> <int id="z">102</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_cover_clover2_1313427419312"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-1281</int> <int id="y">-136</int> <int id="h">47</int> <int id="z">219</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="patch_dirt_2a_1313188515934"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1666</int> <int id="y">-20</int> <int id="h">49</int> <int id="z">97</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="dirt_platform_long_1313090991627"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">345</int> <int id="y">-46</int> <int id="h">57</int> <int id="z">2</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="dirt_platform_long_1313016699428"> <int id="w">850</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-1749</int> <int id="y">-132</int> <int id="h">58</int> <int id="z">93</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_fern_1_1313188515996"> <int id="w">201</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">51</int> <int id="y">-184</int> <int id="h">120</int> <int id="z">176</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_cover_clover2_1313427419313"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-1344</int> <int id="y">-159</int> <int id="h">47</int> <int id="z">214</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="groddle_grass_1_1313427419315"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">-1489</int> <int id="y">-178</int> <int id="h">51</int> <int id="z">216</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_cover_clover1_1313427419259"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">894</int> <int id="y">-165</int> <int id="h">78</int> <int id="z">124</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="dirt_horizon_1310578060332"> <int id="w">779</int> <int id="r">1</int> <str id="sprite_class">dirt_horizon</str> <int id="x">-20</int> <int id="y">-124</int> <int id="h">70</int> <int id="z">8</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="groddle_grass_1_1313427419303"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">-359</int> <int id="y">-168</int> <int id="h">51</int> <int id="z">175</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="alakol_grass_top_2_1313090991637"> <int id="w">537</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-295</int> <int id="y">-2</int> <int id="h">78</int> <int id="z">142</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="trunk_ladder_2_1313431787572"> <int id="w">61</int> <str id="sprite_class">trunk_ladder_2</str> <int id="x">-2372</int> <int id="y">-457</int> <int id="h">70</int> <int id="z">222</int> <str id="name">trunk_ladder_2_1313431787568</str> </object> <object id="groddle_grass_2_1313188516002"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">507</int> <int id="y">-185</int> <int id="h">94</int> <int id="z">186</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="dirt_platform_long_1313016699438"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-1730</int> <int id="y">-37</int> <int id="h">57</int> <int id="z">7</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="transition_dirt_2_1309898715167"> <int id="w">292</int> <str id="sprite_class">transition_dirt_2</str> <int id="x">-673</int> <int id="y">-32</int> <int id="h">36</int> <int id="z">84</int> <str id="name">transition_dirt_2_1309798585341</str> </object> <object id="dirt_platform_long_1309824035996"> <int id="w">850</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">2916</int> <int id="y">-132</int> <int id="h">58</int> <int id="z">32</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_cover_clover2_1313013414303"> <int id="w">119</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-1879</int> <int id="y">-135</int> <int id="h">45</int> <int id="z">88</int> <str id="name">groddle_cover_clover2_1309801546655</str> </object> <object id="bush_3_1313188515955"> <int id="w">391</int> <str id="sprite_class">bush_3</str> <int id="x">-2755</int> <int id="y">-140</int> <int id="h">138</int> <int id="z">110</int> <str id="name">bush_3_1313106981022</str> </object> <object id="patch_dirt_2a_1310580389926"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2760</int> <int id="y">-85</int> <int id="h">49</int> <int id="z">34</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="dirt_platform_long_1310578060330"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">141</int> <int id="y">-107</int> <int id="h">57</int> <int id="z">12</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_cover_clover2_1313188516001"> <int id="w">126</int> <int id="r">-2</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">571</int> <int id="y">-185</int> <int id="h">47</int> <int id="z">185</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="alakol_grass_top_2_1313016699566"> <int id="w">537</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">2535</int> <int id="y">-16</int> <int id="h">78</int> <int id="z">61</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="dirt_platform_long_1313016699516"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">1290</int> <int id="y">-60</int> <int id="h">57</int> <int id="z">4</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="transition_dirt_3_1309824035982"> <int id="w">242</int> <int id="r">5</int> <str id="sprite_class">transition_dirt_3</str> <int id="x">1938</int> <int id="y">-114</int> <int id="h">36</int> <int id="z">46</int> <str id="name">transition_dirt_3_1309798585340</str> </object> <object id="alakol_grass_top_1313188515933"> <int id="w">426</int> <int id="r">-7</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-1984</int> <int id="y">-112</int> <int id="h">63</int> <int id="z">107</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_1313016699526"> <int id="w">471</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-1508</int> <int id="y">-157</int> <int id="h">40</int> <int id="z">105</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="groddle_grass_1_1313427419285"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">-2057</int> <int id="y">-161</int> <int id="h">51</int> <int id="z">212</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="dirt_platform_long_1309824035935"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">960</int> <int id="y">-42</int> <int id="h">57</int> <int id="z">42</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="patch_dirt_2a_1310591248927"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">284</int> <int id="y">-123</int> <int id="h">49</int> <int id="z">13</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_bush1_1313188515938"> <bool id="h_flip">true</bool> <int id="w">194</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush1</str> <int id="x">-2155</int> <int id="y">-161</int> <int id="h">104</int> <int id="z">166</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="groddle_grass_1_1313427419260"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">1002</int> <int id="y">-176</int> <int id="h">51</int> <int id="z">207</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="alakol_grass_top_1313090991663"> <int id="w">471</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">1199</int> <int id="y">-109</int> <int id="h">40</int> <int id="z">152</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="gravel_1_1313427419287"> <int id="w">280</int> <str id="sprite_class">gravel_1</str> <int id="x">-1535</int> <int id="y">-98</int> <int id="h">51</int> <int id="z">182</int> <str id="name">gravel_1_1313016699544</str> </object> <object id="bush_2_1313106981048"> <bool id="h_flip">true</bool> <int id="w">283</int> <int id="r">10</int> <str id="sprite_class">bush_2</str> <int id="x">-2307</int> <int id="y">-151</int> <int id="h">109</int> <int id="z">167</int> <str id="name">bush_2_1313106981023</str> </object> <object id="groddle_grass_2_1313188515954"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">-2292</int> <int id="y">-147</int> <int id="h">94</int> <int id="z">183</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="alakol_grass_top_2_1309798585351"> <int id="w">553</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">2264</int> <int id="y">-64</int> <int id="h">105</int> <int id="z">59</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="transition_dirt_3_1309824035981"> <int id="w">235</int> <int id="r">6</int> <str id="sprite_class">transition_dirt_3</str> <int id="x">2168</int> <int id="y">-18</int> <int id="h">36</int> <int id="z">50</int> <str id="name">transition_dirt_3_1309798585340</str> </object> <object id="alakol_grass_top_2_1313090991665"> <int id="w">281</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">32</int> <int id="y">-111</int> <int id="h">32</int> <int id="z">150</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_fern_1_1313188515998"> <bool id="h_flip">true</bool> <int id="w">159</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">615</int> <int id="y">-194</int> <int id="h">95</int> <int id="z">187</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="alakol_grass_top_2_1309824036014"> <int id="w">219</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">1510</int> <int id="y">-41</int> <int id="h">52</int> <int id="z">72</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_grass_1_1313427419299"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">1509</int> <int id="y">-173</int> <int id="h">51</int> <int id="z">194</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_cover_clover1_1313188516004"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">1202</int> <int id="y">-119</int> <int id="h">78</int> <int id="z">197</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="trunk_ladder_2_1313431787570"> <bool id="h_flip">true</bool> <int id="w">61</int> <str id="sprite_class">trunk_ladder_2</str> <int id="x">-2381</int> <int id="y">-386</int> <int id="h">70</int> <int id="z">221</int> <str id="name">trunk_ladder_2_1313431787568</str> </object> <object id="dirt_platform_long_1313016699437"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-2061</int> <int id="y">-108</int> <int id="h">57</int> <int id="z">91</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_cover_clover1_1313188516032"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">2518</int> <int id="y">-157</int> <int id="h">78</int> <int id="z">202</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="alakol_grass_top_2_1313186252604"> <int id="w">531</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1972</int> <int id="y">-5</int> <int id="h">83</int> <int id="z">116</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_fern_1_1313188516036"> <int id="w">188</int> <int id="r">-5</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">2466</int> <int id="y">-193</int> <int id="h">112</int> <int id="z">201</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="alakol_grass_top_2_1313090991636"> <int id="w">209</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1406</int> <int id="y">-139</int> <int id="h">35</int> <int id="z">143</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_beach_1_1313186252602"> <int id="w">1152</int> <str id="sprite_class">alakol_beach_1</str> <int id="x">-2626</int> <int id="y">35</int> <int id="h">148</int> <int id="z">0</int> <str id="name">alakol_beach_1_1313186252602</str> </object> <object id="patch_dirt_2a_1310580389934"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1697</int> <int id="y">-121</int> <int id="h">49</int> <int id="z">47</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_cover_clover1_1313427419300"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">-245</int> <int id="y">-157</int> <int id="h">78</int> <int id="z">173</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="alakol_grass_top_1313090991660"> <int id="w">670</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">762</int> <int id="y">-72</int> <int id="h">68</int> <int id="z">155</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="gravel_2_1309801546684"> <bool id="h_flip">true</bool> <int id="w">49</int> <int id="r">-2</int> <str id="sprite_class">gravel_2</str> <int id="x">-2214</int> <int id="y">-138</int> <int id="h">28</int> <int id="z">69</int> <str id="name">gravel_2_1309801546660</str> </object> <object id="groddle_grass_1_1313427419316"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">-1270</int> <int id="y">-169</int> <int id="h">51</int> <int id="z">217</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="transition_dirt_2_1309824035979"> <int id="w">292</int> <str id="sprite_class">transition_dirt_2</str> <int id="x">2073</int> <int id="y">-133</int> <int id="h">36</int> <int id="z">45</int> <str id="name">transition_dirt_2_1309798585341</str> </object> <object id="groddle_fern_1_1313188516007"> <int id="w">162</int> <int id="r">-15</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">1064</int> <int id="y">-174</int> <int id="h">97</int> <int id="z">191</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_grass_2_1313427419263"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">1864</int> <int id="y">-169</int> <int id="h">94</int> <int id="z">208</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="dirt_platform_long_1313013414309"> <int id="w">816</int> <int id="r">-6</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-1476</int> <int id="y">-18</int> <int id="h">78</int> <int id="z">75</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="patch_dirt_2a_1310580389930"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1972</int> <int id="y">-4</int> <int id="h">49</int> <int id="z">85</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="dirt_horizon_1309824035937"> <int id="w">779</int> <int id="r">1</int> <str id="sprite_class">dirt_horizon</str> <int id="x">1200</int> <int id="y">-133</int> <int id="h">70</int> <int id="z">25</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="alakol_grass_top_1310578060327"> <bool id="h_flip">true</bool> <int id="w">292</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">2974</int> <int id="y">-150</int> <int id="h">35</int> <int id="z">54</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="groddle_grass_2_1313427419317"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">-1225</int> <int id="y">-167</int> <int id="h">94</int> <int id="z">215</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="groddle_fern_1_1309801546662"> <int id="w">181</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">-2194</int> <int id="y">-150</int> <int id="h">108</int> <int id="z">67</int> <str id="name">groddle_fern_1_1309801546661</str> </object> <object id="dirt_platform_long_1313016699439"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-1370</int> <int id="y">-86</int> <int id="h">57</int> <int id="z">6</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="dirt_platform_long_1313090991628"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">650</int> <int id="y">-97</int> <int id="h">57</int> <int id="z">3</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="patch_dirt_2a_1313090991677"> <int id="w">371</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-48</int> <int id="y">-44</int> <int id="h">64</int> <int id="z">138</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_fern_1_1313427419302"> <bool id="h_flip">true</bool> <int id="w">157</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">-395</int> <int id="y">-181</int> <int id="h">94</int> <int id="z">174</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="dirt_platform_long_1310578060336"> <int id="w">822</int> <int id="r">-3</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-682</int> <int id="y">-115</int> <int id="h">57</int> <int id="z">17</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="patch_dirt_2a_1313090991669"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">981</int> <int id="y">-130</int> <int id="h">49</int> <int id="z">127</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="patch_dirt_2a_1313016699304"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-413</int> <int id="y">-66</int> <int id="h">49</int> <int id="z">162</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_2_1313016699414"> <int id="w">599</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2759</int> <int id="y">-95</int> <int id="h">100</int> <int id="z">108</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_1313188515982"> <int id="w">493</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">289</int> <int id="y">-172</int> <int id="h">38</int> <int id="z">121</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="groddle_grass_1_1313188516008"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">1136</int> <int id="y">-165</int> <int id="h">51</int> <int id="z">196</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="patch_dirt_2a_1313016699303"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-354</int> <int id="y">-86</int> <int id="h">49</int> <int id="z">163</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_2_1313090991645"> <int id="w">281</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1503</int> <int id="y">-159</int> <int id="h">32</int> <int id="z">131</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_2_1313016699441"> <int id="w">281</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2739</int> <int id="y">-187</int> <int id="h">32</int> <int id="z">99</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_1309798585349"> <int id="w">670</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">2436</int> <int id="y">-139</int> <int id="h">68</int> <int id="z">56</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="trunk_ladder_2_1313431787568"> <int id="w">61</int> <str id="sprite_class">trunk_ladder_2</str> <int id="x">-2391</int> <int id="y">-165</int> <int id="h">70</int> <int id="z">170</int> <str id="name">trunk_ladder_2_1313431787568</str> </object> <object id="dirt_platform_long_1310578060329"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">60</int> <int id="y">-61</int> <int id="h">57</int> <int id="z">10</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="trunk_ladder_2_1313431787569"> <bool id="h_flip">true</bool> <int id="w">61</int> <str id="sprite_class">trunk_ladder_2</str> <int id="x">-2394</int> <int id="y">-241</int> <int id="h">70</int> <int id="z">171</int> <str id="name">trunk_ladder_2_1313431787568</str> </object> <object id="groddle_grass_2_1313188515995"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">-75</int> <int id="y">-187</int> <int id="h">94</int> <int id="z">172</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="groddle_cover_clover2_1313013414304"> <int id="w">119</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-1968</int> <int id="y">-134</int> <int id="h">45</int> <int id="z">89</int> <str id="name">groddle_cover_clover2_1309801546655</str> </object> <object id="alakol_grass_top_2_1313090991635"> <int id="w">291</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1541</int> <int id="y">-56</int> <int id="h">42</int> <int id="z">145</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_1313016699418"> <int id="w">471</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-1750</int> <int id="y">-158</int> <int id="h">40</int> <int id="z">104</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_2_1313090991656"> <int id="w">537</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">828</int> <int id="y">49</int> <int id="h">78</int> <int id="z">157</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_2_1313427419284"> <int id="w">633</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2700</int> <int id="y">-70</int> <int id="h">91</int> <int id="z">113</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="transition_dirt_1_1309798585342"> <int id="w">98</int> <str id="sprite_class">transition_dirt_1</str> <int id="x">2072</int> <int id="y">-96</int> <int id="h">20</int> <int id="z">65</int> <str id="name">transition_dirt_1_1309798585342</str> </object> <object id="dirt_platform_long_1309898715151"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-1009</int> <int id="y">8</int> <int id="h">57</int> <int id="z">73</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_cover_clover2_1313188515994"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-20</int> <int id="y">-166</int> <int id="h">47</int> <int id="z">177</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="bush_2_1313015552910"> <int id="w">195</int> <int id="r">-5</int> <str id="sprite_class">bush_2</str> <int id="x">-1782</int> <int id="y">-126</int> <int id="h">75</int> <int id="z">90</int> <str id="name">bush_2_1313015552910</str> </object> <object id="alakol_grass_top_1313016699417"> <int id="w">670</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-2231</int> <int id="y">-146</int> <int id="h">68</int> <int id="z">106</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="gravel_1_1313106980960"> <int id="w">280</int> <str id="sprite_class">gravel_1</str> <int id="x">-998</int> <int id="y">27</int> <int id="h">51</int> <int id="z">168</int> <str id="name">gravel_1_1313016699544</str> </object> <object id="patch_dirt_2a_1310580389931"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1793</int> <int id="y">-14</int> <int id="h">49</int> <int id="z">86</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="gravel_1_1313188515930"> <int id="w">280</int> <str id="sprite_class">gravel_1</str> <int id="x">-2719</int> <int id="y">1</int> <int id="h">51</int> <int id="z">180</int> <str id="name">gravel_1_1313016699544</str> </object> <object id="alakol_grass_top_2_1313016699416"> <int id="w">553</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2401</int> <int id="y">-64</int> <int id="h">105</int> <int id="z">114</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="dirt_horizon_1309824035924"> <int id="w">779</int> <str id="sprite_class">dirt_horizon</str> <int id="x">1800</int> <int id="y">-114</int> <int id="h">70</int> <int id="z">24</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="groddle_bush4_1309801546652"> <int id="w">226</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush4</str> <int id="x">2649</int> <int id="y">-158</int> <int id="h">108</int> <int id="z">204</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="dirt_platform_long_1313016699444"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-549</int> <int id="y">-61</int> <int id="h">57</int> <int id="z">11</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_cover_clover2_1313106981047"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">-2535</int> <int id="y">-140</int> <int id="h">47</int> <int id="z">178</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="patch_dirt_2a_1310591248932"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-499</int> <int id="y">-8</int> <int id="h">49</int> <int id="z">81</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="patch_dirt_2a_1313016699426"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1874</int> <int id="y">-93</int> <int id="h">49</int> <int id="z">95</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="patch_dirt_2a_1310591248930"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1056</int> <int id="y">-8</int> <int id="h">49</int> <int id="z">76</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_2_1313188515929"> <int id="w">553</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1717</int> <int id="y">61</int> <int id="h">105</int> <int id="z">147</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="patch_dirt_2a_1310580389929"> <bool id="h_flip">true</bool> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">2781</int> <int id="y">6</int> <int id="h">49</int> <int id="z">37</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_2_1313090991664"> <int id="w">410</int> <int id="r">-2</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">284</int> <int id="y">-108</int> <int id="h">35</int> <int id="z">151</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="dirt_platform_long_1309824035931"> <int id="w">856</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">2600</int> <int id="y">11</int> <int id="h">57</int> <int id="z">29</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="alakol_grass_top_2_1313090991652"> <int id="w">553</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">155</int> <int id="y">52</int> <int id="h">105</int> <int id="z">161</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="patch_dirt_2a_1313016699427"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1744</int> <int id="y">-119</int> <int id="h">49</int> <int id="z">94</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_2_1313090991640"> <int id="w">503</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1355</int> <int id="y">4</int> <int id="h">97</int> <int id="z">146</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_1313427419304"> <int id="w">426</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">420</int> <int id="y">-125</int> <int id="h">70</int> <int id="z">123</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_2_1309824036013"> <int id="w">291</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">1655</int> <int id="y">-63</int> <int id="h">42</int> <int id="z">71</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="gravel_2_1309801546685"> <int id="w">23</int> <int id="r">-2</int> <str id="sprite_class">gravel_2</str> <int id="x">-2236</int> <int id="y">-137</int> <int id="h">13</int> <int id="z">70</int> <str id="name">gravel_2_1309801546660</str> </object> <object id="alakol_grass_top_2_1313016699565"> <int id="w">537</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">2956</int> <int id="y">-3</int> <int id="h">78</int> <int id="z">62</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_grass_2_1313188515952"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">-2610</int> <int id="y">-152</int> <int id="h">94</int> <int id="z">119</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="patch_dirt_2a_1313013414310"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1544</int> <int id="y">-28</int> <int id="h">49</int> <int id="z">78</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="dirt_horizon_1309898715148"> <int id="w">779</int> <int id="r">1</int> <str id="sprite_class">dirt_horizon</str> <int id="x">-236</int> <int id="y">-14</int> <int id="h">70</int> <int id="z">21</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="alakol_grass_top_2_1313186252605"> <int id="w">394</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-2156</int> <int id="y">24</int> <int id="h">66</int> <int id="z">117</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="dirt_platform_long_1313016699514"> <int id="w">850</int> <int id="r">-4</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-1068</int> <int id="y">-125</int> <int id="h">58</int> <int id="z">5</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="patch_dirt_2a_1310580389935"> <int id="w">286</int> <int id="r">5</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1542</int> <int id="y">-135</int> <int id="h">49</int> <int id="z">49</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_2_1309798585347"> <int id="w">537</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">2222</int> <int id="y">-40</int> <int id="h">78</int> <int id="z">60</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_1313090991671"> <bool id="h_flip">true</bool> <int id="w">386</int> <int id="r">-4</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-109</int> <int id="y">-157</int> <int id="h">49</int> <int id="z">164</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_2_1313090991646"> <int id="w">209</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1321</int> <int id="y">-130</int> <int id="h">35</int> <int id="z">144</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="dirt_platform_long_1309824035930"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">1751</int> <int id="y">-27</int> <int id="h">57</int> <int id="z">28</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="dirt_platform_long_1313016699429"> <int id="w">850</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-1924</int> <int id="y">-87</int> <int id="h">57</int> <int id="z">92</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_bush1_1309801546651"> <bool id="h_flip">true</bool> <int id="w">194</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush1</str> <int id="x">-2155</int> <int id="y">-161</int> <int id="h">104</int> <int id="z">166</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="dirt_horizon_1313016699301"> <int id="w">779</int> <int id="r">-4</int> <str id="sprite_class">dirt_horizon</str> <int id="x">-813</int> <int id="y">-130</int> <int id="h">70</int> <int id="z">9</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="alakol_grass_top_1313090991666"> <int id="w">471</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">27</int> <int id="y">-109</int> <int id="h">40</int> <int id="z">149</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="transition_dirt_3_1309481037924"> <int id="w">235</int> <str id="sprite_class">transition_dirt_3</str> <int id="x">-2219</int> <int id="y">-128</int> <int id="h">36</int> <int id="z">18</int> <str id="name">transition_dirt_3_1309481037924</str> </object> <object id="alakol_grass_top_2_1313090991654"> <int id="w">209</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">129</int> <int id="y">-91</int> <int id="h">35</int> <int id="z">160</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_1313090991673"> <int id="w">471</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-636</int> <int id="y">-176</int> <int id="h">40</int> <int id="z">130</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_2_1313188516013"> <int id="w">543</int> <int id="r">5</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">998</int> <int id="y">-7</int> <int id="h">88</int> <int id="z">158</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="patch_dirt_2a_1313090991670"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">733</int> <int id="y">-136</int> <int id="h">49</int> <int id="z">128</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_1313090991672"> <int id="w">544</int> <int id="r">-1</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-254</int> <int id="y">-177</int> <int id="h">25</int> <int id="z">129</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_1313090991661"> <int id="w">670</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">720</int> <int id="y">-90</int> <int id="h">68</int> <int id="z">154</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="dirt_platform_long_1309824035929"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">1800</int> <int id="y">-74</int> <int id="h">57</int> <int id="z">27</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="tree_coniferous_2_1313016699548"> <int id="w">662</int> <str id="sprite_class">tree_coniferous_2</str> <int id="x">1155</int> <int id="y">-155</int> <int id="h">1183</int> <int id="z">125</int> <str id="name">tree_coniferous_2_1313016699548</str> </object> <object id="groddle_cover_clover1_1313106981025"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">-245</int> <int id="y">-157</int> <int id="h">78</int> <int id="z">173</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="alakol_grass_top_2_1313090991650"> <int id="w">209</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-1005</int> <int id="y">-97</int> <int id="h">35</int> <int id="z">139</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_fern_1_1313188515951"> <bool id="h_flip">true</bool> <int id="w">169</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">-2564</int> <int id="y">-156</int> <int id="h">101</int> <int id="z">120</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="dirt_platform_long_1309824035946"> <int id="w">822</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">678</int> <int id="y">6</int> <int id="h">57</int> <int id="z">40</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="alakol_grass_top_2_1313090991638"> <int id="w">537</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">-716</int> <int id="y">-15</int> <int id="h">78</int> <int id="z">141</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="alakol_grass_top_1313090991648"> <int id="w">670</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-773</int> <int id="y">-120</int> <int id="h">68</int> <int id="z">136</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="dirt_platform_long_1309898715158"> <int id="w">816</int> <int id="r">4</int> <str id="sprite_class">dirt_platform_long</str> <int id="x">-928</int> <int id="y">-14</int> <int id="h">78</int> <int id="z">74</int> <str id="name">dirt_platform_long_1309824035928</str> </object> <object id="groddle_cover_clover2_1313106981024"> <int id="w">126</int> <int id="r">-2</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">571</int> <int id="y">-185</int> <int id="h">47</int> <int id="z">185</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="patch_dirt_2a_1310591248931"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">-1201</int> <int id="y">-82</int> <int id="h">49</int> <int id="z">77</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="transition_dirt_3_1309798585340"> <int id="w">235</int> <str id="sprite_class">transition_dirt_3</str> <int id="x">2196</int> <int id="y">-97</int> <int id="h">36</int> <int id="z">64</int> <str id="name">transition_dirt_3_1309798585340</str> </object> <object id="transition_dirt_1_1309824036012"> <int id="w">98</int> <str id="sprite_class">transition_dirt_1</str> <int id="x">2492</int> <int id="y">-65</int> <int id="h">20</int> <int id="z">58</int> <str id="name">transition_dirt_1_1309798585342</str> </object> <object id="patch_dirt_2a_1310580389932"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1840</int> <int id="y">15</int> <int id="h">49</int> <int id="z">87</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="groddle_fern_1_1313188515944"> <bool id="h_flip">true</bool> <int id="w">157</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">-395</int> <int id="y">-181</int> <int id="h">94</int> <int id="z">174</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="dirt_horizon_1313188515981"> <int id="w">779</int> <int id="r">-1</int> <str id="sprite_class">dirt_horizon</str> <int id="x">616</int> <int id="y">-140</int> <int id="h">70</int> <int id="z">26</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="dirt_horizon_1309898715156"> <int id="w">779</int> <int id="r">8</int> <str id="sprite_class">dirt_horizon</str> <int id="x">-931</int> <int id="y">-64</int> <int id="h">70</int> <int id="z">20</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="patch_dirt_2a_1310591248929"> <int id="w">286</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">64</int> <int id="y">-123</int> <int id="h">49</int> <int id="z">15</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="alakol_grass_top_1313090991641"> <int id="w">683</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">-801</int> <int id="y">-130</int> <int id="h">78</int> <int id="z">134</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="transition_dirt_1_1309824035984"> <int id="w">98</int> <str id="sprite_class">transition_dirt_1</str> <int id="x">1792</int> <int id="y">-62</int> <int id="h">20</int> <int id="z">66</int> <str id="name">transition_dirt_1_1309798585342</str> </object> <object id="groddle_cover_clover1_1313188515940"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">-2705</int> <int id="y">-108</int> <int id="h">78</int> <int id="z">179</int> <str id="name">groddle_cover_clover1_1313188515940</str> </object> <object id="gravel_2_1313188515999"> <int id="w">36</int> <int id="r">-10</int> <str id="sprite_class">gravel_2</str> <int id="x">664</int> <int id="y">-194</int> <int id="h">20</int> <int id="z">188</int> <str id="name">gravel_2_1309801546660</str> </object> <object id="transition_dirt_1_1309898715168"> <int id="w">98</int> <str id="sprite_class">transition_dirt_1</str> <int id="x">-194</int> <int id="y">-61</int> <int id="h">20</int> <int id="z">22</int> <str id="name">transition_dirt_1_1309798585342</str> </object> <object id="alakol_grass_top_2_1313090991653"> <int id="w">209</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">309</int> <int id="y">-124</int> <int id="h">35</int> <int id="z">148</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> </object> <object id="boxes"> </object> <str id="name">middleground</str> <object id="doors"> </object> <object id="platform_lines"> <object id="plat_1313431787582"> <object id="end"> <int id="y">-452</int> <int id="x">-2113</int> </object> <object id="start"> <int id="y">-526</int> <int id="x">-2237</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787578"> <object id="end"> <int id="y">-593</int> <int id="x">-2336</int> </object> <object id="start"> <int id="y">-597</int> <int id="x">-2477</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419327"> <object id="end"> <int id="y">-77</int> <int id="x">1528</int> </object> <object id="start"> <int id="y">-65</int> <int id="x">1407</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787564"> <object id="end"> <int id="y">-117</int> <int id="x">-2441</int> </object> <object id="start"> <int id="y">-128</int> <int id="x">-2494</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419328"> <object id="end"> <int id="y">-65</int> <int id="x">1407</int> </object> <object id="start"> <int id="y">-94</int> <int id="x">1094</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419346"> <object id="end"> <int id="y">-132</int> <int id="x">-1635</int> </object> <object id="start"> <int id="y">-111</int> <int id="x">-1922</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419321"> <object id="end"> <int id="y">-99</int> <int id="x">2419</int> </object> <object id="start"> <int id="y">-79</int> <int id="x">2138</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419322"> <object id="end"> <int id="y">-79</int> <int id="x">2138</int> </object> <object id="start"> <int id="y">-82</int> <int id="x">1975</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419341"> <object id="end"> <int id="y">-119</int> <int id="x">-1215</int> </object> <object id="start"> <int id="y">-111</int> <int id="x">-1308</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787586"> <object id="end"> <int id="y">-769</int> <int id="x">-2349</int> </object> <object id="start"> <int id="y">-763</int> <int id="x">-2421</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419345"> <object id="end"> <int id="y">-123</int> <int id="x">-1580</int> </object> <object id="start"> <int id="y">-132</int> <int id="x">-1635</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787583"> <object id="end"> <int id="y">-703</int> <int id="x">-2524</int> </object> <object id="start"> <int id="y">-676</int> <int id="x">-2564</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419340"> <object id="end"> <int id="y">-114</int> <int id="x">-1150</int> </object> <object id="start"> <int id="y">-119</int> <int id="x">-1215</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419337"> <object id="end"> <int id="y">-127</int> <int id="x">-932</int> </object> <object id="start"> <int id="y">-113</int> <int id="x">-1106</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787587"> <object id="end"> <int id="y">-731</int> <int id="x">-2287</int> </object> <object id="start"> <int id="y">-769</int> <int id="x">-2349</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419320"> <object id="end"> <int id="y">-103</int> <int id="x">2996</int> </object> <object id="start"> <int id="y">-99</int> <int id="x">2419</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419335"> <object id="end"> <int id="y">-104</int> <int id="x">-494</int> </object> <object id="start"> <int id="y">-115</int> <int id="x">-902</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419323"> <object id="end"> <int id="y">-82</int> <int id="x">1975</int> </object> <object id="start"> <int id="y">-76</int> <int id="x">1955</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787585"> <object id="end"> <int id="y">-763</int> <int id="x">-2421</int> </object> <object id="start"> <int id="y">-729</int> <int id="x">-2469</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787566"> <object id="end"> <int id="y">-116</int> <int id="x">-2598</int> </object> <object id="start"> <int id="y">-99</int> <int id="x">-2717</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787588"> <object id="end"> <int id="y">-637</int> <int id="x">-2224</int> </object> <object id="start"> <int id="y">-731</int> <int id="x">-2287</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787584"> <object id="end"> <int id="y">-729</int> <int id="x">-2469</int> </object> <object id="start"> <int id="y">-703</int> <int id="x">-2524</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419347"> <object id="end"> <int id="y">-113</int> <int id="x">-1907</int> </object> <object id="start"> <int id="y">-126</int> <int id="x">-2382</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419324"> <object id="end"> <int id="y">-76</int> <int id="x">1955</int> </object> <object id="start"> <int id="y">-83</int> <int id="x">1792</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419331"> <object id="end"> <int id="y">-111</int> <int id="x">717</int> </object> <object id="start"> <int id="y">-131</int> <int id="x">55</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419334"> <object id="end"> <int id="y">-121</int> <int id="x">-209</int> </object> <object id="start"> <int id="y">-104</int> <int id="x">-494</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787565"> <object id="end"> <int id="y">-128</int> <int id="x">-2494</int> </object> <object id="start"> <int id="y">-116</int> <int id="x">-2598</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787567"> <object id="end"> <int id="y">-99</int> <int id="x">-2717</int> </object> <object id="start"> <int id="y">-123</int> <int id="x">-2999</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787574"> <object id="end"> <int id="y">-556</int> <int id="x">-2584</int> </object> <object id="start"> <int id="y">-550</int> <int id="x">-2625</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787577"> <object id="end"> <int id="y">-597</int> <int id="x">-2477</int> </object> <object id="start"> <int id="y">-556</int> <int id="x">-2584</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419325"> <object id="end"> <int id="y">-83</int> <int id="x">1792</int> </object> <object id="start"> <int id="y">-90</int> <int id="x">1625</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419332"> <object id="end"> <int id="y">-131</int> <int id="x">55</int> </object> <object id="start"> <int id="y">-130</int> <int id="x">-192</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419338"> <object id="end"> <int id="y">-113</int> <int id="x">-1106</int> </object> <object id="start"> <int id="y">-114</int> <int id="x">-1150</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419333"> <object id="end"> <int id="y">-130</int> <int id="x">-192</int> </object> <object id="start"> <int id="y">-121</int> <int id="x">-209</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419342"> <object id="end"> <int id="y">-111</int> <int id="x">-1308</int> </object> <object id="start"> <int id="y">-123</int> <int id="x">-1580</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419326"> <object id="end"> <int id="y">-90</int> <int id="x">1625</int> </object> <object id="start"> <int id="y">-77</int> <int id="x">1528</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419330"> <object id="end"> <int id="y">-103</int> <int id="x">1073</int> </object> <object id="start"> <int id="y">-111</int> <int id="x">717</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787563"> <object id="end"> <int id="y">-126</int> <int id="x">-2382</int> </object> <object id="start"> <int id="y">-117</int> <int id="x">-2441</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787581"> <object id="end"> <int id="y">-526</int> <int id="x">-2237</int> </object> <object id="start"> <int id="y">-561</int> <int id="x">-2271</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419329"> <object id="end"> <int id="y">-94</int> <int id="x">1094</int> </object> <object id="start"> <int id="y">-103</int> <int id="x">1073</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313427419336"> <object id="end"> <int id="y">-115</int> <int id="x">-902</int> </object> <object id="start"> <int id="y">-127</int> <int id="x">-932</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> <object id="plat_1313431787580"> <object id="end"> <int id="y">-561</int> <int id="x">-2271</int> </object> <object id="start"> <int id="y">-593</int> <int id="x">-2336</int> </object> <int id="platform_pc_perm">-1</int> <int id="platform_item_perm">-1</int> </object> </object> <object id="ladders"> <object id="ladder_1313431787573"> <int id="y">-151</int> <int id="w">50</int> <int id="h">450</int> <int id="x">-2384</int> </object> </object> <int id="w">6000</int> <int id="z">0</int> <object id="walls"> </object> <object id="signposts"> <object id="signpost_1"> <int id="y">-113</int> <int id="h">200</int> <int id="w">100</int> <object id="connects"> <object id="0"> <int id="x">-1645</int> <int id="y">-135</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1334365832.swf</str> <str id="hub_id">98</str> <str id="mote_id">9</str> <objref id="target" tsid="LA912PJ5D492UIL" label="Alikos Alder"/> </object> <object id="1"> <int id="x">2663</int> <int id="y">-347</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1334365832.swf</str> <str id="hub_id">98</str> <str id="mote_id">9</str> <objref id="target" tsid="LA9118S28492QCL" label="Pental Leave"/> </object> </object> <int id="x">2829</int> </object> <object id="signpost_2"> <int id="y">-118</int> <int id="h">200</int> <int id="w">100</int> <str id="id">signpost_2</str> <int id="x">-2789</int> <object id="connects"> <object id="0"> <int id="x">-2655</int> <int id="y">-130</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1334365832.swf</str> <str id="hub_id">98</str> <str id="mote_id">9</str> <objref id="target" tsid="LA9S9DGPV692IU2" label="Maroni Aloe"/> </object> <object id="1"> <int id="x">2618</int> <int id="y">-77</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1334365832.swf</str> <str id="hub_id">98</str> <str id="mote_id">9</str> <objref id="target" tsid="LA9117J18492SRS" label="Krios Palm"/> </object> </object> </object> <object id="signpost_3"> <int id="y">-148</int> <int id="h">200</int> <int id="w">100</int> <str id="id">signpost_3</str> <int id="x">-125</int> <object id="connects"> <object id="0"> <int id="x">-2730</int> <bool id="hidden">false</bool> <int id="y">-242</int> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1334365832.swf</str> <str id="hub_id">98</str> <str id="mote_id">9</str> <objref id="target" tsid="LHVCJB2OMDT2VD8" label="Ebijab Preserve"/> </object> </object> </object> </object> </object> <object id="T_1309388549233"> <object id="decos"> <object id="alakol_grass_top_1313186252600"> <int id="w">688</int> <int id="r">-2</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">727</int> <int id="y">862</int> <int id="h">74</int> <int id="z">14</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="groddle_bush1_1310580389981"> <int id="w">132</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2459</int> <int id="y">800</int> <int id="h">78</int> <int id="z">32</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="alakol_grass_top_1313186252599"> <int id="w">688</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">312</int> <int id="y">872</int> <int id="h">74</int> <int id="z">13</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="tree_coniferous_fg_3_1313427419236"> <int id="w">451</int> <str id="sprite_class">tree_coniferous_fg_3</str> <int id="x">4905</int> <int id="y">876</int> <int id="h">1027</int> <int id="z">62</int> <str id="name">tree_coniferous_fg_3_1313427419236</str> </object> <object id="groddle_bush1_1313188515936"> <bool id="h_flip">true</bool> <int id="w">132</int> <int id="r">5</int> <str id="sprite_class">groddle_bush1</str> <int id="x">1862</int> <int id="y">819</int> <int id="h">78</int> <int id="z">59</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="alakol_grass_top_1313186252598"> <int id="w">688</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">590</int> <int id="y">831</int> <int id="h">74</int> <int id="z">12</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="groddle_cover_clover2_1313427419244"> <int id="w">85</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">1544</int> <int id="y">810</int> <int id="h">32</int> <int id="z">69</int> <str id="name">groddle_cover_clover2_1309801546655</str> </object> <object id="patch_dirt_2a_1310591248933"> <int id="w">189</int> <str id="sprite_class">patch_dirt_2a</str> <int id="x">1953</int> <int id="y">837</int> <int id="h">32</int> <int id="z">15</int> <str id="name">patch_dirt_2a_1310580389923</str> </object> <object id="bush_3_1309801546617"> <int id="w">329</int> <int id="r">3</int> <str id="sprite_class">bush_3</str> <int id="x">5058</int> <int id="y">824</int> <int id="h">117</int> <int id="z">25</int> <str id="name">bush_3_1309801546613</str> </object> <object id="groddle_bush1_1310407512499"> <bool id="h_flip">true</bool> <int id="w">132</int> <str id="sprite_class">groddle_bush1</str> <int id="x">347</int> <int id="y">792</int> <int id="h">78</int> <int id="z">48</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="tree_coniferous_fg_4_1313427419283"> <bool id="h_flip">true</bool> <int id="w">466</int> <str id="sprite_class">tree_coniferous_fg_4</str> <int id="x">156</int> <int id="y">798</int> <int id="h">929</int> <int id="z">56</int> <str id="name">tree_coniferous_fg_4_1313427419283</str> </object> <object id="bush_2_1310591248913"> <bool id="h_flip">true</bool> <int id="w">244</int> <int id="r">5</int> <str id="sprite_class">bush_2</str> <int id="x">1005</int> <int id="y">814</int> <int id="h">93</int> <int id="z">52</int> <str id="name">bush_2_1309801546615</str> </object> <object id="groddle_plant_1_1309801546656"> <int id="w">74</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">1602</int> <int id="y">788</int> <int id="h">78</int> <int id="z">28</int> <str id="name">groddle_plant_1_1309481037938</str> </object> <object id="dirt_horizon_1309824035969"> <int id="w">637</int> <int id="r">1</int> <str id="sprite_class">dirt_horizon</str> <int id="x">3790</int> <int id="y">802</int> <int id="h">38</int> <int id="z">1</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="groddle_cover_clover2_1309801546655"> <int id="w">85</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">1676</int> <int id="y">811</int> <int id="h">32</int> <int id="z">37</int> <str id="name">groddle_cover_clover2_1309801546655</str> </object> <object id="tree_coniferous_1_1313427419239"> <int id="w">380</int> <str id="sprite_class">tree_coniferous_1</str> <int id="x">5290</int> <int id="y">836</int> <int id="h">928</int> <int id="z">0</int> <str id="name">tree_coniferous_1_1313106980974</str> </object> <object id="groddle_cover_clover2_1309904267606"> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3943</int> <int id="y">806</int> <int id="h">33</int> <int id="z">67</int> <str id="name">groddle_cover_clover2_1309801546655</str> </object> <object id="alakol_grass_top_1313186252597"> <int id="w">688</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">104</int> <int id="y">836</int> <int id="h">74</int> <int id="z">11</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_1313090991632"> <int id="w">471</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">2284</int> <int id="y">812</int> <int id="h">40</int> <int id="z">4</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="groddle_bush1_1313427419246"> <int id="w">147</int> <int id="r">4</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2751</int> <int id="y">795</int> <int id="h">76</int> <int id="z">31</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="dirt_horizon_1309904267500"> <int id="w">592</int> <str id="sprite_class">dirt_horizon</str> <int id="x">2010</int> <int id="y">860</int> <int id="h">66</int> <int id="z">8</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="dirt_horizon_1313188515993"> <int id="w">592</int> <str id="sprite_class">dirt_horizon</str> <int id="x">2510</int> <int id="y">853</int> <int id="h">66</int> <int id="z">9</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="groddle_bush1_1309801546651"> <int id="w">160</int> <int id="r">5</int> <str id="sprite_class">groddle_bush1</str> <int id="x">1452</int> <int id="y">811</int> <int id="h">80</int> <int id="z">35</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="bush_3_1309912529072"> <int id="w">284</int> <str id="sprite_class">bush_3</str> <int id="x">4461</int> <int id="y">847</int> <int id="h">101</int> <int id="z">44</int> <str id="name">bush_3_1309801546613</str> </object> <object id="bush_3_1313106981081"> <int id="w">273</int> <str id="sprite_class">bush_3</str> <int id="x">2590</int> <int id="y">814</int> <int id="h">97</int> <int id="z">57</int> <str id="name">bush_3_1313106981081</str> </object> <object id="groddle_grass_1_1310591248926"> <int id="w">45</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2241</int> <int id="y">805</int> <int id="h">30</int> <int id="z">70</int> <str id="name">groddle_grass_1_1309481037936</str> </object> <object id="groddle_bush1_1309904267605"> <int id="w">145</int> <str id="sprite_class">groddle_bush1</str> <int id="x">4582</int> <int id="y">837</int> <int id="h">85</int> <int id="z">47</int> <str id="name">groddle_bush1_1309801546618</str> </object> <object id="alakol_grass_top_2_1309798585388"> <int id="w">521</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">4995</int> <int id="y">834</int> <int id="h">73</int> <int id="z">22</int> <str id="name">alakol_grass_top_2_1309798585332</str> </object> <object id="groddle_grass_1_1313427419245"> <int id="w">45</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2119</int> <int id="y">797</int> <int id="h">30</int> <int id="z">71</int> <str id="name">groddle_grass_1_1309481037936</str> </object> <object id="bush_2_1309801546623"> <int id="w">327</int> <int id="r">-5</int> <str id="sprite_class">bush_2</str> <int id="x">4774</int> <int id="y">845</int> <int id="h">124</int> <int id="z">50</int> <str id="name">bush_2_1309801546615</str> </object> <object id="tree_coniferous_fg_2_1313427419240"> <int id="w">395</int> <int id="r">-4</int> <str id="sprite_class">tree_coniferous_fg_2</str> <int id="x">4262</int> <int id="y">891</int> <int id="h">852</int> <int id="z">65</int> <str id="name">tree_coniferous_fg_2_1313427419240</str> </object> <object id="groddle_bush1_1309801546668"> <int id="w">132</int> <int id="r">4</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2361</int> <int id="y">800</int> <int id="h">67</int> <int id="z">30</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="dirt_horizon_1313016699517"> <int id="w">637</int> <int id="r">1</int> <str id="sprite_class">dirt_horizon</str> <int id="x">3943</int> <int id="y">812</int> <int id="h">38</int> <int id="z">18</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="dirt_horizon_1313090991633"> <int id="w">637</int> <int id="r">-4</int> <str id="sprite_class">dirt_horizon</str> <int id="x">3254</int> <int id="y">803</int> <int id="h">38</int> <int id="z">2</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="bush_3_1313188515984"> <int id="w">284</int> <int id="r">-1</int> <str id="sprite_class">bush_3</str> <int id="x">3391</int> <int id="y">803</int> <int id="h">101</int> <int id="z">7</int> <str id="name">bush_3_1309801546613</str> </object> <object id="groddle_fern_1_1313427419238"> <int id="w">139</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">5409</int> <int id="y">806</int> <int id="h">83</int> <int id="z">63</int> <str id="name">groddle_fern_1_1309801546619</str> </object> <object id="alakol_grass_top_1313090991634"> <int id="w">471</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">1894</int> <int id="y">823</int> <int id="h">40</int> <int id="z">5</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="dirt_horizon_1309824035943"> <int id="w">592</int> <int id="r">3</int> <str id="sprite_class">dirt_horizon</str> <int id="x">4055</int> <int id="y">846</int> <int id="h">53</int> <int id="z">20</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="pinecluster_mask_1_1310591248912"> <bool id="h_flip">true</bool> <int id="w">404</int> <int id="r">3</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">638</int> <int id="y">801</int> <int id="h">157</int> <int id="z">21</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="tree_coniferous_3_1313188515932"> <int id="w">510</int> <str id="sprite_class">tree_coniferous_3</str> <int id="x">1694</int> <int id="y">835</int> <int id="h">864</int> <int id="z">60</int> <str id="name">tree_coniferous_3_1313106980966</str> </object> <object id="groddle_cover_clover2_1313427419242"> <int id="w">86</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3886</int> <int id="y">802</int> <int id="h">33</int> <int id="z">66</int> <str id="name">groddle_cover_clover2_1309801546655</str> </object> <object id="dirt_horizon_1313188515980"> <int id="w">637</int> <int id="r">-4</int> <str id="sprite_class">dirt_horizon</str> <int id="x">3380</int> <int id="y">823</int> <int id="h">38</int> <int id="z">3</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="pinecluster_mask_1_1313427419241"> <int id="w">404</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">4140</int> <int id="y">818</int> <int id="h">157</int> <int id="z">45</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="groddle_plant_1_1309481037938"> <int id="w">99</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">1925</int> <int id="y">817</int> <int id="h">105</int> <int id="z">33</int> <str id="name">groddle_plant_1_1309481037938</str> </object> <object id="groddle_bush1_1310407512500"> <bool id="h_flip">true</bool> <int id="w">107</int> <str id="sprite_class">groddle_bush1</str> <int id="x">445</int> <int id="y">790</int> <int id="h">53</int> <int id="z">49</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="bush_2_1313106981082"> <int id="w">229</int> <str id="sprite_class">bush_2</str> <int id="x">2844</int> <int id="y">819</int> <int id="h">89</int> <int id="z">58</int> <str id="name">bush_2_1313106981082</str> </object> <object id="bush_3_1309904267603"> <int id="w">284</int> <str id="sprite_class">bush_3</str> <int id="x">3184</int> <int id="y">822</int> <int id="h">101</int> <int id="z">42</int> <str id="name">bush_3_1309801546613</str> </object> <object id="gravel_2_1309481037937"> <bool id="h_flip">true</bool> <int id="w">39</int> <str id="sprite_class">gravel_2</str> <int id="x">1931</int> <int id="y">820</int> <int id="h">22</int> <int id="z">34</int> <str id="name">gravel_2_1309481037937</str> </object> <object id="groddle_bush4_1309801546654"> <int id="w">150</int> <int id="r">2</int> <str id="sprite_class">groddle_bush4</str> <int id="x">1585</int> <int id="y">799</int> <int id="h">56</int> <int id="z">36</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="bush_3_1313186252608"> <int id="w">247</int> <str id="sprite_class">bush_3</str> <int id="x">1178</int> <int id="y">827</int> <int id="h">87</int> <int id="z">53</int> <str id="name">bush_3_1313106980983</str> </object> <object id="alakol_grass_top_1309798585386"> <int id="w">600</int> <int id="r">3</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">5405</int> <int id="y">846</int> <int id="h">67</int> <int id="z">23</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="alakol_grass_top_1309801546605"> <int id="w">600</int> <int id="r">1</int> <str id="sprite_class">alakol_grass_top</str> <int id="x">5242</int> <int id="y">854</int> <int id="h">67</int> <int id="z">24</int> <str id="name">alakol_grass_top_1309798585335</str> </object> <object id="groddle_bush4_1310407512502"> <bool id="h_flip">true</bool> <int id="w">142</int> <int id="r">-7</int> <str id="sprite_class">groddle_bush4</str> <int id="x">247</int> <int id="y">792</int> <int id="h">68</int> <int id="z">68</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="bush_3_1313106980983"> <int id="w">280</int> <str id="sprite_class">bush_3</str> <int id="x">1342</int> <int id="y">861</int> <int id="h">98</int> <int id="z">54</int> <str id="name">bush_3_1313106980983</str> </object> <object id="tree_coniferous_fg_1_1313188515983"> <bool id="h_flip">true</bool> <int id="w">422</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="x">3320</int> <int id="y">829</int> <int id="h">937</int> <int id="z">61</int> <str id="name">tree_coniferous_fg_1_1313106980971</str> </object> <object id="dirt_horizon_1309904267501"> <int id="w">592</int> <str id="sprite_class">dirt_horizon</str> <int id="x">2724</int> <int id="y">813</int> <int id="h">53</int> <int id="z">16</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="groddle_bush4_1309801546658"> <int id="w">142</int> <str id="sprite_class">groddle_bush4</str> <int id="x">165</int> <int id="y">779</int> <int id="h">68</int> <int id="z">38</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="pinecluster_mask_1_1310580389982"> <bool id="h_flip">true</bool> <int id="w">404</int> <int id="r">3</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">2072</int> <int id="y">814</int> <int id="h">157</int> <int id="z">17</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="dirt_horizon_1313186252595"> <int id="w">931</int> <str id="sprite_class">dirt_horizon</str> <int id="x">1323</int> <int id="y">847</int> <int id="h">71</int> <int id="z">10</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="gravel_2_1309801546660"> <int id="w">30</int> <int id="r">-10</int> <str id="sprite_class">gravel_2</str> <int id="x">14</int> <int id="y">775</int> <int id="h">17</int> <int id="z">40</int> <str id="name">gravel_2_1309801546660</str> </object> <object id="groddle_bush4_1309801546653"> <bool id="h_flip">true</bool> <int id="w">142</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush4</str> <int id="x">1769</int> <int id="y">805</int> <int id="h">68</int> <int id="z">29</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="dirt_horizon_1309824035942"> <int id="w">715</int> <int id="r">-2</int> <str id="sprite_class">dirt_horizon</str> <int id="x">4527</int> <int id="y">892</int> <int id="h">72</int> <int id="z">19</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="groddle_bush1_1309801546618"> <int id="w">145</int> <str id="sprite_class">groddle_bush1</str> <int id="x">5468</int> <int id="y">820</int> <int id="h">85</int> <int id="z">64</int> <str id="name">groddle_bush1_1309801546618</str> </object> <object id="bush_3_1310591248910"> <int id="w">280</int> <str id="sprite_class">bush_3</str> <int id="x">812</int> <int id="y">808</int> <int id="h">100</int> <int id="z">51</int> <str id="name">bush_3_1309801546613</str> </object> <object id="groddle_bush1_1313427419237"> <int id="w">145</int> <str id="sprite_class">groddle_bush1</str> <int id="x">5468</int> <int id="y">820</int> <int id="h">85</int> <int id="z">64</int> <str id="name">groddle_bush1_1309801546618</str> </object> <object id="bush_3_1309904267604"> <int id="w">284</int> <int id="r">-1</int> <str id="sprite_class">bush_3</str> <int id="x">3857</int> <int id="y">802</int> <int id="h">101</int> <int id="z">41</int> <str id="name">bush_3_1309801546613</str> </object> <object id="groddle_grass_1_1309481037936"> <int id="w">45</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2119</int> <int id="y">797</int> <int id="h">30</int> <int id="z">71</int> <str id="name">groddle_grass_1_1309481037936</str> </object> <object id="bush_3_1309904267602"> <int id="w">284</int> <str id="sprite_class">bush_3</str> <int id="x">2996</int> <int id="y">820</int> <int id="h">101</int> <int id="z">43</int> <str id="name">bush_3_1309801546613</str> </object> <object id="groddle_bush4_1309801546652"> <bool id="h_flip">true</bool> <int id="w">142</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush4</str> <int id="x">1769</int> <int id="y">805</int> <int id="h">68</int> <int id="z">29</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="groddle_bush1_1309801546657"> <bool id="h_flip">true</bool> <int id="w">132</int> <str id="sprite_class">groddle_bush1</str> <int id="x">52</int> <int id="y">776</int> <int id="h">78</int> <int id="z">39</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="pinecluster_mask_1_1310580389942"> <int id="w">404</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">3666</int> <int id="y">800</int> <int id="h">157</int> <int id="z">6</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="bush_3_1309912529073"> <int id="w">284</int> <str id="sprite_class">bush_3</str> <int id="x">4340</int> <int id="y">864</int> <int id="h">101</int> <int id="z">46</int> <str id="name">bush_3_1309801546613</str> </object> <object id="heights_bush_4_1309481037930"> <int id="w">583</int> <int id="r">3</int> <str id="sprite_class">heights_bush_4</str> <int id="x">1566</int> <int id="y">793</int> <int id="h">65</int> <int id="z">27</int> <str id="name">heights_bush_4_1309481037929</str> </object> <object id="groddle_fern_1_1309801546619"> <int id="w">139</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">5216</int> <int id="y">807</int> <int id="h">83</int> <int id="z">26</int> <str id="name">groddle_fern_1_1309801546619</str> </object> </object> <int id="w">5520</int> <int id="h">990</int> <int id="z">-1</int> <str id="name">bg_1</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-25</int> </object> <object id="contrast"> <int id="value">-25</int> </object> <object id="saturation"> <int id="value">-15</int> </object> </object> </object> <object id="T_1310580390004"> <object id="decos"> <object id="mountain_trees_darker_1_1313016699487"> <int id="w">965</int> <int id="r">-2</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="x">1593</int> <int id="y">765</int> <int id="h">294</int> <int id="z">6</int> <str id="name">mountain_trees_darker_1_1310580389989</str> </object> <object id="mountain_blue_1_1313427419219"> <int id="w">1149</int> <str id="sprite_class">mountain_blue_1</str> <int id="x">927</int> <int id="y">597</int> <int id="h">311</int> <int id="z">4</int> <str id="name">mountain_blue_1_1310580389992</str> </object> <object id="mountain_trees_darker_1_1313427419218"> <int id="w">1049</int> <int id="r">-1</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="x">1053</int> <int id="y">818</int> <int id="h">394</int> <int id="z">5</int> <str id="name">mountain_trees_darker_1_1310580389989</str> </object> <object id="mountain_trees_darker_1_1313016699362"> <int id="w">1145</int> <int id="r">-3</int> <str id="sprite_class">mountain_trees_darker_1</str> <int id="x">2023</int> <int id="y">759</int> <int id="h">372</int> <int id="z">2</int> <str id="name">mountain_trees_darker_1_1310580389989</str> </object> <object id="mountain_blue_1_1313427419305"> <int id="w">947</int> <str id="sprite_class">mountain_blue_1</str> <int id="x">2497</int> <int id="y">621</int> <int id="h">365</int> <int id="z">1</int> <str id="name">mountain_blue_1_1310580389992</str> </object> <object id="mountain_blue_1_1313016699488"> <int id="w">1008</int> <str id="sprite_class">mountain_blue_1</str> <int id="x">1376</int> <int id="y">599</int> <int id="h">232</int> <int id="z">3</int> <str id="name">mountain_blue_1_1310580389992</str> </object> <object id="mountain_blue_1_1313016699363"> <int id="w">896</int> <str id="sprite_class">mountain_blue_1</str> <int id="x">1765</int> <int id="y">519</int> <int id="h">225</int> <int id="z">0</int> <str id="name">mountain_blue_1_1310580389992</str> </object> </object> <int id="w">4320</int> <int id="h">940</int> <int id="z">-4</int> <str id="name">mtn</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-20</int> </object> <object id="contrast"> <int id="value">-35</int> </object> <object id="saturation"> <int id="value">-6</int> </object> </object> </object> <object id="T_1309388549288"> <object id="decos"> <object id="bush_3_1313427419291"> <int id="w">431</int> <str id="sprite_class">bush_3</str> <int id="x">3362</int> <int id="y">998</int> <int id="h">152</int> <int id="z">20</int> <str id="name">bush_3_1313106981022</str> </object> <object id="groddle_cover_clover2_1313427419270"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">5299</int> <int id="y">980</int> <int id="h">47</int> <int id="z">2</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="groddle_grass_2_1313427419278"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2436</int> <int id="y">991</int> <int id="h">94</int> <int id="z">14</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="groddle_bush1_1313427419282"> <bool id="h_flip">true</bool> <int id="w">168</int> <int id="r">1</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2874</int> <int id="y">983</int> <int id="h">99</int> <int id="z">0</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="bush_2_1313427419249"> <bool id="h_flip">true</bool> <int id="w">528</int> <int id="r">-3</int> <str id="sprite_class">bush_2</str> <int id="x">5812</int> <int id="y">1083</int> <int id="h">177</int> <int id="z">8</int> <str id="name">bush_2_1309801546615</str> </object> <object id="groddle_bush1_1313427419293"> <int id="w">222</int> <int id="r">5</int> <str id="sprite_class">groddle_bush1</str> <int id="x">3189</int> <int id="y">972</int> <int id="h">131</int> <int id="z">18</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="groddle_fern_1_1313427419309"> <bool id="h_flip">true</bool> <int id="w">169</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">979</int> <int id="y">998</int> <int id="h">101</int> <int id="z">33</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_bush4_1313427419308"> <bool id="h_flip">true</bool> <int id="w">200</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush4</str> <int id="x">928</int> <int id="y">998</int> <int id="h">96</int> <int id="z">32</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="groddle_grass_2_1313188515952"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4168</int> <int id="y">982</int> <int id="h">94</int> <int id="z">26</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="groddle_bush1_1313427419274"> <int id="w">222</int> <int id="r">5</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2736</int> <int id="y">1019</int> <int id="h">131</int> <int id="z">1</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="groddle_cover_clover1_1313106981025"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">4071</int> <int id="y">984</int> <int id="h">78</int> <int id="z">24</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="groddle_grass_1_1313427419297"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">3939</int> <int id="y">959</int> <int id="h">51</int> <int id="z">25</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_fern_1_1313427419298"> <int id="w">162</int> <int id="r">5</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">4324</int> <int id="y">1013</int> <int id="h">97</int> <int id="z">28</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_plant_1_1309481037938"> <int id="w">158</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">1058</int> <int id="y">1006</int> <int id="h">167</int> <int id="z">31</int> <str id="name">groddle_plant_1_1309481037938</str> </object> <object id="groddle_cover_clover1_1313427419294"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">4071</int> <int id="y">984</int> <int id="h">78</int> <int id="z">24</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="bush_2_1313427419248"> <int id="w">528</int> <int id="r">-3</int> <str id="sprite_class">bush_2</str> <int id="x">5521</int> <int id="y">1058</int> <int id="h">177</int> <int id="z">7</int> <str id="name">bush_2_1309801546615</str> </object> <object id="groddle_bush1_1313427419306"> <bool id="h_flip">true</bool> <int id="w">248</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush1</str> <int id="x">1095</int> <int id="y">1000</int> <int id="h">133</int> <int id="z">30</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="groddle_grass_1_1313106981074"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">3939</int> <int id="y">959</int> <int id="h">51</int> <int id="z">25</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_grass_1_1313427419269"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">5017</int> <int id="y">1005</int> <int id="h">51</int> <int id="z">5</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_fern_1_1313427419310"> <int id="w">235</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">1159</int> <int id="y">1003</int> <int id="h">140</int> <int id="z">34</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_cover_clover2_1313106981024"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3517</int> <int id="y">997</int> <int id="h">47</int> <int id="z">22</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="groddle_cover_clover1_1313427419268"> <bool id="h_flip">true</bool> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">5125</int> <int id="y">1021</int> <int id="h">78</int> <int id="z">4</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="tree_coniferous_bare_1_1313427419267"> <int id="w">761</int> <str id="sprite_class">tree_coniferous_bare_1</str> <int id="x">5124</int> <int id="y">997</int> <int id="h">1561</int> <int id="z">3</int> <str id="name">tree_coniferous_bare_1_1313427419267</str> </object> <object id="groddle_cover_clover2_1313427419289"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3517</int> <int id="y">997</int> <int id="h">47</int> <int id="z">22</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="groddle_grass_1_1313427419281"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2053</int> <int id="y">970</int> <int id="h">51</int> <int id="z">11</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_cover_clover1_1313427419292"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">3600</int> <int id="y">988</int> <int id="h">78</int> <int id="z">19</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="groddle_fern_1_1313188515944"> <int id="w">235</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">1159</int> <int id="y">1003</int> <int id="h">140</int> <int id="z">34</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_grass_2_1313427419296"> <int id="w">117</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">4168</int> <int id="y">982</int> <int id="h">94</int> <int id="z">26</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="groddle_cover_clover2_1313427419290"> <int id="w">126</int> <str id="sprite_class">groddle_cover_clover2</str> <int id="x">3404</int> <int id="y">997</int> <int id="h">47</int> <int id="z">21</int> <str id="name">groddle_cover_clover2_1313106981024</str> </object> <object id="groddle_grass_2_1313427419250"> <int id="w">162</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">5950</int> <int id="y">1002</int> <int id="h">130</int> <int id="z">6</int> <str id="name">groddle_grass_2_1313188515952</str> </object> <object id="groddle_fern_1_1313427419266"> <bool id="h_flip">true</bool> <int id="w">163</int> <int id="r">-5</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">5232</int> <int id="y">1016</int> <int id="h">97</int> <int id="z">10</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_grass_1_1313427419288"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">3471</int> <int id="y">993</int> <int id="h">51</int> <int id="z">23</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_bush4_1313427419307"> <int id="w">171</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush4</str> <int id="x">1263</int> <int id="y">988</int> <int id="h">82</int> <int id="z">29</int> <str id="name">groddle_bush4_1309801546652</str> </object> <object id="groddle_plant_1_1313427419319"> <int id="w">158</int> <str id="sprite_class">groddle_plant_1</str> <int id="x">1058</int> <int id="y">1006</int> <int id="h">167</int> <int id="z">31</int> <str id="name">groddle_plant_1_1309481037938</str> </object> <object id="groddle_fern_1_1313427419265"> <int id="w">272</int> <int id="r">-5</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">5300</int> <int id="y">1022</int> <int id="h">162</int> <int id="z">9</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="tree_coniferous_4_1313427419355"> <int id="w">902</int> <str id="sprite_class">tree_coniferous_4</str> <int id="x">2226</int> <int id="y">1054</int> <int id="h">1593</int> <int id="z">36</int> <str id="name">tree_coniferous_4_1313427419354</str> </object> <object id="groddle_cover_clover1_1313427419295"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">4229</int> <int id="y">1017</int> <int id="h">78</int> <int id="z">27</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="groddle_grass_1_1313427419275"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2082</int> <int id="y">979</int> <int id="h">51</int> <int id="z">17</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_fern_1_1313427419311"> <bool id="h_flip">true</bool> <int id="w">213</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">1104</int> <int id="y">1015</int> <int id="h">127</int> <int id="z">35</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_bush1_1309801546651"> <int id="w">222</int> <int id="r">5</int> <str id="sprite_class">groddle_bush1</str> <int id="x">2736</int> <int id="y">1019</int> <int id="h">131</int> <int id="z">1</int> <str id="name">groddle_bush1_1309801546651</str> </object> <object id="groddle_cover_clover1_1313427419279"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">2238</int> <int id="y">1012</int> <int id="h">78</int> <int id="z">13</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="groddle_cover_clover1_1313427419277"> <int id="w">324</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">2498</int> <int id="y">1021</int> <int id="h">78</int> <int id="z">15</int> <str id="name">groddle_cover_clover1_1313106981025</str> </object> <object id="groddle_fern_1_1313427419276"> <int id="w">201</int> <str id="sprite_class">groddle_fern_1</str> <int id="x">2656</int> <int id="y">1016</int> <int id="h">120</int> <int id="z">16</int> <str id="name">groddle_fern_1_1313188515944</str> </object> <object id="groddle_grass_1_1313427419280"> <int id="w">106</int> <str id="sprite_class">groddle_grass_1</str> <int id="x">2179</int> <int id="y">970</int> <int id="h">51</int> <int id="z">12</int> <str id="name">groddle_grass_1_1313106981074</str> </object> <object id="groddle_bush4_1309801546652"> <int id="w">171</int> <int id="r">-3</int> <str id="sprite_class">groddle_bush4</str> <int id="x">1263</int> <int id="y">988</int> <int id="h">82</int> <int id="z">29</int> <str id="name">groddle_bush4_1309801546652</str> </object> </object> <int id="w">6000</int> <int id="h">1000</int> <int id="z">1</int> <str id="name">middleplus</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-15</int> </object> <object id="contrast"> <int id="value">-20</int> </object> <object id="saturation"> <int id="value">-5</int> </object> </object> </object> <object id="T_1309481037891"> <object id="decos"> <object id="bush_3_1309801546613"> <int id="w">152</int> <int id="r">5</int> <str id="sprite_class">bush_3</str> <int id="x">4036</int> <int id="y">759</int> <int id="h">54</int> <int id="z">42</int> <str id="name">bush_3_1309801546613</str> </object> <object id="bush_3_1310580389988"> <int id="w">180</int> <str id="sprite_class">bush_3</str> <int id="x">1245</int> <int id="y">780</int> <int id="h">64</int> <int id="z">57</int> <str id="name">bush_3_1309801546613</str> </object> <object id="dirt_horizon_1313188516025"> <int id="w">592</int> <int id="r">3</int> <str id="sprite_class">dirt_horizon</str> <int id="x">4133</int> <int id="y">798</int> <int id="h">53</int> <int id="z">24</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="alakol_grass_top_2_1313016699518"> <int id="w">277</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">3706</int> <int id="y">770</int> <int id="h">38</int> <int id="z">6</int> <str id="name">alakol_grass_top_2_1313016699518</str> </object> <object id="alakol_grass_top_2_1313016699525"> <int id="w">304</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">1578</int> <int id="y">788</int> <int id="h">51</int> <int id="z">3</int> <str id="name">alakol_grass_top_2_1313016699518</str> </object> <object id="bush_2_1309904267555"> <int id="w">140</int> <int id="r">-5</int> <str id="sprite_class">bush_2</str> <int id="x">1665</int> <int id="y">748</int> <int id="h">44</int> <int id="z">31</int> <str id="name">bush_2_1309801546615</str> </object> <object id="heights_bush_4_1310580389951"> <int id="w">657</int> <int id="r">1</int> <str id="sprite_class">heights_bush_4</str> <int id="x">874</int> <int id="y">784</int> <int id="h">96</int> <int id="z">13</int> <str id="name">heights_bush_4_1310580389950</str> </object> <object id="tree_coniferous_1_1313427419232"> <int id="w">303</int> <str id="sprite_class">tree_coniferous_1</str> <int id="x">2973</int> <int id="y">800</int> <int id="h">740</int> <int id="z">67</int> <str id="name">tree_coniferous_1_1313106980974</str> </object> <object id="pinecluster_mask_1_1309904267617"> <int id="w">218</int> <int id="r">-3</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">4282</int> <int id="y">764</int> <int id="h">110</int> <int id="z">35</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="bush_3_1310591248925"> <int id="w">180</int> <str id="sprite_class">bush_3</str> <int id="x">2149</int> <int id="y">744</int> <int id="h">64</int> <int id="z">62</int> <str id="name">bush_3_1309801546613</str> </object> <object id="groddle_bush7_1310580389915"> <bool id="h_flip">true</bool> <int id="w">760</int> <str id="sprite_class">groddle_bush7</str> <int id="x">4894</int> <int id="y">784</int> <int id="h">129</int> <int id="z">20</int> <str id="name">groddle_bush7_1310580389915</str> </object> <object id="groddle_grass_2_1309801546645"> <int id="w">35</int> <str id="sprite_class">groddle_grass_2</str> <int id="x">2226</int> <int id="y">728</int> <int id="h">28</int> <int id="z">69</int> <str id="name">groddle_grass_2_1309801546645</str> </object> <object id="heights_bush_4_1310580389950"> <int id="w">768</int> <str id="sprite_class">heights_bush_4</str> <int id="x">250</int> <int id="y">768</int> <int id="h">105</int> <int id="z">12</int> <str id="name">heights_bush_4_1310580389950</str> </object> <object id="pinecluster_mask_1_1310580389945"> <int id="w">353</int> <int id="r">-2</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">2858</int> <int id="y">776</int> <int id="h">169</int> <int id="z">17</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="pinecluster_mask_1_1309904267542"> <int id="w">254</int> <int id="r">-2</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">2451</int> <int id="y">738</int> <int id="h">104</int> <int id="z">46</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="groddle_cover_clover1_1309801546693"> <int id="w">125</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">3998</int> <int id="y">768</int> <int id="h">30</int> <int id="z">44</int> <str id="name">groddle_cover_clover1_1309801546693</str> </object> <object id="bush_3_1310580389940"> <int id="w">152</int> <int id="r">5</int> <str id="sprite_class">bush_3</str> <int id="x">4111</int> <int id="y">765</int> <int id="h">54</int> <int id="z">55</int> <str id="name">bush_3_1309801546613</str> </object> <object id="bush_2_1309887796929"> <bool id="h_flip">true</bool> <int id="w">139</int> <int id="r">5</int> <str id="sprite_class">bush_2</str> <int id="x">3304</int> <int id="y">763</int> <int id="h">48</int> <int id="z">39</int> <str id="name">bush_2_1309801546615</str> </object> <object id="bush_2_1313016699466"> <int id="w">195</int> <str id="sprite_class">bush_2</str> <int id="x">3073</int> <int id="y">793</int> <int id="h">75</int> <int id="z">63</int> <str id="name">bush_2_1313016699466</str> </object> <object id="groddle_bush7_1310580389939"> <bool id="h_flip">true</bool> <int id="w">952</int> <str id="sprite_class">groddle_bush7</str> <int id="x">4261</int> <int id="y">780</int> <int id="h">105</int> <int id="z">0</int> <str id="name">groddle_bush7_1310580389915</str> </object> <object id="alakol_grass_top_2_1313106980982"> <int id="w">277</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">5086</int> <int id="y">786</int> <int id="h">38</int> <int id="z">23</int> <str id="name">alakol_grass_top_2_1313106980980</str> </object> <object id="bush_3_1309887796936"> <int id="w">180</int> <int id="r">-5</int> <str id="sprite_class">bush_3</str> <int id="x">3854</int> <int id="y">782</int> <int id="h">57</int> <int id="z">45</int> <str id="name">bush_3_1309801546613</str> </object> <object id="pinecluster_2_1313016699373"> <int id="w">362</int> <str id="sprite_class">pinecluster_2</str> <int id="x">425</int> <int id="y">762</int> <int id="h">211</int> <int id="z">9</int> <str id="name">pinecluster_2_1310580389997</str> </object> <object id="groddle_bush7_1310580389944"> <bool id="h_flip">true</bool> <int id="w">952</int> <str id="sprite_class">groddle_bush7</str> <int id="x">3540</int> <int id="y">743</int> <int id="h">59</int> <int id="z">26</int> <str id="name">groddle_bush7_1310580389915</str> </object> <object id="tree_coniferous_fg_1_1313106980973"> <int id="w">331</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="x">3247</int> <int id="y">796</int> <int id="h">735</int> <int id="z">65</int> <str id="name">tree_coniferous_fg_1_1313106980971</str> </object> <object id="tree_coniferous_1_1313106980976"> <int id="w">277</int> <str id="sprite_class">tree_coniferous_1</str> <int id="x">1885</int> <int id="y">789</int> <int id="h">677</int> <int id="z">66</int> <str id="name">tree_coniferous_1_1313106980974</str> </object> <object id="groddle_cover_clover1_1309887796938"> <int id="w">125</int> <str id="sprite_class">groddle_cover_clover1</str> <int id="x">3998</int> <int id="y">768</int> <int id="h">30</int> <int id="z">44</int> <str id="name">groddle_cover_clover1_1309801546693</str> </object> <object id="tree_group_bg2_1_1313427419222"> <int id="w">420</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">3128</int> <int id="y">869</int> <int id="h">628</int> <int id="z">1</int> <str id="name">tree_group_bg2_1_1310580389952</str> </object> <object id="bush_3_1313427419228"> <bool id="h_flip">true</bool> <int id="w">180</int> <str id="sprite_class">bush_3</str> <int id="x">330</int> <int id="y">772</int> <int id="h">64</int> <int id="z">61</int> <str id="name">bush_3_1309801546613</str> </object> <object id="tree_group_bg2_1_1313016699370"> <int id="w">552</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">200</int> <int id="y">816</int> <int id="h">722</int> <int id="z">10</int> <str id="name">tree_group_bg2_1_1313016699370</str> </object> <object id="pinecluster_mask_1_1309824035993"> <int id="w">286</int> <int id="r">2</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">3755</int> <int id="y">762</int> <int id="h">111</int> <int id="z">34</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="bush_3_1309904267551"> <int id="w">152</int> <int id="r">-1</int> <str id="sprite_class">bush_3</str> <int id="x">2055</int> <int id="y">757</int> <int id="h">54</int> <int id="z">50</int> <str id="name">bush_3_1309801546613</str> </object> <object id="bush_2_1309801546643"> <int id="w">140</int> <int id="r">-3</int> <str id="sprite_class">bush_2</str> <int id="x">2605</int> <int id="y">739</int> <int id="h">47</int> <int id="z">38</int> <str id="name">bush_2_1309801546615</str> </object> <object id="tree_coniferous_fg_1_1313106980971"> <int id="w">343</int> <str id="sprite_class">tree_coniferous_fg_1</str> <int id="x">791</int> <int id="y">778</int> <int id="h">762</int> <int id="z">64</int> <str id="name">tree_coniferous_fg_1_1313106980971</str> </object> <object id="pinecluster_mask_1_1309904267623"> <int id="w">218</int> <int id="r">-5</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">4678</int> <int id="y">746</int> <int id="h">85</int> <int id="z">27</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="pinecluster_mask_1_1309904267619"> <int id="w">218</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">4989</int> <int id="y">769</int> <int id="h">85</int> <int id="z">37</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="tree_group_bg2_1_1309904267610"> <int id="w">520</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">5008</int> <int id="y">765</int> <int id="h">630</int> <int id="z">19</int> <str id="name">tree_group_bg2_1_1309801546607</str> </object> <object id="bush_3_1309904267552"> <int id="w">152</int> <str id="sprite_class">bush_3</str> <int id="x">1857</int> <int id="y">754</int> <int id="h">54</int> <int id="z">51</int> <str id="name">bush_3_1309801546613</str> </object> <object id="alakol_grass_top_2_1313106980980"> <int id="w">277</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">4781</int> <int id="y">786</int> <int id="h">38</int> <int id="z">21</int> <str id="name">alakol_grass_top_2_1313106980980</str> </object> <object id="tree_coniferous_2_1313427419233"> <int id="w">415</int> <str id="sprite_class">tree_coniferous_2</str> <int id="x">4691</int> <int id="y">797</int> <int id="h">741</int> <int id="z">70</int> <str id="name">tree_coniferous_2_1313427419233</str> </object> <object id="bush_2_1309801546615"> <int id="w">140</int> <int id="r">-5</int> <str id="sprite_class">bush_2</str> <int id="x">3938</int> <int id="y">756</int> <int id="h">44</int> <int id="z">43</int> <str id="name">bush_2_1309801546615</str> </object> <object id="pinecluster_mask_1_1310591248906"> <bool id="h_flip">true</bool> <int id="w">227</int> <int id="r">5</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">887</int> <int id="y">759</int> <int id="h">108</int> <int id="z">16</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="bush_2_1309801546616"> <int id="w">164</int> <int id="r">-6</int> <str id="sprite_class">bush_2</str> <int id="x">4829</int> <int id="y">770</int> <int id="h">52</int> <int id="z">29</int> <str id="name">bush_2_1309801546615</str> </object> <object id="bush_2_1309801546644"> <bool id="h_flip">true</bool> <int id="w">147</int> <int id="r">4</int> <str id="sprite_class">bush_2</str> <int id="x">2667</int> <int id="y">746</int> <int id="h">33</int> <int id="z">33</int> <str id="name">bush_2_1309801546615</str> </object> <object id="bush_3_1310591248908"> <int id="w">180</int> <str id="sprite_class">bush_3</str> <int id="x">589</int> <int id="y">744</int> <int id="h">64</int> <int id="z">59</int> <str id="name">bush_3_1309801546613</str> </object> <object id="alakol_grass_top_2_1313016699519"> <int id="w">277</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">3809</int> <int id="y">786</int> <int id="h">38</int> <int id="z">7</int> <str id="name">alakol_grass_top_2_1313016699518</str> </object> <object id="bush_2_1309801546641"> <int id="w">175</int> <int id="r">-5</int> <str id="sprite_class">bush_2</str> <int id="x">1040</int> <int id="y">772</int> <int id="h">55</int> <int id="z">30</int> <str id="name">bush_2_1309801546615</str> </object> <object id="pinecluster_mask_1_1309904267618"> <int id="w">218</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">4509</int> <int id="y">757</int> <int id="h">85</int> <int id="z">36</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="tree_group_bg2_1_1310580389954"> <int id="w">405</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">3249</int> <int id="y">782</int> <int id="h">514</int> <int id="z">11</int> <str id="name">tree_group_bg2_1_1309801546607</str> </object> <object id="bush_3_1310591248915"> <int id="w">180</int> <str id="sprite_class">bush_3</str> <int id="x">234</int> <int id="y">765</int> <int id="h">64</int> <int id="z">60</int> <str id="name">bush_3_1309801546613</str> </object> <object id="pinecluster_mask_1_1310580389986"> <int id="w">303</int> <int id="r">-5</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">2221</int> <int id="y">733</int> <int id="h">105</int> <int id="z">47</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="alakol_grass_top_2_1313427419231"> <int id="w">413</int> <int id="r">3</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">853</int> <int id="y">783</int> <int id="h">57</int> <int id="z">14</int> <str id="name">alakol_grass_top_2_1313016699518</str> </object> <object id="bush_2_1310580389987"> <int id="w">140</int> <int id="r">-3</int> <str id="sprite_class">bush_2</str> <int id="x">2340</int> <int id="y">740</int> <int id="h">47</int> <int id="z">48</int> <str id="name">bush_2_1309801546615</str> </object> <object id="alakol_grass_top_2_1313427419230"> <int id="w">529</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">1272</int> <int id="y">795</int> <int id="h">59</int> <int id="z">15</int> <str id="name">alakol_grass_top_2_1313016699518</str> </object> <object id="bush_3_1309904267553"> <int id="w">152</int> <str id="sprite_class">bush_3</str> <int id="x">1953</int> <int id="y">769</int> <int id="h">54</int> <int id="z">53</int> <str id="name">bush_3_1309801546613</str> </object> <object id="pinecluster_2_1313016699371"> <int id="w">531</int> <str id="sprite_class">pinecluster_2</str> <int id="x">123</int> <int id="y">760</int> <int id="h">310</int> <int id="z">8</int> <str id="name">pinecluster_2_1310580389997</str> </object> <object id="alakol_grass_top_2_1313427419243"> <int id="w">434</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">2092</int> <int id="y">805</int> <int id="h">76</int> <int id="z">4</int> <str id="name">alakol_grass_top_2_1313016699518</str> </object> <object id="tree_coniferous_3_1313427419235"> <int id="w">453</int> <str id="sprite_class">tree_coniferous_3</str> <int id="x">4099</int> <int id="y">793</int> <int id="h">767</int> <int id="z">71</int> <str id="name">tree_coniferous_3_1313427419235</str> </object> <object id="bush_3_1311362740573"> <int id="w">152</int> <str id="sprite_class">bush_3</str> <int id="x">1753</int> <int id="y">760</int> <int id="h">54</int> <int id="z">52</int> <str id="name">bush_3_1309801546613</str> </object> <object id="pinecluster_mask_1_1309887796932"> <int id="w">286</int> <int id="r">-3</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">3103</int> <int id="y">767</int> <int id="h">111</int> <int id="z">40</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="alakol_grass_top_2_1313016699524"> <int id="w">277</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">1761</int> <int id="y">775</int> <int id="h">38</int> <int id="z">2</int> <str id="name">alakol_grass_top_2_1313016699518</str> </object> <object id="tree_coniferous_1_1313106980977"> <int id="w">303</int> <str id="sprite_class">tree_coniferous_1</str> <int id="x">293</int> <int id="y">779</int> <int id="h">740</int> <int id="z">68</int> <str id="name">tree_coniferous_1_1313106980974</str> </object> <object id="tree_group_bg2_1_1309904267609"> <int id="w">387</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">3756</int> <int id="y">746</int> <int id="h">514</int> <int id="z">18</int> <str id="name">tree_group_bg2_1_1309801546607</str> </object> <object id="bush_3_1309887796930"> <int id="w">152</int> <str id="sprite_class">bush_3</str> <int id="x">3161</int> <int id="y">762</int> <int id="h">54</int> <int id="z">41</int> <str id="name">bush_3_1309801546613</str> </object> <object id="bush_2_1309904267620"> <int id="w">172</int> <str id="sprite_class">bush_2</str> <int id="x">4741</int> <int id="y">767</int> <int id="h">54</int> <int id="z">28</int> <str id="name">bush_2_1309801546615</str> </object> <object id="alakol_grass_top_2_1313106980981"> <int id="w">277</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">4931</int> <int id="y">786</int> <int id="h">38</int> <int id="z">22</int> <str id="name">alakol_grass_top_2_1313106980980</str> </object> <object id="bush_2_1309904267621"> <int id="w">118</int> <int id="r">-5</int> <str id="sprite_class">bush_2</str> <int id="x">4409</int> <int id="y">760</int> <int id="h">45</int> <int id="z">54</int> <str id="name">bush_2_1309801546615</str> </object> <object id="bush_3_1309801546640"> <int id="w">180</int> <str id="sprite_class">bush_3</str> <int id="x">1151</int> <int id="y">777</int> <int id="h">64</int> <int id="z">32</int> <str id="name">bush_3_1309801546613</str> </object> <object id="pinecluster_mask_1_1309904267547"> <bool id="h_flip">true</bool> <int id="w">227</int> <str id="sprite_class">pinecluster_mask_1</str> <int id="x">1408</int> <int id="y">760</int> <int id="h">88</int> <int id="z">49</int> <str id="name">pinecluster_mask_1_1309801546646</str> </object> <object id="dirt_horizon_1313188516026"> <int id="w">592</int> <int id="r">3</int> <str id="sprite_class">dirt_horizon</str> <int id="x">4060</int> <int id="y">831</int> <int id="h">53</int> <int id="z">25</int> <str id="name">dirt_horizon_1309824035923</str> </object> <object id="alakol_grass_top_2_1313427419256"> <int id="w">600</int> <str id="sprite_class">alakol_grass_top_2</str> <int id="x">2405</int> <int id="y">775</int> <int id="h">67</int> <int id="z">5</int> <str id="name">alakol_grass_top_2_1313016699518</str> </object> <object id="bush_3_1310580389985"> <int id="w">152</int> <str id="sprite_class">bush_3</str> <int id="x">2839</int> <int id="y">764</int> <int id="h">54</int> <int id="z">56</int> <str id="name">bush_3_1309801546613</str> </object> <object id="bush_3_1310591248907"> <int id="w">180</int> <str id="sprite_class">bush_3</str> <int id="x">727</int> <int id="y">747</int> <int id="h">64</int> <int id="z">58</int> <str id="name">bush_3_1309801546613</str> </object> </object> <int id="w">5100</int> <int id="h">980</int> <int id="z">-2</int> <str id="name">bg_2</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-35</int> </object> <object id="contrast"> <int id="value">-40</int> </object> <object id="saturation"> <int id="value">-30</int> </object> </object> </object> <object id="T_1309388549234"> <object id="decos"> <object id="tree_group_bg2_1_1313427419227"> <bool id="h_flip">true</bool> <int id="w">355</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">905</int> <int id="y">854</int> <int id="h">531</int> <int id="z">15</int> <str id="name">tree_group_bg2_1_1310580389952</str> </object> <object id="pinehills_1_1313016699491"> <int id="w">850</int> <str id="sprite_class">pinehills_1</str> <int id="x">2267</int> <int id="y">843</int> <int id="h">270</int> <int id="z">7</int> <str id="name">pinehills_1_1309798585402</str> </object> <object id="pinehills_1_1310580389957"> <int id="w">850</int> <str id="sprite_class">pinehills_1</str> <int id="x">812</int> <int id="y">724</int> <int id="h">270</int> <int id="z">4</int> <str id="name">pinehills_1_1309798585402</str> </object> <object id="tree_group_bg2_1_1313199007541"> <int id="w">420</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">2698</int> <int id="y">790</int> <int id="h">628</int> <int id="z">11</int> <str id="name">tree_group_bg2_1_1310580389952</str> </object> <object id="pinehills_1_1313016699493"> <int id="w">850</int> <int id="r">5</int> <str id="sprite_class">pinehills_1</str> <int id="x">1382</int> <int id="y">834</int> <int id="h">270</int> <int id="z">5</int> <str id="name">pinehills_1_1309798585402</str> </object> <object id="pinehills_1_1310580389956"> <int id="w">850</int> <str id="sprite_class">pinehills_1</str> <int id="x">1086</int> <int id="y">771</int> <int id="h">270</int> <int id="z">3</int> <str id="name">pinehills_1_1309798585402</str> </object> <object id="tree_group_bg2_1_1313199007540"> <int id="w">319</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">2445</int> <int id="y">773</int> <int id="h">477</int> <int id="z">10</int> <str id="name">tree_group_bg2_1_1310580389952</str> </object> <object id="pinehills_1_1313016699496"> <int id="w">850</int> <str id="sprite_class">pinehills_1</str> <int id="x">2780</int> <int id="y">836</int> <int id="h">270</int> <int id="z">2</int> <str id="name">pinehills_1_1309798585402</str> </object> <object id="pinehills_1_1313016699495"> <int id="w">850</int> <str id="sprite_class">pinehills_1</str> <int id="x">2575</int> <int id="y">816</int> <int id="h">270</int> <int id="z">8</int> <str id="name">pinehills_1_1309798585402</str> </object> <object id="tree_group_bg2_1_1313427419221"> <int id="w">358</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">3144</int> <int id="y">808</int> <int id="h">535</int> <int id="z">12</int> <str id="name">tree_group_bg2_1_1310580389952</str> </object> <object id="tree_wallpaper_1a_1313106980963"> <int id="w">1871</int> <str id="sprite_class">tree_wallpaper_1a</str> <int id="x">4036</int> <int id="y">831</int> <int id="h">695</int> <int id="z">1</int> <str id="name">tree_wallpaper_1a_1313106980963</str> </object> <object id="tree_group_bg2_1_1313427419224"> <bool id="h_flip">true</bool> <int id="w">420</int> <str id="sprite_class">tree_group_bg2_1</str> <int id="x">738</int> <int id="y">840</int> <int id="h">628</int> <int id="z">14</int> <str id="name">tree_group_bg2_1_1310580389952</str> </object> <object id="wallpaper_tree_short_1_1313427419223"> <int id="w">1075</int> <str id="sprite_class">wallpaper_tree_short_1</str> <int id="x">146</int> <int id="y">822</int> <int id="h">699</int> <int id="z">13</int> <str id="name">wallpaper_tree_short_1_1313427419223</str> </object> <object id="pinehills_1_1313016699490"> <int id="w">850</int> <str id="sprite_class">pinehills_1</str> <int id="x">1925</int> <int id="y">866</int> <int id="h">270</int> <int id="z">9</int> <str id="name">pinehills_1_1309798585402</str> </object> <object id="pinehills_1_1313016699497"> <int id="w">850</int> <str id="sprite_class">pinehills_1</str> <int id="x">2996</int> <int id="y">862</int> <int id="h">270</int> <int id="z">0</int> <str id="name">pinehills_1_1309798585402</str> </object> <object id="pinehills_1_1313016699492"> <int id="w">850</int> <int id="r">1</int> <str id="sprite_class">pinehills_1</str> <int id="x">1661</int> <int id="y">901</int> <int id="h">291</int> <int id="z">6</int> <str id="name">pinehills_1_1309798585402</str> </object> </object> <int id="w">4680</int> <int id="h">960</int> <int id="z">-3</int> <str id="name">sky</str> <object id="filtersNEW"> <object id="brightness"> <int id="value">-40</int> </object> <object id="contrast"> <int id="value">-45</int> </object> <object id="saturation"> <int id="value">-30</int> </object> </object> </object> </object> <str id="music_file"></str> <null id="img_file_versioned"/> <str id="swf_file_versioned">http://c2.glitch.bz/locations/groddle1/1334365832.swf</str> <null id="physics"/> <str id="tsid">LA9NRNJSB792OG4</str> <null id="loading_label"/> <int id="ground_y">-151</int> <int id="rookable_type">0</int> <object id="gradient"> <str id="top">7DA9E3</str> <str id="bottom">FFE44A</str> </object> <object id="sources"> <int id="LA9118S28492QCL">1</int> <int id="LA912PJ5D492UIL">1</int> <int id="LA9117J18492SRS">1</int> <int id="LA9S9DGPV692IU2">1</int> <int id="LHVCJB2OMDT2VD8">1</int> </object> </object> </game_object>
165,015
Common Lisp
.l
4,920
26.755691
203
0.550036
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
3aa9f3bd950cf0338f9abed17d0c5ebf56e207f4ef20425296cb25f220003e32
20,867
[ -1 ]
20,868
LA9NRNJSB792OG4.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA9NRNJSB792OG4 Akaki Cape-shows depth/LA9NRNJSB792OG4.xml
<game_object tsid="LA9NRNJSB792OG4" ts="1364227030531" label="Akaki Cape" class_tsid="town" hubid="98" moteid="9" letime="3gc0tjtd" rbtime="297bsjog" upd_gs="gs6" load_time="2013-03-25 08:37:21.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-08-15/LA9NRNJSB792OG4_loading_1313432555.jpg</str> <int id="w">840</int> <int id="h">160</int> </object> <object id="image"> <str id="url">streets/2011-08-15/LA9NRNJSB792OG4_main_1313432557.jpg</str> <int id="w">720</int> <int id="h">120</int> </object> <object id="jobs"> <object id="630"> <object id="street_info"> <int id="type">1</int> <int id="is_hidden">0</int> <str id="title_override">Build Akaki Cape In Besara</str> <str id="desc_override">Expand Besara by building a new street, Akaki Cape.</str> <str id="completion_email">[email protected]</str> <object id="connecting_streets"> <str id="0">LA9118S28492QCL</str> </object> </object> <object id="class_ids"> <object id="job_street_ph5_04"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Sam's Breakfast</str> <str id="class_id">job_street_ph5_04</str> </object> <object id="job_street_ph2_04"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Engineer &amp; Build</str> </object> <object id="job_street_ph5_02"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Shindig</str> </object> <object id="job_street_ph4_01c"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Plant &amp; Certify</str> </object> </object> </object> <object id="631"> <object id="street_info"> <int id="type">2</int> <int id="is_hidden">0</int> <str id="title_override">Build Krios Palm In Besara</str> <str id="desc_override">Expand Besara by building a new street, Krios Palm.</str> <str id="completion_email">[email protected]</str> <str id="target_street">LA9117J18492SRS</str> </object> <object id="class_ids"> <object id="job_street_ph1_01c"> <int id="in_order">1</int> <int id="delay_seconds">0</int> <str id="delay_text"></str> <str id="label">Excavate the Earth</str> <str id="class_id">job_street_ph1_01c</str> <objref id="instance" tsid="QA9QLQO94BA2R93"/> </object> <object id="job_street_ph2_02"> <int id="in_order">2</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Supply &amp; Prepare</str> <str id="class_id">job_street_ph2_02</str> <objref id="instance" tsid="QA9CQ8A12OA2PQF"/> </object> <object id="job_street_ph3_08"> <int id="in_order">3</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Rabbit Picnic</str> <str id="class_id">job_street_ph3_08</str> <objref id="instance" tsid="QA9LN9545OA2FU2"/> </object> <object id="job_street_ph4_03"> <int id="in_order">4</int> <int id="delay_seconds">1200</int> <str id="delay_text"></str> <str id="label">Pleasant Pretirement</str> <str id="class_id">job_street_ph4_03</str> <objref id="instance" tsid="QA93RDPN9OA2696"/> </object> </object> </object> </object> <bool id="jobs_is_locked">false</bool> <object id="delayed_sounds"> </object> <object id="action_requests"> </object> <object id="keys"> </object> <object id="rook_status"> <bool id="rooked">false</bool> </object> <object id="stun_orbs"> </object> <object id="qurazy"> </object> <object id="edit_history"> <str id="1335302441">tsauth-lisa:add_street_obj-signposts</str> <str id="1335302515">tsauth-lisa:modify_street_obj-signposts-signpost_3</str> <str id="1335302547">PCR11BHHPVN1AIQ:Lisa:locodeco-replace</str> </object> <object id="incantations"> <object id="PHV7V1JJOE22AQI"> <int id="step">1</int> <int id="ts">1350436831</int> </object> <object id="PUVS0VLJ9G93E96"> <int id="step">1</int> <int id="ts">1350437146</int> </object> <object id="PUVVE7C5HV93LDE"> <int id="step">2</int> <int id="ts">1350437149</int> </object> <object id="PUVLFPT60BB3COT"> <int id="step">3</int> <int id="ts">1350437149</int> </object> <object id="PUVG11SRUMB3FRD"> <int id="step">1</int> <int id="ts">1350437354</int> </object> <object id="PHFHJABVNUC285L"> <int id="step">1</int> <int id="ts">1350437489</int> </object> <object id="PHFUA8HSGCD2A56"> <int id="step">2</int> <int id="ts">1350437491</int> </object> <object id="PHF248O600D2SNR"> <int id="step">3</int> <int id="ts">1350437492</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">1</int> <int id="ts">1350438435</int> </object> <object id="PUVTEISFLLB38P4"> <int id="step">2</int> <int id="ts">1350438437</int> </object> <object id="PUV1T4MF4FF2Q8S"> <int id="step">3</int> <int id="ts">1350438438</int> </object> <object id="PUVLVGOL1V93QGP"> <int id="step">1</int> <int id="ts">1350438632</int> </object> <object id="PCR4KMJVCAO1OQ7"> <int id="step">1</int> <int id="ts">1350438863</int> </object> <object id="PUVIB4SDKAF2TF1"> <int id="step">2</int> <int id="ts">1350438864</int> </object> <object id="PCRD7E1BNAO16J6"> <int id="step">3</int> <int id="ts">1350438865</int> </object> <object id="PUVC1O1O1TF26EU"> <int id="step">1</int> <int id="ts">1350439185</int> </object> <object id="PUVBHQ89NBM2HAR"> <int id="step">2</int> <int id="ts">1350439187</int> </object> <object id="PHFKA411RVC22P0"> <int id="step">3</int> <int id="ts">1350439190</int> </object> <object id="PUVPNRE5ND83N2V"> <int id="step">1</int> <int id="ts">1350439871</int> </object> <object id="PHV3J76JGS62RF5"> <int id="step">2</int> <int id="ts">1350439875</int> </object> <object id="PUV3JOQHDGB322T"> <int id="step">3</int> <int id="ts">1350439876</int> </object> <object id="PUVH7ETOAHB369R"> <int id="step">1</int> <int id="ts">1350440431</int> </object> <object id="PUVIS05FIIA3SBO"> <int id="step">1</int> <int id="ts">1350440614</int> </object> <object id="PHVK2FSFOT22C3I"> <int id="step">2</int> <int id="ts">1350440623</int> </object> <object id="PHFTTVBJQ2D2PP8"> <int id="step">1</int> <int id="ts">1350440663</int> </object> <object id="PUVUFA486FH2J23"> <int id="step">1</int> <int id="ts">1350440771</int> </object> <object id="PUVH4JOK59G2BM3"> <int id="step">1</int> <int id="ts">1350441178</int> </object> <object id="PUVMV6ECTHB3JBV"> <int id="step">1</int> <int id="ts">1350441194</int> </object> <object id="PUVCU9JRQIB3JFI"> <int id="step">2</int> <int id="ts">1350441196</int> </object> <object id="PUVC63D30LB3BNM"> <int id="step">3</int> <int id="ts">1350441197</int> </object> <object id="PUV42LEOBAF2MKD"> <int id="step">1</int> <int id="ts">1350441627</int> </object> <object id="PUVR66N0OVE2BLN"> <int id="step">2</int> <int id="ts">1350441633</int> </object> <object id="PIF5BEQREL632KO"> <int id="step">3</int> <int id="ts">1350441634</int> </object> <object id="PUV10ALD09H22LB"> <int id="step">1</int> <int id="ts">1350441646</int> </object> <object id="PUVH3TQBJS63O8M"> <int id="step">2</int> <int id="ts">1350441658</int> </object> <object id="PUV23CR4T8F22HA"> <int id="step">1</int> <int id="ts">1350441787</int> </object> <object id="PUVOK77VOIB38JL"> <int id="step">2</int> <int id="ts">1350441789</int> </object> <object id="PUVRPUE7RO73KNE"> <int id="step">3</int> <int id="ts">1350441791</int> </object> <object id="PUVKGJVVG583EPM"> <int id="step">1</int> <int id="ts">1350442061</int> </object> <object id="PA9E1LMNLSD2EOO"> <int id="step">2</int> <int id="ts">1350442065</int> </object> <object id="PIFMHQHE5463JR0"> <int id="step">3</int> <int id="ts">1350442066</int> </object> <object id="PUVERUQUIIJ2TCI"> <int id="step">1</int> <int id="ts">1350443863</int> </object> <object id="PUV79I5LM7G2ADD"> <int id="step">2</int> <int id="ts">1350443865</int> </object> <object id="PUVIBNJ5IIB3TV7"> <int id="step">1</int> <int id="ts">1350443897</int> </object> <object id="PUVT4G8H1IB3FQA"> <int id="step">2</int> <int id="ts">1350443900</int> </object> <object id="PUVV5EPO1IB39IQ"> <int id="step">3</int> <int id="ts">1350443901</int> </object> <object id="PHFPRQPJJ2D2NKI"> <int id="step">1</int> <int id="ts">1350444334</int> </object> <object id="PHFIPVH38TC2PIV"> <int id="step">2</int> <int id="ts">1350444336</int> </object> <object id="PHVP4B1U0H22UNL"> <int id="step">3</int> <int id="ts">1350444337</int> </object> <object id="PHFFIBQRICD28H9"> <int id="step">1</int> <int id="ts">1350445131</int> </object> <object id="PUVS27VFH8K2F38"> <int id="step">1</int> <int id="ts">1350445853</int> </object> <object id="PHVGU6I056A2DL9"> <int id="step">2</int> <int id="ts">1350445854</int> </object> <object id="PHVR4QIMCOA205O"> <int id="step">3</int> <int id="ts">1350445858</int> </object> <object id="PHFF03EIOVC2LU8"> <int id="step">1</int> <int id="ts">1350446432</int> </object> <object id="PHVVGEUKEA52530"> <int id="step">1</int> <int id="ts">1350449570</int> </object> <object id="PHF2VPV503D26FE"> <int id="step">1</int> <int id="ts">1350449924</int> </object> <object id="PUVICMAK8SJ2MAS"> <int id="step">2</int> <int id="ts">1350449926</int> </object> <object id="PUVF7TDOFA93ATH"> <int id="step">3</int> <int id="ts">1350449927</int> </object> <object id="PHV3EC8AOK42KO4"> <int id="step">1</int> <int id="ts">1350452244</int> </object> <object id="PA97I2RED7E2KE2"> <int id="step">2</int> <int id="ts">1350452247</int> </object> <object id="PHF20O01HRC21FP"> <int id="step">1</int> <int id="ts">1350452991</int> </object> <object id="PA9QA8RBRPD22NK"> <int id="step">2</int> <int id="ts">1350452993</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">3</int> <int id="ts">1350452993</int> </object> <object id="PUVFUD1UJRE26GD"> <int id="step">1</int> <int id="ts">1350457907</int> </object> <object id="PHVSCM4AFS627EF"> <int id="step">1</int> <int id="ts">1350465613</int> </object> <object id="PA9U3JQ0CTD2448"> <int id="step">1</int> <int id="ts">1350467357</int> </object> <object id="PUVSGG1ULJE2EBJ"> <int id="step">1</int> <int id="ts">1350467786</int> </object> <object id="PUVS2S2R0MB3R01"> <int id="step">2</int> <int id="ts">1350467789</int> </object> <object id="PIF9R57T8P53I85"> <int id="step">3</int> <int id="ts">1350467790</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">1</int> <int id="ts">1350471398</int> </object> <object id="PHFL7P0N83D2P1R"> <int id="step">2</int> <int id="ts">1350471400</int> </object> <object id="PUV2O7J6I9D207V"> <int id="step">1</int> <int id="ts">1350471884</int> </object> <object id="PA9K8H9L9RD2ISS"> <int id="step">1</int> <int id="ts">1350473298</int> </object> <object id="PCR8FH3B2SJ1RCJ"> <int id="step">1</int> <int id="ts">1350476015</int> </object> <object id="PUVT5TK2G6D28QU"> <int id="step">1</int> <int id="ts">1350478802</int> </object> <object id="PUV766GM4TE2A3Q"> <int id="step">1</int> <int id="ts">1350480371</int> </object> <object id="PHFU9TB1JVC2JE6"> <int id="step">2</int> <int id="ts">1350480373</int> </object> <object id="PUV333V527D2942"> <int id="step">1</int> <int id="ts">1350481957</int> </object> <object id="PHFVN17DD0D2G3V"> <int id="step">1</int> <int id="ts">1350487610</int> </object> <object id="PHFLM7KOU2D24PL"> <int id="step">2</int> <int id="ts">1350487611</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">3</int> <int id="ts">1350487612</int> </object> <object id="PA920DBMG0E2ASB"> <int id="step">1</int> <int id="ts">1350489871</int> </object> <object id="PA9252IP5UD21NG"> <int id="step">1</int> <int id="ts">1350492437</int> </object> <object id="PUV49PF4QVF2OMB"> <int id="step">1</int> <int id="ts">1350494180</int> </object> <object id="PUV9TAHHD9G289O"> <int id="step">2</int> <int id="ts">1350494181</int> </object> <object id="PUVIF2ROALA3QHM"> <int id="step">3</int> <int id="ts">1350494183</int> </object> <object id="PCRNH6RCVNS1072"> <int id="step">1</int> <int id="ts">1350496334</int> </object> <object id="PUVG0QGLK683S5N"> <int id="step">1</int> <int id="ts">1350497522</int> </object> <object id="PA9TT1IARGD2V5S"> <int id="step">2</int> <int id="ts">1350497524</int> </object> <object id="PUVDSDFE2JA34CB"> <int id="step">3</int> <int id="ts">1350497527</int> </object> <object id="PUVPJE0RFP73D1U"> <int id="step">1</int> <int id="ts">1350497951</int> </object> <object id="PUVB7H9BRGG2912"> <int id="step">2</int> <int id="ts">1350497956</int> </object> <object id="PCR44OG2AUT12IH"> <int id="step">1</int> <int id="ts">1350498682</int> </object> <object id="PCRF91L4KNS1SSI"> <int id="step">2</int> <int id="ts">1350498687</int> </object> <object id="PCRFLA5IKNS19P1"> <int id="step">3</int> <int id="ts">1350498688</int> </object> <object id="PUVPBGSGGI9363H"> <int id="step">1</int> <int id="ts">1350498824</int> </object> <object id="PUV72LIAQGM22AJ"> <int id="step">2</int> <int id="ts">1350498826</int> </object> <object id="PIFG7LQVTG6356J"> <int id="step">3</int> <int id="ts">1350498827</int> </object> <object id="PA9SRFS850E2GJ0"> <int id="step">1</int> <int id="ts">1350499682</int> </object> <object id="PUVSESCKOOE2P8R"> <int id="step">1</int> <int id="ts">1350502028</int> </object> <object id="PA9K4D8K8MD27JH"> <int id="step">2</int> <int id="ts">1350502743</int> </object> <object id="PA9J5LA451E2LSE"> <int id="step">1</int> <int id="ts">1350503587</int> </object> <object id="PA9A2VTBRID23MT"> <int id="step">2</int> <int id="ts">1350506172</int> </object> <object id="PHVPD72CABA2UCJ"> <int id="step">1</int> <int id="ts">1350506647</int> </object> <object id="PCRDMHR3NDO1FVT"> <int id="step">2</int> <int id="ts">1350506649</int> </object> <object id="PA9AAQRSQ1E2VC8"> <int id="step">3</int> <int id="ts">1350506652</int> </object> <object id="PUVK49LR47836VQ"> <int id="step">1</int> <int id="ts">1350507791</int> </object> <object id="PUV9Q6DO08B38DG"> <int id="step">2</int> <int id="ts">1350508392</int> </object> <object id="PUVP6M2EH9G2Q22"> <int id="step">1</int> <int id="ts">1350511083</int> </object> <object id="PUVDIUKJTQ636BN"> <int id="step">1</int> <int id="ts">1350512081</int> </object> <object id="PHVRKEJ8VV22AU3"> <int id="step">2</int> <int id="ts">1350512349</int> </object> <object id="PHFL6F66UAD2Q0K"> <int id="step">1</int> <int id="ts">1350512671</int> </object> <object id="PUVQMCK0GOI2CE3"> <int id="step">2</int> <int id="ts">1350512685</int> </object> <object id="PUV2JU76I9D2LI5"> <int id="step">3</int> <int id="ts">1350512688</int> </object> <object id="PHFJAE8FQVC2RNH"> <int id="step">1</int> <int id="ts">1350513608</int> </object> <object id="PUV5FSTRPNF29UT"> <int id="step">2</int> <int id="ts">1350513611</int> </object> <object id="PUVCAJTDPFH203K"> <int id="step">3</int> <int id="ts">1350513612</int> </object> <object id="PUV611DPFLE2TKH"> <int id="step">1</int> <int id="ts">1350515484</int> </object> <object id="PUVTARTIND830E8"> <int id="step">2</int> <int id="ts">1350515489</int> </object> <object id="PA92KIPN12E27D0"> <int id="step">1</int> <int id="ts">1350515878</int> </object> <object id="PUVGPGR6I6J2QDT"> <int id="step">1</int> <int id="ts">1350516427</int> </object> <object id="PUVD45J9GRE2GOO"> <int id="step">1</int> <int id="ts">1350516522</int> </object> <object id="PHFIS28II2D239P"> <int id="step">1</int> <int id="ts">1350516861</int> </object> <object id="PUVIEI8TU2B3RIT"> <int id="step">1</int> <int id="ts">1350516943</int> </object> <object id="PUVPOBK0AB83DS9"> <int id="step">1</int> <int id="ts">1350518933</int> </object> <object id="PUV4QBL03D9394L"> <int id="step">1</int> <int id="ts">1350519197</int> </object> <object id="PUVTNI1FJH93NPE"> <int id="step">2</int> <int id="ts">1350519435</int> </object> <object id="PCRHA593D1N1EB3"> <int id="step">1</int> <int id="ts">1350519575</int> </object> <object id="PA9RSGL8A5E2K0Q"> <int id="step">2</int> <int id="ts">1350519577</int> </object> <object id="PHVGI4R40M32RKM"> <int id="step">3</int> <int id="ts">1350519579</int> </object> <object id="PUVU70T41MB3OUK"> <int id="step">1</int> <int id="ts">1350519759</int> </object> <object id="PA94QJT5JRD2AVC"> <int id="step">2</int> <int id="ts">1350520402</int> </object> <object id="PIFQHBL4S563QJT"> <int id="step">1</int> <int id="ts">1350520901</int> </object> <object id="PUVVUN83TV834IE"> <int id="step">1</int> <int id="ts">1350521663</int> </object> <object id="PUVO0TUS12B3KGF"> <int id="step">1</int> <int id="ts">1350521831</int> </object> <object id="PHF14ABLCTC2U52"> <int id="step">1</int> <int id="ts">1354916719</int> </object> <object id="PHVROH851L22Q5T"> <int id="step">2</int> <int id="ts">1354916721</int> </object> <object id="PUVI79TPFEC36S0"> <int id="step">3</int> <int id="ts">1354916723</int> </object> </object> <object id="emotes"> <object id="25-05-26"> <int id="PHFLM7KOU2D24PL">1351271486</int> <int id="PUVBBO6CF983D1L">1351271639</int> <int id="PHFA4JPPH4D27K8">1351271656</int> <int id="PUVFJ8JG7JC3LHK">1351278191</int> <int id="PUVI93T6N783471">1351278191</int> <int id="PCRBGPFJRFV1O4C">1351278881</int> <int id="PUVE5CFE0CC3D51">1351280073</int> <int id="PUVHNUGMQEC3NOT">1351282617</int> <int id="PUVII91M9DH2QVN">1351282619</int> <int id="PCR44OG2AUT12IH">1351284906</int> </object> <object id="25-05-27"> <int id="PHV47UC3OL72KBN">1351286372</int> <int id="PUVIKLMMV6C332T">1351286373</int> <int id="PUV7U3KUK2C3MCG">1351290673</int> <int id="PIF9R57T8P53I85">1351290861</int> <int id="PUV7HIABKH93543">1351292785</int> <int id="PUVIGL3VE9C3JAQ">1351293306</int> <int id="PUV4DAEQGTH2M1R">1351293306</int> <int id="PHFAM2DUH4D23RG">1351294401</int> <int id="PUVBKN54PRE2VUI">1351294401</int> <int id="PUVHT82E1AP2E7H">1351294453</int> <int id="PUV8UJR6O7C3S6U">1351297134</int> <int id="PUVFCH0EBCC3QOG">1351298116</int> </object> <object id="25-05-28"> <int id="PUVHBURKAIB3UKH">1351303317</int> <int id="PUVMIT3MFHC3V00">1351303319</int> <int id="PUVHLNMRPBC327N">1351303338</int> <int id="PUVH3D6VKFC37GA">1351307844</int> <int id="PCRNH6RCVNS1072">1351310967</int> <int id="PUV7JKMTD6B3RHS">1351310972</int> <int id="PUVCO7JU5LB31M2">1351310993</int> <int id="PUV3DS9H5IC3LGE">1351312463</int> <int id="PHF624MH10D2RFE">1351312797</int> <int id="PUVSL8IPBFC3144">1351312798</int> </object> <object id="25-05-29"> <int id="PUVNDLD33NB3MMP">1351315386</int> <int id="PUV4C3P9ADB3LRI">1351315915</int> <int id="PHVMUHUM3N622HJ">1351322210</int> <int id="PUV4BNDS8F93JL3">1351322212</int> <int id="PUVOL0BB1OB3SQG">1351322271</int> </object> <object id="25-05-30"> <int id="PUVSLR3P6OA3L28">1351337497</int> </object> <object id="25-05-31"> <int id="PUVAR8FBF9D2PA9">1351354724</int> <int id="PA9F05KGVKD2B13">1351355365</int> </object> <object id="25-05-32"> </object> <object id="25-05-33"> </object> <object id="25-05-34"> </object> <object id="25-05-35"> </object> <object id="25-05-38"> </object> <object id="25-05-39"> </object> <object id="25-05-40"> </object> </object> <object id="streaking_increments"> <object id="25-07-08"> <int id="PHFK6SRM23D2516">1352337954</int> <int id="PIFTUASLSL53D81">1352337954</int> <int id="PUVD3J3SFPF2TRG">1352338059</int> <int id="PUVFDC083PE2F30">1352338414</int> <int id="PUVI4EDKGAJ207T">1352338679</int> <int id="PUV9RUHRPRC3M7I">1352339271</int> <int id="PUV2T1MGQ9G2B9J">1352339291</int> <int id="PUVRHA5DOQ63RD9">1352339408</int> <int id="PUVI53P9AAD3ONK">1352339518</int> <int id="PUV192265H83TQL">1352339639</int> <int id="PCRE8LITINS1E3I">1352339764</int> <int id="PDO8DEHPH5R2426">1352339841</int> <int id="PHFFIBQRICD28H9">1352340053</int> <int id="PUVK5TNBIUC3IUM">1352340378</int> <int id="PUVEU4HHIB83437">1352340554</int> <int id="PUVRHQRNH5D2LJR">1352340564</int> <int id="PUVBBEV6LP735IR">1352340573</int> <int id="PUVLN2KIG6B3S56">1352340624</int> <int id="PA9TIP55P1E2QDL">1352341116</int> <int id="PHV117AI32C29CH">1352341305</int> <int id="PHF624MH10D2RFE">1352341411</int> <int id="PIFH4KS85L63D4V">1352341447</int> <int id="PHFNCFTVB4D2DNN">1352341550</int> <int id="PIFGTBHJ4163SL6">1352341677</int> <int id="PUV4J86UJPC3TEN">1352341742</int> <int id="PUVGV1PQ07D2GLQ">1352341753</int> <int id="PUVLFPT60BB3COT">1352342051</int> <int id="PHV9OKQHBF82NDQ">1352342054</int> <int id="PUVVRIGFM683351">1352342186</int> <int id="PUVFH6OPFTF2LF6">1352342197</int> <int id="PA9E6LH5DPD2M71">1352342367</int> <int id="PCRC8PG7HUT1DAI">1352342794</int> <int id="PIFH87H32963H19">1352342819</int> <int id="PCR42DQMSCV1P9O">1352342992</int> <int id="PUVVH9UE34837KI">1352343463</int> <int id="PUVFEHU904J2T3U">1352343505</int> <int id="PHVVR6I43M72BB2">1352343671</int> <int id="PUVMUKUEHRE2KME">1352343711</int> <int id="PUVH3TQBJS63O8M">1352344061</int> <int id="PUVSLPFE06D2FMT">1352344246</int> <int id="PUV48BQ6JAG26EC">1352344384</int> <int id="PHFVC13NF2D2E4V">1352344398</int> <int id="PCRNH6RCVNS1072">1352344501</int> <int id="PUV88HJU7OB3B8Q">1352345637</int> <int id="PHVN6JFRHP42JH4">1352345716</int> <int id="PIFIB286VS5338G">1352345778</int> <int id="PUVKBPJJIBD36P9">1352346177</int> <int id="PHFM0PHNTUC2S8E">1352346418</int> <int id="PUVU94EEQOH2155">1352346919</int> <int id="PUVOM8F6A3H2T74">1352347104</int> <int id="PUVV5MNG5BE21UN">1352347217</int> <int id="PCRH9GALMUT1VSB">1352347394</int> <int id="PHF3HJC553D25P9">1352347818</int> <int id="PUVT97ESA7D2MN0">1352348078</int> <int id="PUVUOJGB39D3I3A">1352348381</int> <int id="PUVG2EDJV8G2ADK">1352348637</int> <int id="PA9SI3EOAND2BDK">1352349504</int> <int id="PHVERH6QNU621I8">1352350019</int> <int id="PUVPLDCEPPC3IJA">1352350725</int> <int id="PUVM959M1JB345N">1352350725</int> </object> <object id="25-07-09"> <int id="PUVPLDCEPPC3IJA">1352350825</int> <int id="PUVM959M1JB345N">1352350825</int> <int id="PUVN3PLVLF93NF7">1352350911</int> <int id="PUV3D7EIFJB30QV">1352351264</int> <int id="PUVVFL7EJ6D3S6H">1352351382</int> <int id="PHFINSK9JCD29H5">1352351514</int> <int id="PUV3S7CIG093V83">1352351940</int> <int id="PUV8D00HT0D3TBH">1352351969</int> <int id="PUVDML8BPK93CKI">1352352283</int> <int id="PUVD2FVRMI83OV0">1352352399</int> <int id="PUVS0VLJ9G93E96">1352352416</int> <int id="PUV49IN449D3KET">1352352765</int> <int id="PIF9A2O5B1633VO">1352352847</int> <int id="PUVH597T7DC32E1">1352353097</int> <int id="PUVBB7R937H2JLS">1352353394</int> <int id="PUVNSNMEAF93P4N">1352353612</int> <int id="PCRC8PG7HUT1DAI">1352353870</int> <int id="PUVO35JUEKC30M8">1352354322</int> <int id="PUV6QB9A35C31SG">1352355562</int> <int id="PUVTODJO9G935QH">1352355564</int> <int id="PHFU73UKQ2D2SH5">1352355663</int> <int id="PHFT66IJV2D29PS">1352355943</int> <int id="PHFGIBN0F3D2R8O">1352355955</int> <int id="PUVNBLI502K2ID8">1352356345</int> <int id="PA92MJIOKQD2IMA">1352356515</int> <int id="PUV3FH87A9C375P">1352356548</int> <int id="PUV3U1VU2JB35KK">1352356553</int> <int id="PHV1ANMRR8A2H6H">1352356553</int> <int id="PUVHKHKSFDC3H9E">1352356801</int> <int id="PUVO4N44CSH2DK8">1352357091</int> <int id="PHF624MH10D2RFE">1352357318</int> <int id="PHVQRJ67Q742FCG">1352357318</int> <int id="PA9SI3EOAND2BDK">1352357586</int> <int id="PHFCA0VG30D2LVR">1352357850</int> <int id="PHVJR6H2J652Q9K">1352358097</int> <int id="PHVSGKDV7SA2FK8">1352359142</int> <int id="PUV2LHC33FC3CI1">1352359610</int> <int id="PUVKRDNLRLB39GO">1352359648</int> <int id="PHVLEE66STA2M50">1352360064</int> <int id="PUV4H81S8D738GR">1352360688</int> <int id="PUVRLG7EMCB3VAD">1352360960</int> <int id="PUVPCUELJ6G279E">1352361429</int> <int id="PUV9ETBKSA93NU2">1352361751</int> <int id="PCRR6HQFR0U1SRC">1352361877</int> <int id="PUVN27LFLKC38I7">1352362481</int> <int id="PUVF7CV44MD3VCE">1352362822</int> <int id="PA9A2VTBRID23MT">1352362834</int> <int id="PIFQHNFJ1M634GJ">1352362853</int> <int id="PUVH2B225AE21R4">1352364073</int> <int id="PIFIB286VS5338G">1352364996</int> <int id="PA9DNN7MF4E2AAV">1352365132</int> </object> <object id="25-07-10"> <int id="PHFIN187QVC224H">1352365220</int> <int id="PUV2O7J6I9D207V">1352365345</int> <int id="PIFQHNFJ1M634GJ">1352365596</int> <int id="PA984LGOCKD26UK">1352365748</int> <int id="PUVKGTF6GK932KM">1352366695</int> <int id="PUVA9MCI77D2D9F">1352367024</int> <int id="PUVRCSIUDOG20NJ">1352367545</int> <int id="PUV5T4751NB3MEU">1352368606</int> <int id="PUVVLIPFM5D2UC5">1352369219</int> <int id="PUVHAQBGPL937P3">1352371356</int> <int id="PUVBHA1C58C33PQ">1352372470</int> <int id="PUVGC4ADU8C3V82">1352372988</int> <int id="PUVUBPJHDUC3HI1">1352373426</int> <int id="PUVK851A2373SQM">1352374095</int> <int id="PUV95LJVTHF26QI">1352374879</int> <int id="PCR2JJS38PS1MON">1352374925</int> <int id="PUVFAUVI96D2J0O">1352375505</int> <int id="PUVH7BU7IQC3O8D">1352375728</int> <int id="PUVH72G5OCG2GO3">1352376003</int> <int id="PCRG4AJDLNS1TTP">1352376876</int> <int id="PHV3NCJDAS62VM0">1352376912</int> <int id="PUVROBJK2UG2RTE">1352376943</int> <int id="PUVTJ95EO3A3J7V">1352377576</int> <int id="PHVFSV9R04A2DO9">1352377684</int> <int id="PUVJLRNMGJC3LVA">1352378455</int> <int id="PHFBMADAEAD2JND">1352378630</int> <int id="PCR6QLN3RVT1329">1352379190</int> <int id="PUVA25K3C4A3ILR">1352379417</int> </object> <object id="25-07-11"> <int id="PHVNIFVCQRA253D">1352380352</int> <int id="PUV73E5SA1D34NN">1352380691</int> <int id="PUVNC9RNU6D2UK4">1352382920</int> <int id="PUVKS32H9ID3C7O">1352383046</int> <int id="PUVVLIPFM5D2UC5">1352383393</int> <int id="PUVQV9G5RB838CE">1352383585</int> <int id="PUVMAEO5BUC31VI">1352383775</int> <int id="PUVCJ6O880A34HP">1352383796</int> <int id="PUVHGT5JDLB30F7">1352384027</int> <int id="PUV6FUO75V93AII">1352384027</int> <int id="PUVHKHKSFDC3H9E">1352384028</int> <int id="PA93VP2554E2H3R">1352384028</int> <int id="PUV4TOO3O1D32TP">1352384028</int> <int id="PDO6RPGI7ST2BIK">1352384847</int> <int id="PCRR6HQFR0U1SRC">1352385524</int> <int id="PUVN0GDE70D3AKQ">1352385743</int> <int id="PHFRJ945A3D2FMO">1352386082</int> <int id="PHVVO7CASCB21O5">1352386113</int> <int id="PCRD7E1BNAO16J6">1352386380</int> <int id="PHFT66IJV2D29PS">1352386469</int> <int id="PUV4PLH2HT83FJ2">1352386608</int> <int id="PHF624MH10D2RFE">1352386707</int> <int id="PHVCIHQ7LN0268R">1352387459</int> <int id="PUV37Q0UPQC37V4">1352388049</int> <int id="PUVT8691EI93FIR">1352388598</int> <int id="PUVRL3OSO7G2VV4">1352388639</int> <int id="PUV7E9OUE8D3KIM">1352388906</int> <int id="PUVAC4AFMDE2HDT">1352389506</int> <int id="PUVGVO2BNPB3MJB">1352389933</int> <int id="PUV3HG2DOSC3JF4">1352391191</int> <int id="PUVG4MMHQEC3K5I">1352391616</int> <int id="PCR14AIGQJO1V4O">1352391650</int> <int id="PUV39DUPENE2ATB">1352392223</int> <int id="PHFVB7UGK2D283T">1352392932</int> <int id="PDO95R1QA2R2RJG">1352393535</int> <int id="PHV710OBJG228NP">1352393726</int> <int id="PIFSMKNBOG63N0R">1352393910</int> <int id="PA93TKPJ66E2SG5">1352393932</int> </object> <object id="25-07-12"> <int id="PUVUEFJABRG2LND">1352394045</int> <int id="PUVJE99TFEC3D9J">1352395147</int> <int id="PA9E9SC8Q0E2TV1">1352395797</int> <int id="PHF624MH10D2RFE">1352396191</int> <int id="PUV2U6LS4H934P2">1352396526</int> <int id="PUVJ0E8EINE276C">1352396685</int> <int id="PA9P7M83LMD2FAO">1352397073</int> <int id="PHFT6U31UBD2A1I">1352397073</int> <int id="PUVAMIE2A8F2LGH">1352397315</int> <int id="PUVJIPPFIBD398T">1352397332</int> <int id="PHFM0PHNTUC2S8E">1352397533</int> <int id="PUVIHJRJOKC3LP1">1352397583</int> <int id="PUVAQHDU4B83CVG">1352397713</int> <int id="PUVFJ8JG7JC3LHK">1352397756</int> <int id="PUVJU69IKJC3BOE">1352397977</int> <int id="PHFIS28II2D239P">1352398224</int> <int id="PUV12F0B8QB3L9I">1352398377</int> <int id="PUVHL9FSGF93U3Q">1352398409</int> <int id="PUV10ALD09H22LB">1352398628</int> <int id="PIFP3SA6C063SSP">1352398643</int> <int id="PUVFQ836U9E2IAS">1352398745</int> <int id="PUVS76IBB0S2R71">1352398912</int> <int id="PUVHK9CNSHB382E">1352399124</int> <int id="PUVRSHGF4IQ21VO">1352399356</int> <int id="PHVSGKDV7SA2FK8">1352399458</int> <int id="PUVRD9OA1IB3F4V">1352399519</int> <int id="PUVRGMDQA4C3FPL">1352400064</int> <int id="PCR4OOV7TCV1L54">1352400351</int> <int id="PUVI53P9AAD3ONK">1352401038</int> <int id="PUVSFSPLFNB3DHR">1352401397</int> <int id="PUVF3FA7F6B3UFD">1352401397</int> <int id="PUV3OUBQMJG2CL9">1352401397</int> <int id="PUV2BIBPKHG27EA">1352401795</int> <int id="PHFLFBHESBD27U4">1352401929</int> <int id="PA9IOOKNOMD2694">1352402050</int> <int id="PA9O32ER51E2T28">1352402102</int> <int id="PUVFEEVC6HE20MV">1352402187</int> <int id="PUVUCOQRRFD3PH6">1352402442</int> <int id="PUV1CKELDTF2QHB">1352402443</int> <int id="PA9VHKNCKQD2LUN">1352402545</int> <int id="PHFN8I5UBCD2C6Q">1352402545</int> <int id="PHFL7P0N83D2P1R">1352402545</int> <int id="PUVMRHDRT483OEH">1352402650</int> <int id="PHVFSV9R04A2DO9">1352402832</int> <int id="PHVIKAFLJS62FVP">1352402864</int> <int id="PUVQNB0F4IC3P88">1352403295</int> <int id="PDO2V71MMAR2SER">1352403319</int> <int id="PHFTTPBQ52D2EAM">1352403697</int> <int id="PUV5E5K85LB37M1">1352403898</int> <int id="PHF35JIL3FD20T9">1352404291</int> <int id="PUVRAV3RJUC3VM8">1352404552</int> <int id="PA9KMCNM01E2L76">1352404739</int> <int id="PHV3SOHNMB52ELG">1352404769</int> <int id="PUVSU77CNC93MVA">1352404866</int> <int id="PUV6DVMA5J731JE">1352405020</int> <int id="PDODTQK43DR27CB">1352405072</int> <int id="PUVDL2JD1CF2Q55">1352405087</int> <int id="PUVCLLJADHA3I84">1352405240</int> <int id="PUV7RQL8K7D3I10">1352405381</int> <int id="PUV42LEOBAF2MKD">1352405407</int> <int id="PCRCFKKOGUJ1Q7C">1352405415</int> <int id="PUVPCUELJ6G279E">1352405668</int> <int id="PIFSMKNBOG63N0R">1352406032</int> <int id="PUVN9UPA79D37S8">1352406083</int> <int id="PA9SI3EOAND2BDK">1352406266</int> <int id="PUVABG46OTJ2FNM">1352406430</int> <int id="PUVOCG9IHKB31NM">1352407038</int> <int id="PCR44OG2AUT12IH">1352407452</int> <int id="PUV2831ETFB3LS5">1352407468</int> <int id="PUV4LC37N8D26UP">1352407486</int> <int id="PUV7U3V812C3S7H">1352407619</int> <int id="PUVLQGI8HRA3O57">1352408347</int> </object> <object id="25-07-13"> <int id="PUVLQGI8HRA3O57">1352408404</int> <int id="PUVBHQ89NBM2HAR">1352409232</int> <int id="PHFIN187QVC224H">1352409360</int> <int id="PUVVJ0EALEC3BFN">1352409667</int> <int id="PUVTTIURKLC3B30">1352409687</int> <int id="PUV33V34VLC3V6Q">1352409839</int> <int id="PIF14GJO15D1P84">1352410490</int> <int id="PHV5NI0UGK42FR1">1352410729</int> <int id="PUVS0VLJ9G93E96">1352410964</int> <int id="PUVANK930CC3FME">1352410968</int> <int id="PUV4QNVMORC354R">1352411992</int> <int id="PUVHPAD7L5N292B">1352412055</int> <int id="PUVUEFJABRG2LND">1352412227</int> <int id="PHVB44TB7992134">1352412976</int> <int id="PA9SI3EOAND2BDK">1352413246</int> <int id="PUVS75E9OBH2Q6G">1352413757</int> <int id="PM1GSNCGR502ADF">1352413943</int> <int id="PUVISC96IQ83HJT">1352414167</int> <int id="PUVNQ08H15C3F2V">1352414250</int> <int id="PHF624MH10D2RFE">1352414254</int> <int id="PHF4I93610D2TI2">1352414831</int> <int id="PUVV62E5EJC3SNI">1352415047</int> <int id="PUVQEFE5B683F04">1352415303</int> <int id="PHV19SAUGH72GB8">1352415320</int> <int id="PHVHN86I5H228T6">1352415442</int> <int id="PUV7U3V812C3S7H">1352415503</int> <int id="PUVV5HJ6RD93NIJ">1352415663</int> <int id="PUVOIO5NTF93QO1">1352415664</int> <int id="PUVQ3FG2SGD391H">1352415707</int> <int id="PUV3KL241QB3JD3">1352416255</int> <int id="PUVLC1FVGH739H1">1352416359</int> <int id="PUVRINE0QJL2GOH">1352416788</int> <int id="PHV7FR190MB2I9S">1352416819</int> <int id="PUVFQ836U9E2IAS">1352417718</int> <int id="PUVSHIJ0C8A392V">1352417765</int> <int id="PUVNB4AMIE936QU">1352418323</int> <int id="PUV6E4U84N93JFA">1352419069</int> <int id="PCRR6HQFR0U1SRC">1352419139</int> <int id="PUV79I5LM7G2ADD">1352419256</int> <int id="PUVL6SNU4FC3EBM">1352419451</int> <int id="PUVR7DBV7JG2E14">1352419610</int> <int id="PUVN27LFLKC38I7">1352419970</int> <int id="PUV7281593F2747">1352420339</int> <int id="PUV9TAHHD9G289O">1352420352</int> <int id="PHVL46GE9G72CK5">1352420426</int> <int id="PUV2T1MGQ9G2B9J">1352420476</int> <int id="PUVM1I564U73P79">1352420721</int> <int id="PHVUUPBDE6A2C6Q">1352420769</int> <int id="PUV4U9A4C5M2UE6">1352421330</int> <int id="PUVO9GST65D2T6C">1352421521</int> <int id="PCR10CGI60N1LG6">1352421527</int> <int id="PHFIS28II2D239P">1352421548</int> <int id="PUVTBBTJFSG2NC1">1352421631</int> <int id="PUVG2EDJV8G2ADK">1352421645</int> <int id="PUV1VFBK25C34EQ">1352421648</int> <int id="PUVG9V8E32J2L79">1352421947</int> <int id="PA9VHKNCKQD2LUN">1352422024</int> <int id="PHFAQB5VH4D2OSK">1352422024</int> <int id="PUVLS8OMVLB33CN">1352422254</int> <int id="PUVB8IIEBFG2TCC">1352422261</int> <int id="PUV719FK49G2H7I">1352422743</int> </object> <object id="25-08-01"> <int id="PUVGBDEJMDC329S">1352424019</int> </object> <object id="25-08-05"> <int id="PUVVMOF5SND3412">1352492391</int> </object> <object id="25-08-12"> <int id="PUVANK930CC3FME">1352585515</int> </object> <object id="25-08-13"> <int id="PUVVH9M65UC3908">1352608021</int> </object> <object id="25-08-16"> <int id="PHVC72C4BV720RB">1352649312</int> </object> <object id="25-08-18"> <int id="PUVA25K3C4A3ILR">1352674557</int> </object> <object id="25-08-20"> <int id="PUVFQFKLETB3V67">1352703987</int> </object> <object id="25-08-23"> <int id="PHVLN7DQQG92ED2">1352749283</int> <int id="PUVA25K3C4A3ILR">1352752103</int> </object> <object id="25-08-24"> <int id="PUVPBGSGGI9363H">1352767294</int> </object> <object id="25-08-25"> <int id="PHV11H22PQA2JEL">1352780933</int> </object> <object id="25-08-27"> <int id="PUVA25K3C4A3ILR">1352797332</int> <int id="PUVMF173F6D2ST3">1352802595</int> </object> <object id="25-08-28"> <int id="PHV11H22PQA2JEL">1352815897</int> </object> <object id="25-08-29"> <int id="PUVA25K3C4A3ILR">1352832888</int> </object> <object id="25-08-32"> <int id="PA998GBOSJD2EDI">1352874646</int> </object> <object id="25-08-34"> <int id="PUVFRNHPAH934B8">1352907843</int> </object> <object id="25-09-05"> <int id="PUVA25K3C4A3ILR">1353019060</int> </object> <object id="25-10-01"> <int id="PCRD62JRHNS185D">1353041921</int> </object> <object id="25-10-21"> <int id="PUVOCTL89G93HQE">1353315648</int> </object> <object id="25-11-05"> <int id="PUV1D62CP6D2M64">1353773350</int> </object> <object id="26-03-11"> <int id="PUVTVO44D7N2SPU">1354482207</int> </object> <object id="26-03-41"> <int id="PUVJ86DSLSM2BDC">1354919426</int> </object> <object id="26-03-42"> <int id="PUV2T1MGQ9G2B9J">1354929402</int> </object> <object id="26-03-51"> <int id="PUVCIOJLOC93UKT">1355065841</int> </object> <object id="26-03-52"> <int id="PUVKSMIKR8L2A6S">1355086403</int> </object> <object id="26-04-01"> <int id="PUVB6DDK0NC3OCG">1355107553</int> </object> </object> <object id="hi_sign_evasion_record_history"> <object id="version_6"> <str id="pc_tsid">PCRA67IB8LL1MCE</str> <str id="pc_label">xombiekitty</str> <int id="secs">10</int> <int id="when">1351910264</int> <int id="version">6</int> </object> </object> <object id="hi_sign_evasion_record"> <str id="pc_tsid">PHFIN187QVC224H</str> <str id="pc_label">Artistech</str> <int id="secs">13</int> <int id="when">1352409225</int> <int id="version">10</int> <str id="day_key">25-07-13</str> </object> <object id="hi_sign_daily_evasion_record"> <str id="pc_tsid">PUV3BOVU5GC3BJJ</str> <str id="pc_label">LanaLoo</str> <int id="secs">10</int> <int id="when">1353277645</int> <int id="version">10</int> <str id="day_key">25-10-18</str> </object> <object id="incantations_redux"> <object id="PHFU448MD4D2HL9"> <int id="step">1</int> <int id="ts">1354918110</int> </object> <object id="PUVJ86DSLSM2BDC"> <int id="step">1</int> <int id="ts">1354919403</int> </object> <object id="PDOQHB9V1AR2F84"> <int id="step">2</int> <int id="ts">1354919405</int> </object> <object id="PA9SGIV1AUD2PNL"> <int id="step">1</int> <int id="ts">1354919728</int> </object> <object id="PUVLEOJADLC3GC8"> <int id="step">1</int> <int id="ts">1354921623</int> </object> <object id="PUVFDCV0HFC32U7"> <int id="step">2</int> <int id="ts">1354921624</int> </object> <object id="PUVH597T7DC32E1"> <int id="step">3</int> <int id="ts">1354921625</int> </object> <object id="PA9UNV5QH7E2B0P"> <int id="step">1</int> <int id="ts">1354923020</int> </object> <object id="PA9R43RJ84E2EKB"> <int id="step">2</int> <int id="ts">1354923028</int> </object> <object id="PA9PV1PN67E24FQ"> <int id="step">3</int> <int id="ts">1354923030</int> </object> <object id="PUVF5CIS8UE2209"> <int id="step">1</int> <int id="ts">1354923777</int> </object> <object id="PHF624MH10D2RFE"> <int id="step">2</int> <int id="ts">1354923778</int> </object> <object id="PUVG6IV8J5F28N1"> <int id="step">1</int> <int id="ts">1354928890</int> </object> <object id="PUV2T1MGQ9G2B9J"> <int id="step">2</int> <int id="ts">1354929331</int> </object> <object id="PUVE1NGB27C36PP"> <int id="step">1</int> <int id="ts">1354930763</int> </object> <object id="PUVFNR598OD3VBH"> <int id="step">2</int> <int id="ts">1354930770</int> </object> <object id="PUV1C9DM7JE2KRJ"> <int id="step">1</int> <int id="ts">1354951649</int> </object> <object id="PHVP4B1U0H22UNL"> <int id="step">2</int> <int id="ts">1354951659</int> </object> <object id="PUVM6Q60R9D2HIC"> <int id="step">3</int> <int id="ts">1354951666</int> </object> <object id="PUVV7EOB2RC31M9"> <int id="step">1</int> <int id="ts">1354951792</int> </object> <object id="PA97PHPM54E2M0U"> <int id="step">1</int> <int id="ts">1354955568</int> </object> <object id="PA9VHKNCKQD2LUN"> <int id="step">2</int> <int id="ts">1354955568</int> </object> <object id="PUVKMVKGUCG2PM3"> <int id="step">3</int> <int id="ts">1354955570</int> </object> <object id="PIFB7QP3SH63DL7"> <int id="step">1</int> <int id="ts">1354978741</int> </object> <object id="PUVTTIURKLC3B30"> <int id="step">2</int> <int id="ts">1354980311</int> </object> <object id="PUVOCG9IHKB31NM"> <int id="step">3</int> <int id="ts">1354980323</int> </object> <object id="PUV766GM4TE2A3Q"> <int id="step">1</int> <int id="ts">1354981779</int> </object> <object id="PIFLC6T4UK63AKI"> <int id="step">2</int> <int id="ts">1354981780</int> </object> <object id="PHFVCCQDR3D2FIQ"> <int id="step">1</int> <int id="ts">1354983523</int> </object> <object id="PUVPLIU36BJ21DJ"> <int id="step">1</int> <int id="ts">1354984876</int> </object> <object id="PUVJGMGHIIA388B"> <int id="step">1</int> <int id="ts">1354991910</int> </object> <object id="PIF16S80DT53O2K"> <int id="step">2</int> <int id="ts">1354991912</int> </object> <object id="PA95UHHMLID28OO"> <int id="step">3</int> <int id="ts">1354991913</int> </object> <object id="PHVAN0R6UK8249B"> <int id="step">1</int> <int id="ts">1354992565</int> </object> <object id="PHFTE76HQ4D2CLU"> <int id="step">2</int> <int id="ts">1354996384</int> </object> <object id="PHFE0LJP04D2E6S"> <int id="step">1</int> <int id="ts">1354996882</int> </object> <object id="PUV4M2F46LL2DPA"> <int id="step">1</int> <int id="ts">1354997133</int> </object> <object id="PCRMKIMIUNS1S1G"> <int id="step">1</int> <int id="ts">1354999076</int> </object> <object id="PHV4T5FLFC42GP7"> <int id="step">2</int> <int id="ts">1354999086</int> </object> <object id="PUVUEFJABRG2LND"> <int id="step">1</int> <int id="ts">1354999732</int> </object> <object id="PUV1NMOQOFE3PQ8"> <int id="step">2</int> <int id="ts">1354999934</int> </object> </object> <int id="incantations_redux_step">2</int> </object> <objrefs id="items"> <objref tsid="IA59FC2DI4G3IA8" label="Fruit Tree"/> <objref tsid="IA5II165BGQ2IJ2" label="Qurazy marker"/> <objref tsid="IA9GBEBUAE92NU5" label="Quoin"/> <objref tsid="IA9G1T6QAE92BDI" label="Shrine to Spriggan"/> <objref tsid="IA5FCG04K4G3CTR" label="Bubble Tree"/> <objref tsid="IA9GQBQ4BE92PQR" label="spawner"/> <objref tsid="IA9G3I1RAE925F5" label="Mailbox"/> <objref tsid="IA9GB69UAE924GV" label="Quoin"/> <objref tsid="IA9GETNVAE92MFQ" label="Quoin"/> <objref tsid="IA9GE4CVAE924MA" label="Quoin"/> <objref tsid="IA9GH5T0BE92211" label="Street Spirit"/> <objref tsid="IA9GD72VAE92OP3" label="Quoin"/> <objref tsid="IA5FAPC3K4G3RGN" label="Bean Tree"/> <objref tsid="IA9GEKLVAE923J0" label="Quoin"/> </objrefs> <objrefs id="players"> <objref tsid="PUV48AUTI0E3I6L" label="KumaKenshi"/> <objref tsid="PHFFOV3MN2D265N" label="Nephyria"/> <objref tsid="PUVUCKUH3UD36O9" label="ChaeRin"/> <objref tsid="PIFCNOJ2SR53FTD" label="Degu"/> <objref tsid="PUVQHQPE99G2AIT" label="Jonah Grimm"/> <objref tsid="PUV6ARM1BJD3AR9" label="Kashtien"/> <objref tsid="PHFNTM124UC2EVO" label="Miguel Valentino"/> <objref tsid="PHVAQQN0JA92TTO" label="taltalim"/> <objref tsid="PA9KCAKG3UD2BLE" label="Loube"/> <objref tsid="PHFDPPFBGED2BI9" label="Napiri"/> <objref tsid="PHF46GE110D2HVO" label="Chiepoon"/> <objref tsid="PUV9T2UGOEG2DI5" label="alphadog"/> <objref tsid="PUV7H2NULA93NH2" label="The Hidden Star"/> <objref tsid="PUVKTNSQ47G2JHQ" label="FullAuto"/> <objref tsid="PUVBIV9PT8C3CP3" label="sharzies"/> <objref tsid="PUVMAR3P7IB3DQM" label="CAMKA"/> <objref tsid="PUVJSU3IG9D25ND" label="TepidTwisTed"/> <objref tsid="PNVDO4L89SD21ER" label="Surak"/> </objrefs> </game_object>
45,570
Common Lisp
.l
1,369
28.669102
199
0.652678
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
05605e61199ee8d8ee4a6bced2c08a00ef50d20006df1fb9f6630fd2ecd0f95c
20,868
[ -1 ]
20,869
kenpixel_high_square.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_high_square.ttf
 Ä OS/2ñ¢`cmapù|ɨ\glyf*;A]êK¨head_ˇê6hhea˛}@$hmtx’dPlocaõ∏^<Tmaxpˇ’S¥ nameœ°âQ‘ 9postˇ˝p 8$ ~ˇxû   " & : ¨!"˚ˇˇ °xû   " & 9 ¨!"˚ˇˇˇ„ˇ¡ˇI‚$‡Ø‡¨‡´‡™‡ß‡ï‡$flØ—’$ ~ˇxû   " & : ¨!"˚ˇˇ °xû   " & 9 ¨!"˚ˇˇˇ„ˇ¡ˇI‚$‡Ø‡¨‡´‡™‡ß‡ï‡$flØ—’{ÖÖ˘_<ı 6•Ò 6•Òˇ¿ˇÄ@ˇÄġ¿@Ä‘@ÄÄÄÄÄÄ¿ÄÄÄÄÄ@ÄÄÄÄÄÄÄÄÄÄÄ@Ä@ÄÄÄÄÄÄÄÄÄÄÄ@ÄÄÄÄÄÄÄÄÄÄÄÄÄÄ@ÄÄÄÄÄÄÄÄÄÄÄÄ@ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿Ä@ÄÄÄÄÄÄ¿@¿Ä@@¿ÄÄÄÄÄÄ¿¿¿¿¿¿ÄÄÄÄÄÄÄ@ÄÄÄÄÄġ¿¿¿ˇ¿¿ˇ¿ġ¿ÄÄÄÄÄÄÄÄÄÄÄÄÄ@ÄÄÄÄÄÄÄ@ÄÄÄÄÄġ¿¿¿ˇ¿¿ˇ¿ÄÄÄÄÄÄÄÄÄÄÄÄÄÄ@ÄÄÄ¿ÄÄÄÄÄÄġ¿ÄÄÄ‘( "ûÅÅïúª ◊‚<ˆ2 G úM È 0 (0X)XÅ â (ã ≥ >¡ 8ˇ 7 (M xu *Ì  8# .[ `â PÈ 9 R9 ãCopyright Kenney 2011 KenPixel High Square is based on KenPixel High by Kenney (http://fontstruct.com/fontstructors/kenney)KenPixel High SquareRegularFontStruct KenPixel High SquareKenPixel High Square RegularVersion 1.0KenPixel-High-SquareFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenneyKenPixel High Square was built with FontStruct KenPixel High Square is based on KenPixel High by Kenney (http://fontstruct.com/fontstructors/kenney)http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/506174Creative Commons Attribution Share AlikeFive big quacking zephyrs jolt my wax bedBwkOdF5gCopyright Kenney 2011 KenPixel High Square  is based on KenPixel High  by Kenney  (http://fontstruct.com/fontstructors/kenney)KenPixel High SquareRegularFontStruct KenPixel High SquareKenPixel High Square RegularVersion 1.0KenPixel-High-SquareFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenney KenPixel High Square  was built with FontStruct KenPixel High Square  is based on KenPixel High  by Kenney  (http://fontstruct.com/fontstructors/kenney)http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/506174Creative Commons Attribution Share AlikeFive big quacking zephyrs jolt my wax bedBwkOdF5g=ê3Æ@ FSTR@ ˚@Ä˚@@ f3@@  ˇ§∑ˇI\ˇ§∑ˇ•ˇŸˇÊˇÂˇ<@Q\ˇ§k\ˇ§k\ˇ§k[ˇÊˇÂˇ⁄˛n@˝¿@@@ˇ¿@@ˇ¿Ä¿˛@¿¿@@@@¿ÄˇÄġÄ@@¿ˇ¿ˇ¿ˇ¿@ˇ¿@@@@@ˇ¿@ˇ¿ˇ¿ˇ¿@ˇ¿ˇ¿@@@¿ˇ@¿ˇ@ˇ¿ˇ¿ˇ¿ˇ@¿ˇ@ˇ¿@ġ¿ˇ¿ˇ¿@ˇÄġÄÄ@ġÄġÄ@ˇ@ġIJ@@@@ˇ¿ˇ¿ˇÄ˛Äˇ¿@@ @Äġ@@@ˇÄÄ@ġÄġÄÄġÄÄġÄÄġÄ@ġÄ@@ˇ¿Ä@ #@ˇ¿@@ˇ@@@@˛Ä@¿ˇÄˇ¿Äˇ@ˇ¿ˇÄ@ġ¿ˇÄ¿@ˇ¿@ˇ¿ˇ@@ˇˇ¿@@ˇÄÄ¿ˇ@ġÄ¿@@@¿ÄˇÄ¿@ Ä@ˇÄ@ˇÄ@@@@ˇ¿@ġÄÄ¿ˇ@¿ÄˇÄÄ@ˇ¿¿@ @@@ˇÄ@ˇÄ@@ˇ¿@ġÄÄ¿ˇ@¿ÄˇÄÄ@ˇ¿@¿@@@@ˇÄˇ¿@@@ˇ¿@@ˇ¿@ˇ¿@@@@ˇ¿ˇ¿ˇ¿Ä@¿ ġÄÄ@ġÄÄÄ@ġġ¿ˇÄˇ¿@@@ˇ¿ÄˇÄ@@@@ˇ¿@@@@ˇ¿ @@@@ġÄÄġÄÄġÄÄġÄ@@ˇ@ˇ¿@@¿˛@ˇ¿@˝¿¿@ÄˇÄ¿@˝¿@@ ˇ@ˇÄÄ@ˇˇˇ¿@@ ˇˇ@@@Ä@˝¿@@ ˇ@¿@@ˇ@¿˝¿@@ ˇ@ˇ@ˇ¿ˇÄ˛Ä@@ ˇ@ˇ¿@ˇ@ˇˇ¿@ˇ¿ˇÄ˛Ä@@ Ä@@ˇ@@˛¿@@ˇ¿@Ä@ˇ@@@ ˇ@¿ˇ@ˇ¿@@ˇ@ġIJÄ@˝¿@@ ˇ@¿ˇ@ÄġIJÄ@˝¿Ä@¿@ˇ¿@Ä@ˇ¿@ˇ¿@@¿@ˇ¿@@ġÄ@@ˇ¿@ ¿@ˇÄ@ˇÄ@ˇÄ@@@@@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿¿@Ä@˛¿@¿@ˇ¿Ä@ˇ¿@ @@@@ˇÄ@ˇÄ@ˇÄ@@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿@@ Ä@ˇ¿@@ˇ@ˇ¿@@ˇ¿Ä¿ˇ@¿@ˇ¿@ġ¿Äˇ@@@ @ˇ@@@ˇ@@˛Äˇ@˛@ˇ¿@@ ˇ@ˇ¿@ˇ¿ˇ@ÄġIJÄ@˝¿@˛¿@@ ˇ@¿ˇ@ˇ¿@@ˇ@ġIJÄ@˝¿@@@ˇ@ˇ¿˛@ˇ¿@@ @˛¿ˇ@¿@¿˛@ˇ¿@ˇ¿˛@ˇ¿@@ @ˇˇ@ˇ¿ˇÄˇ¿ˇˇ¿@@ @ˇˇ@ˇ¿ˇÄˇ¿˛¿@@ @ˇ¿ˇÄ¿@ˇ¿˛@@˛Ä@@ @¿@ˇ¿ˇ@@ˇ@¿˝¿@˛¿@@@@˝¿@ ¿ˇ@@ˇ¿@¿@˛@@ @˛¿@¿ˇ@¿@@˛¿@ˇ@ˇ¿˛¿Ä¿ˇ@@@@@˛ˇ¿¿@ ¿ˇ¿ˇÄˇ¿ˇÄ@˝¿˛˛@@@ˇ¿ˇ@@˝¿˛@@ˇ@ˇ¿@@¿˛@ˇ¿@˝¿@@ ˇ@ˇ¿@ˇÄġIJÄ@ˇ˛¿ˇ¿@@ˇ@@@ˇ¿ˇÄ@ˇÄ@¿˛@@ˇ¿ˇÄ@@˝¿ˇ¿@@@˛¿@ˇ¿ˇ@¿ˇ@@˛¿@ˇ@ġġ¿˛¿@@ ˇ@ˇ@ˇ¿ˇÄ˛Ä@@ġÄ@ˇÄ@ˇ¿˛@@@¿@@˛˝¿@@ Ä@ˇÄ@@@ˇ@¿@@ˇ¿@@ˇ¿@ˇ¿@¿˛@¿˛@¿@ @Ä@Ä@@˛˛˝¿@@ @¿@ˇ¿ˇ@¿@@˛¿@˛¿@@ˇ¿@¿ˇ@¿ˇ@@@ ġÄ@¿@ˇÄ@ˇ@¿ˇ˛¿@@ @ˇ@@@ˇ@¿ˇÄˇ¿¿@ˇ¿@@ˇ¿@@ˇ¿@Ä@ˇ@¿@¿ˇÄÄ@ˇ¿˛@ˇ¿ ¿@ˇÄ@ˇÄ@ˇÄ@ġÄÄġÄÄġÄÄġÄ¿@ÄˇÄ¿@¿@˝¿Ä@@ @¿@ˇ@@@ˇÄ@Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@@@@ˇ¿¿@@@¿ÄˇÄ@@ ˇ@ˇ¿@ˇ¿ˇ@ÄġIJÄ@˝¿@˛¿@@ ˇ@¿ˇ@ˇ¿@@ˇ@ġIJÄ@˝¿@@@ˇ@ˇ¿˛@ˇ¿@@ @˛¿ˇ@¿@¿˛@ˇ¿@ˇ¿˛@ˇ¿@@ @ˇˇ@ˇ¿ˇÄˇ¿ˇˇ¿@@ @ˇˇ@ˇ¿ˇÄˇ¿˛¿@@ @ˇ¿ˇÄ¿@ˇ¿˛@@˛Ä@@ @¿@ˇ¿ˇ@@ˇ@¿˝¿@˛¿@@@@˝¿@ ¿ˇ@@ˇ¿@¿@˛@@ @˛¿@¿ˇ@¿@@˛¿@ˇ@ˇ¿˛¿Ä¿ˇ@@@@@˛ˇ¿¿@ ¿ˇ¿ˇÄˇ¿ˇÄ@˝¿˛˛@@@ˇ¿ˇ@@˝¿˛@@ˇ@ˇ¿@@¿˛@ˇ¿@˝¿@@ ˇ@ˇ¿@ˇÄġIJÄ@ˇ˛¿ˇ¿@@ˇ@@@ˇ¿ˇÄ@ˇÄ@¿˛@@ˇ¿ˇÄ@@˝¿ˇ¿@@@˛¿@ˇ¿ˇ@¿ˇ@@˛¿@ˇ@ġġ¿˛¿@@ ˇ@ˇ@ˇ¿ˇÄ˛Ä@@ġÄ@ˇÄ@ˇ¿˛@@@¿@@˛˝¿@@ Ä@ˇÄ@@@ˇ@¿@@ˇ¿@@ˇ¿@ˇ¿@¿˛@¿˛@¿@ @Ä@Ä@@˛˛˝¿@@ @¿@ˇ¿ˇ@¿@@˛¿@˛¿@@ˇ¿@¿ˇ@¿ˇ@@@ ġÄ@¿@ˇÄ@ˇ@¿ˇ˛¿@@ @ˇ@@@ˇ@¿ˇÄˇ¿¿@ˇ¿@@ˇ¿@@ˇ¿@Ä@ˇ@¿@ Ä@ˇÄ@ˇÄ@@@@ˇ¿@¿ˇ@¿@ˇ¿@¿ˇ@¿@ˇ¿@@@@˝¿¿@ @@@ˇÄ@ˇÄ@@ˇ¿@¿ˇ@¿@ˇ¿@¿ˇ@¿@ˇ¿ÄÄ @ÄġÄÄ@@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@@ˇ¿@¿˛@@ˇ¿@@@ˇ¿@ˇ¿@@@ˇ¿@ˇ¿¿¿ˇ@ˇÄ@@¿@@ˇ¿ˇ¿ˇ@ˇ¿ˇ¿@@@ˇˇ¿@ˇ¿ˇÄ@ˇ¿¿ˇÄˇ¿¿Ä@¿ˇÄ@ˇÄˇ¿ˇÄÄ@¿ @¿@ˇ@@ˇÄ@@@ˇÄ@ˇ@@¿@Ä@ˇ¿@ˇ¿@@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@@ˇ¿@ˇ¿@@ġ¿@ˇ¿@ˇÄ@¿@ˇÄ@ˇ¿@ˇ¿@@@@@ˇ@¿ˇˇ¿ˇ¿ˇ¿ˇ¿ˇ¿@@@ˇ¿@¿ˇ@Ä¿ˇ@@@ '@¿@ˇÄ@ˇÄ@ˇÄ@@@ˇÄ@ˇÄ@ˇÄ@ˇ¿ˇ@ġ¿@ˇÄÄ@ˇ¿@@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@@ˇ¿@ġÄ@ˇ¿@@@¿@@ˇ¿@ˇ¿@Ä Äġ¿@@ˇˇ¿Ä¿¿ˇ¿ˇ¿ˇ¿ˇ¿@˛¿ˇ¿¿˛@@ ¿ˇÄˇ¿¿ˇ@@@ˇ¿ˇ¿¿@@˛¿ ÄÄ¿ #'Ä@Ä@˛¿@Ä@˛¿@Ä@ˇ@@Ä@ˇ@@Ä@Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@ˇ¿¿@@ˇ@¿@@ˇÄ@@@¿@ˇ¿@Ä Äġ¿Äˇˇ¿Ä¿¿ˇ¿ˇÄˇ¿@˛¿ˇ¿¿˛@@@@@ˇ¿Ä¿@ġ¿ˇ¿¿¿@ˇ¿ˇ¿¿ˇ@Ä@¿@ˇ@ˇ¿@@@ˇ¿Ä@ˇ¿Ä@@@ˇ¿ˇ¿ˇ¿¿@ ÄˇÄ¿ˇÄÄ¿@@ˇ@ˇ¿ˇ¿¿@ ġÄÄˇÄ¿@@@@@˛¿¿@@@¿ÄˇÄˇÄ@ @¿@ˇˇÄġ@¿ˇˇÄ@@ ġ¿ˇ¿@ˇ¿ˇ¿@@Ä@˝¿˛Ä¿@Ä@@ˇ¿ˇÄÄ@@ˇÄ@ˇ¿@@ˇ¿Ä@@ˇ¿Ä@˛¿@¿@ġ¿ˇ¿¿Äġġ¿ˇ ÄÄ¿ #'@Ä@ˇ@@Ä@ˇ@@Ä@˛¿@Ä@˛¿@Ä@Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@ˇ¿Ä@@@¿ˇÄ@@@ˇÄ@ˇˇ¿Ä¿@ġÄÄ@ˇ¿ˇÄÄ¿ˇÄIJ¿Ä@ˇ¿ˇÄ@˛¿¿ÄˇÄÄ@!@@@ÄˇÄ¿ˇÄġÄ@ˇˇ¿Ä¿@ġÄÄ@ˇ¿ˇÄ¿@@ˇ@ˇ¿ˇ¿Ä@ˇ¿ˇÄ@˛¿¿ÄˇÄÄ@ !%@@Ä@ˇÄˇ@ġÄÄˇÄ¿@@@ˇ¿@ġÄÄ@ˇ¿@ˇ¿˛ÄÄÄ@@@@@ˇˇÄIJ¿¿ÄˇÄ@@ @¿@ˇ@@ˇ¿@¿ˇÄ@ˇÄ¿@ˇ¿@¿ˇ@@ˇ¿@¿ ˇ@ˇ¿@ˇ¿ˇ@ˇ¿ÄÄġIJÄ@˝¿@˛¿Ä@ˇ¿@¿ ˇ@ˇ¿@ˇ¿ˇ@ÄÄÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ ˇ@ˇ¿@ˇ¿ˇ@ˇ¿@¿@ˇ¿ÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ˇ¿@@ˇ¿@ ˇ@ˇ¿@ˇ¿ˇ@ˇ¿@Ä@ˇ@Ä@@ÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@¿ ˇ@ˇ¿@ˇ¿ˇ@ˇ¿@¿@ÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ˇ¿@¿ ˇ@ˇ¿@ˇ¿ˇ@@@ÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ˇ@ˇ¿ˇ@¿ˇ@¿ˇˇ@ÄġIJÄ@ˇ¿ˇÄˇ¿ˇˇ¿@˛¿ˇÄ@@Ä@ˇ@@ˇˇ¿ˇÄ@ˇ¿@@@ˇ¿˛@ˇ¿ˇ¿@¿ @ˇˇ˛¿Ä@ˇ¿ˇÄˇ¿ˇˇ¿Ä@ˇ¿@¿ @ˇˇˇÄÄ@ˇ¿ˇÄˇ¿ˇˇ¿Ä@ˇ¿@ @ˇˇ˛¿@¿@ˇ¿@ˇ¿ˇÄˇ¿ˇˇ¿Ä@ˇ¿@ˇ¿@@ˇ¿@¿ @ˇˇ˛¿@¿@@ˇ¿ˇÄˇ¿ˇˇ¿Ä@ˇ¿@ˇ¿ˇ¿@¿@ˇÄÄ@˝¿Ä@ˇ¿Ä¿@ˇ¿Ä@˝¿Ä@ˇ¿ˇ¿Ä @ˇÄ@@@ˇÄ@@˝¿Ä@ˇ¿@ˇ¿@@ˇ¿ˇ¿Ä¿ @ˇÄ@@@@˝¿Ä@ˇ¿@ˇ¿ˇ¿@@@˛¿ˇ¿@ˇ@@ˇ¿¿@¿˛@ˇ¿@ˇ¿ˇ@ˇ¿ˇ@ˇ¿@ @ˇ¿ˇ@ˇ¿@Ä@ˇ@Ä@@@˝¿˛Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@¿ ˇ@ˇ¿@˛¿Ä@¿˛@ˇ¿@˝¿Ä@ˇ¿@¿ ˇ@ˇ¿@ˇÄÄ@¿˛@ˇ¿@˝¿Ä@ˇ¿@ ˇ@ˇ¿@˛¿@¿@ˇ¿@¿˛@ˇ¿@˝¿Ä@ˇ¿@ˇ¿@@ˇ¿@ ˇ@ˇ¿@˛¿@Ä@ˇ@Ä@@@¿˛@ˇ¿@˝¿Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@¿ ˇ@ˇ¿@˛¿@¿@@¿˛@ˇ¿@˝¿Ä@ˇ¿@ˇ¿ Ä@¿ #@¿@ˇ@@@ˇÄ@ˇÄ@@@ˇ@¿@Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@@ Ä@@ˇ¿ˇÄ@ˇÄ@Ä@˛¿ˇ¿Ä@˛Äˇ¿ˇ¿@˝¿@¿ @¿@˛¿Ä@˛˝¿Ä@ˇ¿@¿ @¿@ˇÄÄ@˛˝¿Ä@ˇ¿@ @¿@˛¿@¿@ˇ¿@˛˝¿Ä@ˇ¿@ˇ¿@@ˇ¿@¿ @¿@˛¿@¿@@˛˝¿Ä@ˇ¿@ˇ¿@¿ ġÄ@¿@ˇÄÄ@ˇ@¿ˇ˛¿Ä@ˇ¿@ ¿ˇÄˇ¿@¿ˇ@¿¿ˇ@ˇ@@ˇÄ˛¿ˇÄ@@ ÄÄ@ˇÄ@ˇ@ˇ¿ˇ@@˛¿@@ˇ¿˛¿@ˇ@IJ@¿ ˇ@ˇ¿@ˇ¿ˇ@ˇ¿ÄÄġIJÄ@˝¿@˛¿Ä@ˇ¿@¿ ˇ@ˇ¿@ˇ¿ˇ@ÄÄÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ ˇ@ˇ¿@ˇ¿ˇ@ˇ¿@¿@ˇ¿ÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ˇ¿@@ˇ¿@ ˇ@ˇ¿@ˇ¿ˇ@ˇ¿@Ä@ˇ@Ä@@ÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@¿ ˇ@ˇ¿@ˇ¿ˇ@ˇ¿@¿@ÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ˇ¿@¿ ˇ@ˇ¿@ˇ¿ˇ@@@ÄġIJÄ@˝¿@˛¿Ä@ˇ¿@ˇ@ˇ¿ˇ@¿ˇ@¿ˇˇ@ÄġIJÄ@ˇ¿ˇÄˇ¿ˇˇ¿@˛¿ˇÄ@@Ä@ˇ@@ˇˇ¿ˇÄ@ˇ¿@@@ˇ¿˛@ˇ¿ˇ¿@¿ @ˇˇ˛¿Ä@ˇ¿ˇÄˇ¿ˇˇ¿Ä@ˇ¿@¿ @ˇˇˇÄÄ@ˇ¿ˇÄˇ¿ˇˇ¿Ä@ˇ¿@ @ˇˇ˛¿@¿@ˇ¿@ˇ¿ˇÄˇ¿ˇˇ¿Ä@ˇ¿@ˇ¿@@ˇ¿@¿ @ˇˇ˛¿@¿@@ˇ¿ˇÄˇ¿ˇˇ¿Ä@ˇ¿@ˇ¿ˇ¿@¿@ˇÄÄ@˝¿Ä@ˇ¿Ä¿@ˇ¿Ä@˝¿Ä@ˇ¿ˇ¿Ä @ˇÄ@@@ˇÄ@@˝¿Ä@ˇ¿@ˇ¿@@ˇ¿ˇ¿Ä¿ @ˇÄ@@@@˝¿Ä@ˇ¿@ˇ¿@ġ@ˇ¿ˇ¿ˇ¿ˇ¿@@Ä@ˇˇ¿Äġ¿@@@ˇ¿˝¿@ @ˇ¿ˇ@ˇ¿@Ä@ˇ@Ä@@@˝¿˛Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@¿ ˇ@ˇ¿@˛¿Ä@¿˛@ˇ¿@˝¿Ä@ˇ¿@¿ ˇ@ˇ¿@ˇÄÄ@¿˛@ˇ¿@˝¿Ä@ˇ¿@ ˇ@ˇ¿@˛¿@¿@ˇ¿@¿˛@ˇ¿@˝¿Ä@ˇ¿@ˇ¿@@ˇ¿@ ˇ@ˇ¿@˛¿@Ä@ˇ@Ä@@@¿˛@ˇ¿@˝¿Ä@ˇ¿@ˇ¿@@ˇ¿@ˇ¿@¿ ˇ@ˇ¿@˛¿@¿@@¿˛@ˇ¿@˝¿Ä@ˇ¿@ˇ¿Ä@¿ Ä@ˇ@@ˇ@@Ä@ˇ¿Ä@ˇ¿Ä@ˇ¿@@ Ä@@ˇ¿ˇÄ@ˇÄ@Ä@˛¿ˇ¿Ä@˛Äˇ¿ˇ¿@˝¿@¿ @¿@˛¿Ä@˛˝¿Ä@ˇ¿@¿ @¿@ˇÄÄ@˛˝¿Ä@ˇ¿@ @¿@˛¿@¿@ˇ¿@˛˝¿Ä@ˇ¿@ˇ¿@@ˇ¿@¿ @¿@˛¿@¿@@˛˝¿Ä@ˇ¿@ˇ¿@¿ ġÄ@¿@ˇÄˇ@Ä@ˇ@¿ˇ˛¿Ä@ˇ¿@ ¿ˇÄˇ¿@¿ˇ@¿¿ˇ@ˇ@@ˇÄ˛¿ˇÄ@¿ ġÄ@¿@ˇÄˇ@@¿@@ˇ@¿ˇ˛¿Ä@ˇ¿@ˇ¿@¿ ġÄ@¿@ˇÄˇ@@¿@@ˇ@¿ˇ˛¿Ä@ˇ¿@ˇ¿@@ ÄÄ@ˇÄ@ˇ@ˇ¿ˇ@@˛¿@@ˇ¿˛¿@ˇ@IJÄ@Ä@ˇ¿¿@@@¿ÄˇÄ¿@@@¿ÄˇÄˇ¿@@@ˇ¿ÄˇÄ¿@@@¿ÄˇÄ¿¿@@@@¿ÄˇÄġÄ¿¿@@@@¿ÄˇÄġġ¿¿@@@@ˇ¿ÄˇÄġÄ@@ ġÄÄ@ġÄÄ@ġġ¿˛Ä¿¿Ä @ˇ¿@@@ˇ¿¿@@@ˇ¿ˇ¿ˇ¿@@ @@@@@@ˇ¿@ˇ¿@ˇ¿Ä¿¿ Ä@ˇÄ@ˇÄ@@@Ä@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿Ä¿¿ @@@ˇÄ@ˇÄ@Ä@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿@@ˇ¿ˇ¿@@ˇ¿@ˇ¿@@ˇ¿ˇ@¿ˇ@@Ä@@@ġ¿ˇ¿ˇ¿ˇ¿ˇ¿ˇ¿ˇ¿@@ Ä@˛Äˇ¿¿ˇ¿Äġ¿¿ˇ¿ÄÄ@ˇ¿ˇ¿Ä@ˇ¿ˇÄ¿ˇ¿ˇÄÄ@ˇ@@@@˛¿ˇ@ˇ¿ˇ@¿@ˇ¿˛@@ˇ¿ˇÄ˛Ä@˛¿@@ ˇ@¿@ˇ¿ˇ@@ˇ¿ˇÄ@˛@@˛¿ååå僸¨LÙ¿‰`‹T†ƒË p®‘ l¨¯DúÏ 0 h † H Ä ( † Ù @ ê »  ` † Ï8\†0|¥Ï0ê<t¨(t<Ãh†@d∞8Ñ–\®Ãt†Ï$\†`¨‰ò‰`¨<∏‹XºÙ|¸ ∏!T!å"p"®# #X$@$l$ê$Ë% %D%§%&<&`&†&Ù''P'|'¥(ú)T**Ï+d+»,,,º-`-ÿ.<.∞//p/–0\0‘1 1D1®1¯2l2¸3L3ú44®5 5‡6D6ê6‹7T7∏88d8–949ò:(:Ã;D;®<<|<‹=<=»>@>x>∞??d?ÿ@h@∏AAÑBBxB»C,CxCƒD<D†EELEƒF<F®FÃFGG8G\GîGÃHHPHúHÏIhI‰JlJ¯KXK¨
24,976
Common Lisp
.l
14
1,782.642857
9,336
0.134599
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
d38baef4a03c7f82c00f25f41034a0a03c13b189d0409d5183418b5dbc3a175e
20,869
[ -1 ]
20,870
kenpixel_mini.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_mini.ttf
 А OS/2ЦVм`cmapЭ|Гм\glyf·7Ъ╘,Rшhead_ Р6hhea■№@$hmtxRА ЯdPlocaЮgcTmaxp ╒S┤ nameV╬*╧╘╒post ¤ 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒&{"_<ї╩3дю╩3дю А А  АА╘АААААААААААААААААААААААААААААААААААААААААААААААААААААААААААААА АААААААААААААААААААААААААААААААААААА ААА АА АА АААААААААААААААААААААААААА ААА АА ААААААААААААААААААААААААААА╘( "Ю ")A V a<nк ┐ *┼ я 0 (6.^)М╡ *╜ ч  0 *? i  xЩ * ; TG .Ы `╔ P) \y R╒ 'Copyright Kenney 2011KenPixel MiniRegularFontStruct KenPixel MiniKenPixel Mini RegularVersion 1.0KenPixel-MiniFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenneyKenPixel Mini was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/504844Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkMfV1gCopyright Kenney 2011KenPixel MiniRegularFontStruct KenPixel MiniKenPixel Mini RegularVersion 1.0KenPixel-MiniFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenney KenPixel Mini  was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/504844Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkMfV1gёР3╠а@ FSTR@ √А√АА f3АА @ Ъ╦ 5f Ъ╦ Ы ╒ у т &АZf Ъwf Ъwf Ъwe у с ╫■AА¤АААА ААА АА■АААААААА  ААА А А АА АААААА АА А А АА А ААААА АА А А А А АА АА А  А А АА ААА А А А А ААА ААА■ААА■АААА АА ААА ААА ААА ААА АА А АА АА А■АААА■ААА ААА А АА АА  АААА А АААААА А АА ААА ААА■ААА АА АА АА ААА■ААА ААА АА ААА АА ААА АА ААА ААА А АААА ААААА А А А АААА А АААА ААААА ААА АААААА ААА ААА ААА ААА АА А■ААА■АА ААА■АА■ААА ААА АА¤АА АА■АА■А А АА ААА ААА АА А■ААА■АА ААААА■ААА АА А АА ■АА¤АААА■■АА ААА ААА А А АА АА А  А А А А АА АА ААА■А А АААА А А■ААА■А■ААА■АА ААА АА ААА ААА АА ААА АА А■ААА■АА ААА АА■ААА АААА АААА АА ААА АА АА ААА А А АААА ААА ААА ААА ААА АААА■АААА АА ААА ААА А АА ААА ААА ААА ААА АА АА А■АА АА АААА АА■АА ААА■АА ААА■АААА■ААА АА АА А  АА■ А АААА АА■А  АА АА А■АА А А А А АА АА■ААА ААА■ААА АА АА■А АА■А АА А■А АА АА■АА■ААА ААА А А ААА АА АА■АА А А А АА А А■ААААА■ААА■ААА АА АА А А ¤А АААА¤ААА  АА АААА■А АА■А А А  А А АААА■ ААА А¤А А А А■А А■■А АА■А■■А АА А■ААА■АА ААА■АА■ААА АА АА■А  АА А■АА А А А А АААА■ААА■А ААА■А АААА АА■А   АА А■АА А А А А А■ААА■ААА ААА А АА АААА АА АА А■А А■АААА АА■■АА А ААА■АААА ААА АА ААА■АА■ААА АААААА■■ АА■А АА■А■ААА  А АА  АА■АА АА АА  АА■А АА■А■А А АА АААА А ААА А■А ААА А А А А АА ААА ААА ААА ААА ААА АААА¤АААА ААА ААА АА ААА ААА ААААААА А АА А  АА■ А АААА АА■А  АА АА А■АА А А А А АА АА■ААА ААА■ААА АА АА■А АА■А АА А■А АА АА■АА■ААА ААА А А ААА АА АА■АА А А А АА А А■ААААА■ААА■ААА АА АА А А ¤А АААА¤ААА  АА АААА■А АА■А А А  А А АААА■ ААА А¤А А А А■А А■■А АА■А■■А АА А■ААА■АА ААА■АА■ААА АА АА■А  АА А■АА А А А А АААА■ААА■А ААА■А АААА АА■А   АА А■АА А А А А А■ААА■ААА ААА А АА АААА АА АА А■А А■АААА АА■■АА А ААА■АААА ААА АА ААА■АА■ААА АААААА■■ АА■А АА■А■ААА  А АА  АА■АА АА АА  АА■А АА■А■А А АА АААА АА А  ААААА ААААА■ААА ААААА¤ААА ААА А АА ААА А А ААА А ААА АААА АА ААА АА АААА ААА■АА АААА АААА  АААА А А А А А АА  АААА АА АА■ААА А А А ААА ААА ААА АААА¤ААА¤ААААААА АА АА АА  А АА АА ААА АА АА АА А■АААААААА А А А АА АА АААА АА А А А АА■ААА А■АА АА ААА АА А АААА А ААА ААААА АА ААА АА А■АААА■АА АА А АА■АА■ААА АА АААА■АА ААА■АА АА ААА АААА■ААА А А #'АА¤ААА¤ААА■ААА■АААА АА ААА АА ААА АА ААА АА ААА АА АААА■АААА ААААА ААА АА А■АААА■АА АА А АА■АА■ААА ААА ААА А ААА А АА■ААААА  АААА ААА АААА А А ААА А АА■АА А АА ААА ААА ААА  А■ААА ААААА■ААА ААА А А А А АА■А А АА■А АА А А А А ААА¤А¤ААААА А А АА А АА А АААА АА А ААААА А АА  А■ А #'АА■ААА■ААА¤ААА¤АААА АА ААА АА ААА АА ААА АА ААА АА АА АА■АА■АААА ААА А А А ААА ААА АА АА АА¤АААА■АААА АА ААА ААА ААА ААА АА АА АА■АА■ АААА ААА А А А ААА А А ААА АА АА■А АА А АА АА АА АА А ■А АА■ А АА АА АА А  А АА■ А АА А АА А ■ААА■А АА■ А АА АА ААА А АА А ■АААА ААА АА■ А АА АА ААА АА АА АА А ■ААА АА■ А АА АА АА АА А   АА■ А АА ААА АА А    ААА А А А А А А А А■АА А АААА А■ААА АА АА■АА■АА■А ААА А А ААА АА АА АА■АА■АА А ААА А А ААА АА А АА■АА■АА■АА■АА ААА А А ААА АА АА ААА АА АА■АА■АА■ААА ААА А А ААА АА АА А АААА А¤АА ААА АА¤АА А А А ААА АА¤АА АА ААА А АА А АААА¤АА АА А АААА■ ААА А ААА■А АА А А А А А АА■А■АААА ААА■■А АА АА ААА АА АА А■ААА■А■АА ААА■АА■ААА АА АА А■ААА■А АА ААА■АА■ААА АА А А■ААА■А■ААА■АА ААА■АА■ААА АА АА ААА А А■ААА■А■АААА АААА ААА■АА■ААА АА АА ААА АА АА А■ААА■А■АААА ААА■АА■ААА АА АА А АА #ААА■ААА А ААА■АААА АА ААА АА ААА ААА АА ААА АА АА А АААА ААА■ААА  А ААААА■ААА АА А■ААА■А АА■■АА АА А■ААА А АА■■АА А А■ААА■АА■АА АА■■АА АА ААА АА А■ААА■ААА АА■■АА АА ААА■АА А■А АА  АА■АА АААА■А  А А А А А А А АА АА АА■А А ААА ААА ААА А■АА А■А АА А ■А АА■ А АА АА АА А  А АА■ А АА А АА А ■ААА■А АА■ А АА АА ААА А АА А ■АААА ААА АА■ А АА АА ААА АА АА АА А ■ААА АА■ А АА АА АА АА А   АА■ А АА АААА АА■А¤АААА А ААААА АА  А АА АА А А А А■АА А АААА А■ААА АА АА■АА■АА■А ААА А А ААА АА АА АА■АА■АА А ААА А А ААА АА А АА■АА■АА■АА■АА ААА А А ААА АА АА ААА АА АА■АА■АА■ААА ААА А А ААА АА АА А АААА А¤АА ААА АА¤АА А А А ААА АА¤АА АА ААА А АА А АААА¤АА АА АА■АА А АА АА АА■А А АА■А■АААА ААА■■А АА АА ААА АА АА А■ААА■А■АА ААА■АА■ААА АА АА А■ААА■А АА ААА■АА■ААА АА А А■ААА■А■ААА■АА ААА■АА■ААА АА АА ААА А А■ААА■А■АААА АААА ААА■АА■ААА АА АА ААА АА АА А■ААА■А■АААА ААА■АА■ААА АА АА ААА А■АА■ААА АА АА АА А АААА ААА■ААА  А ААААА■ААА АА А■ААА■А АА■■АА АА А■ААА А АА■■АА А А■ААА■АА■АА АА■■АА АА ААА АА А■ААА■ААА АА■■АА АА ААА■АА А■А АА  АА■АА АААА■А  А А А А А А А ААА■АА А■ААА АА  АА■АА АА ААА■АА А■ААА АА  АА■АА АА АА АА АА■А А ААА ААА ААА А■АА А■АА АААААА ААААА  АААА А ААААА ААААААА  ААААААА   АААААА А  А АА  АААА А ААА А А■ АА АААААА АА АА АА АА ААА ААА ААА АА АА АА ААА ААА АА АА ■ААА АА А АА■ААА ААА А¤ АА А АА ААА А АА А А А А■АА АА А ААА А■А А АА АААА АА А А А■ А¤А ММММ─№м$╠`Д╘$И╘°@╝ L╝ l╨0И 0 Ь ╘ И └ < Ф l ф 4 А ф0ФрHм╪0Аф<а pи°t╠HмH─№LpФЇl╝l╕hМ╨4`╕l─(Ф°0А№T╨4Ш№ Д ш! !А""╝#H#А$$$\$╪%h&P&|&а''@'x'╪(H(м(╨))\)А)─)№*4++─,l--t-ь.d//└0L0─1L1╝242м3P3р44P4┤55x6 6Ь77└8|9 9р:`:─;(;╕<4<м= =Р>>А?$?▄@h@рAМA№BtBьCРD DXDРDЇEDE╝FdFрG\HH└IPIаJ JДJшKxKЇLlL╠M\MьNpNФN╕N▄OO$O\OФO╠PP<PМP▄Q,QРRRИRш
26,216
Common Lisp
.l
13
2,015.615385
10,544
0.161388
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c63e735b208a5efdd2e9fa75de4970b5c6e4f8eb84742804074d3017d8bb64c1
20,870
[ -1 ]
20,871
kenpixel_mini_square.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_mini_square.ttf
 А OS/2ЦV`cmapЭ|Гм\glyfЁ▀ШRРG╝head_ Р6hhea■№@$hmtxS ЯdPlocao╚ZLTmaxp ╒S┤ name▄зЪ5╘ 9post ¤p 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒<Х/_<ї╩3дє╩3дє А А  АА╘АААААААААААААААААААААААААААААААААААААААААААААААААААААААААААА АААААААААААААААААААААААААААААААААААА ААА АА АА АААААААААААААААААААААААААА ААА АА ААААААААААААААААААААААААААА╘( "ЮББХЬ╗ ╫т<Ў2 G ЬM щ 0 (0X)XБ Й (Л │ >┴ 8  7 (M xu *э  8# .[ `Й Pщ 9 R9 ЛCopyright Kenney 2011 KenPixel Mini Square is based on KenPixel Mini by Kenney (http://fontstruct.com/fontstructors/kenney)KenPixel Mini SquareRegularFontStruct KenPixel Mini SquareKenPixel Mini Square RegularVersion 1.0KenPixel-Mini-SquareFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenneyKenPixel Mini Square was built with FontStruct KenPixel Mini Square is based on KenPixel Mini by Kenney (http://fontstruct.com/fontstructors/kenney)http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/505540Creative Commons Attribution Share AlikeFive big quacking zephyrs jolt my wax bedBwkNcF1kCopyright Kenney 2011 KenPixel Mini Square  is based on KenPixel Mini  by Kenney  (http://fontstruct.com/fontstructors/kenney)KenPixel Mini SquareRegularFontStruct KenPixel Mini SquareKenPixel Mini Square RegularVersion 1.0KenPixel-Mini-SquareFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenney KenPixel Mini Square  was built with FontStruct KenPixel Mini Square  is based on KenPixel Mini  by Kenney  (http://fontstruct.com/fontstructors/kenney)http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/505540Creative Commons Attribution Share AlikeFive big quacking zephyrs jolt my wax bedBwkNcF1kёР3╠а@ FSTR@ √А√АА f3АА @ Ъ╦ 5f Ъ╦ Ы ╒ у т &АZf Ъwf Ъwf Ъwe у с ╫■AА¤АААА ААА АА■АААААААА  ААА А А АА АААААА АА А А АА А ААААА АА А А А А АА А ААА А ААА  А АААААА А А А■А ААА ААА■ААА■АААА АА ААА ААА ААА ААА АА А АА■АА А■А ААА А■ААА А■А А А АААААА А АА ААА ААА■ААА АА АА АА ААА■ААА ААА АА ААА АА ААА АА ААА ААА А АААА ААААА А А А АААА А АААА ААААА ААА АААААА ААА ААА ААА ААА ААА  ААА■А АА¤ААА АА¤АА А■А■ААААА■А А АА А■АА■АААААА¤АА А■АААА ¤АА А■А■ААААА А А■АА А  А■АААА А АА А А■АА ААА■А А АААА А А   ААА АА А■АА¤АА А  АА■ААА А■АААА¤АААА АААА АА ААА АА АА ААА А А АААА ААА ААА ААА ААА АААА■АААА АА ААА ААА А АА ААА ААА ААА ААА АА АА А■АА АААА■АА  А АА■ААА■А АА А  А А АА А■АА¤А А А  АА А А А АА А■ААА А■А АА АА■А АА■А АА А■А АА ■АА■ААА А А А А АА ■АА■АА А А А А ■А АА А■ААА■АА АА А А ¤А АААА¤ААА  АА АААА■А АА■А А А  А А АААА■ ААА А А А А АА¤А■■А А А¤А■АА  ААА■А АА¤АА А  А■ААА А■АА■А А А  ААА■А АА¤АААА■ А   А А А А А А■А■ААААА А А■АААА АА АА А■АААА■¤ААА А ААА■АААА ААА АА ААА■АА■ААА АААААА■■¤АА АА■А■ААА  А АА  А А■АААААА ¤АА АА■А■А А АА АААА А ААА А■А ААА А А А А АА ААА ААА ААА ААА ААА АААА¤АААА ААА ААА АА ААА ААА ААААААА А А  А А АА А■АА¤А А А  АА А А А АА А■ААА А■А АА АА■А АА■А АА А■А АА ■АА■ААА А А А А АА ■АА■АА А А А А ■А АА А■ААА■АА АА А А ¤А АААА¤ААА  АА АААА■А АА■А А А  А А АААА■ ААА А А А А АА¤А■■А А А¤А■АА  ААА■А АА¤АА А  А■ААА А■АА■А А А  ААА■А АА¤АААА■ А   А А А А А А■А■ААААА А А■АААА АА АА А■АААА■¤ААА А ААА■АААА ААА АА ААА■АА■ААА АААААА■■¤АА АА■А■ААА  А АА  А А■АААААА ¤АА АА■А■А А АА АААА АА А  ААААА ААААА■ААА ААААА¤ААА ААА А АА ААА А А ААА А ААА АААА АА ААА АА АААА ААА■АА АААА АААА  АААА А А А А А АА АА А А ААА А А А А ААА АААА¤ААА¤ААААААА АА АА АА  А АА АА ААА АА АА АА А■АААААААА А А А АА АА АААА АА А А А АА■ААА А■АА  ААА  А АААА  А ААААА АА ААА АА■А ААА А АА■А АА¤АА АААА■АА ААА■АА АА ААА АААА■ААА А А #'АА¤ААА¤ААА■ААА■АААА АА ААА АА ААА АА ААА АА ААА АА АААА■АААА ААААА ААА АА■А ААА А АА■А АА¤ААА ААА А ААА А АА■ААААА  АААА ААА АААА А А ААА  А АААА■А А ААА   ААААААА¤ААА А А АА■А АА■АА■ А АА А А А А ААА¤А¤ААААА А А АА А АА А АААА АА А ААААА А АА  А■ А #'АА■ААА■ААА¤ААА¤АААА АА ААА АА ААА АА ААА АА ААА АА АА АА■АА■АААА ААА А А А ААА ААА АА АА АА¤АААА■АААА АА ААА ААА ААА ААА АА АА АА■АА■ АААА ААА А А А ААА А А ААА АА А А АА А А АА АА А  А А  ААА А■АА¤А А АА А  А А ААА А■АА¤А А А А  А А  ААА■ААА А■АА¤А А АА ААА А А  А А  АААА ААААА А■АА¤А А АА ААА АА АА А  А А  ААААА А■АА¤А А АА АА А  А А АА А■АА¤А А ААА АА А    ААА А А А А А А А■А■АА А АААА А■А А ■АА■АА■А А А А А АА АА ■АА■АА А А А А А АА А ■АА■АА■АА■АА А А А А АА АА ААА АА ■АА■АА■ААА А А А А АА АА А АААА А¤АА ААА АА¤АА А А А ААА АА¤АА АА ААА А АА А АААА¤АА АА А АААА■ ААА А ААА■А АА А А А А А  А  АААА АААА¤А■А АА ААА АА АА А  А■АА■А АА¤АА АА А  А АА■А АА¤АА А А  А■АА■ААА■А АА¤АА АА ААА А А  А■ААА ААААА■А АА¤АА АА ААА АА АА А  А■АААА■А АА¤АА АА А АА #ААА■ААА А ААА■АААА АА ААА АА ААА ААА АА ААА АА АА А АА А АААА  А АА¤АА АА■А■¤АА АА АА А■¤АА А АА■АА■АА■¤АА АА ААА АА АА■ААА■¤АА АА АА А■ААА■ААА ¤АА АА А  ААА■АА А А А■А АА АА А■А А АА А А А А■А А  А А  ААА А■АА¤А А АА А  А А ААА А■АА¤А А А А  А А  ААА■ААА А■АА¤А А АА ААА А А  А А  АААА ААААА А■АА¤А А АА ААА АА АА А  А А  ААААА А■АА¤А А АА АА А  А А АА А■АА¤А А АААА А ■А ■ААА АА А■АААА■А А А А А■А■АА А АААА А■А А ■АА■АА■А А А А А АА АА ■АА■АА А А А А А АА А ■АА■АА■АА■АА А А А А АА АА ААА АА ■АА■АА■ААА А А А А АА АА А АААА А¤АА ААА АА¤АА А А А ААА АА¤АА АА ААА А АА А АААА¤АА АА А А  ААА АА  АА¤ААА А  А  АААА АААА¤А■А АА ААА АА АА А  А■АА■А АА¤АА АА А  А АА■А АА¤АА А А  А■АА■ААА■А АА¤АА АА ААА А А  А■ААА ААААА■А АА¤АА АА ААА АА АА А  А■АААА■А АА¤АА АА ААА А■АА■ААА АА АА АА А АА А АААА  А АА¤АА АА■А■¤АА АА АА А■¤АА А АА■АА■АА■¤АА АА ААА АА АА■ААА■¤АА АА АА А■ААА■ААА ¤АА АА А  ААА■АА А А А■А АА А■ААА■ААААА ¤АА АА АА А■ААА■ААААА ¤АА АА АА АА А■А А АА А А А А■АА АААААА ААААА  АААА А ААААА ААААААА  ААААААА   АААААА А  А АА  АААА А ААА А А■ АА АААААА АА АА АА АА ААА ААА ААА АА АА АА ААА ААА АА ■■ААА А А А■А АААА АА АА А А А АА А А■А АА А АА А ААА А■А А АА АААА АА А А А■ А¤А ММММ─№м ╚<`░d░╘°Ш╨№HФ╘ l─`Ш╨ L Д L Ш ф D | ╚  T а ь  T ╕ ф0hаф(И╘ D└ И╘8pь$tШ╝hаь8x─4x▄TМ─Lм°0hф0м°\└фHмфDмhЇ,╕Ё @ ╨!╕!ф""X"|"┤##`#м#╨$$P$t$╕$Ё%(&&╕'`((\(└)$)┤*X*╨+4+╝,,t,╘-`-╪..H.м.№/p00P0а11м22ф3<3И3╘4L4░55\5╚6,6Р7 7─8<8а99p9╨:0:╝;4;l;д<<X<░=@=Р=р>\>ь?P?а?°@D@РAAlA╠BBРCCtCШC╝CрDD(D`DШD╨EE@EРEрF0F|FЁG\G╝
23,968
Common Lisp
.l
16
1,496.6875
8,988
0.172212
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
4cc9301ea7d22059891549cdfadcf61db5aeee3b5541b9e9c44cd7cbfb7332f5
20,871
[ -1 ]
20,872
kenpixel_high.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_high.ttf
 А OS/2Цвм`cmapЭ|Гм\glyf.├T╙,YDhead_ Р6hhea■}@$hmtx╒dPlocaюVipTmaxp ╒[┤ nameV╬*╧╘╒post ¤ 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒╤Г_<ї╩6еў╩6еў └ А@ АА └@А╘@АААААА└ААААА@ААААААААААА@А@ААААААААААА@АААААААААААААА@АААААААААААА@ААААААААААААААА└АААААААА└@└А@@└АААААА└└└└└└ААААААА@АААААА └└└ └└ └А └ААААААААААААА@ААААААА@АААААА └└└ └└ └АААААААААААААА@ААА└АААААА└ └ААА╘0 "Ю ")A V a<nк ┐ *┼ я 0 (6.^)М╡ *╜ ч  0 *? i  xЩ * ; TG .Ы `╔ P) \y R╒ 'Copyright Kenney 2011KenPixel HighRegularFontStruct KenPixel HighKenPixel High RegularVersion 1.0KenPixel-HighFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenneyKenPixel High was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/504862Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkMfV9mCopyright Kenney 2011KenPixel HighRegularFontStruct KenPixel HighKenPixel High RegularVersion 1.0KenPixel-HighFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenney KenPixel High  was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/504862Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkMfV9m=Р3╠а@ FSTR@ √@А√@@ f3@@   д╖ I\ д╖ е ┘ ц х <@Q\ дk\ дk\ дk[ ц х ┌■n@¤└@@@ └@@ └А└■@└└@@@@└А АА А@@└ └ └ └@ └@@@@@ └@ └ └ └@ └ └@@@└ @└ @ └ └ └ @└ @ └@А +@└@■└@└@ @ └@ └@ └@@@ └@ └@ └@@ └ @А А@@ └■@@@А@@ └ └ А └  └ └@@ @АА @@@ АА@А АА ААА ААА ААА А@А А@@ └ А@ !%)@└@ └@@ @@@@■А@@ └А @@А@ @А@ └@А └ А└@ └@ └ А └@@ ААА АА АА@ └└@@@└А А└@ А@ А@ А@@@@ └@А АА└ @└А АА@ └└@ @@@ А@ А@@ └@А АА└ @└А АА@ └@└@@@@ А └@@@ └@@ └@ └@@@@ └ └ └А@└ А АА@А ААА@А А └ А └@@@ └А А@@@@ └@@@@ └ @@@@А ААА ААА ААА А@@ @└ @└@ └@ └@└■@└■@└@ └└@А@ @А■@ └@@ @ └@■└@  └@@ └@А АА@ └@@  @■└@ └@@А■@└@ └@@ @└ @└@А└ @■А@@└¤└@@@■└@ └@ └@  └ А └@@@└@■└@└ @└@ └@ └@ └ А └ А@ └@@ └@@ А@@ @@■└@@ └@А@ @@@ @└ @└@ └ @└@ └@ └@  @ └@А АА АА@ └@@ @└ @ └@└ @└@ └@ └@@ └@А А■└@А■@└@ └А@└@ └@А@ └@ └@@└@ └@@А А@@ └@ └@ А@ А@ А@@@@@@ └@@ └@@ └@@ └@@ └@@ └@@ └└@А@■└@└@ └А@ └@ @@@@ А@ А@ А@@@ └@@ └@@ └@@ └@@ └@@ └@@ └@@ А@ └@@ @└@ └@ └А└ @└@ └А@ └ └А АА@ └@@ @└@ А@ А@ @@└@ └@ └@@ └А@ └@└ @ @└■@└ @ └@@ @└@ └ @└ АА■@■└@ └@@@■└ @└ @└@АА А■А@ └ А └ ■└@@ @└@■└@└@ └@ └@@ └└■@А@ └@@ └@@ @■└ @└@└■@ └@ └■@ └@@ @■└@ @ └@└ А └ └@ └@@ @  А └■└@ └@@ @└ А└■└@@ └@@■└└■@└@ └@@ @└@ └ @@ @└¤└@■└@@@@¤└@ └ @@ └@└@■@@ @■└@└ @└@@■└@ @ └■└А└ @@@@■└@@ └@■└@ А@■@А А └ А■@ └■■@@ @■└ @■@ └■@@ @└ @└@ └@ └@└■@└■@└@ └@@ @■└ @└ @АА А■А@ └ А └■└ └@@ А └@@@ └ @@└@ └ └@@@ └ └ └А└■@└■@└@ └@@@ └@■└ @└ @@■└АА А■А@ └ А └■└@@ @ └ @@ └@ @ └@А АА@ └@@А А@ А@ └■@@ @└ @└@@ └@■■@@ А@ А@@@ @└@@ └@@ └@ └@└■@└■@└@ @А@А@@■■ └@■@@ @└@ └ @└@@■└@■└@@ └@└ @└ @@@ А └└ └ @@└@@@ └■└А└ @└ @@@ @ @@@ @└ А └└@ └@@ └@@ └@А@ @└@└ АА@ └■@ └ └@ А@ А@ А@А ААА ААА ААА А└@А А└@└@¤└А@@ @└@ @@@ А@А@ └@ └@@ └@ └@@ └@@@@ └└@@@└А А@@ @└@ └ @└ АА■@■└@ └@@@■└ @└ @└@АА А■А@ └ А └ ■└@@ @└@■└@└@ └@ └@@ └└■@А@ └@@ └@@ @■└ @└@└■@ └@ └■@ └@@ @■└@ @ └@└ А └ └@ └@@ @  А └■└@ └@@ @└ А└■└@@ └@@■└└■@└@ └@@ @└@ └ @@ @└¤└@■└@@@@¤└@ └ @@ └@└@■@@ @■└@└ @└@@■└@ @ └■└А└ @@@@■└@@ └@■└@ А@■@А А └ А■@ └■■@@ @■└ @■@ └■@@ @└ @└@ └@ └@└■@└■@└@ └@@ @■└ @└ @АА А■А@ └ А └■└ └@@ А └@@@ └ @@└@ └ └@@@ └ └ └А└■@└■@└@ └@@@ └@■└ @└ @@■└АА А■А@ └ А └■└@@ @ └ @@ └@ @ └@А АА@ └@@А А@ А@ └■@@ @└ @└@@ └@■■@@ А@ А@@@ @└@@ └@@ └@ └@└■@└■@└@ @А@А@@■■ └@■@@ @└@ └ @└@@■└@■└@@ └@└ @└ @@@ А └└ └ @@└@@@ └■└А└ @└ @@@ @ @@@ @└ А └└@ └@@ └@@ └@А@ @└@ А@ А@ А@@@@ └@└ @└@ └@└ @└@ └@@@@¤└└@ @@@ А@ А@@ └@└ @└@ └@└ @└@ └АА @АА АА@@ └@ └@@ └@ └@@@ └@└■@@ └@@ @■└@└@ @ └@ └@@@ └@ └└@ └└ @А@ └ @@└@@ └ └ @ └ └@@@  └@@@ └А@ @А└ А └└А@А А └ А@ └@@ └А@└ @└@ @@ А@@@ А@ @@└@А@ └@ └@@ └@@ └@ └@@ └@@ └@ └@@А └@ └@ └└ └@ └@ └ @@└@@@@@@@ └ └ └ └ └ └А└ @└ @@@@ └@└ @А└ @ @@ #'+/@└ @└@ А@ А@ А@@@ А@ А@ А@└@ └@ └@@ └@ └@@ └@@ └@@ └@ └@@ └@@ └@@ └@ └@@ └@@@└@@ └@ └@А @ @А └@ @@■└@@ └А└ └ └ └ └@■└@■└@@ └@ @А АА@ @А@@ └ └@@@@ @ └ АА└ #'А@А@■└@А@■└@А@ @@А@ @@А@А@ └@ └@@ └@ └@@ └@ └@@ └@ └@@ └@ └└@@ @└@@ А@@@└@ └@А @ @А └ @@@■└@@ └А└ └ А └@■└@■└@@ └@@@@ └А└@А └ └└└@ └ └└ @А@└@ @ └@@@ └А@ └А@@@ └ └ └└@ @А А@ А└А └ └А@ └@@@ А└@ А АА А└@@@@@■└└@@@└А А А@ @└ @└@ АА @ └ А└└ @@@ А └ └@ └ └@@А@¤└■А└@А@@ └ АА@@ А@ └@@ └А@@ └А@■└@└@ @@ А@@@ А@@@ └@А АА АА@ └ АА└ #'@А@ @@А@ @@А@■└@А@■└@А@А@ └@ └@@ └@ └@@ └@ └@@ └@ └@@ └@ └А@@@└ А@@@ А@  └А└@А АА@ └ АА└ АА■└А@ └ А@■└└А АА@!@@@А А└ АА А@  └А└@А АА@ └ А└@@ @ └ └А@ └ А@■└└А АА@ !%@@А@ А @А АА А└@@@ └@А АА@ └@ └■ААА@@@@@  АА■└└А А@@ @└@■└@@@ └@@ └@@ └А АА@ └@└ @@ └@└ @└@ └ @└ А АА■@■└@ └А@ └@└ @└@ └ @└ └А АА■@■└@ └А@ └@ @└@ └ @└ @└@ └ АА■@■└@ └А@ └@ └@@ └@ @└@ └ @└ @А@ @А@@ АА■@■└@ └А@ └@ └@@ └@ └@└ @└@ └ @└ @└@ АА■@■└@ └А@ └@ └@└ @└@ └ @└ А@ АА■@■└@ └А@ └@@└ @└ @└ @└  @ АА@ └ А └  └@■└ А@@ А@ А└@■└@└@ └ А@ └@@@ АА@ └└■@А@ └@@ └@└ @■└@ ■└А@ └@└ А └ └@ └А@ └@└ @■└@  АА@ └@└ А └ └@ └А@ └@ @■└@ ■└@└@ └@ └@└ А └ └@ └А@ └@ └@@ └@└ @■└@ ■└@└@@ └@└ А └ └@ └А@ └@ └ └@└@ АА@¤└А@ └А└@ └А@¤└А@ └ └А @ А@@@ А@@¤└А@ └@ └@@ └ └А└ @ А@@@@¤└А@ └@ └ └@@@■└ └@ @@ └└@└■@ └@ └ @ └ @ └@ @■└ @ └@А@ @А@@■@ └■А@ └@ └@@ └@ └@└ @└ @└@ └ А@ └@└■@└■@└@ └А@ └@└ @└ @└@ └ └А@ └@└■@└■@└@ └А@ └@ @└ @└@ └ @└@ └@ └@└■@└■@└@ └А@ └@ └@@ └@ @└ @└@ └ @А@ @А@@@ └@└■@└■@└@ └А@ └@ └@@ └@ └@└ @└ @└@ └ @└@@ └@└■@└■@└@ └А@ └@ └ А@└ #@└@ @@@ А@ А@@@ @└@А@ └@ └@@ └@ └@@ └@@ └@ └@@ └@ └@@ А@ А └@@А └ А└@А@■└ А@└■А └ └@А@@ └■@@└ @└ @└@■└А@ └@■■@@ └@└ @└ @└@ АА@ └@■■@@ └@ @└ @└@■└@└@ └@ └@■■@@ └@ └@@ └@└ @└ @└@■└@└@@ └@■■@@ └@ └@└ А └└ └ @@└@ АА@@ └■└А└ @└ @@ └@└@ @А АА А└└ @ @@ А └ @ └ А@@ АА@ А@@■└ @@■└@@ └@А А■А@ └■@└ @└@ └ @└ А АА■@■└@ └А@ └@└ @└@ └ @└ └А АА■@■└@ └А@ └@ @└@ └ @└ @└@ └ АА■@■└@ └А@ └@ └@@ └@ @└@ └ @└ @А@ @А@@ АА■@■└@ └А@ └@ └@@ └@ └@└ @└@ └ @└ @└@ АА■@■└@ └А@ └@ └@└ @└@ └ @└ А@ АА■@■└@ └А@ └@@└ @└ @└ @└  @ АА@ └ А └  └@■└ А@@ А@ А└@■└@└@ └ А@ └@@@ АА@ └└■@А@ └@@ └@└ @■└@ ■└А@ └@└ А └ └@ └А@ └@└ @■└@  АА@ └@└ А └ └@ └А@ └@ @■└@ ■└@└@ └@ └@└ А └ └@ └А@ └@ └@@ └@└ @■└@ ■└@└@@ └@└ А └ └@ └А@ └@ └ └@└@ АА@¤└А@ └А└@ └А@¤└А@ └ └А @ А@@@ А@@¤└А@ └@ └@@ └ └А└ @ А@@@@¤└А@ └@ └@А@└ @└ @└@ @ └@@@ └@ └@ @А■@А@@@ └ └ └@ @■└ @ └@А@ @А@@■@ └■А@ └@ └@@ └@ └@└ @└ @└@ └ А@ └@└■@└■@└@ └А@ └@└ @└ @└@ └ └А@ └@└■@└■@└@ └А@ └@ @└ @└@ └ @└@ └@ └@└■@└■@└@ └А@ └@ └@@ └@ @└ @└@ └ @А@ @А@@@ └@└■@└■@└@ └А@ └@ └@@ └@ └@└ @└ @└@ └ @└@@ └@└■@└■@└@ └А@ └@ └А@└ А@ @@ @@А@ └А@ └А@ └@@ А@ А └@@А └ А└@А@■└ А@└■А └ └@А@@ └■@@└ @└ @└@■└А@ └@■■@@ └@└ @└ @└@ АА@ └@■■@@ └@ @└ @└@■└@└@ └@ └@■■@@ └@ └@@ └@└ @└ @└@■└@└@@ └@■■@@ └@ └@└ А └└ └ @@└@■└А@@ └■└А└ @└ @@ └@└@ @А АА А└└ @ @@ А └ @ └ А@└ А └└ └ @@└@■└@└@@@ └■└А└ @└ @@ └@ └@└ А └└ └ @@└@■└@└@@@ └■└А└ @└ @@ └@ └@@ АА@ А@@■└ @@■└@@ └@А А■А@ └■А@А@ └└@@@└А А└@@@└А А └@@@ └А А└@@@└А А└└@@@@└А АА А└└@@@@└А АА А └└@@@@ └А АА А@@ А АА@А АА@А А └■А└└А @ └@@@ └└@@@ └ └ └@@ @@@@@@ └@ └@ └А└└ А@ А@ А@@@А@ └@@ └@@ └@@ └@@ └А└└ @@@ А@ А@А@ └@@ └@@ └@@ └@@ └ └@А#@@■А └@ └@@└ @└ @@■└@@ └@@ └@@@@@ └ └ └ └ └@ └@@ └@@ А@■А └└ └АА └└ └АА@ └ └А@ └ А└ └ АА@ @@@ @ └ @└@ └ А■А@■└└@ └@@ └@@ @└@ └ @└ А@■@@■└@ └ММММ─№маH8\╪T╠<`ДшLДЇXд  Ш Ё Ш ( ` Ш @ x ░X╕$аьPЬ X|└$\┤°\┤@м(`░,ДdЇ,Р╚DhМьX╘ Д╨@М░ЇXРш,Ршtр \ Ф ф!`!╕"4"Ш#(#д#╚$D$и$р%Ф&,&ш'Ь'╘(ш) )░*++0+T+╪+№,4,Ф,°-D-h-┤..,.d.Р.Ї/▄0Ф1X2,2╝343м4P55Ф6 6И7$7Ь88╕9H9А9╕::l:р;|;°<t==╪>h?<?╚@,@РA AЬBBtBьCdC▄DАE8E─F<F╕GTG╠HDHшIxI░IшJLJЬK<K╪LTL╨MxN4N─OOаPPhP°QtQьRLR▄SlSфTT,TPTtTШT╨UU@UМU╪V(VдW WьXxXфYD
27,844
Common Lisp
.l
10
2,783.5
10,944
0.069229
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
16dfc99c0005e2d1f47620d15367c09964d45747bbf6332968778facb39f2558
20,872
[ -1 ]
20,873
kenpixel.ttf
ahungry_sdl-blub/assets/fonts/kenpixel.ttf
 А OS/2Ц▀ ╨`cmap[е^мЇglyf/э"р P7head_ Ра6hheaА¤¤╪$hmtxH5№(loca║Dh,maxp ЛЩ$ nameаЎ√╠DКpost ¤ 0 Дp~╕▄Ю    & :   ╖└Ю    & 9   у л дсурnрkрiрaрOЛp~╕▄Ю    & :   ╖└Ю    & 9   у л дсурnрkрiрaрOЛ▐T*■_<ї╩.╠ю╩.╠ю А■ААА■АА АААКАААААААААААААА ААК$ "Ю$7 GR<ZЦ л %▒ ╓ 0э (.E)sЬ *д ╬ ▐ &ь   2 H xX *╨ · J .P `~ P▐ \. RК ▄Copyright Kenney 2011KenPixelRegularFontStruct KenPixelKenPixel RegularVersion 1.0KenPixelFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenneyKenPixel was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/503556Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkLcFxiCopyright Kenney 2011KenPixelRegularFontStruct KenPixelKenPixel RegularVersion 1.0KenPixelFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenney KenPixel  was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/503556Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkLcFxi{Р3╠аFSTR@ :ААААА f3АА └ q■уП q r ─ ╫ ╓■╧АО rжП qжП qзН ╫ ╓ ╞¤ОА№АААА ААА АА¤АААААААА  ААА А А АА АААААА АА А А ААА А■АААА   А А А   АА#А¤ААА  АА ААА А АА АА А ¤АААААА А А  А  А ААА А■ААА■А  А ААА ААА АА  А #АААА А¤ААА■А АА■АА АА ААА А АА ААА   А АААААА А АА ААА ААА¤ААА АА АА АА ААА¤ААА ААА АААА А АААА АА ААА ААА АА ААА  А АА  А  АААА А ААААА ААААА ААА ААААА А ААА ААА АА АА АА■ААА■АА ААА¤АА¤ААА ААА А ААААА¤ ААА А■АА¤АА  ААА АА А ААА ■А¤АА ААА¤ААА ААА ■АААА■АА№ААА АА■ААА■А■А■А ААА А А ААА А ААААА¤ААА■ААА■АА АА А  А А ААА ААА АА■АА■ААА ААА■ААА АА■ААА■А■ААА■АА АА  А АА  А ААА АА■А ААА■ААА■АА ААА АА ■АА¤ААА АААА ААА АА А АААА АА А АА АА АА А А ААААА ААА ААА ААА ААА ААА ААА АААА¤ААА АА АА АААА А А АА ААА ААА ААА ААА ААА ААА ААА А ААА■ААА■АА АА ААА АА А А А ААА А А А■АААА■АА ААА А А¤АААА■А ААА ААА А■АА ¤А■АА АААА АА¤А■АА■ААА А ■А А  А  ААА А¤ААА ААА¤ААА ААА А¤А■АААА¤А АА А¤А ААА А¤АА■А ААА  А АА ААА А■  А■АА ААА АА А¤АААА■АА ААА■АА¤АА ААА ААА ААА А■АА■АА№АА■ААА А АА ААААА А¤А ААА  АА АААА¤АА А¤ААА■АААА■АА■А А■АА■АААА■АА АА¤ААААА■ А ¤¤А А¤АА ААА■А¤¤А ААА АА■ААА■АА ААА¤АА¤ААА ААА А¤А■АА■А ■А А  А■АААА■АААА А■ААА А АА¤А ААА¤А АА АААА АА¤А■АА■АА■А ■А А  А■ААА А■А■АА АА А АА А ААА А А А¤АА АА■АААА АА¤¤АА А ААА■АААА ААА АА ААА¤АА¤ААА АА¤АААА АА АА¤¤¤АА ААА■А■АААА■АА■ААА ААА■АА■ААА  АА А■АААААА А■АА■АА■ААА А■ААА■А А АА ААА ААА АААА А ААА А¤А ААА А А А А А А ААА ААА АА АА АААА№ААА ААА■ААА АА АА ААА АА ААА ААААА АААААА АА ААА А■АА ¤А■АА АААА АА¤А■АА■ААА А ■А А  А  ААА А¤ААА ААА¤ААА ААА А¤А■АААА¤А АА А¤А ААА А¤АА■А ААА  А АА ААА А■  А■АА ААА АА А¤АААА■АА ААА■АА¤АА ААА ААА ААА А■АА■АА№АА■ААА А АА ААААА А¤А ААА  АА АААА¤АА А¤ААА■АААА■АА■А А■АА■АААА■АА АА¤ААААА■ А ¤¤А А¤АА ААА■А¤¤А ААА АА■ААА■АА ААА¤АА¤ААА ААА А¤А■АА■А ■А А  А■АААА■АААА А■ААА А АА¤А ААА¤А АА АААА АА¤А■АА■АА■А ■А А  А■ААА А■А■АА АА А АА А ААА А А А¤АА АА■АААА АА¤¤АА А ААА■АААА ААА АА ААА¤АА¤ААА АА¤АААА АА АА¤¤¤АА ААА■А■АААА■АА■ААА ААА■АА■ААА  АА А■АААААА А■АА■АА■ААА А■ААА■А А АА ААА ААА АААА АА А А АААА АА А АА А ААААА№ААА ААА А АА АА А АА А ААА А■ААА АА ААА АА АААААА А А АА А АА А ААА ААА А■АА■ ¤А■АА АА ААА ААА А■АА А ¤А■АА АА ААА ААА А■АА■ААА■А ¤А■АА ААА АА ААА ААА ААА А■А ААА■ААА ¤А■ААА А ААА А АА ААА ААА А■АА■ААА ¤А■АА АА АА ААА ААА А■АА А ¤А■АА АА АААА■АА■АА■АА■■А А А  А  АА■А■ААААА  А ■АА■АА ААА АААА А АА¤ААА ААА А¤АА■¤АА ААА  А АА АА ААА А¤АА■ А ААА  А АА АА ААА А¤АА■ АААА■АА ААА  А А А ААА А ААА А¤АА■¤ААААА ААА  А АА АА АА ААА А АА АА■АААА А¤А АА ААА А АА АА ААА А¤А АА АААА АААА АА ААА АА ¤А АА ААА А АА АА■ААААААА А¤А АА АА А АААА¤А АА■А ААА¤А АААА А  А  ААА ААА¤ААА■ААА¤¤АА А ААА А АА ААА АА■ААА■А■А ААА¤АА¤ААА АА ААА АА■ААА■А АА ААА¤АА¤ААА АА ААА АА■ААА■А■ААА■АА ААА¤АА¤ААА ААА АА ААА ААА АА■ААА¤ААА■АААА ААА¤АА¤АА А ААА А АА ААА АА■ААА■А■АААА ААА¤АА¤ААА АА АА А АА #ААА■ААА А ААА■ААААА АА ААА АА ААА ААА АА ААА АА ААА А  ААА А ААА■А АА■ А АААА А¤ААА АА■ААА¤АА АА¤¤АА ААА АА■ААА А АА¤¤АА ААА АА■ААА¤АААА■АА ААА¤АА¤АА АА ААА АА АА■ААА¤ААААА ААА¤АА¤АА АА ААА А■АА¤А■АА АА А АА ■А А¤ААА АААААА ААААА ААААААА  ААААААА  АА АААААА АА АА ААА А А ААААА ААА ААА ААА ААА ААА ААА А ААА ААА ААА ААА ААА АММММ─№мtь`░,xЬ└ф`─t╪Ь , Д , ╝ Ї , ╘ ┤ D ╚(аЁ<аьp╝L░шLЬX▄H─№L╚D└$┤ьhа@d─<М╪<И XдшLДш8ЬЇxф ` Ш ш!d!р"\"└#P#╠#Ё$l$╨$Ї%8%░&(&╠'x((|(°)И**x++а,,`,╘-L-└.\.╪/T/№0м1<22Ь33d3Ї4p4Ї55<5`5Ш5╨6 6Ь7
18,068
Common Lisp
.l
9
2,006.666667
14,760
0.167497
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
34afaaaf694b351bab04b20cf105f8c07f37ac1c7758558bd06a63e805da37bf
20,873
[ -1 ]
20,874
kenpixel_blocks.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_blocks.ttf
 А OS/2Цў╚`cmapЭ|Гм\glyfБj▓Hcаhead_ Р6hhea■√@$hmtxМАёdPloca$КsшTmaxp ╒c┤ name-хб╘єpost ¤( 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒есв(_<ї╩8^ч╩8^ч  АА╘ААААААААААААААААААААААААА╘8 "Ю$+E \g<v▓ ╟ ,═ ∙ 0 (@.h)Ц┐ *╟ ё  4 .Q  Х x│ *+ U Xa .╣ `ч PG \Ч Rє ECopyright Kenney 2011KenPixel BlocksRegularFontStruct KenPixel BlocksKenPixel Blocks RegularVersion 1.0KenPixel-BlocksFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenneyKenPixel Blocks was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/506855Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkOfVxhCopyright Kenney 2011KenPixel BlocksRegularFontStruct KenPixel BlocksKenPixel Blocks RegularVersion 1.0KenPixel-BlocksFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenney KenPixel Blocks  was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/506855Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkOfVxhУР3╠а@ FSTR@ √А√АА f3АА └ q■уП q r ─ ╫ ╓■╧АО rжП qжП qзН ╫ ╓ ╞¤ОА№ААА  АА А АААА АА■А■АА№АААА  АА А■АА   А■АА+АААА АА А А А А АА АААА■А АААА ААА А ААААА АА А А А А АА А АААА А¤А А АААА  А А А А А АААА АААААА А■А А А А АААА А№А ААА/ А■А АААААА А А А А А АА АААА АА■А ААА АА А■ААААА А А А А А АААА АА■А А■АА ААААА  А А АА А АААА ААААААА А■А А АААА А¤А АААА А АА  А■А А АА А АА А ААА АААААА А■А А АААА■А А■АА А А АА А АА ААА ААААА А■А А АААА А¤А ААА АА А А АА А АААА ААААА А А А АААА А■А ААА АА А А АА А АААА АААА А А А АААА А■А А ААА А АА  А■АА■А АААА А АА■ААА А АААА А АА■А АА !%+ААА ААА ААА ААА АА А А ААА ААА АА ААА АА ААА АА ААА ААА АА АА■А ААА■А АА¤А АА№ААА  А А А АА АААА А■А А АААА■■ААА  ■А  АААААА А А■А АА№ААА ■А   АААА А А А А А АА№ААА  А А А А ААА ■А  АА№ААА  ■А  АААААА■А А А АА№ААА АА  А ААА А АА¤А АА ¤ААА ■А А ААА А■ АА№ААА А ААА■А ААА АА А■АА¤А АА№ААА АА■А А АА А■АА■А  АА№ААА  А АА А А АААА А АА■ААА А АА■А ААА  А АА А А АА  А■А А АА■АА АААА■ААА АА ААА А ААА А АА ААА ААА АА ■АА■А ААА АА А■АА¤АА ААА ААА А■А А А ААА ААА АА ААА А А ААА А ААА■А А А АА ААА АА А А А■АА■■ААА  АА■А ААААА А¤А АА№ААА АА■ААА■ААА А■АА¤А  АА№АААА ААА АА■А ААА АА А■АА¤А АА№ААА ■А АА АААА¤А АА■А А■ААА АА А  АА АА■А АААА¤А АА А¤А ААА   ■А АААААААА¤А АА№ААА  ■А АА АААА¤А АА¤А АА  А А■А АААА АА¤А АА№ААА  А А ААА■АААА ¤А  АА№ААА  АА■АА А АА АА АААААА А■А А АААА■А А■ААА АА■А  А А ААА А■А А АААА¤ ААА АА А А ААА■АААА ¤А  АА№ААА   А АААА¤А АА■■ААА  А■АААА¤АААА¤А■■ АА А¤АА  А АА■АААА¤А■ АА А¤АА АА■А ААА■А АА¤А АА№ААА А А■А АА А А■АА¤А АА¤А  ААА АА■АА А АА АА■А АА¤А А ААА№А ААААА АА■ААА■ААА А■АА¤А  АА№ААА  ■А  АААААА■А А А АА№ААААА■АА А АА ААА А■ АА■А■АА  А А А АААА■¤А АА№ААА АА А А АА А АА ААА■■ А АА¤ ААА АА А А А А А АА ААА■■¤А АА¤ ААА АА А А АА ААА■АААА   А   АА№ААА АА А А АА А АА ААА ■А  АА¤А АА  ■А  АААААА А А■А АА№ААА АА  А АААААА¤А АА■А А■А АА !%+ААА■ААА■ААА■ААА А■А ААА А ААА А АА ААА АА ААА АА ААА А А ААА А А АА ААА А■А А АААА№АААА ААААА■ААА АА А ААА А ААА А АА ААА ААА■А АААА А АА■АААА А АА  А■АА АА■ААА■ААА А■АА¤А  АА№АААА ААА АА■А ААА АА А■АА¤А АА№ААА ■А АА АААА¤А АА■А А■ААА АА А  АА АА■А АААА¤А АА А¤А ААА   ■А АААААААА¤А АА№ААА  ■А АА АААА¤А АА¤А АА  А А■А АААА АА¤А АА№ААА  А А ААА■АААА ¤А  АА№ААА  АА■АА А АА АА АААААА А■А А АААА■А А■ААА АА■А  А А ААА А■А А АААА¤ ААА АА А А ААА■АААА ¤А  АА№ААА   А АААА¤А АА■■ААА  А■АААА¤АААА¤А■■ АА А¤АА  А АА■АААА¤А■ АА А¤АА АА■А ААА■А АА¤А АА№ААА А А■А АА А А■АА¤А АА¤А  ААА АА■АА А АА АА■А АА¤А А ААА№А ААААА АА■ААА■ААА А■АА¤А  АА№ААА  ■А  АААААА■А А А АА№ААААА■АА А АА ААА А■ АА■А■АА  А А А АААА■¤А АА№ААА АА А А АА А АА ААА■■ А АА¤ ААА АА А А А А А АА ААА■■¤А АА¤ ААА АА А А АА ААА■АААА   А   АА№ААА АА А А АА А АА ААА ■А  АА¤А АА  ■А  АААААА А А■А АА№ААА  АА  АА А АА АААААА  А  АА■А А■ААА А АААА¤А АА№ААА АА А А А АА АА ААА А■А А АААА ■А ААА А   АА■АА ААА АА А АА А ААА■А ААА  АА А АААА■АА А¤АА№ААААА  А А АА А АААА ААААААА А■А А АААА А¤А ААА А А  А АА А ААА АААААААА А А А  АААА■А А■ААА+АА АА А■А АА ААА¤АА АААА АА■А ААА А ААА АА А■А АА А АААА АА■А А■АА ААААА АА А А АА АА А АА ААААА АА  А А А АА¤ ААА  АА А ААА А ■А№ААААА А А  ААА  АА ААААААА А А А А А АА¤ ААА  АА А■АААА АА А АА■ААААА■АА А■ААА ААА■АААА■ААА АА А А А ААА А А А АА¤АА'7 А ААА А А ААА А ААА А А ААА■ А ААА АААААААА А А А А АААААА А А А А А АААААА■А А■АААА ■А А А А А ААА■АА■А АААА А АА■ААА ААА А■ААА■А ААА■А АА ААА■А АААА А АА■ААА А АААА А АА■ААА■АА А А АА ААААА АААА А А А■АА А¤АА А А А А А■А ААА¤АА А АА А А ААА А А  А¤АА  ААА А АА■ААА АА А А А АА А ААА ¤А АА■ А А А■ААА■А ААА ■А■ АА№ААА А АААА А АА■А А А АА А  А■А А А А ААА А  АА¤ААА А АААА А АА■АА'7АА А А ААА А ААА А А ААА А А■А ААА А ААААААА А А А А АААААА А А А А А АААА А А■А А АААА ААА А■ АААА ААА А АА АА■АА А АА■АА ААА АА А■ АААА ААА А АА  АА А АА■АА А!ААА ААА А¤АА АААА ААА А АА АА■АА А АААА■АА ААА  А А А А ААААААА А А А¤АА■■ААА АА■ААА  ААА А■АА¤А А А№АА №ААА АА■АААА  АА А■АА¤А А А№АА√АА АА■АААА А А ААА■ААААА А■АА¤А АА А АА А№ААА А√ААА АА■АААА■А ААА А■АА¤А А А№АА√ААА АА■ААА А АА А■ААА А■АА¤А А АА А№АА√ААА АА■ААА А АААА А■АА¤А А А№АА №ААААА  ¤ААА■ААА А■АААААА¤А  АА№А ААА АА ■АА А АА  ААААА¤А А ААА■А А■А ААА   ■А  АААААААА¤АА А№АА №ААА   ■АА  ААААААА¤АА А№АА√АА   ■АА А А ААА■АААААААААА¤ААА А АА А№ААА А√ААА   ■АА АА А■АААААААА¤АА АА А№АА√ААА  АА■АА А  АА АА АААААА А■А АА А№АААА ■А А■ААА  АА■АА АА  А АА АААААА А■А АА А№АААА¤А А■АА ' АА■АА АА А А ААА■АА АААА АААААА А■А ААА А АА А№ААААА А¤А А■ААА  АА■АА АА АА А■АА АА АААААА А■А АА АА А№АААА¤А А■ААААА А  АА А ААА АА■А АААА  А  АА А¤А ААА  А ААА■А АААА¤А■А А№АА√ААА АА■А  ААА■А АА¤АА А№АА №ААА АА■АА  АА■А АА¤АА А№АА√АААА■АА А А ААА■ААААА■А АА¤ААА А АА А№ААА А√ААА АА■АА■А ААА■А АА¤АА А№АА√ААА АА■АА АА А■ААА■А АА¤АА АА А№АА√ААА АА А А АА ААА■ААААА АА А А АА А АА¤ААА АА А А А ААА■А АА■ А АА А¤АА  А А А  АААА■¤АА А№АА №ААА  А А АА  ААА■¤АА А№АА√АА А А АА А А ААА■АААААА■¤ААА А АА А№ААА А√ААА  А А АА АА А■АААА■¤АА АА А№АА√ААА АА А А АА  А АА ААА ■А А А№АА№А АА А А  А АА АА А ААА¤А АА А¤А ААА АА А■АА АА А■ААА ААААААА¤А А А А А АА А¤А ААА АА■ААА  ААА А■АА¤А А А№АА №ААА АА■АААА  АА А■АА¤А А А№АА√АА АА■АААА А А ААА■ААААА А■АА¤А АА А АА А№ААА А√ААА АА■АААА■А ААА А■АА¤А А А№АА√ААА АА■ААА А АА А■ААА А■АА¤А А АА А№АА√ААА АА■ААА А АААА А■АА¤А А А№АА №ААААА  ¤ААА■ААА А■АААААА¤А  АА№А ААА АА ■АА А АА  ААААА¤А А ААА■А А■А ААА   ■А  АААААААА¤АА А№АА №ААА   ■АА  ААААААА¤АА А№АА√АА   ■АА А А ААА■АААААААААА¤ААА А АА А№ААА А√ААА   ■АА АА А■АААААААА¤АА АА А№АА√ААА  АА■АА А  АА АА АААААА А■А АА А№АААА ■А А■ААА  АА■АА АА  А АА АААААА А■А АА А№АААА¤А А■АА ' АА■АА АА А А ААА■АА АААА АААААА А■А ААА А АА А№ААААА А¤А А■ААА  АА■АА АА АА А■АА АА АААААА А■А АА АА А№АААА¤А А■ААААА АА А А ААА  ААА А АААА А А А А■А АА√ААА  А ААА■А АААА¤А■А А№АА√ААА АА■А  ААА■А АА¤АА А№АА №ААА АА■АА  АА■А АА¤АА А№АА√АААА■АА А А ААА■ААААА■А АА¤ААА А АА А№ААА А√ААА АА■АА■А ААА■А АА¤АА А№АА√ААА АА■АА АА А■ААА■А АА¤АА АА А№АА√ААА А А■А А А АААА ААА АА АА А¤АА ■А АА АА А А А ААА■А АА■ А АА А¤АА  А А А  АААА■¤АА А№АА №ААА  А А АА  ААА■¤АА А№АА√АА А А АА А А ААА■АААААА■¤ААА А АА А№ААА А√ААА  А А АА АА А■АААА■¤АА АА А№АА√ААА АА А А АА  А АА ААА ■А А А№АА№А АА А А  А АА АА А ААА¤А АА А¤А ААА АА А А АА АА А  АА ААА ■А А АА А№АА№А АА АА А А АА АА А  АА ААА ■А А АА А№АА№А АА АА А■АА АА А■ААА ААААААА¤А А А А А АА А¤А ААА¤А АААА А АА■АААА А АА  А■ААА А АА  А■ ААА А АА  А■ААА А АА  А■ААА  АА А■АА   А■ААА  АА А■АА   А■ ААА  АА А■АА   А■АА АА А А АА А АААА ААААА А А■А АААА А■А■ААА АА А А АА А АААА АААА А А А АААА А■А ААА  АА АА А¤АААА АА АА А АА■ААА# А ААА А А ААА А А АААА АААААААА А А А А А АААААА■А А■ААА#АА А А ААА А А АА АААА А ААААААА А А А А А АААА А А■А А ААА    А ААА А А ААААААААА А А А А А АААААА№ААААА¤А АА А А АА ААА ААА А АА ААА АА   АААА А■ААААА■ А А¤АА№ААА    ААА■АААААА А■  АА№АММММ▄,╠╨lд,┤<─№4lh╕ , М ь L м  \ └ $ И ь Р рД\└8Шp╨(ИД°D╕h╠D╝|╚<░8м lh╚lд▄@╕РЁPи  Р!!x!─"8"Ш"ш#L#─$<$Ь$№%H%╝&0&╕','М((L(╘)\)м*H*°+ш,Д,╘-p-└.8.Д/░/№040а0╪11Ь1ш2H2А2Ї3T3М3─44H5t6,6▄7а8 8д9(9▄:T:ф;p;№<Д==Д>8>─?l@@ЁAдBDB░C CРD0DФEEШFF|FшGИHHФI I┤J8J╝KpKшLxMMРNNШOO╠PXQQиRДS8S╠T8TиUU╕VVШW$WЬXXtYYМZ ZШ[8[╪\А\╕\Ё](]`]Ш]ш^8^И__Ш_№`└aДb4b┤c,cа
30,524
Common Lisp
.l
12
2,542.75
18,836
0.176122
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
cf7ecd48200f026d0a49c47423051805dd8f48171ec8fe3fb5f3459e93de595c
20,874
[ -1 ]
20,875
kenpixel_future.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_future.ttf
 А OS/2Ц╧╚`cmapЭ|Гм\glyfъБ╓HWXhead_ Р6hhea■№@$hmtxбА▄dPloca├ЭgаTmaxp ╒S┤ name-хЭ╘єpost ¤( 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒│$Ш_<ї╩7▐а╩7▐а А  А ААА╘ААААААААААААА АА АА╘( "Ю$+E \g<v▓ ╟ ,═ ∙ 0 (@.h)Ц┐ *╟ ё  4 .Q  Х x│ *+ U Xa .╣ `ч PG \Ч Rє ECopyright Kenney 2011KenPixel FutureRegularFontStruct KenPixel FutureKenPixel Future RegularVersion 1.0KenPixel-FutureFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenneyKenPixel Future was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/504847Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkMfV1jCopyright Kenney 2011KenPixel FutureRegularFontStruct KenPixel FutureKenPixel Future RegularVersion 1.0KenPixel-FutureFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenney KenPixel Future  was built with FontStruct http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/504847Creative Commons Attribution Share Alikehttp://creativecommons.org/licenses/by-sa/3.0/Five big quacking zephyrs jolt my wax bedBwkMfV1jlР3╠а@ FSTR@ √А√АА f3АА @ Ъ╦ 5f Ъ╦ Ы ╒ у т &АZf Ъwf Ъwf Ъwe у с ╫■AА¤АААА ААА АА■АААААААА  ААА■А А АА АААААА АА А А■АА А ААААА АА А А А А АА А ААА■АА■АА АА■А А■А АААА АААА А А А А АА  ААА ААА■ААА■АААА АА ААА ААА ААА ААА АА АА #АААА№АААА№АААА¤ААА АА ААА АА ААА ААА А ААА А АА АААААА А АА ААА ААА■ААА АА АА АА ААА■ААА ААААААА  АААА ААА АА ААААА А А ААА А■АААА■АА  А  АААА А АААА ААААА ААА АААААА ААА ААА ААА ААА ААА АА¤ААА¤АА ААА■АА■ААА ААА ААА№АААА■А АА ААА А¤АА№А А АА ААА ААА ААА ¤А№АА ААААА■ААА ААА АА¤АААА ■АА¤ААА А¤А¤А¤А ААА ААА АА А ААА АА¤ААА¤ А А АА А ААА АААА¤АА ААА ААА АААА АА АА¤ААА¤А¤ААА¤АА ААА АА ААА ААА АА ААА ААА ¤ААА¤АА ААА АА■ААА АААА ААА АА А АААА АА А АА ААА А А АААА ААА ААА ААА ААА АААА№АААА АА ААА ААА А АА ААА ААА ААА ААА ААА АА■ААА¤АА ААА А ААА А ААА АА¤ААА¤АА ААА■АААА А ААА ААА А¤АА АА■ А АААА№А¤АА¤ААААА А■АА А А А АА АА ААА№АААА¤АА ААА АА■АА ААА ААА А№А¤АААА■А АА А■А ААА А№АА¤А ААА А А ААА ААА А¤ А А А ААА АА■А№ААА АААА А■ААА ААА ААА А¤АА ¤А АА А АА ААААА А■А ААА ¤АА АААА■АА А№ААА¤ААА А  А А ААА№ААА АА■АА А№А  А ■А А■■АА А№А¤А■А А■АА АА¤ААА¤АА ААА■АА■ААА ААА ¤ААА¤А А АА   ААА А А ■ААА¤А АААА А А АА■АА■ААА АААА АА№А¤АА¤А АА А■АА А А А АА А¤А¤АА ААА ААА ААА ААА АААА■АА■АА А■АА АА¤АААА АА■■АА АА ААА■ААА¤АААА ААА АА ААА АА АА  АА АААА■■ АА■АА ААА¤А¤ААА  А АА  АА А А ■АААА А А  АА А¤А¤А А АА АААА А ААА А■А ААА А А А А АА ААА ААА ААА ААА ААА АААА¤ААА ААА■ААА АА АА ААА АА ААА ААААА АААААА АА ААА А¤АА АА■ А АААА№А¤АА¤ААААА А■АА А А А АА АА ААА№АААА¤АА ААА АА■АА ААА ААА А№А¤АААА■А АА А■А ААА А№АА¤А ААА А А ААА ААА А¤ А А А ААА АА■А№ААА АААА А■ААА ААА ААА А¤АА ¤А АА А АА ААААА А■А ААА ¤АА АААА■АА А№ААА¤ААА А  А А ААА№ААА АА■АА А№А  А ■А А■■АА А№А¤А■А А■АА АА¤ААА¤АА ААА■АА■ААА ААА ¤ААА¤А А АА   ААА А А ■ААА¤А АААА А А АА■АА■ААА АААА АА№А¤АА¤А АА А■АА А А А АА А¤А¤АА ААА ААА ААА ААА АААА■АА■АА А■АА АА¤АААА АА■■АА АА ААА■ААА¤АААА ААА АА ААА АА АА  АА АААА■■ АА■АА ААА¤А¤ААА  А АА  АА А А ■АААА А А  АА А¤А¤А А АА АААА АА А  ААААА ААААА■ААА ААААА¤ААА ААА А АА ААА А А ААА АА АА¤АААА АА ААА АА АААА ААА■АА А АА А№АААА■  А  АА АА■АА А■ААААА А А■А А ААА А¤АААА¤А А А А ААА ААА ААА ААА  А АА■АААА АА АА А АА■ААА АА ААА А А А¤ААААААА А А АА  ААА АА А АА 'АААА■ААА■АА■ А АА А ААА А ААА ААА АА ААА АА ААА А ААААААА АА АААА ■А А АААА ААААА■А АААА А■А АААА ААА А АААА АА■АА ААА А А #'АА¤ААА¤ААА■ААА■АААА АА ААА АА ААА АА ААА АА ААА АА АААА¤АААА АА АААА■А А АААА ААА■А АААА А■А ААААА ААА А АААА А АА■АААА■А АААА АА АААА А А ААА  А ААА■А А ААА   АААААА¤АААААА  АА АА¤ААА А■ А А■АА ■А АА А АААА¤А■АААА А А АА А АА А ААА АА■ААА А АААА А АА■А А #'АА■ААА■ААА¤ААА¤АААА АА ААА АА ААА АА ААА АА ААА АА ААА АА ААА№ААААА АА АА■АА■АА ААА ААА АА№ААААА АААА■АА■АА ААА АА ААА№АА ААА АА АА■АААА■АА ААА ААА¤А АА А ААА ААА АА ААА ААА А¤АА¤ АА■ А АА ААА ААА А¤АА А АА■ А АА АА ААА А¤АА¤ААА¤А АА■ А АА АА ААА АА ААА А¤АА¤АА¤ААА АА■ А АА АА ААА АА ААА ААА А¤АА¤ААА АА■ А АА АА ААА ААА А¤АА■АА АА■ А АА ААА А  ■А  ААА А А А А А  АА АА■АА ААА№АААА¤А А АААА А АА АА■АА ААА ААА А№АА¤№АА ААА А А ААА АА ААА А№АА¤ А ААА А А ААА АА АА А№АА¤№АААА¤АА ААА А А ААА АА АА ААА ААА А№АА¤№ААААА ААА А А ААА АА АА ААА А АА АА■АААА А■А АА ААА А АА АА ААА А■А АА АА А АА АА■АААА АААА А■А АА АА ААА ААА А АА АА■ААААААА А■А АА АА А АААА№А АА¤А ААА■А АА А А А А АА А№А¤А ААА¤ААА■А А■А АА ААА АА ААА АА¤ААА¤А¤А ААА■АА■ААА АА ААА АА¤ААА¤А АА ААА■АА■ААА АА АА АА¤ААА¤А¤ААА¤АА ААА■АА■ААА АА АА ААА АА АА¤ААА¤А¤АА¤АААА ААА■АА■ААА АА АА ААА АА ААА АА¤ААА¤А¤АААА ААА■АА■ААА АА АА А АА #ААА■ААА А ААА■АААА АА ААА АА ААА ААА АА ААА АА ААА АААА■АА■ААА■А■АА ААА А АА А АА■АА■ААА А ААА АА¤ААА№АА АА■■АА ААА АА¤ААА А АА■■АА АА АА¤ААА№АААА¤АА АА■■АА АА ААА ААА АА¤ААА№ААААА АА■■АА АА ААА А А ■ААА А А А  АА АААА№ААА¤АА¤АА А А А А А А ААА А■АА№А¤ААА А ААА А■АА А■АА ААА А¤АА¤ АА■ А АА ААА ААА А¤АА А АА■ А АА АА ААА А¤АА¤ААА¤А АА■ А АА АА ААА АА ААА А¤АА¤АА¤ААА АА■ А АА АА ААА АА ААА ААА А¤АА¤ААА АА■ А АА АА ААА ААА А¤АА■АА АА■ А АА ААА А  ■А  ААА А А А А А  АА АА■АА ААА№АААА¤А А АААА А АА АА■АА ААА ААА А№АА¤№АА ААА А А ААА АА ААА А№АА¤ А ААА А А ААА АА АА А№АА¤№АААА¤АА ААА А А ААА АА АА ААА ААА А№АА¤№ААААА ААА А А ААА АА АА ААА А АА АА■АААА А■А АА ААА А АА АА ААА А■А АА АА А АА АА■АААА АААА А■А АА АА ААА ААА А АА АА■ААААААА А■А АА АА АААА¤АА¤А ААА АА ААА АААААА А А АА■АА А№А¤А ААА¤ААА■А А■А АА ААА АА ААА АА¤ААА¤А¤А ААА■АА■ААА АА ААА АА¤ААА¤А АА ААА■АА■ААА АА АА АА¤ААА¤А¤ААА¤АА ААА■АА■ААА АА АА ААА АА АА¤ААА¤А¤АА¤АААА ААА■АА■ААА АА АА ААА АА ААА АА¤ААА¤А¤АААА ААА■АА■ААА АА АА ААА А■АА■ААА АА АА ААА АААА■АА■ААА■А■АА ААА А АА А АА■АА■ААА А ААА АА¤ААА№АА АА■■АА ААА АА¤ААА А АА■■АА АА АА¤ААА№АААА¤АА АА■■АА АА ААА ААА АА¤ААА№ААААА АА■■АА АА ААА А А ■ААА А А А  АА АААА№ААА¤АА¤АА А А А А А А ААА А А ■ААА№ААААА А А  АА АА ААА А А ■ААА№ААААА А А  АА АА ААА А■АА№А¤ААА А ААА А■АА А■АААА АААААА ААААА  АААА А ААААА ААААААА  ААААААА   АААААА А   ААА А■АААА■А ААА А А■АА А АААА ААААА А А ААА АААА АА АА ААА А А АААА ААА ААА ААА ААА ААА ААА А АА ААА ААА ААА ААА А АААААА№А ААА■АА¤АА ААА АААА А А АА ААА АА АААААА№А АА АААА АА А А А А А АА ААА А А¤ААА А■А А АА АААА¤АААА А¤АА А■ А¤А ММММ─№м\╘°HШ\Ад╚DиЇd╚Дф T № h а ╪ T М  x ш H ┤0|р,Ьш4x▄l░`ьX╘ \\╪<а╪TМ,P░ШфHФPЬрD|╘|╚T└<t─ l ─!@!д""l"Р"Ї#X#Р$D$╝%L%─%№&р''М'ь(╘))$)Р)┤)ь*L*Ш*ф++T+и+╠,,<,t-\-р.X.Ё/`/╪0P0Ї1м282░3,3╨4H4└5d5Ї6T6┤7@7╕8,8╚9D9└:h;$;┤<И=,=Р=Ї>Д??x?╪@P@╚A@AфBЬC(CаDD└E8E░FTFфGDGдH0HиIHIфJ`J▄KДL@L╨M M─N(NМOOШPPpQQРRR,RPRtRШR╝RЇS,SdS░S№TLT╚UDUшVМV°WX
27,380
Common Lisp
.l
13
2,105.230769
11,096
0.16501
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
6f42ce318a4b01b269b3c9f66b5419ffe1babba3af0d57e9f94a576586ca6357
20,875
[ -1 ]
20,876
kenpixel_square.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_square.ttf
 А OS/2Ц▀И`cmapЭ|Гм\glyfayШ═L head_ Р6hhea■√@$hmtx{АБdPlocaШн^(Tmaxp ╒S┤ name▒║╙q╘▓post ¤ш 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒pЪSи_<ї╩7▐п╩7▐п А  А ААА╘ААААААААААААААААААААААА ААААА АААА╘( "ЮwwЖНз ╛╔<╪ ) Н/ ╝ 0╙ (+)+T ю\ J h 4v .к ╪ ю x  *Д о ║ .╘ ` Pb ▓ R▓ Copyright Kenney 2011 KenPixel Square is based on KenPixel by Kenney (http://fontstruct.com/fontstructors/kenney)KenPixel SquareRegularFontStruct KenPixel SquareKenPixel Square RegularVersion 1.0KenPixel-SquareFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenneyKenPixel Square was built with FontStruct KenPixel Square is based on KenPixel by Kenney (http://fontstruct.com/fontstructors/kenney)http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/506233Creative Commons Attribution Share AlikeFive big quacking zephyrs jolt my wax bedBwkOd1pnCopyright Kenney 2011 KenPixel Square  is based on KenPixel  by Kenney  (http://fontstruct.com/fontstructors/kenney)KenPixel SquareRegularFontStruct KenPixel SquareKenPixel Square RegularVersion 1.0KenPixel-SquareFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenney KenPixel Square  was built with FontStruct KenPixel Square  is based on KenPixel  by Kenney  (http://fontstruct.com/fontstructors/kenney)http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/506233Creative Commons Attribution Share AlikeFive big quacking zephyrs jolt my wax bedBwkOd1pn{Р3╠а@ FSTR@ √А√АА f3АА └ q■уП q r ─ ╫ ╓■╧АО rжП qжП qзН ╫ ╓ ╞¤ОА№АААА ААА АА¤АААААААА  ААА А А АА АААААА АА А А ААА А■АААА   А А А   АА А А АА  А  А А ¤АААА А А ■ ААА А■ААА■А  А ААА ААА АА  А #АААА А¤ААА■А АА■АА АА ААА А АА ААА   А АААААА А АА ААА ААА¤ААА АА АА АА ААА¤ААА ААА АААА А АААА АА ААА ААА АА ААА  А АА  А  АААА А ААААА ААААА ААА ААААА А ААА ААА АА АА■А АААА¤А АА№ААА А ААААА¤ ААА ■А■А■  ААА ■■АААА№ААА ■АААА■АА№ААА ■А■А А ■АА ■А ААА  АА■А■АА АА■АА■ААА ААА■ААА ■АА■А ААА А ■А№ААА ■АА■А ■А№АААА ААА АА А АААА АА А АА АА АА А А ААААА ААА ААА ААА ААА ААА ААА АААА¤ААА АА АА АААА А А АА ААА ААА ААА ААА ААА ААА ААА А А■А А АА■ ААА А■АА■А■ААА А■АА¤ААА¤А ААА ■А АА А■А ■А№АА■АААА А■АА■АААА■А  А ■АААА■А А¤А ААА А¤А■АААА¤А АА А¤А ААА А■■А А  А  ААА А■■А А  А■ААА А■А АА А¤АА■АА ААА А■АА■АА№АА■ААА А АА ААААА А¤А ААА  АА АААА¤АА А¤ААА■АААА■АА■А А■АА■ААААА¤ ААА А А  А А№А¤¤ААА А■АА№А¤АА■А АААА¤А АА№ААА ■А АА■ ■А■■А ААА■ААА А А АА¤АА А АА№А АААА¤АА А■АА■АА■АА■А  А■ААА ■А■А А ■АА А А А¤АААААА¤№ААА А ААА■АААА ААА АА ААА¤АА¤ААА АААА¤¤№ААА ААА■А■АААА■АА■ААА ААА■АА■ААА  ААА А■АА■■ААА А■ААА■А А АА ААА ААА АААА А ААА А¤А ААА А А А А А А ААА ААА АА АА АААА№ААА ААА■ААА АА АА ААА АА ААА ААААА АААААА АА ■А АА А■А ■А№АА■АААА А■АА■АААА■А  А ■АААА■А А¤А ААА А¤А■АААА¤А АА А¤А ААА А■■А А  А  ААА А■■А А  А■ААА А■А АА А¤АА■АА ААА А■АА■АА№АА■ААА А АА ААААА А¤А ААА  АА АААА¤АА А¤ААА■АААА■АА■А А■АА■ААААА¤ ААА А А  А А№А¤¤ААА А■АА№А¤АА■А АААА¤А АА№ААА ■А АА■ ■А■■А ААА■ААА А А АА¤АА А АА№А АААА¤АА А■АА■АА■АА■А  А■ААА ■А■А А ■АА А А А¤АААААА¤№ААА А ААА■АААА ААА АА ААА¤АА¤ААА АААА¤¤№ААА ААА■А■АААА■АА■ААА ААА■АА■ААА  ААА А■АА■■ААА А■ААА■А А АА ААА ААА АААА АА А А АААА АА А АА А ААААА№ААА ААА А АА АА А АА А ААА А■ААА АА ААА АА АААА ААА¤АА ААА АА А  А■А ААА А А■А А АААА■ АА А А А А АААА А  А ААА ААА  А АА■ААААА АА АА А АА■ААА АА ААА АА ААА А АААА■АА■ А А АААА ААА■АА■ААА А■А А■АА■АА■АА А АА■А А А А  ААААААА АА АА  ААА■ АА А А А АА¤А АА№АААА  А АА А ААА А ■А А А #'АА¤ААА¤ААА■ААА■ААААА АА ААА АА ААА АА ААА АА ААА АА АА■ААА ААААА АА  А■ АА А  АА¤А АА№ААААА ААА А АААА А АА■АААА■А АААА ААА АААА А А ААА  А ААА■А А ААА   АААААА¤ААА А А ААА■ ■АА■ АА  А АА А АААА№А¤ААААА А А АА А АА А ААА АА■ААА А АААА А АА■А А #'АА■ААА■ААА¤ААА¤ААААА АА ААА АА ААА АА ААА АА ААА АА ААААА ААА А¤АААА ААА А ААА ■АА А ■АА АА АААА А А А¤АААА ААА А А А ААА АА А ■АА АА !А ААА А¤АА АА АААА ААА ■АА А■АААААА¤АА ААА А■АА ААА  ААА ААА АА ААА ■А АА А■А А ■А№АА■АА ААА ■А АА А■А ■А№АА■АА АА ■А АА А■А АААА■А ■А№АА■АА АА ААА АА ■А АА А■А ААА■ААА ■А№АА■АА АА ААА АА ААА ■А АА А■А АААА ■А№АА■АА АА ААА ■А АА А■ААА ■А№АА■АА АА■А А■АА■АА■■А ■А А  А  АА■А ААА■АА■ А А АААА А¤А А ААА А■■¤АА А  А  АА ААА А■■ А А  А  АА АА А■■¤АААА■АА А  А  АА АА ААА ААА А■■¤ААААА А  А  АА АА ААА А АА АА■АААА А¤А АА ААА А АА АА ААА А¤А АА АА А АА АА■АААА АААА А¤А АА АА ААА ААА А АА АА■ААААААА А¤А АА АА А АААА¤А АА■А ААА¤А АААА А  А  АА А А■А ААА■АААА№А¤А АА ААА АА ААА ■А АА¤ААА¤А АА№АА ААА ■А АА АА¤А АА№АА АА ■А АА¤АААА■ААА¤А АА№АА АА ААА АА ■А АА¤ААА■ААААА¤А АА№АА АА ААА АА ААА ■А АА¤АААААА¤А АА№АА АА А АА #ААА■ААА А ААА■ААААА АА ААА АА ААА ААА АА ААА АА ААА АА А А АА■А АА■ А АА№ААА ААА¤АА¤№АА ААА ААА А¤№АА АА ААА¤АААА■АА¤№АА АА ААА ААА ААА¤ААААА¤№АА АА ААА  ААА А■АА■■АА АА А  ААА■ААА А■АА ■А АА А А■А А■АА■ААА А■АА■А¤АА ■А АА А■А А ■А№АА■АА ААА ■А АА А■А ■А№АА■АА АА ■А АА А■А АААА■А ■А№АА■АА АА ААА АА ■А АА А■А ААА■ААА ■А№АА■АА АА ААА АА ААА ■А АА А■А АААА ■А№АА■АА АА ААА ■А АА А■ААА ■А№АА■АА АА■А А■АА■АА■■А ■А А  А  АА■А ААА■АА■ А А АААА А¤А А ААА А■■¤АА А  А  АА ААА А■■ А А  А  АА АА А■■¤АААА■АА А  А  АА АА ААА ААА А■■¤ААААА А  А  АА АА ААА А АА АА■АААА А¤А АА ААА А АА АА ААА А¤А АА АА А АА АА■АААА АААА А¤А АА АА ААА ААА А АА АА■ААААААА А¤А АА АА АА■А А А А АААА  А АААА А№АА А А■А ААА■АААА№А¤А АА ААА АА ААА ■А АА¤ААА¤А АА№АА ААА ■А АА АА¤А АА№АА АА ■А АА¤АААА■ААА¤А АА№АА АА ААА АА ■А АА¤ААА■ААААА¤А АА№АА АА ААА АА ААА ■А АА¤АААААА¤А АА№АА АА ААА А■АА■АААА АА АА ААА АА А А АА■А АА■ А АА№ААА ААА¤АА¤№АА ААА ААА А¤№АА АА ААА¤АААА■АА¤№АА АА ААА ААА ААА¤ААААА¤№АА АА ААА  ААА А■АА■■АА АА А  ААА■ААА А■АА ■А АА  ААА ■ААААА■АА■■АА АА ААА  ААА ■ААААА■АА■■АА АА ААА А■А■А А■АА■ААА А■АА■А¤ААА АААААА ААААА  АААА А ААААА ААААААА  ААААААА   АААААА А   АА  А  А  А¤АА А АААА АААА А А ААА АААААА АА АА ААА А А ААААА ААА ААА ААА ААА ААА ААА А ААА ААА ААА ААА ААА А ААА ААА■ АА А А А А АААА¤А АА А А АА ААА А АА А  А■АААА¤■АА А■АА А¤АА А ■А■АА ■АА А■А А ¤А■АММММ─№мLЇ─ш8ИPtШ╝8p░№HИ╘p└  < t  T № T ┤ ` Ш ф 0 p ╝TШ№(tмф(Иш4lд lш4─№x░,Pt└ XдЁ0|╚X╝ш4lдшHиЇ,dр,иЇД$а<░ 0 └!4!l!°"0"Ф"р#╚#Ї$$p$Ф$╠%,%x%─%ш&(&|&а&ф''H(0(р)Ь*\*╠+0+Ф,$,╚-@-д..x.╪/8/─0<0Ь0№1И22t33T3д4 4░55ш6L6Ш6ф7\7└8 8l8╪9<9а:0:╘;L;░<$<Д<ф=D=╨>H>и??Ф@ @АAA`A░B,B╝C CpC╘D DlDфEHEиEЇFlFфGPGtGШG╝GрHH<HtHмH°IDIФJJМJьKlK╠L
24,956
Common Lisp
.l
15
1,662.266667
9,560
0.167669
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
35e0e53ae9fb5def51ad2ad214e0aec846a5cfb128a7ba53325e21cc567e6b98
20,876
[ -1 ]
20,877
kenpixel_future_square.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_future_square.ttf
 А OS/2Ц╧D`cmapЭ|Гм\glyfъ╔╥∙─Jиhead_ Р6hhea■№@$hmtxбА▄dPlocaС]lTmaxp ╒S┤ name∙╫▐B╘ opost ¤д 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒<ВB_<ї╩7▐е╩7▐е А  А ААА╘ААААААААААААА АА АА╘( "ЮЕЕЫ!в├ сь<> S вY √ 0 (Bj)jУ  Ы ,е ╤ B▀ <! ] ,s xЯ * A DM .С `┐ P o Ro ┴Copyright Kenney 2011 KenPixel Future Square is based on KenPixel Future by Kenney (http://fontstruct.com/fontstructors/kenney)KenPixel Future SquareRegularFontStruct KenPixel Future SquareKenPixel Future Square RegularVersion 1.0KenPixel-Future-SquareFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenneyKenPixel Future Square was built with FontStruct KenPixel Future Square is based on KenPixel Future by Kenney (http://fontstruct.com/fontstructors/kenney)http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/506235Creative Commons Attribution Share AlikeFive big quacking zephyrs jolt my wax bedBwkOd1phCopyright Kenney 2011 KenPixel Future Square  is based on KenPixel Future  by Kenney  (http://fontstruct.com/fontstructors/kenney)KenPixel Future SquareRegularFontStruct KenPixel Future SquareKenPixel Future Square RegularVersion 1.0KenPixel-Future-SquareFontStruct is a trademark of FSI FontShop International GmbHhttp://fontstruct.comKenney KenPixel Future Square  was built with FontStruct KenPixel Future Square  is based on KenPixel Future  by Kenney  (http://fontstruct.com/fontstructors/kenney)http://www.fontshop.comhttp://fontstruct.com/fontstructions/show/506235Creative Commons Attribution Share AlikeFive big quacking zephyrs jolt my wax bedBwkOd1phlР3╠а@ FSTR@ √А√АА f3АА @ Ъ╦ 5f Ъ╦ Ы ╒ у т &АZf Ъwf Ъwf Ъwe у с ╫■AА¤АААА ААА АА■АААААААА  ААА■А А АА АААААА АА А А■АА А ААААА АА А А А А АА А АА  А ■АА■АААА■АА■ААА АА А■ААААА А А А■А ААА ААА■ААА■АААА АА ААА ААА ААА ААА АА АА #АААА№АААА№АААА¤ААА АА ААА АА ААА ААА А ААА А АА АААААА А АА ААА ААА■ААА АА АА АА ААА■ААА ААААААА  АААА ААА АА ААААА А А ААА А■АААА■АА  А  АААА А АААА ААААА ААА АААААА ААА ААА ААА ААА ААА¤А АААА■А АА¤ААА А■ААААА■ ААА ¤А¤ААА■А А ААА ¤¤АААААА¤ААА ¤АААА ¤ААА ¤А¤ААА А А■ААА ¤А АА¤АА А АА А А■ААА АААА¤АА ААА ААА АААА АА ¤АА¤А АААА АА А■АА¤ААА ¤А А¤ААА А■АААА¤АААА ААА АА А АААА АА А АА ААА А А АААА ААА ААА ААА ААА АААА№АААА АА ААА ААА А АА ААА ААА ААА ААА ААА АА АА¤АА АААА■ААА А¤А¤ААА■ААА■А ААА ¤А АА А¤ААА А■АА¤А ААА А¤АА¤АААА А А А АА ААА¤А А■А ААА А№А¤АААА■А АА А■А ААА А¤¤А А А А А ААА А¤¤А А А А АА А¤А■АА А■ААА■ААА ААА А¤АА ¤А АА А АА ААААА А■А ААА ¤АА АААА■АА А№ААА¤ААА А  А А АААА■ ААА А А  А А¤А■■ААА А¤АА¤А■АА¤А АААА■А АА¤ААА ¤А АА¤АА А■АА■А  ААА¤АА А■АА■ААА■АА А АА¤А АААА№АА А¤АА¤А А А А А АА ¤А¤ААА А А■АААА■АА■АА А■АААААА■¤ААА АА ААА■ААА¤АААА ААА АА ААА АА АА  АА АААА■■¤ААА ААА¤А¤ААА  А АА  АА А■АААА■АА ■А АА А¤А¤А А АА АААА А ААА А■А ААА А А А А АА ААА ААА ААА ААА ААА АААА¤ААА ААА■ААА АА АА ААА АА ААА ААААА АААААА АА ¤А АА А¤ААА А■АА¤А ААА А¤АА¤АААА А А А АА ААА¤А А■А ААА А№А¤АААА■А АА А■А ААА А¤¤А А А А А ААА А¤¤А А А А АА А¤А■АА А■ААА■ААА ААА А¤АА ¤А АА А АА ААААА А■А ААА ¤АА АААА■АА А№ААА¤ААА А  А А АААА■ ААА А А  А А¤А■■ААА А¤АА¤А■АА¤А АААА■А АА¤ААА ¤А АА¤АА А■АА■А  ААА¤АА А■АА■ААА■АА А АА¤А АААА№АА А¤АА¤А А А А А АА ¤А¤ААА А А■АААА■АА■АА А■АААААА■¤ААА АА ААА■ААА¤АААА ААА АА ААА АА АА  АА АААА■■¤ААА ААА¤А¤ААА  А АА  АА А■АААА■АА ■А АА А¤А¤А А АА АААА АА А  ААААА ААААА■ААА ААААА¤ААА ААА А АА ААА А А ААА АА АА¤АААА АА ААА АА АААА ААА■АА А ААА ■АААА■АА■ААА■А ААА А А■А А АААА А■А■А А А А А ААА ААА  А АА■АААА АА АА А АА■ААА АА АААА■АААА■ААААА ■А А АААА АА А АА АААА■ААА■■А А ААА АА А АА АА А АА ААААААА АА ААА А ■А ААААА■А АА¤АААА  А АА А ААА А ■А А А #'АА¤ААА¤ААА■ААА■АААА АА ААА АА ААА АА ААА АА ААА АА АААА¤АААА АА ААА А■А ААА■А АА¤ААААА ААА А АААА А АА■АААА■А АААА АА АААА А А ААА  А ААА■А А ААА   АААААА¤АААААА  АА ААА¤ А■¤А АА ■А АА А АААА¤А■АААА А А АА А АА А ААА АА■ААА А АААА А АА■А А #'АА■ААА■ААА¤ААА¤АААА АА ААА АА ААА АА ААА АА ААА АА ААА АА ААА№ААААА АА АА■АА■АА ААА ААА АА№ААААА АААА■АА■АА ААА АА ААА№АА ААА АА АА■АААА■АА ААА ■А■АА А А АА ААА ¤А АА А¤А ААА А■АА¤А А ААА ¤А АА А¤ААА А■АА¤А А АА ¤А АА А¤А АААА¤ААА А■АА¤А А АА ААА АА ¤А АА А¤А ААА¤ААААА А■АА¤А А АА ААА АА ААА ¤А АА А¤А АААААА А■АА¤А А АА ААА ¤А АА А¤АААА А■АА¤А А ААА  А  ■А АА А■АА А А А А А  АААА■А¤  А АААА А■А А ААА А¤¤№АА А А А А АА ААА А¤¤ А А А А А АА АА А¤¤№АААА¤АА А А А А АА АА ААА ААА А¤¤№ААААА А А А А АА АА ААА А АА АА■АААА А■А АА ААА А АА АА ААА А■А АА АА А АА АА■АААА АААА А■А АА АА ААА ААА А АА АА■ААААААА А■А АА АА А АААА№А АА¤А ААА■А АА А А А А АА А А¤А ААА¤АААА¤А■А АА ААА АА ААА ¤А АА№ААА■А АА¤АА ААА ¤А АА АА■А АА¤АА АА ¤А АА№АААА¤ААА■А АА¤АА АА ААА АА ¤А АА№ААА¤ААААА■А АА¤АА АА ААА АА ААА ¤А АА№АААААА■А АА¤АА АА А АА #ААА■ААА А ААА■АААА АА ААА АА ААА ААА АА ААА АА ААААА А А■ААА■ААА А АА АА■АА А АА¤ААА ААА№АА■¤АА ААА ААА А■¤АА АА ААА№АААА¤АА■¤АА АА ААА ААА ААА№ААААА■¤АА АА ААА А■АААА■ААА ■А А ААА ¤А АА¤А А А А■А ААА А■А¤А А¤ААА А А А А■АА ¤А АА А¤А ААА А■АА¤А А ААА ¤А АА А¤ААА А■АА¤А А АА ¤А АА А¤А АААА¤ААА А■АА¤А А АА ААА АА ¤А АА А¤А ААА¤ААААА А■АА¤А А АА ААА АА ААА ¤А АА А¤А АААААА А■АА¤А А АА ААА ¤А АА А¤АААА А■АА¤А А ААА  А  ■А АА А■АА А А А А А  АААА■А¤  А АААА А■А А ААА А¤¤№АА А А А А АА ААА А¤¤ А А А А А АА АА А¤¤№АААА¤АА А А А А АА АА ААА ААА А¤¤№ААААА А А А А АА АА ААА А АА АА■АААА А■А АА ААА А АА АА ААА А■А АА АА А АА АА■АААА АААА А■А АА АА ААА ААА А АА АА■ААААААА А■А АА АА АА¤АА ■А АААААА АА А■ААААА А¤АА А А¤А ААА¤АААА¤А■А АА ААА АА ААА ¤А АА№ААА■А АА¤АА ААА ¤А АА АА■А АА¤АА АА ¤А АА№АААА¤ААА■А АА¤АА АА ААА АА ¤А АА№ААА¤ААААА■А АА¤АА АА ААА АА ААА ¤А АА№АААААА■А АА¤АА АА ААА А■АА■ААА АА АА ААААА А А■ААА■ААА А АА АА■АА А АА¤ААА ААА№АА■¤АА ААА ААА А■¤АА АА ААА№АААА¤АА■¤АА АА ААА ААА ААА№ААААА■¤АА АА ААА А■АААА■ААА ■А А ААА ¤А АА¤А А А А■А ААА А■АААА■А■АААА ■А А АА ААА А■АААА■А■АААА ■А А АА ААА А■А¤А А¤ААА А А А А■АААА АААААА ААААА  АААА А ААААА ААААААА  ААААААА   АААААА А   ААА А■АААА■А ААА А А■АА А АААА ААААА А А ААА АААА АА АА ААА А А АААА ААА ААА ААА ААА ААА ААА А АА ААА ААА ААА ААА А ААА ААА¤■А А А А А ААА А А А А А А АА■А АА  АА А■ А¤АААА А А■А А ААА А■АА А¤АА А А¤А ММММ─№мLЇ─ш8ИLpФ╕4lм°DД╨М▄ ( ` Ш  L ╚  ` м D Р ▄  h ┤Dи╘ XР╘4ФрP°D└ pи$\╪№ l╠PЬ▄(t└hФрPФЇTа╪╕А╠0Ф╕А╕,М  | ┤!T!М!╪"$# #8#\#а#─#№$\$и$Ї%%X%м%╨&&@&x'`'ф(\(Ї)@)д**Ш+<+┤,,М,ь-L-м.8.░//p/№0t0ш1x1╚22Ф3$3И4\4╘5 5l5ф6H6и6Ї7`7─8(8╕9\9╘:8:м; ;l;╠<X<╨=0=Р>>Ф? ?Ь?ь@<@╕AHAмA№BtB└C CДCшDHDФE EДEЁFF8F\FАFдF▄GGLGШGфH4H░I,IМIЇJTJи
24,768
Common Lisp
.l
16
1,546.6875
9,392
0.176423
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
9b7f000f1baf29365b35aa32e601061a3271c71349117f8d53224674de9abc68
20,877
[ -1 ]
20,892
brain-sdf.lisp
vlad-km_brain/brain-sdf.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of the BRAIN package ;;; Lisp wrap for brain.js library ;;; Copyright © 2017 Vladimir Mezentsev (lores:defsys :brain :path "git/brain" :components ((:file "brain-pkg") (:file "preface") (:file "wrap"))) ;;; EOF
316
Common Lisp
.lisp
10
26
42
0.586093
vlad-km/brain
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ead1c80f3de481c06637cb26b15c85ccb64bb9cc7ef00548167fec75ce546f3a
20,892
[ -1 ]
20,893
wrap.lisp
vlad-km_brain/wrap.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of the BRAIN package ;;; Lisp wrap for brain.js library ;;; Copyright © 2017 Vladimir Mezentsev (in-package :brain) ;;; make neural net (export '(make-neural-net)) (defun make-neural-net (&optional nno) (if nno (make-new #j:brain:NeuralNetwork nno) (make-new #j:brain:NeuralNetwork))) ;;; RNN (export '(make-rnn)) (defun make-rnn (&optional nno) (if nno (make-new #j:brain:recurrent:RNN nno) (make-new #j:brain:recurrent:RNN))) ;;; GRU (export '(make-gru)) (defun make-gru (&optional nno) (if nno (make-new #j:brain:recurrent:GRU nno) (make-new #j:brain:recurrent:GRU))) ;;; LSTM (export '(make-lstm)) (defun make-lstm (&optional nno) (if nno (make-new #j:brain:recurrent:LSTM nno) (make-new #j:brain:recurrent:LSTM))) ;;; neural-net options - train & run ;;; ;;; (setq *nn (brain:make-neural-net ;;; (brain:nno :hiddensizes #(6 3) ;;; :callback (lambda (stats) (print (klib:jso-to-list stats))) ;;; :callbackperiod 100))) ;;; (brain:train *nn ;;; (train-data ;;; (tp (mkjso "r" 0.3 "g" 0.7) (mkjso "black" 1)) ;;; (tp (mkjso "r" 0.16 "b" 0.2) (mkjso "white" 1)) ;;; (tp (mkjso "r" 0.5 "g" 0.5 "b" 1.0) (mkjso "white" 1))) ;;; (brain:nno :iterations 200 :errorthres 0.02)) ;;; ;;; (print (klib:jso-to-list (brain:run *nn (mkjso "r" 0 "g" 0.00 "b" 0.0)))) ;;; ;;; (export '(nno)) (defun nno (&key activation errorThresh iterations momentum learningRate callback callbackPeriod log logPeriod hiddenSizes inputSize inputRange outputSize) (let ((options (new))) (flet ((mko (key val) (setf (oget options key) val))) (if activation (mko "activation" activation)) (if errorThresh (mko "errorThresh" errorThresh)) (if iterations (mko "iterations" iterations)) (if momentum (mko "momentum" momentum)) (if learningrate (mko "learningRate" learningrate)) (if callback (mko "callback" callback)) (if callbackperiod (mko "callbackPeriod" callbackperiod)) (if log (mko "log" log)) (if logperiod (mko "logPeriod" logperiod)) (if hiddensizes (mko "hiddenSizes" hiddensizes)) (if inputsize (mko "inputSize" inputsize)) (if inputRange (mko "inputRange" inputRange)) (if outputSize (mko "outputSize" outputSize)) options))) ;;; train (export '(train)) (defun train (bro &optional input nno) (if nno (funcall ((oget bro "train" "bind") bro input nno)) (if input (funcall ((oget bro "train" "bind") bro input)) (funcall ((oget bro "train" "bind") bro))))) ;;; run (export '(run)) (defun run (bro input &optional nno) (if nno (funcall ((oget bro "run" "bind") bro input nno)) (funcall ((oget bro "run" "bind") bro input )))) ;;; train data set utils ;;; ;;; (train-data ;;; (tp (mkjso "r" 0.3 "g" 0.7) (mkjso "black" 1)) ;;; (tp (mkjso "r" 0.16 "b" 0.2) (mkjso "white" 1)) ;;; (tp (mkjso "r" 0.5 "g" 0.5 "b" 1.0) (mkjso "white" 1))) ;;; train pattern (export '(tp)) (defun tp (input output) (mkjso "input" input "output" output)) ;;; train-data (export '(train-data)) (defun train-data (&rest patterns) (apply #'vector patterns)) #| (defun ncb (stats) (format *so* "~a~%" (klib:jso-to-list stats))) (setq *hidden (nno :hiddensizes #(4 5))) (setq *topt (nno :callback #ncb :callbackPeriod 1000 :errorThresh 0.002 :iterations 100000)) (setq *topt (nno :callback #ncb)) |# (in-package :cl-user) ;;; EOF
3,853
Common Lisp
.lisp
106
30.971698
92
0.575652
vlad-km/brain
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
fca0fbc3df7f6ae5bb88489fa891968a5710b1cb8e9d59283b8995f4ac22311c
20,893
[ -1 ]
20,894
brain-pkg.lisp
vlad-km_brain/brain-pkg.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; Package BRAIN - lisp wrapper for brain.js library ;;; It is intended for use in the Moren environment. ;;; Copyright © 2017 Vladimir Mezentsev ;;; ;;; BRAIN is free software: you can redistribute it and/or modify it under ;;; the terms of the GNU General Public License as published by the Free ;;; Software Foundation, either version 3 of the License, or (at your ;;; option) any later version. ;;; ;;; BRAIN is distributed in the hope that it will be useful, but WITHOUT ;;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ;;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ;;; for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; Version 3 from <http://www.gnu.org/licenses/>. ;;; ;;; (in-package :cl-user) (eval-when (:compile-toplevel :load-toplevel :execute) (unless (find-package :brain) (make-package :brain :use (list 'cl)))) (in-package :brain) (export '(jscl::oget jscl::new jscl::concat jscl::make-new jscl::fset jscl::js-null-p )) (export '(klib::make-js-object klib::mkjso klib::curry)) (in-package :cl-user) ;;; EOF
1,208
Common Lisp
.lisp
34
33.470588
74
0.707045
vlad-km/brain
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
139a35e976a64e610c871697c1f3ab58d3e5a7706a08769b72330da6fbc1a888
20,894
[ -1 ]
20,895
preface.lisp
vlad-km_brain/preface.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of the BRAIN package ;;; Lisp wrap for brain.js library ;;; Copyright © 2017 Vladimir Mezentsev (in-package :brain) (unless #j:Brain_loaded_0 (setf #j:Brain_loaded_0 (require "./dist/brainjs"))) (in-package :cl-user) ;;; EOF
293
Common Lisp
.lisp
9
30.555556
56
0.684588
vlad-km/brain
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
34070281510f2cd8c2353c291e4e42a603a76132bc1e6143dcad20e27da6ac40
20,895
[ -1 ]
20,915
asn1-proto.lisp
thinkum_commonide/src/proto/eow/asn1-proto.lisp
;; asn1-proto.lisp - Generalized prototyping, Eval-over-Wire with ASN.1 schema ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies this distribution ;; and is available at http://www.eclipse.org/legal/epl-v10.html ;; ;; Contributors: Sean Champ - Initial API and implementation ;; ;;------------------------------------------------------------------------------ (defpackage #:commonide/proto/asn.1 (:use #:ltp/common/mop #:ltp/common #:cl) (:nicknames #:commonide.proto.asn.1)) (in-package #:commonide/proto/asn.1) (eval-when (:compile-toplevel :execute) #+sb-unicode (pushnew :asn.1-unicode *features* :test #'eq) ;; TBD Other (defmacro mkv (contents &optional (element-type t)) (with-symbols (%c) `(let ((,%c ,contents)) (make-array (length ,%c) :element-type ,element-type) ))) ) (defstruct (asn.1-oid (:constructor %mk-asn.1-oid (oid-bytes oid-symbols)) (:conc-name #:asn.1-oid@)) ;; TBD: Registry and referencing; interp @ tools, REPL, subsq. (oid-bytes (mk-lf (mkv nil 'fixnum)) :type (simple-array fixnum (*)) :read-only t) (oid-symbols (mk-lf (mkv nil 'string)) :type (simple-array string (*)) :read-only t )) ;; TBD: Generalized Type Layouts for object/value signatures onto ASN.1 ;; TBD/Topic: Language Models. Project Resource Models, and ASN.1 ;; Protocol Specifications ;; TBD Syntactic transformations for interfaces to scalar values in ASN.1, ;; ASN.1 -> C -> Lisp, transitively ASN.1 -> Lisp (cf. ports) ;; ;; TBD Type signatures, transitively ASN.1 -> Lisp ;; ;; TBD Encoding Rules for arbitrary transport devices, generally, ;; onto same ASN.1 -> Lisp toolchain. ;; TBD A minimal bibliography for ASN.1 - Language Description, Surveys ;; of Applications, and Generalized Programming Patterns ;; ;; - NB 'Any Type' declations in ASN.1 ;; - NB "Strong typing" with ASN.1 in applications ;; - NB Structure and Modularization in ASN.1 Protocol Definitions (defstruct (asn.1-declaration (:conc-name declaration-) (:constructor)) (name (mk-lf "Unnamed Declaration") :type simple-string :read-only t)) (defstruct (asn.1-type-declaration (:include asn.1-declaration) (:constructor)) ;; NB ASN.1 "Any" type in abstract structural declarations ;; NB: Type tagging for disambiguation of generalized union values - ;; refer to annotation, subsq. ) ;; TBD: Signature syntax for ASN.1 generalized union signatures ;; i.e SEQUENCE, SET, CHOICE ;; ... and ENUMERATION? as relevant in module-specific tagging ;; behaviors, described to an extent at p. 113 (PDF p. 141) of ;; [Dubuisson] ;; ;; - Note that each generalized union memebr must have a tag stored with ;; it, complimentary to the tag - in the same sense - as assigned to the ;; type of the member. Refer, perhaps, to [Dubuisson] PDF pp. 234-246 ;; NB: If this system is implemented for interoperation with an ASN.1 ;; interpreter e.g in C, this type signature model may be revised for ;; further support of the particular interpreter tool. (defstruct (asn.1-structure-declaration ;; TBD: Too simplified (??) (:include asn.1-declaration) (:constructor)) ) ;; -- Prototypes towards a parser semantics ;; (defvar +asn.1-readtable+ ...) ;; (defvar *case-fold-asn.1-identifiers* ??) ;; ^ TBD: Compiler macro for IDENTIFIER-P dispatching on that value, ;; during evaluation (defun* identifier-p (str) (declare (type string str) (values boolean (or character null) &optional)) (let ((len (length str)) (in-dash)) (declare (type array-index len)) (cond ((zerop len) (values nil nil)) (t (let ((c0 (char str 0)) (c-last (char str (1- len)))) (cond ((not (and (alpha-char-p c0) ;; TBD case-folding per runtime config (lower-case-p c0))) (values nil c0)) ((char= c-last #\-) (values nil c-last)) (t (do ((n 1 (1+ n))) ((= n len) (values t nil)) (declare (type array-index n)) (let ((c (aref str n))) (cond ((alphanumericp c) (setq in-dash nil)) ((or (char= c #\-) ;; NB: #\NON-BREAKING_HYPHEN #+:asn.1-unicode (char= c (mk-lf (code-char #x2011)))) (if in-dash (return (values nil c)) (setq in-dash t))) (t (return (values nil c)) ))))))))))) ;; (identifier-p "frob") ;; (identifier-p "Frob") ;; (identifier-p "-") ;; (identifier-p "frob-b") ;; (identifier-p "frob--b") ;; (identifier-p "frob-b-") ;; ^ cf. ASN OID symbolic elements ;; Ref: ITU-T Recommendation X.680 (08/2015) subclause 12.3, ;; "Identifiers," and clause 11, "The ASN.1 Character Set" ;; ;; NB: A subset of/ Unicode characters is supported for identifier ;; tokens in ASN.1, per X.680 (08/2015) subclauses 11.1 and 12.3 ;; generally: Letter characters, Digit characters, and "Hyphens" broadly ;; (see susbq) such that may be understood as denoting complimetary ;; subsets of code points in UCS. As such, this software system will ;; rely on the implementation's support for character predicate ;; functions onto the respective UCS code points. ;; ;; NB: ITU-T Recommendation X.680 (08/2015) permits the usage of a ;; non-breaking hyphen character in identifier tokens, but specifies - ;; in effect - that it is to be interpreted as representing a hyphen- ;; minus character. ;; ;; NB: LTP/COMMON:SIMPLIFY-STRING (defun* simplify-identifier (str) (declare (type string str) (values simple-string &optional)) (let* ((len (length str)) (buf (make-array len :element-type 'character :initial-contents str)) non-base-str) (declare (type array-index len) (type simple-string buf)) (labels ((parse () (if non-base-str (values buf) (coerce buf 'simple-base-string)))) (dotimes (n len (parse)) (let ((c (schar buf n))) (cond ;; NB: #\NON-BREAKING_HYPHEN interpreted as #\- #+:asn.1-unicode ((char= c (mk-lf (code-char #x2011))) (setf (schar buf n) #\-)) ((typep c 'base-char)) ;; no-op (t (setq non-base-str t)))))))) ;; (typep (simplify-identifier "frob") 'simple-base-string) ;; =>T #+NIL (eval-when () #+asn.1-unicode (let ((s (make-string 3 :initial-element #\a))) ;; NB: #\NON-BREAKING_HYPHEN (setf (schar s 1) (code-char #x2011)) (setq s (simplify-identifier s)) (values s (aref s 1))) ;; => "a-a", #\- ) ;; ---- ;; NB This system may reuse the DEFSIGNATURE/DEFIMPLEMENTATION protocol, ;; as presently being developed in support for a portable API for ;; mutually exclusive and modal (R/W) locking in concurrent ;; applications, in the LTP-Main source repository vis. defportable.lisp #+TBD (defsignature module (TBD) ;; NB towards DEFIMPLEMENTATION MODULE (TBD^2) - Expected Usage Cases ;; - Internal representation for ASN.1, in this system ;; - Interoperability for the internal representation, pursuant of ;; support for representational models in individual ASN.1 ;; processing tools - generally denoted as ASN.1 compilers - and ;; subsequent FFI integration for ASN.1 toolchains with individual, ;; generalized abstract syntax specifications (NB: SNMP; X.509; ;; LDAP Schema; ...) ;; - Support for systems modeling and source editing for ASN.1 ;; declarations, in CommonIDE - NB, Generalized IPC (Usage Case) in ;; the CommonIDE source system, and (Usage Case) support for ;; applications of generalized abstract syntaxes (after a manner of ;; ITU-T Recommendation X.216) principally extending ASN.1, in other ;; software projects. (:prototype-slots ;; NB: Exact syntax TBD - DEFSIGNATURE (oid :type asn.1-oid :access (:read)) (imports ;; TBD: Support for interactive evaluation - modification of module ;; import declarations during runtime ;; ;; TBD: Support for unparsing the intermediate representation of ;; ASN.1 lexical elements ;; NB: Refer to ITU-T Recommendation X.680 (08/2015) for ;; clarification after footnotes in [Dubuisson2000] as with regards ;; to the present state of support for module import declarations in ;; ASN.1 module definitions ) (tagging-policy ;; TBD: ENUM types in internal representation - generalized IR ;; infrastructure for ASN.1 in this system's internal representation ;; ;; Refer to ITU-T Recommendation X.680 (08/2015) :access (:read) :type module-tagging-policy) (definitions ;; TBD - refer to annotations under the IMPORTS prototype field ;; ;; NB Usage Cases ;; - Generalized evaluation of ASN.1 source forms, in arbitrary ;; source systems ;; - Programmed evaluation, in implememtation per ASN.1 declarations ;; - Lexical evaluation, pursuant towards representation of ASN.1 ;; source systems in a manner after philosophies of Literate ;; Programming and Systems Analysisx :type iterable-field ;; TBD. See also, ISI PowerLoom(R) - STELLA language )))
9,755
Common Lisp
.lisp
242
34.471074
80
0.634569
thinkum/commonide
2
0
0
EPL-1.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
11b133e39a5a8a9fa09ebb21d45c2713ff93408fe44785bac41e6e2defbd2ee3
20,915
[ -1 ]
20,917
CommonIDE.glade
thinkum_commonide/CommonIDE.glade
<?xml version="1.0" encoding="UTF-8"?> <!-- Generated with glade 3.22.1 --> <interface> <object class="GtkListStore" id="_cmd_completion_liststore"> <columns> <!-- column-name cmd_completion_gobject --> <column type="GObject"/> </columns> </object> <object class="GtkEntryCompletion" id="_cmd_completion_obj"/> <object class="GtkEntryBuffer" id="_ide_cmd_entrybuffer"> <property name="text" translatable="yes">Cmd (IDE Window)</property> </object> <object class="GtkImage" id="_ide_menu_item_view_newidewin_img"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="stock">gtk-add</property> </object> <object class="GtkImage" id="_ide_menu_item_view_prefs_img"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="stock">gtk-preferences</property> </object> <object class="GtkMenu" id="_ide_mode_menu"> <property name="visible">True</property> <property name="can_focus">False</property> </object> <object class="GtkMenu" id="_ide_prefs_optionset_1_menu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkRadioMenuItem" id="_ide_prefs_optionset_1_option_1"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Option 1</property> <property name="use_underline">True</property> <property name="draw_as_radio">True</property> </object> </child> <child> <object class="GtkRadioMenuItem" id="_ide_prefs_optionset_1_option_2"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Option 2</property> <property name="use_underline">True</property> <property name="draw_as_radio">True</property> <property name="group">_ide_prefs_optionset_1_option_1</property> </object> </child> <child> <object class="GtkRadioMenuItem" id="_ide_prefs_optionset_1_option_3"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Option 3 (Shadow)</property> <property name="use_underline">True</property> <property name="draw_as_radio">True</property> <property name="group">_ide_prefs_optionset_1_option_1</property> </object> </child> </object> <object class="GtkMenu" id="_ide_shell_menu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkMenuItem"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">REPL Shell</property> <property name="use_underline">True</property> </object> </child> </object> <object class="GtkEntryBuffer" id="_project_cmd_entrybuffer"> <property name="text" translatable="yes">Cmd (Project Window)</property> </object> <object class="GtkMenu" id="_project_mode_menu"> <property name="visible">True</property> <property name="can_focus">False</property> </object> <object class="GtkAdjustment" id="_project_nav_resource_tree_hscroll"> <property name="upper">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="_project_nav_resource_tree_vscroll"> <property name="upper">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> </object> <object class="GtkMenu" id="_project_shell_menu"> <property name="visible">True</property> <property name="can_focus">False</property> </object> <object class="GtkWindow" id="_Project_Main"> <property name="can_focus">False</property> <child> <placeholder/> </child> <child> <object class="GtkBox" id="_project_main_topbox"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkMenuBar" id="_project_menu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkMenuItem" id="_project_menu_file"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">_File</property> <property name="use_underline">True</property> <child type="submenu"> <object class="GtkMenu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-new</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-open</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-save</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-save-as</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkSeparatorMenuItem"> <property name="visible">True</property> <property name="can_focus">False</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-quit</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> </object> </child> </object> </child> <child> <object class="GtkMenuItem" id="_project_menu_edit"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">_Edit</property> <property name="use_underline">True</property> <child type="submenu"> <object class="GtkMenu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-cut</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-copy</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-paste</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-delete</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> </object> </child> </object> </child> <child> <object class="GtkMenuItem" id="_project_menu_view"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">_View</property> <property name="use_underline">True</property> </object> </child> <child> <object class="GtkMenuItem" id="_project_menu_help"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">_Help</property> <property name="use_underline">True</property> <child type="submenu"> <object class="GtkMenu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-about</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> </object> </child> </object> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkToolbar" id="_project_toolbar"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">New Project</property> <property name="use_underline">True</property> <property name="stock_id">gtk-add</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Save Project</property> <property name="use_underline">True</property> <property name="stock_id">gtk-save</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Open Project</property> <property name="use_underline">True</property> <property name="stock_id">gtk-open</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Project Preferences</property> <property name="halign">end</property> <property name="valign">end</property> <property name="label" translatable="yes">Preferences</property> <property name="use_underline">True</property> <property name="stock_id">gtk-preferences</property> </object> <packing> <property name="expand">True</property> <property name="homogeneous">True</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkBox" id="_project_editor_mainbox"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkBox" id="_prostack_sidebox"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkComboBoxText"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="active">0</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkStackSidebar"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="stack">_prostack</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkStack" id="_prostack"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <placeholder/> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> <child> <object class="GtkBox" id="_project_ctrlbox"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkMenuButton" id="_project_mode_menubtn"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> <property name="relief">none</property> <property name="popup">_project_mode_menu</property> <property name="direction">up</property> <child> <object class="GtkLabel"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Mode</property> </object> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkEntry"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="buffer">_project_cmd_entrybuffer</property> <property name="text" translatable="yes">Cmd</property> <property name="shadow_type">etched-in</property> <property name="completion">_cmd_completion_obj</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkMenuButton" id="_project_shell_menubtn"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> <property name="relief">none</property> <property name="popup">_project_shell_menu</property> <property name="direction">up</property> <child> <object class="GtkLabel"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Shell</property> </object> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">3</property> </packing> </child> </object> </child> </object> <object class="GtkAdjustment" id="_restack_view_model0_layout_hscroll"> <property name="upper">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="_restack_view_model0_layout_vscroll"> <property name="upper">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> </object> <object class="GtkTextTagTable" id="_restack_view_text_tags_1"> <child type="tag"> <object class="GtkTextTag" id="_tag_keyword"> <property name="font">Normal</property> </object> </child> <child type="tag"> <object class="GtkTextTag" id="_tag_global_constant"> <property name="font">Normal</property> </object> </child> <child type="tag"> <object class="GtkTextTag" id="_tag_global_var"> <property name="font">Normal</property> </object> </child> <child type="tag"> <object class="GtkTextTag" id="_tag_global_fn"> <property name="font">Normal</property> </object> </child> <child type="tag"> <object class="GtkTextTag" id="_tag_string"> <property name="font">Normal</property> </object> </child> <child type="tag"> <object class="GtkTextTag" id="_tag_comment"> <property name="font">Normal</property> </object> </child> </object> <object class="GtkTextBuffer" id="_restack_view_text_buffer_1"> <property name="tag_table">_restack_view_text_tags_1</property> <property name="text" translatable="yes">lorem ipsum</property> </object> <object class="GtkAdjustment" id="_restack_view_text_view_1_hscroll"> <property name="upper">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="_restack_view_text_view_1_vscroll"> <property name="upper">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> </object> <object class="GtkWindow" id="_IDE_Main"> <property name="can_focus">False</property> <child> <placeholder/> </child> <child> <object class="GtkBox" id="_ide_main_topbox"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkMenuBar" id="_ide_menu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkMenuItem" id="_ide_menu_file"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">_File</property> <property name="use_underline">True</property> <child type="submenu"> <object class="GtkMenu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-new</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-open</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-save</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-save-as</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkSeparatorMenuItem"> <property name="visible">True</property> <property name="can_focus">False</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-quit</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> </object> </child> </object> </child> <child> <object class="GtkMenuItem" id="_ide_menu_edit"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">_Edit</property> <property name="use_underline">True</property> <child type="submenu"> <object class="GtkMenu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-cut</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-copy</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-paste</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-delete</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> </object> </child> </object> </child> <child> <object class="GtkMenuItem" id="_ide_menu_view"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">_View</property> <property name="use_underline">True</property> <child type="submenu"> <object class="GtkMenu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkCheckMenuItem"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Show Window Toolbar</property> <property name="use_underline">True</property> <property name="active">True</property> <property name="draw_as_radio">True</property> </object> </child> <child> <object class="GtkCheckMenuItem"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Show Editor Toolbar</property> <property name="use_underline">True</property> <property name="active">True</property> <property name="draw_as_radio">True</property> </object> </child> <child> <object class="GtkCheckMenuItem"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Show IDE Sidebar</property> <property name="use_underline">True</property> <property name="active">True</property> <property name="draw_as_radio">True</property> </object> </child> <child> <object class="GtkSeparatorMenuItem"> <property name="visible">True</property> <property name="can_focus">False</property> </object> </child> <child> <object class="GtkImageMenuItem" id="_ide_menu_item_view_newidewin"> <property name="label" translatable="yes">New IDE Window</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="image">_ide_menu_item_view_newidewin_img</property> <property name="use_stock">False</property> </object> </child> <child> <object class="GtkSeparatorMenuItem"> <property name="visible">True</property> <property name="can_focus">False</property> </object> </child> <child> <object class="GtkImageMenuItem" id="_ide_menu_item_view_prefs"> <property name="label" translatable="yes">IDE Preferences</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="image">_ide_menu_item_view_prefs_img</property> <property name="use_stock">False</property> </object> </child> </object> </child> </object> </child> <child> <object class="GtkMenuItem" id="_ide_menu_help"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">_Help</property> <property name="use_underline">True</property> <child type="submenu"> <object class="GtkMenu"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkImageMenuItem"> <property name="label">gtk-about</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="use_underline">True</property> <property name="use_stock">True</property> </object> </child> </object> </child> </object> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkToolbar" id="_ide_toolbar"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="toolbar_style">both</property> <property name="icon_size">2</property> <child> <object class="GtkToolButton" id="_ide_toolbar_new"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">New Resource</property> <property name="label" translatable="yes">New</property> <property name="stock_id">gtk-file</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="_ide_toolbar_apply"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Open Resource</property> <property name="label" translatable="yes">Open</property> <property name="stock_id">gtk-open</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="_ide_toolbar_save"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Save Resource</property> <property name="label" translatable="yes">Save</property> <property name="stock_id">gtk-save</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Save Resource As</property> <property name="label" translatable="yes">Save As</property> <property name="stock_id">gtk-save-as</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkSeparatorToolItem"> <property name="visible">True</property> <property name="can_focus">False</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Cut to Clipboard</property> <property name="label" translatable="yes">Cut</property> <property name="stock_id">gtk-cut</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Copy to Clipboard</property> <property name="label" translatable="yes">Copy</property> <property name="stock_id">gtk-copy</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Paste from Clipboard</property> <property name="label" translatable="yes">Paste</property> <property name="stock_id">gtk-paste</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Delete Text</property> <property name="label" translatable="yes">Delete</property> <property name="stock_id">gtk-delete</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkSeparatorToolItem"> <property name="visible">True</property> <property name="can_focus">False</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkBox" id="_ide_editor_mainbox"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkBox" id="_ide_sidebox"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkComboBoxText" id="_project_nav_sel"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="active">0</property> <property name="has_entry">True</property> <items> <item id="ide_fileview" translatable="yes">File View</item> <item id="_ide_resourceview" translatable="yes">Resource View</item> </items> <child internal-child="entry"> <object class="GtkEntry" id="_project_nav_sel_entry"> <property name="can_focus">False</property> </object> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkTreeView" id="_project_nav_resource_tree"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="hadjustment">_project_nav_resource_tree_hscroll</property> <property name="vadjustment">_project_nav_resource_tree_vscroll</property> <property name="search_column">0</property> <property name="tooltip_column">0</property> <child internal-child="selection"> <object class="GtkTreeSelection"/> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkStackSidebar" id="_restack_sel"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="stack">_restack</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkStack" id="_restack"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="interpolate_size">True</property> <child> <object class="GtkBox" id="_restack_view_text0"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkToolbar" id="_restack_view_text_toolbar"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkToolButton" id="_restack_view_text_toolbar_button_add"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Add from Template</property> <property name="label" translatable="yes">Add from Template</property> <property name="use_underline">True</property> <property name="stock_id">gtk-add</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="_restack_view_text_toolbar_button_exec"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Apply</property> <property name="use_underline">True</property> <property name="stock_id">gtk-execute</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="_restack_view_text_toolbar_button_prefs"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Editor Preferences</property> <property name="halign">end</property> <property name="valign">end</property> <property name="label" translatable="yes">Editor Preferences</property> <property name="use_underline">True</property> <property name="stock_id">gtk-preferences</property> </object> <packing> <property name="expand">True</property> <property name="homogeneous">True</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkTextView" id="_restack_view_text0_view"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="hadjustment">_restack_view_text_view_1_hscroll</property> <property name="vadjustment">_restack_view_text_view_1_vscroll</property> <property name="wrap_mode">word</property> <property name="buffer">_restack_view_text_buffer_1</property> <property name="monospace">True</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkBox" id="_restack_view_text_filename_box"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_top">5</property> <property name="margin_bottom">8</property> <child> <object class="GtkLabel" id="_restack_view_text_filename_file"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">file.src</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="_restack_view_text_filename_dir"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">end</property> <property name="valign">end</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">src/main/src</property> <property name="ellipsize">end</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> <property name="name">restack_view_text0</property> <property name="title" translatable="yes">file.src - src/main/src</property> </packing> </child> <child> <object class="GtkBox" id="_restack_view_web0"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkToolbar" id="_restack_view_web_toolbar"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkToolButton" id="_restack_view_text_toolbar_button_tbd"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">TBD</property> <property name="use_underline">True</property> <property name="stock_id">gtk-edit</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="_restack_view_text_toolbar_button_pref"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Configure Editor</property> <property name="halign">end</property> <property name="valign">end</property> <property name="label" translatable="yes">Configure</property> <property name="use_underline">True</property> <property name="stock_id">gtk-preferences</property> </object> <packing> <property name="expand">True</property> <property name="homogeneous">True</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <placeholder/> </child> </object> <packing> <property name="name">restack_view_web0</property> <property name="title" translatable="yes">file.xul - src/layout/xul</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkBox" id="_restack_view_model0"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkToolbar" id="_restack_view_model_toolbar"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkToolButton" id="_restack_view_model_toolbar_btn_add"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Add</property> <property name="label" translatable="yes">Add</property> <property name="use_underline">True</property> <property name="stock_id">gtk-add</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="_restack_view_model_toolbar_btn_exec"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Apply</property> <property name="use_underline">True</property> <property name="stock_id">gtk-execute</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="_restack_view_model_toolbar_btn_prefs"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">Configure Editor</property> <property name="halign">end</property> <property name="valign">end</property> <property name="label" translatable="yes">Configure</property> <property name="use_underline">True</property> <property name="stock_id">gtk-preferences</property> </object> <packing> <property name="expand">True</property> <property name="homogeneous">True</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLayout" id="_restack_view_model0_layout"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="hadjustment">_restack_view_model0_layout_hscroll</property> <property name="vadjustment">_restack_view_model0_layout_vscroll</property> <child> <object class="GtkIconView"> <property name="width_request">100</property> <property name="height_request">80</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="margin">6</property> </object> <packing> <property name="x">60</property> <property name="y">40</property> </packing> </child> <child> <object class="GtkIconView"> <property name="width_request">100</property> <property name="height_request">80</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="margin">6</property> </object> <packing> <property name="x">310</property> <property name="y">40</property> </packing> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="name">restack_view_model0</property> <property name="title" translatable="yes">file.modl - src/layout/modl</property> <property name="position">2</property> </packing> </child> <child> <object class="GtkBox" id="_restack_view_multi0"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkToolbar" id="_restack_view_multi_toolbar_FIXME_APPWIDGET_TEXT_TOOLBAR"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="toolbar_style">both-horiz</property> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Add</property> <property name="use_underline">True</property> <property name="stock_id">gtk-add</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Apply</property> <property name="use_underline">True</property> <property name="stock_id">gtk-execute</property> </object> <packing> <property name="expand">False</property> <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">end</property> <property name="valign">end</property> <property name="label" translatable="yes">Editor Preferences</property> <property name="use_underline">True</property> <property name="stock_id">gtk-preferences</property> </object> <packing> <property name="expand">True</property> <property name="homogeneous">True</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkBox" id="_restack_view_multi0_text0_box"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_top">5</property> <property name="margin_bottom">5</property> <property name="orientation">vertical</property> <child> <object class="GtkTextView" id="_restack_view_multi0_text0_text"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="monospace">True</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkBox" id="_restack_view_text_filename_box_FIXME_APPWIDGET_0"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_top">5</property> <property name="margin_bottom">8</property> <child> <object class="GtkLabel" id="_restack_view_text_filename_file_FIXME_APPWIDGET_0"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">start</property> <property name="valign">start</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">file.xh</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="_restack_view_text_filename_dir_FIXME_APPWIDGET_0"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">end</property> <property name="valign">end</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">src/main/other</property> <property name="ellipsize">end</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkBox" id="_restack_view_multi0_text1_box"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkTextView" id="_restack_view_multi0_text1_text"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="monospace">True</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkBox" id="_restack_view_text_filename_box_FIXME_APPWIDGET_1"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">1</property> <property name="margin_top">5</property> <property name="margin_bottom">8</property> <child> <object class="GtkLabel" id="_restack_view_text_filename_file_FIXME_APPWIDGET_1"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">start</property> <property name="valign">start</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">file.xi</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="_restack_view_text_filename_dir_FIXME_APPWIDGET_1"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">end</property> <property name="valign">end</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">src/main/other</property> <property name="ellipsize">end</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> <property name="name">restack_view_multi0</property> <property name="title" translatable="yes">file.xh, file.xi</property> <property name="position">3</property> </packing> </child> <child> <object class="GtkBox" id="_restack_view_ui0"> <property name="name">restack_view_ui0</property> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <placeholder/> </child> <child> <placeholder/> </child> <child> <placeholder/> </child> </object> <packing> <property name="name">restack_view_ui0</property> <property name="title" translatable="yes">file.glade - src/layout/glade</property> <property name="position">4</property> </packing> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> <child> <object class="GtkBox" id="_ide_ctrlbox"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkMenuButton" id="_ideX_mode_menubtn"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> <property name="relief">none</property> <property name="popup">_ide_mode_menu</property> <property name="direction">up</property> <child> <object class="GtkLabel"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Mode</property> </object> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkEntry" id="_ide_cmd_entry"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="buffer">_ide_cmd_entrybuffer</property> <property name="shadow_type">etched-in</property> <property name="completion">_cmd_completion_obj</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkMenuButton" id="_ideX_shell_menubtn"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> <property name="relief">none</property> <property name="popup">_ide_shell_menu</property> <property name="direction">up</property> <child> <object class="GtkLabel"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Shell</property> </object> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">3</property> </packing> </child> </object> </child> </object> <object class="GtkWindow" id="_Editor_Prefs_1"> <property name="can_focus">False</property> <property name="type_hint">dialog</property> <property name="attached_to">_IDE_Main</property> <child> <placeholder/> </child> <child> <placeholder/> </child> </object> <object class="GtkWindow" id="_IDE_Prefs"> <property name="can_focus">False</property> <property name="type_hint">dialog</property> <property name="attached_to">_IDE_Main</property> <child> <placeholder/> </child> <child> <object class="GtkBox" id="_ide_prefs_topbox"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkBox" id="_ide_prefs_labelbox"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_top">5</property> <property name="margin_bottom">8</property> <child> <object class="GtkLabel" id="_ide_prefs_window_label"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">Preferences</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="_ide_prefs_window_label_sep"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">-</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkLabel" id="_ide_prefs_panel_label"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">Summary for IDE Preferences / Active Preferences Panel</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkBox" id="_ide_prefs_mainbox"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkStackSidebar" id="_ide_prefs_stack_sel"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="stack">_ide_prefs_stack</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkStack" id="_ide_prefs_stack"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkBox" id="_ide_prefs_panel0_box"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="orientation">vertical</property> <child> <object class="GtkBox" id="_ide_prefs_panel0_option0_box"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="border_width">5</property> <child> <object class="GtkLabel" id="_ide_prefs_panel0_option0_label"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">start</property> <property name="margin_left">2</property> <property name="margin_right">10</property> <property name="label" translatable="yes">Name</property> <property name="single_line_mode">True</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkEntry" id="_ide_prefs_panel0_option0_entry"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="truncate_multiline">True</property> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkBox" id="_ide_prefs_panel0_option1_box"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <object class="GtkLabel" id="_ide_prefs_panel0_option1_label"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">start</property> <property name="margin_left">2</property> <property name="margin_right">10</property> <property name="label" translatable="yes">Option Set</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkMenuButton" id="_ide_prefs_panel0_option1_menu"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> <property name="popup">_ide_prefs_optionset_1_menu</property> <property name="use_popover">False</property> <child> <object class="GtkLabel" id="_ide_prefs_optionset_1_selected_label"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">label</property> </object> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <placeholder/> </child> </object> <packing> <property name="name">_prefs_panel_0</property> <property name="title" translatable="yes">Prefs Panel 0</property> </packing> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkLabel" id="_ide_prefs_msgbar_text"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">start</property> <property name="valign">start</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="margin_top">5</property> <property name="margin_bottom">5</property> <property name="label" translatable="yes">message text (IDE Prefs)</property> <property name="single_line_mode">True</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> </child> </object> <object class="GtkWindow" id="_Project_New"> <property name="can_focus">False</property> <property name="type_hint">dialog</property> <property name="attached_to">_IDE_Main</property> <child> <placeholder/> </child> <child> <object class="GtkBox" id="_project_new_topbox"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> <child> <object class="GtkBox" id="_project_new_labelbox"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_top">5</property> <property name="margin_bottom">8</property> <child> <object class="GtkLabel" id="_project_new_window_label"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">New Project</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="_project_new_window_label_sep"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">-</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkLabel" id="_project_new_panel_label"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_left">5</property> <property name="margin_right">5</property> <property name="label" translatable="yes">Sumnmary for New Project / Active Configuration Panel</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkBox" id="_project_new_mainbox"> <property name="visible">True</property> <property name="can_focus">False</property> <child> <placeholder/> </child> <child> <placeholder/> </child> </object> <packing> <property name="expand">True</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkLabel" id="_project_new_msgbar_text"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">start</property> <property name="valign">start</property> <property name="margin_left">5</property> <property name="margin_right">6</property> <property name="margin_top">5</property> <property name="margin_bottom">5</property> <property name="label" translatable="yes">message text (New Project)</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> </child> </object> </interface>
94,867
Common Lisp
.l
1,905
30.8021
123
0.480659
thinkum/commonide
2
0
0
EPL-1.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
20b2637cc27bce15952ca480b5cd4763614fc7a73b41646cfc7588f3c6b8de84
20,917
[ -1 ]
20,919
bsd-gnome-reference_mk.log
thinkum_commonide/doc/misc/bsd-gnome-reference_mk.log
Script started on Fri Jun 14 15:47:00 2019 Command: bash -c uname -a; pwd; date; find /usr/ports -type f -mindepth 3 -maxdepth 3 ! -path "/usr/ports/Mk/*" \( -name Makefile -o -name "*.mk" \) ! -name bsd.gnome-reference.mk -print0 | xargs -0 grep bsd.gnome-reference.mk FreeBSD riparian.cloud.thinkum.space 11.2-RELEASE-p9-fa113e14a11 FreeBSD 11.2-RELEASE-p9-fa113e14a11 #0 fa113e14a11(releng/11.2): Wed Apr 10 06:02:17 PDT 2019 [email protected]:/usr/obj/usr/src/sys/RIPARIAN amd64 /usr/ports/devel/libglade2-reference Fri Jun 14 15:47:00 PDT 2019 /usr/ports/print/libgnomeprint-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/devel/glibmm-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/devel/libglade2-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/devel/gnome-vfs-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/devel/ORBit2-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/devel/gconf2-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/devel/libbonobo-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/devel/glib20-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11/libgnome-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-fonts/fontconfig-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/textproc/libxslt-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/textproc/libxml++26-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/textproc/gtkspell-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/textproc/libxml2-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/graphics/libgnomecanvas-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/gtksourceview3-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/gtksourceview2-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/libgnomeui-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/gtkmm30-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/libbonoboui-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/vte-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/libwnck-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/gtk20-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/gtkmm20-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/gtkmm24-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" /usr/ports/x11-toolkits/gtksourceview-reference/Makefile:.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" Command exit status: 0 Script done on Fri Jun 14 15:47:01 2019
3,871
Common Lisp
.l
33
115.393939
236
0.757623
thinkum/commonide
2
0
0
EPL-1.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
9dda2005af74661a0b964f9e86c8a05dad01943c84e9854375f6cd17145a3637
20,919
[ -1 ]
20,934
mmmult9.lisp
i-kiwamu_cl3a/src/mmmult9.lisp
(in-package :cl-user) (defpackage cl3a.mmmult9 (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities :cl3a.mmmult9_vop) (:export :dm*m)) (in-package :cl3a.mmmult9) (declaim (ftype (function (fixnum (simple-array double-float (* *)) fixnum (simple-array double-float (* *)) fixnum (simple-array double-float (* *)) fixnum)) incf-dgebp)) (defun incf-dgebp (k A rma Bt rmb C rmc) (declare (optimize (speed 3) (safety 1)) ; safety should be 1 to avoid "Unhandled memory fault" (type fixnum k rma rmb rmc) (type (simple-array double-float (* *)) A Bt C)) (let ((k0 (min-factor k 8))) (declare (type fixnum k0)) (multiple-value-bind (r0 r1 r2 r3) (%simd-pack-256-doubles (dgebp-reg-ker k0 (sb-kernel:%array-data-vector A) rma (sb-kernel:%array-data-vector Bt) rmb)) (incf (row-major-aref C rmc) (+ r0 r1 r2 r3 (loop :for p :of-type fixnum :from k0 :below k :sum (* (row-major-aref A (+ rma p)) (row-major-aref Bt (+ rmb p))) :into c :of-type double-float :finally (return c)))))) nil) (declaim (ftype (function (fixnum (simple-array double-float (* *)) fixnum (simple-array double-float (* *)) fixnum (simple-array double-float (* *)) fixnum)) incf-dgebp4)) (defun incf-dgebp4 (k A rma Bt rmb C rmc) (declare ; (optimize (speed 3) (safety 0)) (optimize (speed 3) (safety 1)) ; safety should be 1 to avoid "Unhandled memory fault" (type fixnum k rma rmb rmc) (type (simple-array double-float (* *)) A Bt C)) (let* ((k0 (min-factor k 8)) (rmb1 (+ rmb k)) (rmb2 (+ rmb1 k)) (rmb3 (+ rmb2 k)) (rmc1 (1+ rmc)) (rmc2 (1+ rmc1)) (rmc3 (1+ rmc2))) (declare (type fixnum k0 rmb1 rmb2 rmb3 rmc1 rmc2 rmc3)) (multiple-value-bind (r0 r1 r2 r3) (%simd-pack-256-doubles (dgebp-reg-ker4 k k0 (sb-kernel:%array-data-vector A) rma (sb-kernel:%array-data-vector Bt) rmb)) (incf (row-major-aref C rmc) (+ r0 (loop :for p :of-type fixnum :from k0 :below k :sum (* (row-major-aref A (+ rma p)) (row-major-aref Bt (+ rmb p))) :into c :of-type double-float :finally (return c)))) (incf (row-major-aref C rmc1) (+ r2 (loop :for p :of-type fixnum :from k0 :below k :sum (* (row-major-aref A (+ rma p)) (row-major-aref Bt (+ rmb1 p))) :into c :of-type double-float :finally (return c)))) (incf (row-major-aref C rmc2) (+ r1 (loop :for p :of-type fixnum :from k0 :below k :sum (* (row-major-aref A (+ rma p)) (row-major-aref Bt (+ rmb2 p))) :into c :of-type double-float :finally (return c)))) (incf (row-major-aref C rmc3) (+ r3 (loop :for p :of-type fixnum :from k0 :below k :sum (* (row-major-aref A (+ rma p)) (row-major-aref Bt (+ rmb3 p))) :into c :of-type double-float :finally (return c)))))) nil) (declaim (ftype (function (fixnum fixnum fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dgebp-reg)) (defun dgebp-reg (t1 k t3 mr ic jr A Bt C) "register-scale program of GEBP: C += A * Bt[ib]" ;; Args ;; t1: mc or m1 ;; k: nrow of matrix A & Bt ;; t3: nr or n1 ;; mr: block size of row of A & C ;; ic: target calculation of row at A & C ;; jr: target calculation of column at B & C ;; A: left input matrix A (m * k) ;; Bt: right input matrix B (n * k, transposed) ;; C: output matrix (m * n) (declare (optimize (speed 3) (safety 0)) (type fixnum mr t1 k t3 mr ic jr) (type (simple-array double-float (* *)) A Bt C)) (let ((t10 (min-factor t1 mr)) (t30 (min-factor t3 4))) (declare (type fixnum t10 t30)) (do ((ir 0 (+ ir mr))) ((>= ir t10)) (declare (type fixnum ir)) (dotimes (i (min mr t1)) (let ((rma (array-row-major-index A (+ ic ir i) 0))) (declare (type fixnum rma)) (do ((j 0 (+ j 4))) ((>= j t30)) (let ((rmb (array-row-major-index Bt (+ jr j) 0)) (rmc (array-row-major-index C (+ ic ir i) (+ jr j)))) (declare (type fixnum rmb rmc)) (incf-dgebp4 k A rma Bt rmb C rmc))) (do ((j t30 (1+ j))) ((>= j t3)) (let ((rmb (array-row-major-index Bt (+ jr j) 0)) (rmc (array-row-major-index C (+ ic ir i) (+ jr j)))) (declare (type fixnum rmb rmc)) (incf-dgebp k A rma Bt rmb C rmc)))))) (do ((ir t10 (1+ ir))) ((>= ir t1)) (let ((rma (array-row-major-index A (+ ic ir) 0))) (declare (type fixnum rma)) (dotimes (j t3) (let ((rmb (array-row-major-index Bt (+ jr j) 0)) (rmc (array-row-major-index C (+ ic ir) (+ jr j)))) (declare (type fixnum rmb rmc)) (incf-dgebp k A rma Bt rmb C rmc))))))) (declaim (ftype (function (fixnum fixnum fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dgepp-blk1i)) (defun dgepp-blk1i (t1 k nr mr n ic A Bt C) "" ;; Args ;; t1: mc or m1 ;; k: nrow of matrix A & Bt ;; nr: ncol of submatrix of Btilde ;; mr: nrow of submatrix of Atilde ;; n: ncol of B & C ;; ic: index from 0 to m ;; A: left input matrix A ;; Bt: right input matrix B (n * k, transposed) ;; C: output matrix (k * n) (declare (optimize (speed 3) (safety 0)) (type fixnum t1 k nr mr n ic) (type (simple-array double-float (* *)) A Bt C)) (let ((n0 (min-factor n nr))) (declare (type fixnum n0)) (unless (= n0 0) (do ((jr 0 (+ jr nr))) ((>= jr n0)) (declare (type fixnum jr)) (dgebp-reg t1 k nr mr ic jr A Bt C))) (when (> n n0) (dgebp-reg t1 k (- n n0) mr ic n0 A Bt C)))) (declaim (ftype (function (fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dgemm1)) (defun dgemm1 (mc nr mr A B C) "GEMM_VAR1" (declare (optimize (speed 3) (safety 0)) (type fixnum mc nr mr) (type (simple-array double-float (* *)) A B C)) (let* ((m (min (array-dimension A 0) (array-dimension C 0))) (m0 (min-factor m mc)) (k (min (array-dimension A 1) (array-dimension B 0))) (n (min (array-dimension B 1) (array-dimension C 1))) (Bt (make-array (list n k) :element-type 'double-float))) (declare (type fixnum m m0 k n) (type (simple-array double-float (* *)) Bt)) ;; consider dynamic-extent for Bt (copy-matrix-transpose-sd B 0 k 0 n Bt) (unless (= m0 0) (do ((ic 0 (+ ic mc))) ((>= ic m0)) (declare (type fixnum ic)) (dgepp-blk1i mc k nr mr n ic A Bt C))) (when (> m m0) (dgepp-blk1i (- m m0) k nr mr n m0 A Bt C)))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (A B C) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) A B C)) ;; mc nr mr ;; m1 n1 ;; t1 t2 ;; (dgemm1 128 8 16 A B C)) (dgemm1 128 8 64 A B C))
8,544
Common Lisp
.lisp
201
30.79602
98
0.483976
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
bfa4b84e50c43ffd08cbcf264edb272c5f2bbf5027919a53ccfa24c2cc79e1cb
20,934
[ -1 ]
20,935
mmmult3.lisp
i-kiwamu_cl3a/src/mmmult3.lisp
(in-package :cl-user) (defpackage cl3a.mmmult3 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m :tile-size)) (in-package :cl3a.mmmult3) (declaim (ftype (function (symbol fixnum fixnum) fixnum) tile-size)) (defun tile-size (val-type n cache-size) "calculate the optimum tile size for matrix multiplication" ;; Tile size should satisfy: (type-byte)*3*(tile-size)^2 < cache-size ;; For safety, 1 type-byte is saved. ;; Args ;; val-type: element type of array (double-float or long-float) ;; n: the matrix size (min nrow ncol) ;; cache-size: size of cache (+cache-line+, +L1-size+, +L2-size+, or +L3-size+) (declare (type fixnum n cache-size) (type symbol val-type)) (let ((bs (isqrt (ifloor cache-size (the fixnum 3) (type-byte-length val-type))))) (declare (type fixnum bs)) (when (<= bs (the fixnum 1)) (setf bs (ifloor cache-size (type-byte-length val-type)))) (min bs n))) (declaim (ftype (function (fixnum fixnum fixnum) fixnum) row-major-idx)) (defun row-major-idx (i j nr) "calculate the row-major index: (aref a i j) = (row-major-aref a (row-major-idx i j nr))" ;; Args ;; i: row index ;; j: column index ;; nr: number of row (declare (type fixnum i j nr)) (+ (* i nr) j)) (defmacro m*m-ker (val-type ib0 nrb0 nr kb0 nvb0 nv jb0 ncb0 nc ma mb mc) "kernel program of m*m" ;; Args ;; val-type: element type of array (double-float or long-float) ;; ib0: block index for nr ;; nrb0: block size for nr ;; nr: number of rows of ma and mc ;; kb0: block index for nv ;; nvb0: block size for nv ;; nv: number of cols of ma & number of rows of mb ;; jb0: block index for nc ;; ncb0: block size for nc ;; nc: number of cols of mb and mc ;; ma: input matrix with nr*nv ;; mb: input matrix with nv*nc ;; mc: output matrix with nr*nc (with-gensyms (j0 i j k maik rma rmb rmc) `(let ((,j0 (max ,jb0 (the fixnum (min-factor ,ncb0 +unroll+))))) (declare (type fixnum ,j0)) (do ((,i ,ib0 (1+ ,i))) ((>= ,i (+ ,ib0 ,nrb0))) (declare (type fixnum ,i)) (do ((,k ,kb0 (1+ ,k))) ((>= ,k (+ ,kb0 ,nvb0))) (declare (type fixnum ,k)) (let* ((,rma (row-major-idx ,i ,k ,nr)) (,maik (row-major-aref ,ma ,rma))) (declare (type fixnum ,rma) (type ,val-type ,maik)) (do ((,j ,jb0 (the fixnum (+ ,j +unroll+)))) ((>= ,j ,j0)) (declare (type fixnum ,j)) (let ((,rmc (row-major-idx ,i ,j ,nr)) (,rmb (row-major-idx ,k ,j ,nv))) (declare (type fixnum ,rmc ,rmb)) ,@(loop :repeat +unroll+ :with form = `((incf (row-major-aref ,mc ,rmc) (* ,maik (row-major-aref ,mb ,rmb))) ; (format t "unroll (i j k) = (~A ~A ~A)~%" ,i ,j ,k) (incf ,rmc) (incf ,rmb)) :append form))) ;; if ncb0 < +unroll+ or (mod ncb0 +unroll+) > 0, do remain (do ((,j ,j0 (1+ ,j))) ((>= ,j ,nc)) (declare (type fixnum ,j)) (let ((,rmc (row-major-idx ,i ,j ,nr)) (,rmb (row-major-idx ,k ,j ,nv))) (incf (row-major-aref ,mc ,rmc) (* ,maik (row-major-aref ,mb ,rmb)))) ; (format t "remain (i j k) = (~A ~A ~A)~%" ,i ,j ,k) ))))))) (defmacro m*m-tile-cache-line (val-type ib1 nrb1 nr kb1 nvb1 nv jb1 ncb1 nc ma mb mc) "m*m in a tile of cache line size" ;; Args ;; val-type: element type of array (double-float or long-float) ;; ib1: block index for nr ;; nrb1: block size for nr ;; nr: number of rows of ma & mc ;; kb1: block index for nv ;; nvb1: block size for nv ;; nv: number of cols of ma & number of rows of mb ;; jb1: block index for nc ;; ncb1: block size for nc ;; nc: number of cols of mb & mc ;; ma: input matrix with nr*nv ;; mb: input matrix with nv*nc ;; mc: output matrix with nr*nc (with-gensyms (calc nrb nvb ncb ib0 jb0 kb0 nrb0 nvb0 ncb0) `(flet ((,calc (ib nrb nr kb nvb nv jb ncb nc ma mb mc) (declare (optimize (speed 3) (debug 0) (safety 0)) (type fixnum ib nrb nr kb nvb nv jb ncb nc) (type (simple-array ,val-type (* *)) ma mb mc)) (m*m-ker ,val-type ib nrb nr kb nvb nv jb ncb nc ma mb mc))) (declare (inline ,calc)) (let* ((,nrb (tile-size ',val-type ,nrb1 +L1-size+)) (,nvb (tile-size ',val-type ,nvb1 +L1-size+)) (,ncb (tile-size ',val-type ,ncb1 +L1-size+))) (declare (type fixnum ,nrb ,nvb ,ncb)) (dotimes-interval2 (,ib0 ,ib1 ,nrb1) (,nrb0 ,nrb) (dotimes-interval2 (,kb0 ,kb1 ,nvb1) (,nvb0 ,nvb) (dotimes-interval2 (,jb0 ,jb1 ,ncb1) (,ncb0 ,ncb) ; (format t "(ib0 nrb0 kb0 nvb0 jb0 ncb0) = (~A ~A ~A ~A ~A ~A)~%" ,ib0 ,nrb0 ,kb0 ,nvb0 ,jb0 ,ncb0) (,calc ,ib0 ,nrb0 ,nr ,kb0 ,nvb0 ,nv ,jb0 ,ncb0 ,nc ,ma ,mb ,mc)))))))) (defmacro m*m-tile-L1 (val-type ib2 nrb2 nr kb2 nvb2 nv jb2 ncb2 nc ma mb mc) "m*m in a tile of L1 cache size" ;; Args ;; val-type: element type of array (double-float or long-float) ;; ib2: block index for nr ;; nrb2: block size for nr ;; nr: number of rows of ma & mc ;; kb2: block index for nv ;; nvb2: block size for nv ;; nv: number of cols of ma & number of rows of mb ;; jb2: block index for nc ;; ncb2: block size for nc ;; nc: number of cols of mb & mc ;; ma: input matrix with nr*nv ;; mb: input matrix with nv*nc ;; mc: output matrix with nr*nc (with-gensyms (nrb nvb ncb ib1 jb1 kb1 nrb1 nvb1 ncb1) `(let* ((,nrb (tile-size ',val-type ,nrb2 +L1-size+)) (,nvb (tile-size ',val-type ,nvb2 +L1-size+)) (,ncb (tile-size ',val-type ,ncb2 +L1-size+))) (declare (type fixnum ,nrb ,nvb ,ncb)) (dotimes-interval2 (,ib1 ,ib2 ,nrb2) (,nrb1 ,nrb) (dotimes-interval2 (,kb1 ,kb2 ,nvb2) (,nvb1 ,nvb) (dotimes-interval2 (,jb1 ,jb2 ,ncb2) (,ncb1 ,ncb) ; (format t "(ib1 nrb1 kb1 nvb1 jb1 ncb1) = (~A ~A ~A ~A ~A ~A)~%" ,ib1 ,nrb1 ,kb1 ,nvb1 ,jb1 ,ncb1) (m*m-tile-cache-line ,val-type ,ib1 ,nrb1 ,nr ,kb1 ,nvb1 ,nv ,jb1 ,ncb1 ,nc ,ma ,mb ,mc))))))) (defmacro m*m-tile-L2 (val-type nr nv nc ma mb mc) "m*m in a tile of L2 cache size" ;; Args ;; val-type: element type of array (double-float or long-float) ;; nr: number of rows of ma & mc ;; nv: number of cols of ma & number of rows of mb ;; nc: number of cols of mb & mc ;; ma: input matrix with nr*nv ;; mb: input matrix with nv*nc ;; mc: output matrix with nr*nc (with-gensyms (calc nrb nvb ncb ib2 jb2 kb2 nrb2 nvb2 ncb2) `(flet ((,calc (ib nrb nr kb nvb nv jb ncb nc ma mb mc) (declare (optimize (speed 3) (debug 0) (safety 0)) (type fixnum ib nrb nr kb nvb nv jb ncb nc) (type (simple-array ,val-type (* *)) ma mb mc)) (m*m-tile-cache-line ,val-type ib nrb nr kb nvb nv jb ncb nc ma mb mc))) (declare (inline ,calc)) (let* ((,nrb (tile-size ',val-type ,nr +L2-size+)) (,nvb (tile-size ',val-type ,nv +L2-size+)) (,ncb (tile-size ',val-type ,nc +L2-size+))) (declare (type fixnum ,nrb ,nvb ,ncb)) (dotimes-interval2 (,jb2 0 ,nc) (,ncb2 ,ncb) (dotimes-interval2 (,ib2 0 ,nr) (,nrb2 ,nrb) (dotimes-interval2 (,kb2 0 ,nv) (,nvb2 ,nvb) ; (format t "(ib2 nrb2 kb2 nvb2 jb2 ncb2) = (~A ~A ~A ~A ~A ~A)~%" ,ib2 ,nrb2 ,kb2 ,nvb2 ,jb2 ,ncb2) (,calc ,ib2 ,nrb2 ,nr ,kb2 ,nvb2 ,nv ,jb2 ,ncb2 ,nc ,ma ,mb ,mc)))))))) ; (m*m-ker ,val-type ,ib2 ,nrb2 ,nr ,kb2 ,nvb2 ,nv ,jb2 ,ncb2 ,nc ,ma ,mb ,mc)))))))) (defmacro m*m (val-type ma mb mc) "main macro for m*m" ;; Args ;; val-type: element type of array (double-float or long-float) ;; ma: input matrix with nr*nv ;; mb: input matrix with nv*nc ;; mc: output matrix with nr*nc (with-gensyms (nr nv nc) `(let ((,nr (min (array-dimension ma 0) (array-dimension mc 0))) (,nv (min (array-dimension ma 1) (array-dimension mb 0))) (,nc (min (array-dimension mb 1) (array-dimension mc 1)))) (declare (type fixnum ,nr ,nv ,nc)) (m*m-tile-L2 ,val-type ,nr ,nv ,nc ,ma ,mb ,mc)))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (ma mb mc) "Multiply matrix and matrix of double-float" (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) ma mb mc)) (m*m double-float ma mb mc)) (declaim (ftype (function ((simple-array long-float (* *)) (simple-array long-float (* *)) (simple-array long-float (* *)))) lm*m)) (defun lm*m (ma mb mc) "Multiply matrix and matrix of long-float" (declare (optimize (speed 3) (safety 0)) (type (simple-array long-float (* *)) ma mb mc)) (m*m long-float ma mb mc))
9,691
Common Lisp
.lisp
205
38.04878
115
0.532108
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
73028f3d8d292a561cb2b8221e9b799caf1b26382008272f5dfe5d986c329470
20,935
[ -1 ]
20,936
mmmult7_vop.lisp
i-kiwamu_cl3a/src/mmmult7_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult7vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :f2+ :f2* :simd-sum)) (in-package :cl3a.mmmult7vop) (defknown (f2+ f2*) ((sb-kernel:simd-pack double-float) (sb-kernel:simd-pack double-float)) (sb-kernel:simd-pack double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown simd-sum ((sb-kernel:simd-pack double-float)) double-float (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown load2-sse-from-array ((simple-array double-float (*)) fixnum) (sb-kernel:simd-pack double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) ;; (defknown store2-sse-to-array ((simple-array double-float (*)) ;; fixnum ;; (sb-kernel:simd-pack double-float)) ;; (simple-array double-float (*)) ;; (movable flushable always-translatable) ;; :overwrite-fndb-silently t) (in-package :sb-vm) (define-vop (cl3a.mmmult7vop::f2+) (:translate cl3a.mmmult7vop::f2+) (:policy :fast-safe) (:args (x :scs (double-sse-reg) :target res) (y :scs (double-sse-reg))) (:arg-types simd-pack-double simd-pack-double) (:results (res :scs (double-sse-reg))) (:result-types simd-pack-double) (:generator 4 (cond ((location= res y) (inst addpd y x)) (t (move res x) (inst addpd res y))))) (define-vop (cl3a.mmmult7vop::f2*) (:translate cl3a.mmmult7vop::f2*) (:policy :fast-safe) (:args (x :scs (double-sse-reg) :target res) (y :scs (double-sse-reg))) (:arg-types simd-pack-double simd-pack-double) (:results (res :scs (double-sse-reg))) (:result-types simd-pack-double) (:generator 4 (cond ((location= res y) (inst mulpd y x)) (t (move res x) (inst mulpd res y))))) (define-vop (cl3a.mmmult7vop::simd-sum) (:translate cl3a.mmmult7vop::simd-sum) (:policy :fast-safe) (:args (x :scs (double-sse-reg) :target res)) (:arg-types simd-pack-double) (:results (res :scs (double-reg))) (:result-types double-float) (:temporary (:sc double-reg) tmp) (:generator 3 (cond ((location= res x) (move tmp x) (inst xorpd res res) (inst movsd res tmp) (inst psrldq tmp 8) (inst addsd res tmp)) (t (move tmp x) (inst psrldq tmp 8) (inst xorpd res res) (inst movsd res x) (inst addsd res tmp))))) ;; (define-vop (cl3a.mmmult7vop::load2-sse-from-array) ;; (:translate cl3a.mmmult7vop::load2-sse-from-array) ;; (:policy :fast-safe) ;; (:args (object :scs (descriptor-reg) :target res) ;; (index :scs (any-reg immediate))) ;; (:arg-types simple-array-double-float tagged-num) ;; (:temporary (:sc double-reg) tmp) ;; (:results (res :scs (double-sse-reg) :from (:argument 0))) ;; (:result-types simd-pack-double) ;; (:generator 7 ;; (inst movsd res ;; (make-ea-for-float-ref object index 0 8 ;; :scale (ash 1 (- word-shift ;; n-fixnum-tag-bits)))) ;; (inst movsd tmp ;; (make-ea-for-float-ref object index 1 8 ;; :scale (ash 1 (- word-shift ;; n-fixnum-tag-bits)))) ;; (inst unpcklpd res tmp))) ;; (define-vop (cl3a.mmmult7::store2-sse-to-array) ;; (:translate cl3a.mmmult7::store2-sse-to-array) ;; (:policy :fast-safe) ;; (:args (object :scs (descriptor-reg)) ;; (index :scs (any-reg immediate)) ;; (value :scs (double-sse-reg))) ;; (:arg-types simple-array-double-float tagged-num simd-pack-double) ;; (:temporary (:sc double-reg) tmp) ;; (:generator 20 ;; (inst xorpd tmp tmp) ;; (move tmp value) ;; (inst movsd ;; (make-ea-for-float-ref object index 0 8 ;; :scale (ash 1 (- word-shift ;; n-fixnum-tag-bits))) ;; tmp) ;; (inst psrldq tmp 8) ;; (inst movsd ;; (make-ea-for-float-ref object index 1 8 ;; :scale (ash 1 (- word-shift ;; n-fixnum-tag-bits))) ;; tmp))) (in-package :cl3a.mmmult7vop) (defun f2+ (x y) (f2+ x y)) (defun f2* (x y) (f2* x y)) ;; (defun load2-sse-from-array (mat i) ;; (load2-sse-from-array mat i)) (defun simd-sum (x) (simd-sum x))
4,664
Common Lisp
.lisp
125
33.152
74
0.557645
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
2616658b530d401bdd76f9a473d45977c5e402f0f2446f5665a93cbedf3bb2e1
20,936
[ -1 ]
20,937
mmmult4.lisp
i-kiwamu_cl3a/src/mmmult4.lisp
(in-package :cl-user) (defpackage cl3a.mmmult4 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m)) (in-package :cl3a.mmmult4) (declaim (ftype (function (integer &key (:l1 boolean)) integer) tile-size)) (defun tile-size (n &key l1) "See Lam et al. 1991 The cache performance and optimizations of blocked algorithms" (declare (type integer n) (type boolean l1)) (let* ((n-half (ifloor n 2)) (cache-size (if l1 (ifloor +L1-size+ 8) (ifloor +L2-size+ 8)))) ;; 1 word = 4 byte (declare (type integer n-half cache-size)) (loop :while t :with max-width :of-type integer = (min n cache-size) :and addr :of-type integer = n-half :and di :of-type integer = 0 :and dj :of-type integer = 1 :and di0 :of-type integer = 1 :do (progn (incf addr cache-size) (setf di (ifloor addr n)) (setf dj (abs (- (mod addr n) n-half))) (setf di0 (min max-width dj))) (when (>= di di0) (return (min max-width di))) :do (setf max-width di0)))) (defmacro m*m-ker (val-type sj nj sk nk nra nv ncb ma mb mc) "Multiply matrix and matrix (unrolling version)" ;; Args ;; val-type: element type of array (double-float or long-float) ;; sj: block index for nc ;; nj: block size for nc ;; sk: block index for nv ;; nk: block size for nv ;; nra: number of row of ma ;; nv: number of cols of ma & number of rows of mb ;; ncb: number of cols of nc ;; ma: input matrix with nra*nv ;; mb: input matrix with nv*ncb ;; mc: output matrix with nra*ncb (with-gensyms (iend jend0 kend i j k maik imb imc maxj) `(let* ((,iend ,nra) (,jend0 (min ,ncb (the fixnum (min-factor (the fixnum (+ ,sj ,nj)) +unroll+)))) (,kend (min ,nv (the fixnum (+ ,sk ,nk)))) (,maxj 0)) (declare (type fixnum ,iend ,jend0 ,kend ,maxj)) (do ((,i 0 (1+ ,i))) ((>= ,i ,iend)) (do ((,k ,sk (1+ ,k))) ((>= ,k ,kend)) (let ((,maik (aref ,ma ,i ,k)) (,imb (array-row-major-index ,mb ,k ,sj)) (,imc (array-row-major-index ,mc ,i ,sj))) (declare (type ,val-type ,maik) (type fixnum ,imb ,imc)) (setf ,maxj (do ((,j ,sj (+ ,j +unroll+))) ((>= ,j ,jend0) ,j) ,@(loop :repeat +unroll+ :with form = `((incf (row-major-aref ,mc ,imc) (* ,maik (row-major-aref ,mb ,imb))) (incf ,imb) (incf ,imc)) :append form))) ;; if jend < +unroll+ or (mod jend +unroll+) > 0 (do ((,j ,maxj (1+ ,j))) ((>= ,j ,ncb)) (incf (row-major-aref ,mc ,imc) (* ,maik (row-major-aref ,mb ,imb))) (incf ,imb) (incf ,imc)))))))) (defmacro m*m (val-type ma mb mc) (with-gensyms (calc copy nra nca nrb ncb nv nt m j k mnv mncb mb-sub) `(flet ((,calc (si ni sk nk nra nv ncb ma mb mc) (declare (optimize (speed 3) (debug 0) (safety 0)) (type fixnum si ni sk nk nra nv ncb) (type (simple-array ,val-type (* *)) ma mb mc)) (m*m-ker ,val-type si ni sk nk nra nv ncb ma mb mc)) (,copy (ma si ni sj nj mb) (declare (optimize (speed 3) (debug 0) (safety 0)) (type (simple-array ,val-type (* *)) ma mb) (type fixnum si ni sj nj)) (copy-matrix ma si ni sj nj mb))) (declare (inline ,calc ,copy)) (let* ((,nra (array-dimension ,ma 0)) (,nca (array-dimension ,ma 1)) (,nrb (array-dimension ,mb 0)) (,ncb (array-dimension ,mb 1)) (,nv (cond ((/= ,nca ,nrb) (different-length-warn ,nca ,nrb) (min ,nca ,nrb)) (t ,nca))) (,nt (min ,nra ,ncb)) (,m (tile-size ,nt))) (declare (type fixnum ,nra ,nca ,nrb ,ncb ,nv ,nt ,m)) (dotimes-interval (,k ,m ,nv) (dotimes-interval (,j ,m ,ncb) (let* ((,mnv (min ,m ,nv)) (,mncb (min ,m ,ncb)) (,mb-sub (make-array (list ,mnv ,mncb) :element-type ',val-type))) (declare (type fixnum ,mnv ,mncb) (type (simple-array ,val-type (* *)) ,mb-sub)) (,copy ,mb ,j ,m ,k ,m ,mb-sub) (,calc ,j ,m ,k ,m ,nra ,nv ,ncb ,ma ,mb-sub ,mc)))))))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (ma mb mc) "Multiply matrix and matrix of double-float" (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) ma mb mc)) (m*m double-float ma mb mc)) (declaim (ftype (function ((simple-array long-float (* *)) (simple-array long-float (* *)) (simple-array long-float (* *)))) lm*m)) (defun lm*m (ma mb mc) (declare (optimize (speed 3) (safety 0)) (type (simple-array long-float (* *)) ma mb mc)) (m*m long-float ma mb mc))
5,692
Common Lisp
.lisp
127
31.826772
86
0.468311
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
5f5a1ef719b22a190ee43e6c3bbac24092a31c33027bdf0e5fde7ca4facfcd59
20,937
[ -1 ]
20,938
mmmult7.lisp
i-kiwamu_cl3a/src/mmmult7.lisp
(in-package :cl-user) (defpackage cl3a.mmmult7 (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities :cl3a.mmmult7vop) (:export :dm*m :gemm1 :gemm3)) (in-package :cl3a.mmmult7) (declaim (ftype (function ((simple-array double-float (*)) fixnum) (simd-pack double-float)) load2-sse-from-array) (inline load2-sse-from-array)) (defun load2-sse-from-array (matv i) (declare (type (simple-array double-float (*)) matv) (type fixnum i)) (let ((x1 (row-major-aref matv i)) (x2 (row-major-aref matv (1+ i)))) (declare (type double-float x1 x2)) (sb-kernel:%make-simd-pack-double x1 x2))) (declaim (ftype (function ((simple-array double-float (*)) fixnum (simd-pack double-float))) store2-sse-to-array) (inline store2-sse-to-array)) (defun store2-sse-to-array (matv i simd) (declare (type (simple-array double-float (*)) matv) (type fixnum i) (type (simd-pack double-float) simd)) (multiple-value-bind (x1 x2) (sb-kernel:%simd-pack-doubles simd) (setf (row-major-aref matv i) x1) (incf i) (setf (row-major-aref matv i) x2))) (declaim (ftype (function (integer &key (:l1 boolean)) integer) tile-size)) (defun tile-size (n &key l1) "See Lam et al. 1991 The cache performance and optimizations of blocked algorithms" (declare (type integer n) (type boolean l1)) (let* ((n-half (ifloor n 2)) (cache-size (if l1 (ifloor (* +L1-size+ +associativity+) 8) (ifloor (* +L2-size+ +associativity+) 8)))) ;; 1 word = 4 byte (declare (type integer n-half cache-size)) (loop :while t :with max-width :of-type integer = (min n cache-size) :and addr :of-type integer = n-half :and di :of-type integer = 0 :and dj :of-type integer = 1 :and di0 :of-type integer = 1 :do (progn (incf addr cache-size) (setf di (ifloor addr n)) (setf dj (abs (- (mod addr n) n-half))) (setf di0 (min max-width dj))) (when (>= di di0) (return (min max-width di))) :do (setf max-width di0)))) (defmacro m*m-ker (val-type si ni sk nk nra nv ncb ma mb mc) "Multiply matrix and matrix (unrolling version)" (with-gensyms (iend jend0 kend i j k maik maiksse imb imc) `(let* ((,iend (min ,nra (the fixnum (+ ,si ,ni)))) (,jend0 (min-factor ,ncb +unroll+ 2)) ; 2 for sse (,kend (min ,nv (the fixnum (+ ,sk ,nk))))) (declare (type fixnum ,iend ,jend0 ,kend)) (do ((,i ,si (1+ ,i))) ((>= ,i ,iend)) (do ((,k ,sk (1+ ,k))) ((>= ,k ,kend)) (let* ((,maik (aref ,ma ,i ,k)) (,maiksse (sb-kernel:%make-simd-pack-double ,maik ,maik)) (,imb (array-row-major-index ,mb ,k 0)) (,imc (array-row-major-index ,mc ,i 0))) (declare (type ,val-type ,maik) (type (simd-pack double-float) ,maiksse) (type fixnum ,imb ,imc)) (do ((,j 0 (the fixnum (+ ,j (* +unroll+ 2))))) ((>= ,j ,jend0)) ,@(loop :repeat +unroll+ :with form = `((store2-sse-to-array (sb-kernel:%array-data-vector ,mc) ,imc (f2+ (load2-sse-from-array (sb-kernel:%array-data-vector ,mc) ,imc) (f2* ,maiksse (load2-sse-from-array (sb-kernel:%array-data-vector ,mb) ,imb)))) (incf ,imb 2) (incf ,imc 2)) :append form)) ;; if jend < +unroll+ or (mod jend +unroll+) > 0 (do ((,j ,jend0 (+ ,j 2))) ((>= ,j ,ncb)) (cond ((> (+ ,j 2) ,ncb) ; if j is odd and loop is the last (incf (row-major-aref ,mc ,imc) (* ,maik (row-major-aref ,mb ,imb))) (incf ,imb) (incf ,imc)) (t (store2-sse-to-array (sb-kernel:%array-data-vector ,mc) ,imc (f2+ (load2-sse-from-array (sb-kernel:%array-data-vector ,mc) ,imc) (f2* ,maiksse (load2-sse-from-array (sb-kernel:%array-data-vector ,mb) ,imb)))) (incf ,imb 2) (incf ,imc 2)))))))))) (defmacro m*m (val-type ma mb mc) ;; (with-gensyms (calc nra nca nrb ncb nv nt m i k) (with-gensyms (calc nra nca nrb ncb nv m1 m2 i k) `(flet ((,calc (si ni sk nk nra nv ncb ma mb mc) (declare (optimize (speed 3) (debug 0) (safety 0)) (type fixnum si ni sk nk nra nv ncb) (type (simple-array ,val-type (* *)) ma mb mc)) (m*m-ker ,val-type si ni sk nk nra nv ncb ma mb mc))) (declare (inline ,calc)) (let* ((,nra (array-dimension ,ma 0)) (,nca (array-dimension ,ma 1)) (,nrb (array-dimension ,mb 0)) (,ncb (array-dimension ,mb 1)) (,nv (cond ((/= ,nca ,nrb) (different-length-warn ,nca ,nrb) (min ,nca ,nrb)) (t ,nca))) ;; (,nt (min ,nra ,ncb)) ;; (,m (tile-size ,nt)) (,m1 (tile-size ,nra)) (,m2 (tile-size ,ncb :l1 t))) ;; (declare (type fixnum ,nra ,nca ,nrb ,ncb ,nv ,nt ,m)) ;; (dotimes-interval (,i ,m ,nra) ;; (dotimes-interval (,k ,m ,nv) ;; (,calc ,i ,m ,k ,m ,nra ,nv ,ncb ,ma ,mb ,mc))))))) (declare (type fixnum ,nra ,nca ,nrb ,ncb ,nv ,m1 ,m2)) (dotimes-interval (,i ,m1 ,nra) (dotimes-interval (,k ,m2 ,nv) (,calc ,i ,m1 ,k ,m2 ,nra ,nv ,ncb ,ma ,mb ,mc))))))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (ma mb mc) "Multiply matrix and matrix of double-float" (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) ma mb mc)) (m*m double-float ma mb mc))
6,455
Common Lisp
.lisp
139
33.597122
98
0.487704
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
3801730c9595195ce08430bc3f6591954ba7d15c5912ea9338edabb56f1c5210
20,938
[ -1 ]
20,939
mvmult.lisp
i-kiwamu_cl3a/src/mvmult.lisp
(in-package :cl-user) (defpackage cl3a.mvmult (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities :cl3a.utilities_vop :cl3a.mvmult_vop) (:export :sm*v :dm*v)) (in-package :cl3a.mvmult) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (*)) (simple-array double-float (*)))) dm*v)) (defun dm*v (matA vb vc) "Multiply matrix and vector of double-float" (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) matA) (type (simple-array double-float (*)) vb vc)) (let* ((m (array-dimension matA 0)) (k (array-dimension matA 1)) (m0 (min-factor m 2)) (k0 (min-factor k 8))) (declare (type fixnum m k m0 k0)) (do ((i 0 (+ i 2))) ((>= i m0)) (declare (type fixnum i)) (let ((idx (array-row-major-index matA i 0))) (declare (type fixnum idx)) (multiple-value-bind (r0 r1 r2 r3) (%simd-pack-256-doubles (mvi2x8-pd k k0 idx (sb-kernel:%array-data-vector matA) vb)) (incf (aref vc i) (+ r0 r2 (loop :for p :of-type fixnum :from k0 :below k :sum (* (aref matA i p) (aref vb p)) :into c :of-type double-float :finally (return c)))) (incf (aref vc (1+ i)) (+ r1 r3 (loop :for p :of-type fixnum :from k0 :below k :sum (* (aref matA (1+ i) p) (aref vb p)) :into c :of-type double-float :finally (return c))))))) (do ((i m0 (1+ i))) ((>= i m)) (declare (type fixnum i)) (incf (aref vc i) (loop :for p :of-type fixnum :below k :sum (* (aref matA i p) (aref vb p)) :into c :of-type double-float :finally (return c)))))) (declaim (ftype (function ((simple-array single-float (* *)) (simple-array single-float (*)) (simple-array single-float (*)))) sm*v)) ;; (defun sm*v (ma vb vc) ;; "Multiply matrix and vector of long-float" ;; (declare (optimize (speed 3)) ;; (type (simple-array long-float (* *)) ma) ;; (type (simple-array long-float (*)) vb vc)) ;; (m*v long-float ma vb vc))
2,450
Common Lisp
.lisp
57
31.508772
91
0.490582
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ab1e842ccd32f41392f8d591fd5da16cb932fd1f70f867dd91033410c6fdfd5e
20,939
[ -1 ]
20,940
transpose.lisp
i-kiwamu_cl3a/src/transpose.lisp
(in-package :cl-user) (defpackage cl3a.transpose (:use :cl :alexandria) (:export :tpose/double-float :tpose/long-float)) (in-package :cl3a.transpose) (declaim (ftype (function ((simple-array double-float (* *))) (simple-array double-float (* *))) tpose/double-float)) (defun tpose/double-float (ma) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) ma)) (let* ((nr (array-dimension ma 0)) (nc (array-dimension ma 1)) (nrc (array-total-size ma)) (mat (make-array (list nc nr) :element-type 'double-float))) (declare (type fixnum nr nc nrc) (type (simple-array double-float (* *)) mat)) ;; initialize (dotimes (rma nrc) (setf (row-major-aref mat rma) (row-major-aref ma rma))) (labels ((rc (n) (declare (type fixnum n)) (let* ((r (mod n nr)) (b (* r nc)) (n0 (multiple-value-bind (q) (floor n nr) q))) (declare (type fixnum r b n0)) (the fixnum (+ b n0)))) (inext (i n i0) (declare (type fixnum i n i0)) (let ((i2 (1+ i)) (n2 (rc n))) (declare (type fixnum i2 n2)) (if (<= n2 i0) (values i2 n2) (inext i2 n2 i0))))) (dotimes (rma nrc) (block continue (multiple-value-bind (i next) (inext 0 rma rma) (when (or (< next rma) (= i 1)) (return-from continue)) (setf next rma) (loop :with tmp :of-type double-float = (row-major-aref mat rma) :do (setf i (rc next)) (setf (row-major-aref mat next) (if (= i rma) tmp (row-major-aref mat i))) (setf next i) :while (> next rma)))))) mat)) (declaim (ftype (function ((simple-array double-float (* *))) (simple-array double-float (* *))) tpose/long-float)) (defun tpose/long-float (ma) (declare (optimize (speed 3) (safety 0)) (type (simple-array long-float (* *)) ma)) (let* ((nr (array-dimension ma 0)) (nc (array-dimension ma 1)) (nrc (array-total-size ma)) (mat (make-array (list nc nr) :element-type 'long-float))) (declare (type fixnum nr nc nrc) (type (simple-array long-float (* *)) mat)) ;; initialize (dotimes (rma nrc) (setf (row-major-aref mat rma) (row-major-aref ma rma))) (labels ((rc (n) (declare (type fixnum n)) (let* ((r (mod n nr)) (b (* r nc)) (n0 (multiple-value-bind (q) (floor n nr) q))) (declare (type fixnum r b n0)) (the fixnum (+ b n0)))) (inext (i n i0) (declare (type fixnum i n i0)) (let ((i2 (1+ i)) (n2 (rc n))) (declare (type fixnum i2 n2)) (if (<= n2 i0) (values i2 n2) (inext i2 n2 i0))))) (dotimes (rma nrc) (block continue (multiple-value-bind (i next) (inext 0 rma rma) (when (or (< next rma) (= i 1)) (return-from continue)) (setf next rma) (loop :with tmp :of-type long-float = (row-major-aref mat rma) :do (setf i (rc next)) (setf (row-major-aref mat next) (if (= i rma) tmp (row-major-aref mat i))) (setf next i) :while (> next rma)))))) mat))
3,942
Common Lisp
.lisp
99
25.808081
69
0.444647
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
e65f8b2660ba0ac10c67aef7c5affcd93ccedcfbdd6869ce573c30b57afb0233
20,940
[ -1 ]
20,941
mmmult_Goto2_vop.lisp
i-kiwamu_cl3a/src/mmmult_Goto2_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult_Goto2_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :dgebp-reg-ker)) (in-package :cl3a.mmmult_Goto2_vop) (defknown dgebp-reg-ker (fixnum (simple-array double-float (* *)) fixnum (simple-array double-float (* *)) fixnum) (sb-kernel:simd-pack double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (in-package :sb-vm) (define-vop (cl3a.mmmult_Goto2_vop::dgebp-reg-ker) (:translate cl3a.mmmult_Goto2_vop::dgebp-reg-ker) (:policy :fast-safe) (:args (t2-ptr :scs (signed-reg) :target p) (Atd :scs (descriptor-reg) :target xmm0) (ia-ptr :scs (signed-reg)) (Bp :scs (descriptor-reg)) (ib-ptr :scs (signed-reg))) (:arg-types tagged-num simple-array-double-float tagged-num simple-array-double-float tagged-num) (:temporary (:sc signed-reg :offset rcx-offset) p) (:temporary (:sc signed-reg :from (:argument 0)) t2) (:temporary (:sc signed-reg :from (:argument 2)) ia) (:temporary (:sc signed-reg :from (:argument 4)) ib) (:temporary (:sc double-sse-reg :from (:argument 1)) xmm1) (:temporary (:sc double-sse-reg :from (:argument 3)) xmm2) (:temporary (:sc double-sse-reg :from (:argument 3)) xmm3) (:results (xmm0 :scs (double-sse-reg) :from (:argument 1))) (:result-types simd-pack-double) (:generator 30 (inst xor p p) (move t2 t2-ptr) (move ia ia-ptr) (move ib ib-ptr) LOOP (inst movupd xmm0 (make-ea-for-float-ref Atd ia 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst movupd xmm1 (make-ea-for-float-ref Atd ia 2 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst movupd xmm2 (make-ea-for-float-ref Bp ib 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst movupd xmm3 (make-ea-for-float-ref Bp ib 2 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst mulpd xmm0 xmm2) (inst mulpd xmm1 xmm3) (inst addpd xmm0 xmm1) (inst haddpd xmm0 xmm0) (inst add p 4) (inst add ia 4) (inst add ib 4) (inst cmp p t2) (inst jmp :b LOOP) DONE)) (in-package :cl3a.mmmult_Goto2_vop) (defun dgebp-reg-ker (t2 Atd ia Bp ib) (dgebp-reg-ker t2 Atd ia Bp ib))
2,285
Common Lisp
.lisp
63
31.333333
70
0.641211
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
54a8220e54e9bf80c826cc3e85002efb57d25820e86cd9c799839e3a99d28175
20,941
[ -1 ]
20,942
mmmult8_vop.lisp
i-kiwamu_cl3a/src/mmmult8_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult8_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :dgebp-reg-ker)) (in-package :cl3a.mmmult8_vop) (defknown dgebp-reg-ker (fixnum (simple-array double-float (*)) fixnum (simple-array double-float (*)) fixnum) (simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (in-package :sb-vm) (define-vop (cl3a.mmmult8_vop::dgebp-reg-ker) (:translate cl3a.mmmult8_vop::dgebp-reg-ker) (:policy :fast-safe) (:args (t2-ptr :scs (signed-reg) :target p) (Atd :scs (descriptor-reg) :target ymm0) (ia-ptr :scs (signed-reg)) (Bp :scs (descriptor-reg) :target ymm2) (ib-ptr :scs (signed-reg))) (:arg-types tagged-num simple-array-double-float tagged-num simple-array-double-float tagged-num) (:temporary (:sc signed-reg :from (:argument 0)) t2) (:temporary (:sc signed-reg :from (:argument 2)) ia) (:temporary (:sc signed-reg :from (:argument 4)) ib) (:temporary (:sc signed-reg :offset rcx-offset) p) (:temporary (:sc double-avx2-reg :from (:argument 1)) ymm0) (:temporary (:sc double-avx2-reg :from (:argument 1)) ymm1) (:temporary (:sc double-avx2-reg :from (:argument 3)) ymm2) (:temporary (:sc double-avx2-reg :from (:argument 3)) ymm3) (:results (ymm4 :scs (double-avx2-reg))) (:result-types simd-pack-256-double) (:generator 30 (move t2 t2-ptr) (move ia ia-ptr) (move ib ib-ptr) (inst xor p p) (inst vxorpd ymm4 ymm4 ymm4) LOOP (inst vmovupd ymm0 (make-ea-for-float-ref Atd ia 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm1 (make-ea-for-float-ref Atd ia 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm2 (make-ea-for-float-ref Bp ib 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm3 (make-ea-for-float-ref Bp ib 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm4 ymm0 ymm2) (inst vfmadd231pd ymm4 ymm1 ymm3) (inst add p 8) (inst add ia 8) (inst add ib 8) (inst cmp p t2) (inst jmp :b LOOP) DONE)) (in-package :cl3a.mmmult8_vop) (defun dgebp-reg-ker (t2 Atd ia Bp ib) (dgebp-reg-ker t2 Atd ia Bp ib))
2,337
Common Lisp
.lisp
65
30.861538
70
0.640742
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
29897e9493dfd5ce7cfff02e53b66b961157104574c33d70e454ad8935605e33
20,942
[ -1 ]
20,943
mmmult_Goto2.lisp
i-kiwamu_cl3a/src/mmmult_Goto2.lisp
(in-package :cl-user) (defpackage cl3a.mmmult_Goto2 (:use :cl :alexandria :cl3a.utilities :cl3a.mmmult_Goto2_vop) (:export :dm*m)) (in-package :cl3a.mmmult_Goto2) (declaim (ftype (function (fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) fixnum (simple-array double-float (* *)))) dgebp-reg)) (defun dgebp-reg (mr t1 t2 t3 Atd Bp jr Caux) "register-scale program of GEBP: Caux += Atd * Bp[ib]" ;; Args ;; mr: block size of row of A & C ;; t1: length of row of A = length of row of C ;; t2: length of column of A = length of row of B ;; t3: length of column of B = length of column of C ;; Atd: left input matrix A-tilde ;; Bp: right input matrix B-packed ;; jr: target calculation of column at B & C ;; Caux: output sub-matrix (do ((ir 0 (+ ir mr))) ((>= ir t1)) (dotimes (i mr) (let ((rmc (array-row-major-index Caux (+ ir i) 0))) (declare (type fixnum rmc)) (dotimes (j t3) (let ((cij (row-major-aref Caux rmc)) (ia (array-row-major-index Atd (+ ir i) 0)) (ib (array-row-major-index Bp (+ jr j) 0))) (declare (type double-float cij) (type fixnum ia ib)) (incf (row-major-aref Caux rmc) (dgebp-reg-ker t2 Atd ia Bp ib cij)) (incf rmc))))))) (declaim (ftype (function (fixnum fixnum fixnum fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dgepp-blk1)) (defun dgepp-blk1 (p mc t2 nr mr m n A Bp C) "Blocked GEPP" ;; Args ;; p: index ;; mc: nrow of Atd ;; t2: kc ;; nr: ncol of submatrix of Btilde ;; mr: nrow of submatrix of Atilde ;; m: nrow of A & C ;; n: ncol of B & C ;; A: left input matrix ;; Bp: right input matrix of n*kc (transposed) ;; C: output matrix (dotimes-interval2 (ic 0 m) (t1 mc) (let ((Atd (make-array (list t1 t2) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) Atd)) (copy-matrix/double-float A ic t1 p t2 Atd) (dotimes-interval2 (jr 0 n) (t3 nr) (let ((Caux (make-array (list t1 t3) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) Caux)) (dgebp-reg mr t1 t2 t3 Atd Bp jr Caux) (dotimes (ii t1) (let ((rmc (array-row-major-index C (+ ic ii) jr)) (rmcaux (array-row-major-index Caux ii 0))) (declare (type fixnum rmc rmcaux)) (dotimes (jj t3) (incf (row-major-aref C rmc) (row-major-aref Caux rmcaux)) (incf rmc) (incf rmcaux))))))))) (declaim (ftype (function (fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dgemm1)) (defun dgemm1 (mc kc nr mr A B C) "GEMM_VAR1" (let* ((m (min (array-dimension A 0) (array-dimension C 0))) (k (min (array-dimension A 1) (array-dimension B 0))) (n (min (array-dimension B 1) (array-dimension C 1))) (Bp (make-array (list n (min kc k)) :element-type 'double-float))) (declare (type fixnum m k n) (type (simple-array double-float (* *)) Bp)) (dotimes-interval2 (p 0 k) (t2 kc) (copy-matrix-transpose/double-float B p t2 0 n Bp) (dgepp-blk1 p mc t2 nr mr m n A Bp C)))))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (A B C) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) A B C)) (dgemm1 128 1024 8 16 A B C))
4,342
Common Lisp
.lisp
102
31.509804
65
0.513469
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0ac0fbacac33cd71d97cb4143736bc821ec00d368c074ec8f10b18000a701476
20,943
[ -1 ]
20,944
norm.lisp
i-kiwamu_cl3a/src/norm.lisp
(in-package :cl-user) (defpackage cl3a.norm (:use :cl :cl3a.typedef :cl3a.dotprod) (:export :snorm :dnorm)) (in-package :cl3a.norm) (declaim (ftype (function ((simple-array single-float (*))) single-float) snorm)) (defun snorm (va) "Euclidean norm of vector" (declare (type (simple-array single-float (*)) va)) (let ((norm2 (sv*v va va))) (declare (type (single-float 0.0 *) norm2)) (sqrt norm2))) (declaim (ftype (function ((vec double-float)) double-float) dnorm)) (defun dnorm (va) "Euclidean norm of vector" (declare (type (vec double-float) va)) (let ((norm2 (dv*v va va))) (declare (type (double-float 0d0 *) norm2)) (sqrt norm2)))
758
Common Lisp
.lisp
23
26.73913
59
0.596443
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
4ecc221085886bf7636a456bbdbf7cd24e0fccd10e58a7a5e0635c6f7865037a
20,944
[ -1 ]
20,945
mmmult5.lisp
i-kiwamu_cl3a/src/mmmult5.lisp
(in-package :cl-user) (defpackage cl3a.mmmult5 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m)) (in-package :cl3a.mmmult5) (declaim (ftype (function (integer &key (:l1 boolean)) integer) tile-size)) (defun tile-size (n &key l1) "See Lam et al. 1991 The cache performance and optimizations of blocked algorithms" (declare (type integer n) (type boolean l1)) (let* ((n-half (ifloor n 2)) (cache-size (if l1 (ifloor +L1-size+ 8) (ifloor +L2-size+ 8)))) ;; 1 word = 4 byte (declare (type integer n-half cache-size)) (loop :while t :with max-width :of-type integer = (min n cache-size) :and addr :of-type integer = n-half :and di :of-type integer = 0 :and dj :of-type integer = 1 :and di0 :of-type integer = 1 :do (progn (incf addr cache-size) (setf di (ifloor addr n)) (setf dj (abs (- (mod addr n) n-half))) (setf di0 (min max-width dj))) (when (>= di di0) (return (min max-width di))) :do (setf max-width di0)))) (defmacro m*m-ker (val-type si ni sj nj sk nk nra nv ncb ma mb mc) "Multiply matrix and matrix (unrolling version)" ;; Args ;; val-type: element type of array (double-float or long-float) ;; si: block index for nr ;; ni: block size for nr ;; sj: block index for nc ;; nj: block size for nc ;; sk: block index for nv ;; nk: block size for nv ;; nra: number of row of ma ;; nv: number of cols of ma & number of rows of mb ;; ncb: number of cols of nc ;; ma: input matrix with nra*nv ;; mb: input matrix with nv*ncb ;; mc: output matrix with nra*ncb (with-gensyms (iend jend kend0 i j k mcij ima imb) `(let* ((,iend (min ,nra (the fixnum (+ ,si ,ni)))) (,jend (min ,ncb (the fixnum (+ ,sj ,nj)))) (,kend0 (min ,nv (the fixnum (min-factor (the fixnum (+ ,sk ,nk)) +unroll+))))) (declare (type fixnum ,iend ,jend ,kend0)) ; (format t "(iend jend kend0) = (~A ~A ~A)~%" ,iend ,jend ,kend0) (do ((,i ,si (1+ ,i))) ((>= ,i ,iend)) (do ((,j ,sj (1+ ,j))) ((>= ,j ,jend)) (let ((,mcij (aref ,mc ,i ,j)) (,ima (array-row-major-index ,ma ,i ,sk)) (,imb (array-row-major-index ,mb ,sk ,j))) (declare (type ,val-type ,mcij) (type fixnum ,ima ,imb)) (do ((,k ,sk (+ ,k +unroll+))) ((>= ,k ,kend0)) ,@(loop :repeat +unroll+ :with form = `((incf ,mcij (* (row-major-aref ,ma ,ima) (row-major-aref ,mb ,imb))) (incf ,ima) (incf ,imb) ; (format t "unroll (i j k) = (~A ~A ~A)~%" ,i ,j ,k)) ) :append form)) ;; if ncb0 < +unroll+ or (mod ncb0 +unroll+) > 0, do remain (do ((,k ,kend0 (1+ ,k))) ((>= ,k ,nv)) (incf ,mcij (* (row-major-aref ,ma ,ima) (row-major-aref ,mb ,imb))) (incf ,ima) (incf ,imb)) (setf (aref ,mc ,i ,j) ,mcij))))))) (defmacro m*m (val-type ma mb mc) (with-gensyms (calc copy nra nca nrb ncb nv nt m i j k mnra mncb ma-sub) `(flet ((,calc (si ni sj nj sk nk nra nv ncb ma mb mc) (declare (optimize (speed 3) (debug 0) (safety 0)) (type fixnum si ni sj nj sk nk nra nv ncb) (type (simple-array ,val-type (* *)) ma mb mc)) (m*m-ker ,val-type si ni sj nj sk nk nra nv ncb ma mb mc)) (,copy (ma si ni sj nj mb) (declare (optimize (speed 3) (debug 0) (safety 0)) (type (simple-array ,val-type (* *)) ma mb) (type fixnum si ni sj nj)) (copy-matrix ma si ni sj nj mb))) (declare (inline ,calc)) (let* ((,nra (array-dimension ,ma 0)) (,nca (array-dimension ,ma 1)) (,nrb (array-dimension ,mb 0)) (,ncb (array-dimension ,mb 1)) (,nv (cond ((/= ,nca ,nrb) (different-length-warn ,nca ,nrb) (min ,nca ,nrb)) (t ,nca))) (,nt (min ,nra ,ncb)) (,m (tile-size ,nt))) (declare (type fixnum ,nra ,nca ,nrb ,ncb ,nv ,nt ,m)) (dotimes-interval (,j ,m ,ncb) (dotimes-interval (,i ,m ,nra) (let* ((,mncb (min ,m ,ncb)) (,mnra (min ,m ,nra)) (,ma-sub (make-array (list ,mnra ,mncb) :element-type ',val-type))) (declare (type fixnum ,mncb ,mnra) (type (simple-array ,val-type (* *)) ,ma-sub)) (,copy ,ma ,i ,m ,j ,m ,ma-sub) (dotimes-interval (,k ,m ,nv) ; (format t "(si sj sk m) = (~A ~A ~A ~A)~%" ,i ,j ,k ,m) (,calc ,i ,m ,j ,m ,k ,m ,nra ,nv ,ncb ,ma-sub ,mb ,mc))))))))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (ma mb mc) "Multiply matrix and matrix of double-float" (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) ma mb mc)) (m*m double-float ma mb mc)) (declaim (ftype (function ((simple-array long-float (* *)) (simple-array long-float (* *)) (simple-array long-float (* *)))) lm*m)) (defun lm*m (ma mb mc) (declare (optimize (speed 3) (safety 0)) (type (simple-array long-float (* *)) ma mb mc)) (m*m long-float ma mb mc))
6,168
Common Lisp
.lisp
138
31.644928
85
0.460631
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c647a7b9a809b23fe450d6921b7a7cc2e86534c2ef0947e3a1c6613e9ea26439
20,945
[ -1 ]
20,946
mmmult10.lisp
i-kiwamu_cl3a/src/mmmult10.lisp
(in-package :cl-user) (defpackage cl3a.mmmult10 (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities_vop :cl3a.utilities :cl3a.mmmult10_vop) (:export :dm*m)) (in-package :cl3a.mmmult10) (eval-when (:compile-toplevel :load-toplevel :execute) (defconstant +mc+ (the fixnum 512)) (defconstant +pc+ (the fixnum 256)) ;; (defconstant +mc+ (the fixnum 16)) ;; (defconstant +pc+ (the fixnum 16)) (defconstant +mpc+ (the fixnum (* +mc+ +pc+))) (defconstant +mr+ (the fixnum 4)) (defconstant +nr+ (the fixnum 12)) (defconstant +mnr+ (the fixnum (* +mr+ +nr+))) (defconstant +pcnr+ (the fixnum (* +pc+ +nr+)))) (defparameter *Ampd* (make-array +mpc+ :element-type 'double-float)) (defparameter *Bpnd* (make-array +pcnr+ :element-type 'double-float)) (defparameter *Cmnd* (make-array +mnr+ :element-type 'double-float)) (defparameter *C1nd* (make-array +nr+ :element-type 'double-float)) (declaim (ftype (function ((simple-array double-float (* *)) int3 fixnum (simple-array double-float (*)) int3)) incf12-Caux)) (defun incf12-Caux (C pos i2 Caux sizes2) ;; Args ;; C: output matrix ;; pos: current position = (i1, k1, j1) ;; i2: index from 0 to mc (position of Caux[0,0] = position of C[i1+i2,j1]) ;; Caux: result vector ;; sizes2: original size of Caux (use i & j only) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) C) (type int3 pos sizes2) (type fixnum i2) (type (simple-array double-float (*)) Caux)) (dotimes (i3 (int3-i sizes2)) (declare (type fixnum i3)) (let ((x (the fixnum (* (the fixnum i3) (the fixnum (int3-j sizes2))))) (rmc (array-row-major-index C (the fixnum (+ (the fixnum (int3-i pos)) (the fixnum i2) (the fixnum i3))) (int3-j pos)))) (declare (type fixnum x rmc)) (incf12-Caux-ker (array-storage-vector C) rmc Caux x)))) ;; (print (format nil " POS = ~A, i2 = ~A, i3 = ~A~% C = ~A~% Caux = ~A" pos i2 i3 C Caux))))) (declaim (ftype (function ((simple-array double-float (* *)) int3 fixnum (simple-array double-float (*)) int3)) incf-Caux)) (defun incf-Caux (C pos i2 Caux sizes2) ;; Args ;; C: output matrix ;; pos: current position = (i1, k1, j1) ;; i2: index from 0 to mc (position of Caux[0,0] = position of C[i1+i2,j1]) ;; Caux: result vector ;; sizes2: original size of Caux (use i & j only) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) C) (type int3 pos sizes2) (type fixnum i2) (type (simple-array double-float (*)) Caux)) (dotimes (i3 (int3-i sizes2)) (declare (type fixnum i3)) (let ((x (the fixnum (* (the fixnum i3) (the fixnum (int3-j sizes2))))) (rmc (array-row-major-index C (the fixnum (+ (the fixnum (int3-i pos)) (the fixnum i2) (the fixnum i3))) (int3-j pos)))) (declare (type fixnum x rmc)) (dotimes (j3 (int3-j sizes2)) (declare (type fixnum j3)) ;; (print (format nil " POS = ~A, i2 = ~A, (i3,j3) = (~A, ~A)" pos i2 i3 j3)) (incf (row-major-aref C rmc) (aref Caux x)) (setf (aref Caux x) 0d0) (incf x) (incf rmc))))) (declaim (ftype (function (int3 (simple-array double-float (*)) (simple-array double-float (*)) (simple-array double-float (*)) fixnum)) dgebp-mr-nr)) (defun dgebp-mr-nr (sizes1 Ampd Bpnd Caux i2) ;; Args ;; sizes0: origianl sizes = (m, p, n)) ;; sizes1: sub sizes 1 = (+mc+ or m1r, +pc+ or p1r, n) ;; sizes2: sub sizes 2 = (+mr+, +pc+ or p1r, +nr+) ;; Ampd: contiguous vector (originally sub-matrix of A (size1) @ (i1, k1)) ;; Bpnd: contiguous vector (originally sub-matrix of B (size2) @ (k1, j1)) ;; Caux: contiguous vector (originally sub-matrix of C (size2) @ (i1+i2, j1)) ;; pos: current position of Ampd, Bpnd, Caux in each original matrices = (i1, k1, j1) ;; i2: index from 0 to mc ;; Positions ;; i: A[i1+i2,:] = Ampd[i2,:], C[i1+i2,:] = Caux[0,:] ;; k: A[:,k1] = Ampd[:,0] ;; j: C[:,j1] = Caux[:,0] (declare (optimize (speed 3) (safety 0)) (type int3 sizes1) (type (simple-array double-float (*)) Ampd Bpnd Caux) (type fixnum i2)) (let* ((pc (int3-k sizes1)) (rma (* i2 pc)) (rmb 0) (rmc 0)) (declare (type fixnum pc rma rmb rmc)) (dgebp-mr-nr-ker pc Ampd Bpnd Caux rma rmb rmc))) (declaim (ftype (function (int3 (simple-array double-float (*)) (simple-array double-float (*)) (simple-array double-float (*)) fixnum)) dgebp-1-nr)) (defun dgebp-1-nr (sizes1 Ampd Bpnd Caux i2) ;; Args ;; sizes0: origianl sizes = (m, p, n)) ;; sizes1: sub sizes 1 = (+mc+ or m1r, +pc+ or p1r, n) ;; sizes2: sub sizes 2 = (1, +pc+ or p1r, +nr+) ;; Ampd: contiguous vector (originally sub-matrix of A (size1) @ (i1, k1)) ;; Bpnd: contiguous vector (originally sub-matrix of B (size2) @ (k1, j1)) ;; Caux: contiguous vector (originally sub-matrix of C (size2) @ (i1+i2, j1)) ;; pos: current position of Ampd, Bpnd, Caux in each original matrices = (i1, k1, j1) ;; i2: index from 0 to mc ;; Positions ;; i: A[i1+i2,:] = Ampd[i2,:], C[i1+i2,:] = Caux[0,:] ;; k: A[:,k1] = Ampd[:,0] ;; j: C[:,j1] = Caux[:,0] (declare (optimize (speed 3) (safety 0)) (type int3 sizes1) (type (simple-array double-float (*)) Ampd Bpnd Caux) (type fixnum i2)) (let* ((pc (int3-k sizes1)) (rma (* i2 pc)) (rmb 0) (rmc 0)) (declare (type fixnum pc rma rmb rmc)) (dgebp-1-nr-ker pc Ampd Bpnd Caux rma rmb rmc))) (declaim (ftype (function (int3 int3 (simple-array double-float (*)) (simple-array double-float (*)) (simple-array double-float (*)) fixnum)) dgebp-1-1)) (defun dgebp-1-1 (sizes1 sizes2 Ampd Bpnd Caux i2) ;; Args ;; sizes0: origianl sizes = (m, p, n)) ;; sizes1: sub sizes 1 = (+mc+ or m1r, +pc+ or p1r, n) ;; sizes2: sub sizes 2 = (1, +pc+ or p1r, n1r) ;; Ampd: contiguous vector (originally sub-matrix of A (size1) @ (i1, k1)) ;; Bpnd: contiguous vector (originally sub-matrix of B (pc * n1r) @ (k1, j1)) ;; Caux: contiguous vector (originally sub-matrix of C (size2) @ (i1+i2, j1)) ;; pos: current position of Ampd, Bpnd, Caux in each original matrices = (i1, k1, j1) ;; i2: index from 0 to mc ;; Positions ;; i: A[i1+i2,:] = Ampd[i2,:], C[i1+i2,:] = Caux[0,:] ;; k: A[:,k1] = Ampd[:,0] ;; j: C[:,j1] = Caux[:,0] (declare (optimize (speed 3) (safety 0)) (type int3 sizes1 sizes2) (type (simple-array double-float (*)) Ampd Bpnd Caux) (type fixnum i2)) (let* ((rma (* i2 (int3-k sizes1))) (nr (int3-j sizes2)) (nr0 (min-factor nr 4))) (declare (type fixnum rma nr nr0)) (dotimes (k2 (int3-k sizes2)) (declare (type fixnum k2)) (let ((aik (aref Ampd rma)) (rmb (* k2 nr)) (rmc 0)) (declare (type double-float aik) (type fixnum rmb rmc)) (do ((j2 0 (+ j2 4))) ((>= j2 nr0)) (declare (type fixnum j2)) (incf (aref Caux rmc) (* aik (aref Bpnd rmb))) (incf rmb) (incf rmc) (incf (aref Caux rmc) (* aik (aref Bpnd rmb))) (incf rmb) (incf rmc) (incf (aref Caux rmc) (* aik (aref Bpnd rmb))) (incf rmb) (incf rmc) (incf (aref Caux rmc) (* aik (aref Bpnd rmb))) (incf rmb) (incf rmc)) (do ((j2 nr0 (1+ j2))) ((>= j2 nr)) (incf (aref Caux rmc) (* aik (aref Bpnd rmb))) (incf rmb) (incf rmc))) (incf rma))) nil) (declaim (ftype (function (int3 (simple-array double-float (*)) (simple-array double-float (* *)) (simple-array double-float (* *)) int3)) dgebp)) (defun dgebp (sizes1 Ampd B C pos) ;; Args ;; sizes0: origianl sizes = (m, p, n)) ;; sizes1: sub sizes 1 = (+mc+ or m1r, +pc+ or p1r, n) ;; Ampd: contiguous vector (originally sub-matrix of A (size1) @ (i1, k1)) ;; pos: current position of Ampd, B, C = (i1, k1, 0) ;; Positions ;; i: A[i1+i2,:] = Ampd[i2,:] ;; k: A[:,k1] = Ampd[:,0] (declare (optimize (speed 3) (safety 0)) (type int3 sizes1 pos) (type (simple-array double-float (*)) Ampd) (type (simple-array double-float (* *)) B C)) (let* ((mc (int3-i sizes1)) (pc (int3-k sizes1)) (n (int3-j sizes1)) (mc1 (min-factor mc +mr+)) (n1 (min-factor n +nr+)) (n1r (- n n1)) (sizes2-00 (make-int3 :i +mr+ :k (int3-k sizes1) :j +nr+)) (sizes2-10 (make-int3 :i 1 :k (int3-k sizes1) :j +nr+)) (sizes2-11 (make-int3 :i 1 :k (int3-k sizes1) :j n1r)) (C11d (make-array n1r :element-type 'double-float))) (declare (type fixnum mc pc n mc1 n1 n1r) (type int3 sizes2-00 sizes2-10 sizes2-11) (type (simple-array double-float (*)) C11d)) (do ((j1 (int3-j pos) (+ j1 +nr+))) ((>= j1 n1)) (declare (type fixnum j1)) (copy-matrix-to-vector-pd B (int3-k pos) pc j1 +nr+ *Bpnd*) (setf (int3-j pos) j1) (do ((i2 0 (+ i2 +mr+))) ((>= i2 mc1)) (declare (type fixnum i2)) ;; (print (format nil "mr-nr: (~A, ~A, ~A)" (+ (int3-i pos) i2) (int3-k pos) (int3-j pos))) (dgebp-mr-nr sizes1 Ampd *Bpnd* *Cmnd* i2) (incf12-Caux C pos i2 *Cmnd* sizes2-00)) (do ((i2 mc1 (1+ i2))) ((>= i2 mc)) (declare (type fixnum i2)) ;; (print (format nil "1-nr: (~A, ~A, ~A)" (+ (int3-i pos) i2) (int3-k pos) (int3-j pos))) (dgebp-1-nr sizes1 Ampd *Bpnd* *C1nd* i2) (incf12-Caux C pos i2 *C1nd* sizes2-10))) (when (> n1r 0) (setf (int3-j pos) n1) (copy-matrix-to-vector-pd B (int3-k pos) pc n1 n1r *Bpnd*) (do ((i2 0 (1+ i2))) ((>= i2 mc)) (declare (type fixnum i2)) (dgebp-1-1 sizes1 sizes2-11 Ampd *Bpnd* C11d i2) ;; (print (format nil "1-1: (~A, ~A, ~A)" (+ (int3-i pos) i2) (int3-k pos) (int3-j pos))) (incf-Caux C pos i2 C11d sizes2-11))) (setf (int3-j pos) 0))) (declaim (ftype (function (int3 int3 (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)) int3)) dgepp)) (defun dgepp (sizes0 sizes1 A B C pos) ;; Args ;; sizes0: original sizes = (m, p, n) ;; sizes1: sub sizes 1 = (m, +pc+ or p1r, n) ;; pos: current position of A, B, C = (0, k1, 0) (declare (optimize (speed 3) (safety 0)) (type int3 sizes0 sizes1 pos) (type (simple-array double-float (* *)) A B C)) (let* ((m (int3-i sizes0)) (k1 (int3-k pos)) (m1 (min-factor m +mc+)) (m1r (- m m1)) (pc (int3-k sizes1))) (declare (type fixnum m m1 m1r pc)) (do ((i1 0 (+ i1 +mc+))) ((>= i1 m1)) (declare (type fixnum i1)) (setf (int3-i pos) i1) (copy-matrix-to-vector-pd A i1 +mc+ k1 pc *Ampd*) (dgebp sizes1 *Ampd* B C pos)) (when (> m1r 0) (setf (int3-i pos) m1 (int3-i sizes1) m1r) (copy-matrix-to-vector-pd A m1 m1r k1 pc *Ampd*) (dgebp sizes1 *Ampd* B C pos)) (setf (int3-i pos) 0 (int3-i sizes1) +mc+))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (A B C) ;; C += A*B ;; Args ;; A: left input matrix (m * p) ;; B: right input matrix (p * n) ;; C: output matrix (m * n) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) A B C)) (let* ((m (min (array-dimension A 0) (array-dimension C 0))) (p (min (array-dimension A 1) (array-dimension B 0))) (n (min (array-dimension B 1) (array-dimension C 1))) (p1 (min-factor p +pc+)) (p1r (- p p1)) (sizes0 (make-int3 :i m :k p :j n)) (sizes1 (make-int3 :i +mc+ :k +pc+ :j n)) (pos (make-int3 :i 0 :k 0 :j 0))) (declare (type fixnum m p n p1 p1r) (type int3 sizes0 sizes1 pos)) (do ((k1 0 (+ k1 +pc+))) ((>= k1 p1)) (declare (type fixnum k1)) (setf (int3-k pos) k1) (dgepp sizes0 sizes1 A B C pos)) (when (> p1r 0) (setf (int3-k pos) p1 (int3-k sizes1) p1r) (dgepp sizes0 sizes1 A B C pos))) nil)
13,896
Common Lisp
.lisp
331
32.081571
103
0.501846
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
4c60220bbcb6d26f75ecdf549f153471b61904c6437442a95e608901c80a852a
20,946
[ -1 ]
20,947
utilities.lisp
i-kiwamu_cl3a/src/utilities.lisp
(in-package :cl-user) (defpackage cl3a.utilities (:use :cl :alexandria :cl3a.utilities_vop) (:export :int3 :make-int3 :int3-i :int3-k :int3-j :int3-p :setf-int3-i :setf-int3-k :setf-int3-j :+cache-line+ :+L1-size+ :+L2-size+ :+L3-size+ :+associativity+ :+unroll+ :different-length-warn :ifloor :min-factor :type-byte-length :copy-matrix-to-vector-pd :copy-matrix-to-vector-transposed-pd)) (in-package :cl3a.utilities) (eval-when (:compile-toplevel :load-toplevel :execute) (defconstant +cache-line+ (the fixnum 64)) (defconstant +L1-size+ (the fixnum 32768)) (defconstant +L2-size+ (the fixnum 262144)) (defconstant +L3-size+ (the fixnum 4194304)) (defconstant +associativity+ (the fixnum 8)) (defconstant +unroll+ (the fixnum 8))) (defstruct (int3) (i 0 :type (unsigned-byte 32)) (k 0 :type (unsigned-byte 32)) (j 0 :type (unsigned-byte 32))) (declaim (inline different-length-warn)) (defun different-length-warn (na nb) "Warn different lengths" (warn (format nil "Length of two vectors were different (~D and ~D). Shorter one is used." na nb))) (declaim (ftype (function ((unsigned-byte 64) (unsigned-byte 64) &rest (unsigned-byte 64)) (unsigned-byte 64)) ifloor) (inline ifloor)) (defun ifloor (x y0 &rest ys) "Take integer part of floor function" (declare (type (unsigned-byte 64) x y0) (type list ys) (dynamic-extent ys)) (let* ((y (reduce #'* ys :initial-value y0)) (m (mod x y)) (x0 (- x m))) (declare (type (unsigned-byte 64) y m x0)) (/ x0 y))) (declaim (ftype (function ((unsigned-byte 64) (unsigned-byte 64) &rest (unsigned-byte 64)) (unsigned-byte 64)) min-factor) (inline min-factor)) (defun min-factor (x y0 &rest ys) "calculate x0*y with the minimum m where x = x0*y + m, y = y0*y1*y2*..., and ys = (y1, y2, ...)" (declare (type (unsigned-byte 64) x y0) (type list ys) (dynamic-extent ys)) (let* ((y (reduce #'* ys :initial-value y0)) (m (mod x y))) (declare (type (unsigned-byte 64) y m)) (- x m))) (declaim (ftype (function (symbol) (unsigned-byte 64)) type-byte-length) (inline type-byte-length)) (defun type-byte-length (val-type) "return the size of type" (ecase val-type (short-float 2) (single-float 4) (double-float 8) (long-float 16))) (declaim (ftype (function ((simple-array double-float (* *)) fixnum fixnum fixnum fixnum (simple-array double-float (*)))) copy-matrix-to-vector-pd)) (defun copy-matrix-to-vector-pd (ma si ni sj nj vb) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) ma) (type (simple-array double-float (*)) vb) (type fixnum si ni sj nj)) (let* ((nr (min ni (array-dimension ma 0))) (nc (min nj (array-dimension ma 1))) (nc0 (min-factor nc 8))) (declare (type fixnum nr nc nc0)) (dotimes (i nr) (declare (type fixnum i)) (let ((rma-init (array-row-major-index ma (+ i si) sj)) (rmb-init (* i nc))) (declare (type fixnum rma-init rmb-init)) (copy-vector8-pd nc0 (sb-ext:array-storage-vector ma) rma-init vb rmb-init) (do ((j nc0 (1+ j)) (rma (+ rma-init nc0) (1+ rma)) (rmb (+ rmb-init nc0) (1+ rmb))) ((>= j nc)) (declare (type fixnum j rma rmb)) (setf (aref vb rmb) (row-major-aref ma rma))))))) (declaim (ftype (function ((simple-array double-float (* *)) fixnum fixnum fixnum fixnum (simple-array double-float (*)))) copy-matrix-to-vector-transposed-pd)) (defun copy-matrix-to-vector-transposed-pd (ma si ni sj nj vb) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) ma) (type (simple-array double-float (*)) vb) (type fixnum si ni sj nj)) (let ((nr (min ni (array-dimension ma 0))) (nc (min nj (array-dimension ma 1)))) (declare (type fixnum nr nc)) (dotimes (j nc) (declare (type fixnum j)) (let ((rma-init (array-row-major-index ma si (+ sj j))) (rmb-init (* j nr))) (declare (type fixnum rma-init rmb-init)) (do ((i 0 (1+ i)) (rma rma-init (+ rma (array-dimension ma 1))) (rmb rmb-init (1+ rmb))) ((>= i nr)) (declare (type fixnum i rma rmb)) (setf (aref vb rmb) (row-major-aref ma rma)))))))
4,986
Common Lisp
.lisp
128
29.539063
101
0.545023
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
78a033de871e80da80ad5b4995570d19758dc085a2eff54198320001c8e7cbfc
20,947
[ -1 ]
20,948
mmmult1.lisp
i-kiwamu_cl3a/src/mmmult1.lisp
(in-package :cl-user) (defpackage cl3a.mmmult (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m)) (in-package :cl3a.mmmult) (declaim (ftype (function (integer &key (:l1 boolean)) integer) tile-size)) (defun tile-size (n &key l1) "See Lam et al. 1991 The cache performance and optimizations of blocked algorithms" (declare (type integer n) (type boolean l1)) (let* ((n-half (ifloor n 2)) (cache-size (if l1 (ifloor (* +L1-size+ +associativity+) 8) (ifloor (* +L2-size+ +associativity+) 8)))) ;; 1 word = 4 byte (declare (type integer n-half cache-size)) (loop :while t :with max-width :of-type integer = (min n cache-size) :and addr :of-type integer = n-half :and di :of-type integer = 0 :and dj :of-type integer = 1 :and di0 :of-type integer = 1 :do (progn (incf addr cache-size) (setf di (ifloor addr n)) (setf dj (abs (- (mod addr n) n-half))) (setf di0 (min max-width dj))) (when (>= di di0) (return (min max-width di))) :do (setf max-width di0)))) (defmacro m*m-ker (val-type si ni sk nk nra nv ncb ma mb mc) "Multiply matrix and matrix (unrolling version)" (with-gensyms (iend jend0 kend i j k maik imb imc maxj) `(let* ((,iend (min ,nra (the fixnum (+ ,si ,ni)))) (,jend0 (min-factor ,ncb +unroll+)) (,kend (min ,nv (the fixnum (+ ,sk ,nk)))) (,maxj 0)) (declare (type fixnum ,iend ,jend0 ,kend ,maxj)) (do ((,i ,si (1+ ,i))) ((>= ,i ,iend)) (do ((,k ,sk (1+ ,k))) ((>= ,k ,kend)) (let ((,maik (aref ,ma ,i ,k)) (,imb (array-row-major-index ,mb ,k 0)) (,imc (array-row-major-index ,mc ,i 0))) (declare (type ,val-type ,maik) (type fixnum ,imb ,imc)) (setf ,maxj (do ((,j 0 (+ ,j +unroll+))) ((>= ,j ,jend0) ,j) ,@(loop :repeat +unroll+ :with form = `((incf (row-major-aref ,mc ,imc) (* ,maik (row-major-aref ,mb ,imb))) (incf ,imb) (incf ,imc)) :append form))) ;; if jend < +unroll+ or (mod jend +unroll+) > 0 (do ((,j ,maxj (1+ ,j))) ((>= ,j ,ncb)) (incf (row-major-aref ,mc ,imc) (* ,maik (row-major-aref ,mb ,imb))) (incf ,imb) (incf ,imc)))))))) (defmacro m*m (val-type ma mb mc) (with-gensyms (calc nra nca nrb ncb nv nt m i k) `(flet ((,calc (si ni sk nk nra nv ncb ma mb mc) (declare (optimize (speed 3) (debug 0) (safety 0)) (type fixnum si ni sk nk nra nv ncb) (type (simple-array ,val-type (* *)) ma mb mc)) (m*m-ker ,val-type si ni sk nk nra nv ncb ma mb mc))) (declare (inline ,calc)) (let* ((,nra (array-dimension ,ma 0)) (,nca (array-dimension ,ma 1)) (,nrb (array-dimension ,mb 0)) (,ncb (array-dimension ,mb 1)) (,nv (cond ((/= ,nca ,nrb) (different-length-warn ,nca ,nrb) (min ,nca ,nrb)) (t ,nca))) (,nt (min ,nra ,ncb)) (,m (tile-size ,nt))) (declare (type fixnum ,nra ,nca ,nrb ,ncb ,nv ,nt ,m)) (dotimes-interval (,i ,m ,nra) (dotimes-interval (,k ,m ,nv) (,calc ,i ,m ,k ,m ,nra ,nv ,ncb ,ma ,mb ,mc))))))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (ma mb mc) "Multiply matrix and matrix of double-float" (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) ma mb mc)) (m*m double-float ma mb mc)) (declaim (ftype (function ((simple-array long-float (* *)) (simple-array long-float (* *)) (simple-array long-float (* *)))) lm*m)) (defun lm*m (ma mb mc) (declare (optimize (speed 3) (safety 0)) (type (simple-array long-float (* *)) ma mb mc)) (m*m long-float ma mb mc))
4,583
Common Lisp
.lisp
102
31.794118
88
0.46689
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
bfebec4b178bf2ae412729009fea4b0137bed63ce6fdef649d139468e5e58bf6
20,948
[ -1 ]
20,949
add_vector.lisp
i-kiwamu_cl3a/src/add_vector.lisp
(in-package :cl-user) (defpackage cl3a.add-vector (:use :cl :alexandria :cl3a.utilities :cl3a.utilities_vop) (:export :dv+v)) (in-package :cl3a.add-vector) (declaim (ftype (function (double-float (simple-array double-float (*)) double-float (simple-array double-float (*)) (simple-array double-float (*)))) dv+v)) (defun dv+v (a va b vb vc) "Add two double-float vectors va and vb" (declare (optimize (speed 3) (safety 0)) (type double-float a b) (type (simple-array double-float (*)) va vb vc)) (let* ((na (length va)) (nb (length vb)) (nv (cond ((/= na nb) (different-length-warn na nb) (min na nb)) (t na))) (nv0 (min-factor nv 4))) (declare (type fixnum na nb nv nv0)) (do ((i 0 (+ i 4))) ((>= i nv0)) (sb-sys:%primitive aset4-pd vc i (f4+-pd (f4*-sd a (aref4-pd va i)) (f4*-sd b (aref4-pd vb i))))) (do ((i nv0 (1+ i))) ((>= i nv)) (setf (aref vc i) (+ (* a (aref va i)) (* b (aref vb i))))))) (declaim (ftype (function (single-float (simple-array single-float (*)) single-float (simple-array single-float (*)) (simple-array single-float (*)))) sv+v)) (defun sv+v (a va b vb vc) "Add two single-float vectors va and vb" (declare (optimize (speed 3) (safety 0)) (type single-float a b) (type (simple-array single-float (*)) va vb vc)) (let* ((na (length va)) (nb (length vb)) (nv (cond ((/= na nb) (different-length-warn na nb) (min na nb)) (t na))) (nv0 (min-factor nv 8))) (declare (type fixnum na nb nv nv0)) (do ((i 0 (+ i 4))) ((>= i nv0)) (sb-sys:%primitive aset8-ps vc i (f8+-ps (f8*-ss a (aref8-ps va i)) (f8*-ss b (aref8-ps vb i))))) (do ((i nv0 (1+ i))) ((>= i nv)) (setf (aref vc i) (+ (* a (aref va i)) (* b (aref vb i)))))))
2,228
Common Lisp
.lisp
59
26.830508
71
0.466051
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
27c9df6d1384683e4db67d6a6e8b4675344fafbd1c45282088e51e27b424b52f
20,949
[ -1 ]
20,950
cl3a.lisp
i-kiwamu_cl3a/src/cl3a.lisp
(in-package :cl-user) (defpackage :cl3a (:use :cl :cl3a.typedef :cl3a.dotprod :cl3a.norm :cl3a.add-vector :cl3a.rotate :cl3a.mvmult :cl3a.mmmult10) (:export :vec :make-vec-init :convert-simple-array-to-vec :eltype-of :vec-length :vecref :mat :make-mat-init :convert-simple-array-to-mat :nrow :ncol :row-major-matref :matref :sv*v :dv*v :snorm :dnorm :dv+v :srotate :drotate :sm*v :dm*v :dm*m ; :gemm1 :gemm3 :dtpose)) (in-package :cl3a)
603
Common Lisp
.lisp
20
20.85
67
0.533448
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f678fbaabb70000d1da3f4b702247cc2597676201ed7922de12b40f35edafe4e
20,950
[ -1 ]
20,951
mmmult9_vop.lisp
i-kiwamu_cl3a/src/mmmult9_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult9_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :dgebp-reg-ker :dgebp-reg-ker4)) (in-package :cl3a.mmmult9_vop) (defknown dgebp-reg-ker (fixnum (simple-array double-float (*)) fixnum (simple-array double-float (*)) fixnum) (simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown dgebp-reg-ker4 (fixnum fixnum (simple-array double-float (*)) fixnum (simple-array double-float (*)) fixnum) (simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (in-package :sb-vm) (define-vop (cl3a.mmmult9_vop::dgebp-reg-ker) (:translate cl3a.mmmult9_vop::dgebp-reg-ker) (:policy :fast-safe) (:args (k0-ptr :scs (signed-reg) :target p) (A :scs (descriptor-reg) :target ymm0) (rma-ptr :scs (signed-reg)) (Bt :scs (descriptor-reg) :target ymm2) (rmb-ptr :scs (signed-reg))) (:arg-types tagged-num simple-array-double-float tagged-num simple-array-double-float tagged-num) (:temporary (:sc signed-reg :from (:argument 0)) k0) (:temporary (:sc signed-reg :from (:argument 2)) rma) (:temporary (:sc signed-reg :from (:argument 4)) rmb) (:temporary (:sc signed-reg :offset rcx-offset) p) (:temporary (:sc double-avx2-reg :from (:argument 1)) ymm0) (:temporary (:sc double-avx2-reg :from (:argument 1)) ymm1) (:temporary (:sc double-avx2-reg :from (:argument 3)) ymm2) (:temporary (:sc double-avx2-reg :from (:argument 3)) ymm3) (:results (ymm4 :scs (double-avx2-reg))) (:result-types simd-pack-256-double) (:generator 30 (move k0 k0-ptr) (move rma rma-ptr) (move rmb rmb-ptr) (inst xor p p) (inst vxorpd ymm4 ymm4 ymm4) LOOP (inst vmovupd ymm0 (make-ea-for-float-ref A rma 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm1 (make-ea-for-float-ref A rma 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm2 (make-ea-for-float-ref Bt rmb 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm4 ymm0 ymm2) (inst vmovupd ymm3 (make-ea-for-float-ref Bt rmb 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm4 ymm1 ymm3) (inst add p 8) (inst add rma 8) (inst add rmb 8) (inst cmp p k0) (inst jmp :b LOOP) DONE)) (define-vop (cl3a.mmmult9_vop::dgebp-reg-ker4) (:translate cl3a.mmmult9_vop::dgebp-reg-ker4) (:policy :fast-safe) (:args (k-ptr :scs (signed-reg)) (k0-ptr :scs (signed-reg) :target p) (A :scs (descriptor-reg) :target ymm0) (rma-ptr :scs (signed-reg)) (Bt :scs (descriptor-reg) :target ymm2) (rmb-ptr :scs (signed-reg))) (:arg-types tagged-num tagged-num simple-array-double-float tagged-num simple-array-double-float tagged-num) (:temporary (:sc signed-reg :from (:argument 0)) k) (:temporary (:sc signed-reg :from (:argument 1)) k0) (:temporary (:sc signed-reg :from (:argument 3)) rma) (:temporary (:sc signed-reg :from (:argument 5)) rmb0) (:temporary (:sc signed-reg :from (:argument 5)) rmb1) (:temporary (:sc signed-reg :from (:argument 5)) rmb2) (:temporary (:sc signed-reg :from (:argument 5)) rmb3) (:temporary (:sc signed-reg :offset rcx-offset) p) (:temporary (:sc double-avx2-reg :from (:argument 2)) ymm4) (:temporary (:sc double-avx2-reg :from (:argument 2)) ymm5) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm6) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm7) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm8) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm9) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm10) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm11) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm12) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm13) (:temporary (:sc double-avx2-reg) ymm1) (:temporary (:sc double-avx2-reg) ymm2) (:temporary (:sc double-avx2-reg) ymm3) (:results (ymm0 :scs (double-avx2-reg))) (:result-types simd-pack-256-double) (:generator 30 (move k k-ptr) (move k0 k0-ptr) (move rma rma-ptr) (move rmb0 rmb-ptr) (move rmb1 rmb0) (inst add rmb1 k) (move rmb2 rmb1) (inst add rmb2 k) (move rmb3 rmb2) (inst add rmb3 k) (inst xor p p) (inst vxorpd ymm0 ymm0 ymm0) (inst vxorpd ymm1 ymm1 ymm1) (inst vxorpd ymm2 ymm2 ymm2) (inst vxorpd ymm3 ymm3 ymm3) LOOP (inst vmovupd ymm4 (make-ea-for-float-ref A rma 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm5 (make-ea-for-float-ref A rma 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm6 (make-ea-for-float-ref Bt rmb0 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm7 (make-ea-for-float-ref Bt rmb0 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm0 ymm4 ymm6) (inst vfmadd231pd ymm0 ymm5 ymm7) (inst vmovupd ymm8 (make-ea-for-float-ref Bt rmb1 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm9 (make-ea-for-float-ref Bt rmb1 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm1 ymm4 ymm8) (inst vfmadd231pd ymm1 ymm5 ymm9) (inst vmovupd ymm10 (make-ea-for-float-ref Bt rmb2 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm11 (make-ea-for-float-ref Bt rmb2 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm2 ymm4 ymm10) (inst vfmadd231pd ymm2 ymm5 ymm11) (inst vmovupd ymm12 (make-ea-for-float-ref Bt rmb3 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm13 (make-ea-for-float-ref Bt rmb3 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm3 ymm4 ymm12) (inst vfmadd231pd ymm3 ymm5 ymm13) (inst add p 8) (inst add rma 8) (inst add rmb0 8) (inst add rmb1 8) (inst add rmb2 8) (inst add rmb3 8) (inst cmp p k0) (inst jmp :b LOOP) DONE (inst vhaddpd ymm0 ymm0 ymm1) (inst vhaddpd ymm2 ymm2 ymm3) (inst vpermpd ymm0 ymm0 216) (inst vpermpd ymm2 ymm2 216) (inst vhaddpd ymm0 ymm0 ymm2))) (in-package :cl3a.mmmult9_vop) (defun dgebp-reg-ker (k0 A rma Bt rmb) (dgebp-reg-ker k0 A rma Bt rmb)) (defun dgebp-reg-ker4 (k k0 A rma Bt rmb) (dgebp-reg-ker4 k k0 A rma Bt rmb))
6,749
Common Lisp
.lisp
179
32.446927
71
0.642977
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
03190bbe34b4601b071c5ce995ab86cdd681c672897b779faccd2fa835249542
20,951
[ -1 ]
20,952
mmmult2.lisp
i-kiwamu_cl3a/src/mmmult2.lisp
(in-package :cl-user) (defpackage cl3a.mmmult2 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m)) (in-package :cl3a.mmmult2) (eval-when (:compile-toplevel :load-toplevel :execute) (defparameter +mc+ (the fixnum 1024)) (defparameter +kc+ (the fixnum 32)) (defparameter +mr+ (the fixnum 4)) (defparameter +nr+ (the fixnum 512))) (defmacro m*m-ker (val-type si sj mmi mmj mi mj mk ma-sub mb-sub mc) "kernel program of m*m" ;; Args ;; val-type: element type of array (double-float or long-float) ;; si: (with-gensyms (ssi ssj mmj0 ii jj kk rmb rmc maik) `(let ((,ssi (rem ,si ,mi)) (,ssj (rem ,sj ,mj)) (,mmj0 (min-factor ,mmj +unroll+))) (declare (type fixnum ,ssi ,ssj ,mmj0)) (dotimes (,ii ,mmi) (dotimes (,kk ,mk) (let ((,maik (aref ,ma-sub (+ ,ii ,ssi) ,kk)) (,rmb (array-row-major-index ,mb-sub ,kk ,ssj)) (,rmc (array-row-major-index ,mc (+ ,ii ,si) ,sj))) (declare (type ,val-type ,maik) (type fixnum ,rmb ,rmc)) (do ((,jj 0 (+ ,jj +unroll+))) ((>= ,jj ,mmj0) ,jj) ,@(loop :repeat +unroll+ :with form = `((incf (row-major-aref ,mc ,rmc) (* ,maik (row-major-aref ,mb-sub ,rmb))) (incf ,rmb) (incf ,rmc)) :append form)) ;; if mmj < +unroll+ or (mod mmj +unroll+) > 0 (do ((,jj ,mmj0 (1+ ,jj))) ((>= ,jj ,mmj)) (incf (row-major-aref ,mc ,rmc) (* ,maik (row-major-aref ,mb-sub ,rmb))) (incf ,rmb) (incf ,rmc)))))))) (defmacro m*m-panel (calc si sj mi mj mk ma-sub mb-sub mc) (with-gensyms (i j mmi mmj) `(dotimes-interval2 (,i ,si ,mi) (,mmi +mr+) (dotimes-interval2 (,j ,sj ,mj) (,mmj +nr+) (funcall #',calc ,i ,j ,mmi ,mmj ,mi ,mj ,mk ,ma-sub ,mb-sub ,mc))))) (defmacro m*m-block (val-type nr nv nc ma mb mc) "block-calculation for m*m" ;; Args ;; val-type: element type of array (double-float or long-float) ;; nr: number of rows of ma & mc ;; nv: number of cols of ma & number of rows of mb ;; nc: number of cols of mb & mc ;; ma: input matrix with nr*nv ;; mb: input matrix with nv*nc ;; mc: output matrix with nr*nc (with-gensyms (calc copy nrc nvc ma-sub mb-sub mi mk i k) `(flet ((,calc (i j mmi mmj mi mj mk ma-sub mb-sub mc) (declare (optimize (speed 3) (debug 0) (safety 0)) (type fixnum i j mmi mmj mi mj mk) (type (simple-array ,val-type (* *)) ma-sub mb-sub mc)) (m*m-ker ,val-type i j mmi mmj mi mj mk ma-sub mb-sub mc)) (,copy (ma si ni sj nj mb) (declare (optimize (speed 3) (debug 0) (safety 0)) (type (simple-array ,val-type (* *)) ma mb)) (copy-matrix ma si ni sj nj mb))) (declare (inline ,calc ,copy)) (let* ((,nrc (min ,nr (the fixnum +mc+))) ; block size of row (,nvc (min ,nv (the fixnum +kc+))) ; block size of col (,ma-sub (make-array (list ,nrc ,nvc) :element-type ',val-type)) ; sub-matrix of ma with nrc*nvc (,mb-sub (make-array (list ,nvc ,nc) :element-type ',val-type))) ; sub-matrix of mb with nvc*nc ;; (,mb-sub (make-array (list ,nc ,nvc) ;; :element-type ',val-type))) (declare (type fixnum ,nrc ,nvc) (type (simple-array ,val-type (* *)) ,ma-sub ,mb-sub)) (dotimes-interval2 (,k 0 ,nv) (,mk ,nvc) ;; (copy-matrix-transpose ,mb ,k ,mk 0 ,nc ,mb-sub) (,copy ,mb ,k ,mk 0 ,nc ,mb-sub) (dotimes-interval2 (,i 0 ,nr) (,mi ,nrc) (,copy ,ma ,i ,mi ,k ,mk ,ma-sub) (m*m-panel #',calc ,i 0 ,mi ,nc ,mk ,ma-sub ,mb-sub ,mc))))))) (defmacro m*m (val-type ma mb mc) "main macro for m*m" ;; Args ;; val-type: element type of array (double-float or long-float) ;; ma: input matrix with nr*nv ;; mb: input matrix with nv*nc ;; mc: output matrix with nr*nc (with-gensyms (nr nv nc) `(let ((,nr (min (array-dimension ma 0) (array-dimension mc 0))) (,nv (min (array-dimension ma 1) (array-dimension mb 0))) (,nc (min (array-dimension mb 1) (array-dimension mc 1)))) (declare (type fixnum ,nr ,nv ,nc)) (m*m-block ,val-type ,nr ,nv ,nc ,ma ,mb ,mc)))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (ma mb mc) "Multiply matrix and matrix of double-float" (declare (optimize (speed 3)) (type (simple-array double-float (* *)) ma mb mc)) (m*m double-float ma mb mc)) (declaim (ftype (function ((simple-array long-float (* *)) (simple-array long-float (* *)) (simple-array long-float (* *)))) lm*m)) (defun lm*m (ma mb mc) "Multiply matrix and matrix of long-float" (declare (optimize (speed 3)) (type (simple-array long-float (* *)) ma mb mc)) (m*m long-float ma mb mc))
5,546
Common Lisp
.lisp
118
35.881356
94
0.504433
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
6e2360411fb648142f1315a993fc0b1e03a7e10a750a9c5212dd78da292e50e0
20,952
[ -1 ]
20,953
dotprod_vop.lisp
i-kiwamu_cl3a/src/dotprod_vop.lisp
(in-package :cl-user) (defpackage cl3a.dotprod_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :dpi8-ps :dpi8-avx2-ps :dpi8-pd :dpi8-avx2-pd :dp16-avx2-pd)) (in-package :cl3a.dotprod_vop) (defknown dpi8-ps ((simple-array single-float (*)) (simple-array single-float (*)) fixnum) (sb-kernel:simd-pack single-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown dpi8-avx2-ps ((simple-array single-float (*)) (simple-array single-float (*)) fixnum) (sb-ext:simd-pack-256 single-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown dpi8-pd ((simple-array double-float (*)) (simple-array double-float (*)) fixnum) (sb-kernel:simd-pack double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown dpi8-avx2-pd ((simple-array double-float (*)) (simple-array double-float (*)) fixnum) (sb-ext:simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown dp16-avx2-pd ((simple-array double-float (*)) (simple-array double-float (*)) fixnum) (sb-ext:simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (in-package :sb-vm) (define-vop (cl3a.dotprod_vop::dpi8-ps) (:translate cl3a.dotprod_vop::dpi8-ps) (:policy :fast-safe) (:args (x :scs (descriptor-reg)) (y :scs (descriptor-reg)) (i-tn :scs (signed-reg))) (:arg-types simple-array-single-float simple-array-single-float tagged-num) (:temporary (:sc single-sse-reg :from (:argument 0)) xmm0) (:temporary (:sc single-sse-reg :from (:argument 1)) xmm1) (:results (xmm2 :scs (single-sse-reg) :from (:argument 1))) (:result-types simd-pack-single) (:generator 25 (let ((i (if (sc-is i-tn immediate) (tn-value i-tn) i-tn))) (inst movups xmm0 (make-ea-for-float-ref x i 0 4 :scale (ash 8 (- n-fixnum-tag-bits)))) (inst movups xmm1 (make-ea-for-float-ref y i 0 4 :scale (ash 8 (- n-fixnum-tag-bits)))) (inst mulps xmm1 xmm0) (inst movups xmm0 (make-ea-for-float-ref x i 4 4 :scale (ash 8 (- n-fixnum-tag-bits)))) (inst movups xmm2 (make-ea-for-float-ref y i 4 4 :scale (ash 8 (- n-fixnum-tag-bits)))) (inst mulps xmm2 xmm0)) (inst addps xmm2 xmm1))) (define-vop (cl3a.dotprod_vop::dpi8-avx2-ps) (:translate cl3a.dotprod_vop::dpi8-avx2-ps) (:policy :fast-safe) (:args (x :scs (descriptor-reg)) (y :scs (descriptor-reg)) (i-tn :scs (signed-reg))) (:arg-types simple-array-single-float simple-array-single-float tagged-num) (:temporary (:sc single-avx2-reg :from (:argument 0)) ymm0) (:temporary (:sc single-avx2-reg :from (:argument 1)) ymm1) (:results (ymm2 :scs (single-avx2-reg) :from (:argument 1))) (:result-types simd-pack-256-single) (:generator 25 (inst vxorps ymm2 ymm2 ymm2) (let ((i (if (sc-is i-tn immediate) (tn-value i-tn) i-tn))) (inst vmovups ymm0 (make-ea-for-float-ref x i 0 4 :scale (ash 8 (- n-fixnum-tag-bits)))) (inst vmovups ymm1 (make-ea-for-float-ref y i 0 4 :scale (ash 8 (- n-fixnum-tag-bits))))) (inst vfmadd231ps ymm2 ymm0 ymm1))) (define-vop (cl3a.dotprod_vop::dpi8-pd) (:translate cl3a.dotprod_vop::dpi8-pd) (:policy :fast-safe) (:args (x :scs (descriptor-reg)) (y :scs (descriptor-reg)) (i-tn :scs (signed-reg))) (:arg-types simple-array-double-float simple-array-double-float tagged-num) (:temporary (:sc double-sse-reg :from (:argument 0)) xmm0) (:temporary (:sc double-sse-reg :from (:argument 1)) xmm1) (:results (xmm2 :scs (double-sse-reg) :from (:argument 1))) (:result-types simd-pack-double) (:generator 25 (let ((i (if (sc-is i-tn immediate) (tn-value i-tn) i-tn))) (inst movupd xmm0 (make-ea-for-float-ref x i 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst movupd xmm1 (make-ea-for-float-ref y i 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst mulpd xmm1 xmm0) (inst movupd xmm0 (make-ea-for-float-ref x i 2 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst movupd xmm2 (make-ea-for-float-ref y i 2 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst mulpd xmm2 xmm0) (inst addpd xmm2 xmm1) (inst movupd xmm0 (make-ea-for-float-ref x i 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst movupd xmm1 (make-ea-for-float-ref y i 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst mulpd xmm1 xmm0) (inst addpd xmm1 xmm2) (inst movupd xmm0 (make-ea-for-float-ref x i 6 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst movupd xmm2 (make-ea-for-float-ref y i 6 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst mulpd xmm2 xmm0)) (inst addpd xmm2 xmm1))) (define-vop (cl3a.dotprod_vop::dpi8-avx2-pd) (:translate cl3a.dotprod_vop::dpi8-avx2-pd) (:policy :fast-safe) (:args (x :scs (descriptor-reg)) (y :scs (descriptor-reg)) (i-tn :scs (signed-reg))) (:arg-types simple-array-double-float simple-array-double-float tagged-num) (:temporary (:sc double-avx2-reg :from (:argument 0)) ymm0) (:temporary (:sc double-avx2-reg :from (:argument 1)) ymm1) (:results (ymm2 :scs (double-avx2-reg) :from (:argument 1))) (:result-types simd-pack-256-double) (:generator 25 (inst vxorpd ymm2 ymm2 ymm2) (let ((i (if (sc-is i-tn immediate) (tn-value i-tn) i-tn))) (inst vmovupd ymm0 (make-ea-for-float-ref x i 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm1 (make-ea-for-float-ref y i 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm2 ymm0 ymm1) (inst vmovupd ymm0 (make-ea-for-float-ref x i 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm1 (make-ea-for-float-ref y i 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm2 ymm0 ymm1)))) (define-vop (cl3a.dotprod_vop::dp16-avx2-pd) (:translate cl3a.dotprod_vop::dp16-avx2-pd) (:policy :fast-safe) (:args (x :scs (descriptor-reg)) (y :scs (descriptor-reg)) (n0-tn :scs (signed-reg))) (:arg-types simple-array-double-float simple-array-double-float tagged-num) (:temporary (:sc signed-reg) i) (:temporary (:sc signed-reg) n0) (:temporary (:sc double-avx2-reg) ymm0) (:temporary (:sc double-avx2-reg) ymm1) (:temporary (:sc double-avx2-reg) ymm2) (:temporary (:sc double-avx2-reg) ymm3) (:temporary (:sc double-avx2-reg) ymm5) (:temporary (:sc double-avx2-reg) ymm6) (:temporary (:sc double-avx2-reg) ymm7) (:results (ymm4 :scs (double-avx2-reg))) (:result-types simd-pack-256-double) (:generator 25 (move n0 n0-tn) (inst vxorpd ymm4 ymm4 ymm4) (inst vxorpd ymm5 ymm5 ymm5) (inst vxorpd ymm6 ymm6 ymm6) (inst vxorpd ymm7 ymm7 ymm7) (inst xor i i) LOOP (inst vmovupd ymm0 (make-ea-for-float-ref x i 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm1 (make-ea-for-float-ref x i 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm2 (make-ea-for-float-ref x i 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm3 (make-ea-for-float-ref x i 12 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm4 ymm0 (make-ea-for-float-ref y i 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm5 ymm1 (make-ea-for-float-ref y i 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm6 ymm2 (make-ea-for-float-ref y i 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm7 ymm3 (make-ea-for-float-ref y i 12 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst add i 16) (inst cmp i n0) (inst jmp :b LOOP) DONE (inst vaddpd ymm4 ymm4 ymm5) (inst vaddpd ymm6 ymm6 ymm7) (inst vaddpd ymm4 ymm4 ymm6))) (in-package :cl3a.dotprod_vop) (defun dpi8-ps (x y i) (dpi8-ps x y i)) (defun dpi8-avx2-ps (x y i) (dpi8-avx2-ps x y i)) (defun dpi8-pd (x y i) (dpi8-pd x y i)) (defun dpi8-avx2-pd (x y i) (dpi8-avx2-pd x y i)) (defun dp16-avx2-pd (x y n0) (dp16-avx2-pd x y n0))
9,297
Common Lisp
.lisp
237
31.265823
86
0.58927
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
6fec27613b6f949cd0301fe6962c67d25dd0ca3e1b52172a19f7d8fba00557c4
20,953
[ -1 ]
20,954
rotate.lisp
i-kiwamu_cl3a/src/rotate.lisp
(in-package :cl-user) (defpackage cl3a.rotate (:use :cl :alexandria :cl3a.utilities :cl3a.utilities_vop) (:export :srotate :drotate)) (in-package :cl3a.rotate) (declaim (ftype (function ((simple-array double-float (*)) (simple-array double-float (*)) (double-float -1d0 1d0) (double-float -1d0 1d0) (simple-array double-float (*)) (simple-array double-float (*)))) drotate)) (defun drotate (va vb c s vc vd) "Rotate two double-float vectors (va & vb) with cos and sin, and return new two vectors" (declare (optimize (speed 3) (safety 0)) (type double-float c s) (type (simple-array double-float (*)) va vb vc vd)) (let* ((na (length va)) (nb (length vb)) (nv (cond ((/= na nb) (different-length-warn na nb) (min na nb)) (t na))) (nv0 (min-factor nv 4)) (minus-s (* s -1d0))) (declare (type fixnum na nb nv nv0) (type double-float minus-s)) (do ((i 0 (+ i 4))) ((>= i nv0)) (sb-sys:%primitive aset4-pd vc i (f4+-pd (f4*-sd c (aref4-pd va i)) (f4*-sd s (aref4-pd vb i)))) (sb-sys:%primitive aset4-pd vd i (f4+-pd (f4*-sd c (aref4-pd vb i)) (f4*-sd minus-s (aref4-pd va i))))) (do ((i nv0 (1+ i))) ((>= i nv)) (setf (aref vc i) (+ (* c (aref va i)) (* s (aref vb i)))) (setf (aref vd i) (- (* c (aref vb i)) (* s (aref va i))))))) (declaim (ftype (function ((simple-array single-float (*)) (simple-array single-float (*)) (single-float -1.0 1.0) (single-float -1.0 1.0) (simple-array single-float (*)) (simple-array single-float (*)))) srotate)) (defun srotate (va vb c s vc vd) "Rotate two single-float vectors (va & vb) with cos and sin, and return new two vectors" (declare (optimize (speed 3) (safety 0)) (type single-float c s) (type (simple-array single-float (*)) va vb vc vd)) (let* ((na (length va)) (nb (length vb)) (nv (cond ((/= na nb) (different-length-warn na nb) (min na nb)) (t na))) (nv0 (min-factor nv 8)) (minus-s (* s -1.0))) (declare (type fixnum na nb nv nv0) (type single-float minus-s)) (do ((i 0 (+ i 8))) ((>= i nv0)) (sb-sys:%primitive aset8-ps vc i (f8+-ps (f8*-ss c (aref8-ps va i)) (f8*-ss s (aref8-ps vb i)))) (sb-sys:%primitive aset8-ps vd i (f8+-ps (f8*-ss c (aref8-ps vb i)) (f8*-ss minus-s (aref8-ps va i))))) (do ((i nv0 (1+ i))) ((>= i nv)) (setf (aref vc i) (+ (* c (aref va i)) (* s (aref vb i)))) (setf (aref vd i) (- (* c (aref vb i)) (* s (aref va i)))))))
3,266
Common Lisp
.lisp
85
26.011765
62
0.444759
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
8a872940087193e74c6631051dbc39860fe76159512414b32ba14880f1adcff6
20,954
[ -1 ]
20,955
mmmult10_vop.lisp
i-kiwamu_cl3a/src/mmmult10_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult10_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :incf12-Caux-ker :dgebp-1-nr-ker :dgebp-mr-nr-ker)) (in-package :cl3a.mmmult10_vop) (defknown incf12-Caux-ker ((simple-array double-float (*)) fixnum (simple-array double-float (*)) fixnum) (simple-array double-float (*)) (any always-translatable) :overwrite-fndb-silently t) (defknown dgebp-1-nr-ker (fixnum (simple-array double-float (*)) (simple-array double-float (*)) (simple-array double-float (*)) fixnum fixnum fixnum) (simple-array double-float (*)) (any always-translatable) :overwrite-fndb-silently t) (defknown dgebp-mr-nr-ker (fixnum (simple-array double-float (*)) (simple-array double-float (*)) (simple-array double-float (*)) fixnum fixnum fixnum) (simple-array double-float (*)) (any always-translatable) :overwrite-fndb-silently t) (in-package :sb-vm) (define-vop (cl3a.mmmult10_vop::incf12-Caux-ker) (:translate cl3a.mmmult10_vop::incf12-Caux-ker) (:policy :fast-safe) (:args (C :scs (descriptor-reg)) (rmc-init :scs (signed-reg) :target rmc) (Caux :scs (descriptor-reg)) (x-init :scs (signed-reg) :target x)) (:arg-types simple-array-double-float tagged-num simple-array-double-float tagged-num) (:temporary (:sc signed-reg :from (:argument 1)) rmc) (:temporary (:sc signed-reg :from (:argument 3)) x) (:temporary (:sc double-avx2-reg) ymm0) ; for Caux (:temporary (:sc double-avx2-reg) ymm1) (:temporary (:sc double-avx2-reg) ymm2) (:temporary (:sc double-avx2-reg) ymm3) ; for C (:temporary (:sc double-avx2-reg) ymm4) (:temporary (:sc double-avx2-reg) ymm5) (:results (result :scs (descriptor-reg))) (:result-types simple-array-double-float) (:generator 10 (move rmc rmc-init) (move x x-init) (inst vmovupd ymm0 (make-ea-for-float-ref Caux x 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm3 (make-ea-for-float-ref C rmc 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm1 (make-ea-for-float-ref Caux x 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm4 (make-ea-for-float-ref C rmc 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm2 (make-ea-for-float-ref Caux x 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm5 (make-ea-for-float-ref C rmc 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vaddpd ymm3 ymm0 ymm3) (inst vaddpd ymm4 ymm1 ymm4) (inst vaddpd ymm5 ymm2 ymm5) (inst vxorpd ymm0 ymm0 ymm0) (inst vmovupd (make-ea-for-float-ref C rmc 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm3) (inst vmovupd (make-ea-for-float-ref Caux x 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm0) (inst vmovupd (make-ea-for-float-ref C rmc 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm4) (inst vmovupd (make-ea-for-float-ref Caux x 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm0) (inst vmovupd (make-ea-for-float-ref C rmc 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm5) (inst vmovupd (make-ea-for-float-ref Caux x 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm0) (move result C))) (define-vop (cl3a.mmmult10_vop::dgebp-1-nr-ker) (:translate cl3a.mmmult10_vop::dgebp-1-nr-ker) (:policy :fast-safe) (:args (pc-ptr :scs (signed-reg) :target pc) (Ampd :scs (descriptor-reg) :to :eval) (B :scs (descriptor-reg) :to :eval) (Caux :scs (descriptor-reg) :to :eval) (rma-init :scs (signed-reg) :target rma) (rmb-init :scs (signed-reg) :target rmb) (rmc :scs (signed-reg))) (:arg-types tagged-num simple-array-double-float simple-array-double-float simple-array-double-float tagged-num tagged-num tagged-num) (:temporary (:sc signed-reg :from (:argument 0)) pc) (:temporary (:sc signed-reg :from (:argument 4)) rma) (:temporary (:sc signed-reg :from (:argument 5)) rmb) (:temporary (:sc signed-reg :offset rcx-offset) k) (:temporary (:sc double-avx2-reg) ymm0) ; for Ampd (:temporary (:sc double-avx2-reg) ymm1) ; for Bpnd (:temporary (:sc double-avx2-reg) ymm2) (:temporary (:sc double-avx2-reg) ymm3) (:temporary (:sc double-avx2-reg) ymm4) ; for Caux (:temporary (:sc double-avx2-reg) ymm5) (:temporary (:sc double-avx2-reg) ymm6) (:results (result :scs (descriptor-reg))) (:result-types simple-array-double-float) (:generator 30 (move pc pc-ptr) (move rma rma-init) (move rmb rmb-init) (inst xor k k) (inst vxorpd ymm4 ymm4 ymm4) (inst vxorpd ymm5 ymm5 ymm5) (inst vxorpd ymm6 ymm6 ymm6) LOOP (inst vmovupd ymm1 (make-ea-for-float-ref B rmb 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vbroadcastsd ymm0 (make-ea-for-float-ref Ampd rma 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm2 (make-ea-for-float-ref B rmb 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm3 (make-ea-for-float-ref B rmb 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm4 ymm0 ymm1) (inst vfmadd231pd ymm5 ymm0 ymm2) (inst vfmadd231pd ymm6 ymm0 ymm3) (inst add k 1) (inst add rma 1) (inst add rmb 12) (inst cmp k pc) (inst jmp :b LOOP) DONE (inst vmovupd (make-ea-for-float-ref Caux rmc 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm4) (inst vmovupd (make-ea-for-float-ref Caux rmc 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm5) (inst vmovupd (make-ea-for-float-ref Caux rmc 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm6) (move result Caux))) (define-vop (cl3a.mmmult10_vop::dgebp-mr-nr-ker) (:translate cl3a.mmmult10_vop::dgebp-mr-nr-ker) (:policy :fast-safe) (:args (pc-ptr :scs (signed-reg) :target pc) (Ampd :scs (descriptor-reg) :to :eval) (B :scs (descriptor-reg) :to :eval) (Caux :scs (descriptor-reg) :to :eval) (rma-init :scs (signed-reg) :target rma) (rmb-init :scs (signed-reg) :target rmb) (rmc-init :scs (signed-reg) :target rmc)) (:arg-types tagged-num simple-array-double-float simple-array-double-float simple-array-double-float tagged-num tagged-num tagged-num) (:temporary (:sc signed-reg :from (:argument 0)) pc) (:temporary (:sc signed-reg :from (:argument 4)) rma) (:temporary (:sc signed-reg :from (:argument 4)) rma0) (:temporary (:sc signed-reg :from (:argument 5)) rmb) (:temporary (:sc signed-reg :from (:argument 5)) rmb-next) (:temporary (:sc signed-reg :from (:argument 6)) rmc) (:temporary (:sc signed-reg :offset rcx-offset) k) (:temporary (:sc double-avx2-reg) ymm0) ; for A (:temporary (:sc double-avx2-reg) ymm1) ; for B (:temporary (:sc double-avx2-reg) ymm2) (:temporary (:sc double-avx2-reg) ymm3) (:temporary (:sc double-avx2-reg) ymm4) ; for C (:temporary (:sc double-avx2-reg) ymm5) (:temporary (:sc double-avx2-reg) ymm6) (:temporary (:sc double-avx2-reg) ymm7) (:temporary (:sc double-avx2-reg) ymm8) (:temporary (:sc double-avx2-reg) ymm9) (:temporary (:sc double-avx2-reg) ymm10) (:temporary (:sc double-avx2-reg) ymm11) (:temporary (:sc double-avx2-reg) ymm12) (:temporary (:sc double-avx2-reg) ymm13) (:temporary (:sc double-avx2-reg) ymm14) (:temporary (:sc double-avx2-reg) ymm15) (:results (result :scs (descriptor-reg))) (:result-types simple-array-double-float) (:generator 30 (move pc pc-ptr) (move rma0 rma-init) (move rmb rmb-init) (move rmb-next rmb-init) (inst add rmb-next 12) (inst xor k k) (inst vxorpd ymm4 ymm4 ymm4) (inst vxorpd ymm5 ymm5 ymm5) (inst vxorpd ymm6 ymm6 ymm6) (inst vxorpd ymm7 ymm7 ymm7) (inst vxorpd ymm8 ymm8 ymm8) (inst vxorpd ymm9 ymm9 ymm9) (inst vxorpd ymm10 ymm10 ymm10) (inst vxorpd ymm11 ymm11 ymm11) (inst vxorpd ymm12 ymm12 ymm12) (inst vxorpd ymm13 ymm13 ymm13) (inst vxorpd ymm14 ymm14 ymm14) (inst vxorpd ymm15 ymm15 ymm15) LOOP (move rma rma0) (inst vmovupd ymm1 (make-ea-for-float-ref B rmb 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vbroadcastsd ymm0 (make-ea-for-float-ref Ampd rma 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm2 (make-ea-for-float-ref B rmb 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm3 (make-ea-for-float-ref B rmb 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vfmadd231pd ymm4 ymm0 ymm1) (inst vfmadd231pd ymm5 ymm0 ymm2) (inst vfmadd231pd ymm6 ymm0 ymm3) (inst add rma pc) (inst vbroadcastsd ymm0 (make-ea-for-float-ref Ampd rma 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst prefetch :t0 (make-ea :byte :base B :index rmb-next :scale (ash 16 (- n-fixnum-tag-bits)) :disp 0)) (inst vfmadd231pd ymm7 ymm0 ymm1) (inst vfmadd231pd ymm8 ymm0 ymm2) (inst vfmadd231pd ymm9 ymm0 ymm3) (inst add rma pc) (inst vbroadcastsd ymm0 (make-ea-for-float-ref Ampd rma 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst prefetch :t0 (make-ea :byte :base B :index rmb-next :scale (ash 16 (- n-fixnum-tag-bits)) :disp 32)) (inst vfmadd231pd ymm10 ymm0 ymm1) (inst vfmadd231pd ymm11 ymm0 ymm2) (inst vfmadd231pd ymm12 ymm0 ymm3) (inst add rma pc) (inst vbroadcastsd ymm0 (make-ea-for-float-ref Ampd rma 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst prefetch :t0 (make-ea :byte :base B :index rmb-next :scale (ash 16 (- n-fixnum-tag-bits)) :disp 64)) (inst vfmadd231pd ymm13 ymm0 ymm1) (inst vfmadd231pd ymm14 ymm0 ymm2) (inst vfmadd231pd ymm15 ymm0 ymm3) (inst add k 1) (inst add rma0 1) (inst add rmb 12) (inst add rmb-next 12) (inst cmp k pc) (inst jmp :b LOOP) DONE (move rmc rmc-init) (inst vmovupd (make-ea-for-float-ref Caux rmc 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm4) (inst vmovupd (make-ea-for-float-ref Caux rmc 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm5) (inst vmovupd (make-ea-for-float-ref Caux rmc 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm6) (inst add rmc 12) (inst vmovupd (make-ea-for-float-ref Caux rmc 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm7) (inst vmovupd (make-ea-for-float-ref Caux rmc 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm8) (inst vmovupd (make-ea-for-float-ref Caux rmc 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm9) (inst add rmc 12) (inst vmovupd (make-ea-for-float-ref Caux rmc 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm10) (inst vmovupd (make-ea-for-float-ref Caux rmc 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm11) (inst vmovupd (make-ea-for-float-ref Caux rmc 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm12) (inst add rmc 12) (inst vmovupd (make-ea-for-float-ref Caux rmc 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm13) (inst vmovupd (make-ea-for-float-ref Caux rmc 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm14) (inst vmovupd (make-ea-for-float-ref Caux rmc 8 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm15) (move result Caux))) (in-package :cl3a.mmmult10_vop) (defun dgebp-1-nr-ker (p Ampd B Caux rma rmb rmc) (dgebp-1-nr-ker p Ampd B Caux rma rmb rmc)) (defun dgebp-mr-nr-ker (p Ampd B Caux rma rmb rmc) (dgebp-mr-nr-ker p Ampd B Caux rma rmb rmc)) (defun incf12-Caux-ker (C rmc-init Caux x-init) (incf12-Caux-ker C rmc-init Caux x-init))
12,791
Common Lisp
.lisp
352
29.809659
72
0.615694
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
55dc455f0bc43d8480bd1cc79c8523d3456b5b61906bf2f43d2e1aba8a21a8db
20,955
[ -1 ]
20,956
mmmult6.lisp
i-kiwamu_cl3a/src/mmmult6.lisp
(in-package :cl-user) (defpackage cl3a.mmmult6 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :tile-size)) (in-package :cl3a.mmmult6) (declaim (ftype (function (integer &key (:l1 boolean)) integer) tile-size)) (defun tile-size (n &key l1) "See Lam et al. 1991 The cache performance and optimizations of blocked algorithms" (declare (type integer n) (type boolean l1)) (let* ((n-half (ifloor n 2)) (cache-size (if l1 (ifloor (* +L1-size+ +associativity+) 8) (ifloor (* +L2-size+ +associativity+) 8)))) ;; 1 word = 4 byte (declare (type integer n-half cache-size)) (loop :while t :with max-width :of-type integer = (min n cache-size) :and addr :of-type integer = n-half :and di :of-type integer = 0 :and dj :of-type integer = 1 :and di0 :of-type integer = 1 :do (progn (incf addr cache-size) (setf di (ifloor addr n)) (setf dj (abs (- (mod addr n) n-half))) (setf di0 (min max-width dj))) (when (>= di di0) (return (min max-width di))) :do (setf max-width di0)))) (defmacro m*m-ker (val-type si ni sk nk nra nv ncb ma mb mc) "Multiply matrix and matrix (unrolling version)" (with-gensyms (iend jend0 kend i j k ii kk maik imb imc) `(let* ((,iend (min (the fixnum (- ,nra ,si)) ,ni)) (,jend0 (min-factor ,ncb +unroll+)) (,kend (min (the fixnum (- ,nv ,sk)) ,nk))) (declare (type fixnum ,iend ,jend0 ,kend)) (dotimes (,i ,iend) (dotimes (,k ,kend) (let* ((,maik (aref ,ma 0 0)) (,ii (+ ,i ,si)) ; row i in ma-sub = row ii in ma (,kk (+ ,k ,sk)) ; col k in ma-sub = col kk in ma (,imb (array-row-major-index ,mb ,kk 0)) (,imc (array-row-major-index ,mc ,ii 0))) (declare (type ,val-type ,maik) (type fixnum ,ii ,kk ,imb ,imc)) (do ((,j 0 (+ ,j +unroll+))) ((>= ,j ,jend0) ,j) ,@(loop :repeat +unroll+ :with form = `((incf (row-major-aref ,mc ,imc) (* ,maik (row-major-aref ,mb ,imb))) (incf ,imb) (incf ,imc)) :append form)) ;; if jend < +unroll+ or (mod jend +unroll+) > 0 (do ((,j ,jend0 (1+ ,j))) ((>= ,j ,ncb)) (incf (row-major-aref ,mc ,imc) (* ,maik (row-major-aref ,mb ,imb))) (incf ,imb) (incf ,imc)))))))) (defmacro m*m (val-type ma mb mc) (with-gensyms (calc copy nra nca nrb ncb nv m1 m2 i k ma-sub) `(flet ((,calc (si ni sk nk nra nv ncb ma mb mc) (declare (optimize (speed 3) (debug 0) (safety 0)) (type fixnum si ni sk nk nra nv ncb) (type (simple-array ,val-type (* *)) ma mb mc)) (m*m-ker ,val-type si ni sk nk nra nv ncb ma mb mc)) (,copy (ma si ni sj nj mb) (declare (optimize (speed 3) (debug 0) (safety 0)) (type (simple-array ,val-type (* *)) ma mb) (type fixnum si ni sj nj)) (copy-matrix ma si ni sj nj mb))) (declare (inline ,calc ,copy)) (let* ((,nra (array-dimension ,ma 0)) (,nca (array-dimension ,ma 1)) (,nrb (array-dimension ,mb 0)) (,ncb (array-dimension ,mb 1)) (,nv (cond ((/= ,nca ,nrb) (different-length-warn ,nca ,nrb) (min ,nca ,nrb)) (t ,nca))) (,m1 (tile-size ,nra)) (,m2 (tile-size ,ncb :l1 t))) (declare (type fixnum ,nra ,nca ,nrb ,ncb ,nv ,m1 ,m2)) (dotimes-interval (,i ,m1 ,nra) (dotimes-interval (,k ,m2 ,nv) (let ((,ma-sub (make-array (list ,m1 ,m2) :element-type ',val-type))) (declare (type (simple-array ,val-type (* *)) ,ma-sub)) (,copy ,ma ,i ,m1 ,k ,m2 ,ma-sub) (,calc 0 ,m1 0 ,m2 ,nra ,nv ,ncb ,ma-sub ,mb ,mc)))))))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (ma mb mc) "Multiply matrix and matrix of double-float" (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) ma mb mc)) (m*m double-float ma mb mc))
4,748
Common Lisp
.lisp
102
33.352941
88
0.47466
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0665184b9789509b0978b0422de479ea5aaefc5c459557c66b071adb22202c48
20,956
[ -1 ]
20,957
dotprod.lisp
i-kiwamu_cl3a/src/dotprod.lisp
(in-package :cl-user) (defpackage cl3a.dotprod (:use :cl :sb-ext :sb-c :alexandria :cl3a.typedef :cl3a.utilities :cl3a.utilities_vop :cl3a.dotprod_vop) (:export :sv*v :dv*v)) (in-package :cl3a.dotprod) (declaim (ftype (function ((vec double-float) (vec double-float)) double-float) dv*v)) (defun dv*v (va vb) "Dot product with two double-float vectors va and vb" (declare (optimize (speed 3) (safety 0)) (type (vec double-float) va vb)) (let* ((n (min (%vec-length va) (%vec-length vb))) (n0 (min-factor n 16))) (declare (type fixnum n n0) ) (multiple-value-bind (r0 r1 r2 r3) (%simd-pack-256-doubles (dp16-avx2-pd (%vec-contents va) (%vec-contents vb) n0)) (declare (type double-float r0 r1 r2 r3)) (+ r0 r1 r2 r3 (loop :for i :of-type fixnum :from n0 :below n :sum (* (the double-float (%vecref/double-float va i)) (the double-float (%vecref/double-float vb i))) :into c :of-type double-float :finally (return c)))))) (declaim (ftype (function ((simple-array single-float (*)) (simple-array single-float (*))) single-float) sv*v)) (defun sv*v (va vb) "Dot product with two single-float vectors va and vb" (declare (optimize (speed 3) (safety 0)) (type (simple-array single-float (*)) va vb)) (let* ((n (min (length va) (length vb))) (n0 (min-factor n +unroll+)) (res-ps (setzero8-ps)) (res 0s0)) (declare (type fixnum n n0) (type (simd-pack-256 single-float) res-ps) (type single-float res)) (do ((i 0 (+ i +unroll+))) ((>= i n0)) (declare (type fixnum i)) (setf res-ps (f8+-ps res-ps (dpi8-avx2-ps va vb i)))) (multiple-value-bind (r0 r1 r2 r3 r4 r5 r6 r7) (%simd-pack-256-singles res-ps) (declare (type single-float r0 r1 r2 r3 r4 r5 r6 r7)) (incf res (+ r0 r1 r2 r3 r4 r5 r6 r7))) (do ((i n0 (1+ i))) ((>= i n) res) (declare (type fixnum i)) (incf res (* (aref va i) (aref vb i))))))
2,275
Common Lisp
.lisp
57
30.385965
76
0.535682
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
adf8102de94989e99ece28a9c73715174a416d84e2ae4fee0bc19d4fc79a88e4
20,957
[ -1 ]
20,958
utilities_vop.lisp
i-kiwamu_cl3a/src/utilities_vop.lisp
(in-package :cl-user) (defpackage cl3a.utilities_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :aref8-ps :aref4-pd :aset8-ps :aset4-pd :f8*-ps :f8*-ss :f4*-pd :f4*-sd :f8+-ps :f8+-ss :f4+-pd :f4+-sd :setzero8-ps :setzero4-pd :prefetcht0 :copy-vector8-pd)) (in-package :cl3a.utilities_vop) (defknown aref8-ps ((simple-array single-float (*)) fixnum) (sb-ext:simd-pack-256 single-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown aref4-pd ((simple-array double-float (*)) fixnum) (sb-ext:simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown aset8-ps ((simple-array single-float (*)) fixnum (sb-ext:simd-pack-256 single-float)) (sb-ext:simd-pack-256 single-float) (flushable always-translatable) :overwrite-fndb-silently t) (defknown aset4-pd ((simple-array double-float (*)) fixnum (sb-ext:simd-pack-256 double-float)) (sb-ext:simd-pack-256 double-float) (flushable always-translatable) :overwrite-fndb-silently t) (defknown f8*-ps ((sb-ext:simd-pack-256 single-float) (sb-ext:simd-pack-256 single-float)) (sb-ext:simd-pack-256 single-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown f8*-ss (single-float (sb-ext:simd-pack-256 single-float)) (sb-ext:simd-pack-256 single-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown f4*-pd ((sb-ext:simd-pack-256 double-float) (sb-ext:simd-pack-256 double-float)) (sb-ext:simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown f4*-sd (double-float (sb-ext:simd-pack-256 double-float)) (sb-ext:simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown f8+-ps ((sb-ext:simd-pack-256 single-float) (sb-ext:simd-pack-256 single-float)) (sb-ext:simd-pack-256 single-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown f8+-ss (single-float (sb-ext:simd-pack-256 single-float)) (sb-ext:simd-pack-256 single-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown f4+-pd ((sb-ext:simd-pack-256 double-float) (sb-ext:simd-pack-256 double-float)) (sb-ext:simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown f4+-sd (double-float (sb-ext:simd-pack-256 double-float)) (sb-ext:simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown setzero8-ps () (sb-ext:simd-pack-256 single-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown setzero4-pd () (sb-ext:simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown prefetcht0 (sb-sys:system-area-pointer (member 2 4 8 16) fixnum) (values &optional) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown copy-vector8-pd (fixnum (simple-array double-float (*)) fixnum (simple-array double-float (*)) fixnum) (simple-array double-float (*)) (any always-translatable) :overwrite-fndb-silently t) (in-package :sb-vm) (define-vop (cl3a.utilities_vop::aref8-ps) (:translate cl3a.utilities_vop::aref8-ps) (:policy :fast-safe) (:args (x :scs (descriptor-reg)) (i-tn :scs (signed-reg))) (:arg-types simple-array-single-float tagged-num) (:results (r :scs (single-avx2-reg))) (:result-types simd-pack-256-single) (:generator 5 (let ((i (if (sc-is i-tn immediate) (tn-value i-tn) i-tn))) (inst vmovups r (make-ea-for-float-ref x i 0 4 :scale (ash 8 (- n-fixnum-tag-bits))))))) (define-vop (cl3a.utilities_vop::aref4-pd) (:translate cl3a.utilities_vop::aref4-pd) (:policy :fast-safe) (:args (x :scs (descriptor-reg)) (i-tn :scs (signed-reg))) (:arg-types simple-array-double-float tagged-num) (:results (r :scs (double-avx2-reg))) (:result-types simd-pack-256-double) (:generator 7 (let ((i (if (sc-is i-tn immediate) (tn-value i-tn) i-tn))) (inst vmovupd r (make-ea-for-float-ref x i 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))))))) (define-vop (cl3a.utilities_vop::aset8-ps) (:translate cl3a.utilities_vop::aset8-ps) (:policy :fast-safe) (:args (x :scs (descriptor-reg)) (i-tn :scs (signed-reg)) (src :scs (single-avx2-reg))) (:arg-types simple-array-single-float tagged-num simd-pack-256-single) (:results (r :scs (single-avx2-reg))) (:result-types simd-pack-256-single) (:generator 5 (when (not (location= r src)) (move r src)) (let ((i (if (sc-is i-tn immediate) (tn-value i-tn) i-tn))) (inst vmovups (make-ea-for-float-ref x i 0 4 :scale (ash 8 (- n-fixnum-tag-bits))) r)))) (define-vop (cl3a.utilities_vop::aset4-pd) (:translate cl3a.utilities_vop::aset4-pd) (:policy :fast-safe) (:args (x :scs (descriptor-reg)) (i-tn :scs (signed-reg)) (src :scs (double-avx2-reg) :target r)) (:arg-types simple-array-double-float tagged-num simd-pack-256-double) (:results (r :scs (double-avx2-reg) :from (:argument 3))) (:result-types simd-pack-256-double) (:generator 7 (when (not (location= r src)) (move r src)) (let ((i (if (sc-is i-tn immediate) (tn-value i-tn) i-tn))) (inst vmovupd (make-ea-for-float-ref x i 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) r)))) (define-vop (cl3a.utilities_vop::f8*-ps) (:translate cl3a.utilities_vop::f8*-ps) (:policy :fast-safe) (:args (x :scs (single-avx2-reg)) (y :scs (single-avx2-reg))) (:arg-types simd-pack-256-single simd-pack-256-single) (:results (dst :scs (single-avx2-reg) :from (:argument 0))) (:result-types simd-pack-256-single) (:generator 4 (inst vmulps dst x y))) (define-vop (cl3a.utilities_vop::f8*-ss) (:translate cl3a.utilities_vop::f8*-ss) (:policy :fast-safe) (:args (s :scs (single-reg)) (y :scs (single-avx2-reg))) (:arg-types single-float simd-pack-256-single) (:temporary (:sc single-avx2-reg) tmp) (:temporary (:sc single-avx2-reg) x) (:results (dst :scs (single-avx2-reg) :from (:argument 0))) (:result-types simd-pack-256-single) (:generator 5 (inst vinsertps x s s (ash 1 4)) (inst vinsertps x x s (ash 2 4)) (inst vinsertps x x s (ash 3 4)) (inst vinsertps tmp s s (ash 1 4)) (inst vinsertps tmp tmp s (ash 2 4)) (inst vinsertps tmp tmp s (ash 3 4)) (inst vinsertf128 x x tmp 1) (inst vmulps dst x y))) (define-vop (cl3a.utilities_vop::f4*-pd) (:translate cl3a.utilities_vop::f4*-pd) (:policy :fast-safe) (:args (x :scs (double-avx2-reg)) (y :scs (double-avx2-reg))) (:arg-types simd-pack-256-double simd-pack-256-double) (:results (dst :scs (double-avx2-reg) :from (:argument 0))) (:result-types simd-pack-256-double) (:generator 4 (inst vmulpd dst x y))) (define-vop (cl3a.utilities_vop::f4*-sd) (:translate cl3a.utilities_vop::f4*-sd) (:policy :fast-safe) (:args (s :scs (double-reg)) (y :scs (double-avx2-reg))) (:arg-types double-float simd-pack-256-double) (:temporary (:sc int-avx2-reg) tmp) (:temporary (:sc double-avx2-reg) x) (:results (dst :scs (double-avx2-reg) :from (:argument 0))) (:result-types simd-pack-256-double) (:generator 5 (inst vunpcklpd x s s) (inst vunpcklpd tmp s s) (inst vinsertf128 x x tmp 1) (inst vmulpd dst x y))) (define-vop (cl3a.utilities_vop::f8+-ps) (:translate cl3a.utilities_vop::f8+-ps) (:policy :fast-safe) (:args (x :scs (single-avx2-reg)) (y :scs (single-avx2-reg))) (:arg-types simd-pack-256-single simd-pack-256-single) (:results (dst :scs (single-avx2-reg) :from (:argument 0))) (:result-types simd-pack-256-single) (:generator 4 (inst vaddps dst x y))) (define-vop (cl3a.utilities_vop::f8*-ss) (:translate cl3a.utilities_vop::f8+-ss) (:policy :fast-safe) (:args (s :scs (single-reg)) (y :scs (single-avx2-reg))) (:arg-types single-float simd-pack-256-single) (:temporary (:sc single-avx2-reg) tmp) (:temporary (:sc single-avx2-reg) x) (:results (dst :scs (single-avx2-reg) :from (:argument 0))) (:result-types simd-pack-256-single) (:generator 5 (inst vinsertps x s s (ash 1 4)) (inst vinsertps x x s (ash 2 4)) (inst vinsertps x x s (ash 3 4)) (inst vinsertps tmp s s (ash 1 4)) (inst vinsertps tmp tmp s (ash 2 4)) (inst vinsertps tmp tmp s (ash 3 4)) (inst vinsertf128 x x tmp 1) (inst vaddps dst x y))) (define-vop (cl3a.utilities_vop::f4+-pd) (:translate cl3a.utilities_vop::f4+-pd) (:policy :fast-safe) (:args (x :scs (double-avx2-reg)) (y :scs (double-avx2-reg))) (:arg-types simd-pack-256-double simd-pack-256-double) (:results (dst :scs (double-avx2-reg) :from (:argument 0))) (:result-types simd-pack-256-double) (:generator 4 (inst vaddpd dst x y))) (define-vop (cl3a.utilities_vop::f4+-sd) (:translate cl3a.utilities_vop::f4+-sd) (:policy :fast-safe) (:args (s :scs (double-reg)) (y :scs (double-avx2-reg))) (:arg-types double-float simd-pack-256-double) (:temporary (:sc int-avx2-reg) tmp) (:temporary (:sc double-avx2-reg) x) (:results (dst :scs (double-avx2-reg) :from (:argument 0))) (:result-types simd-pack-256-double) (:generator 5 (inst vunpcklpd x s s) (inst vunpcklpd tmp s s) (inst vinsertf128 x x tmp 1) (inst vaddpd dst x y))) (define-vop (cl3a.utilities_vop::setzero8-ps) (:translate cl3a.utilities_vop::setzero8-ps) (:policy :fast-safe) (:results (r :scs (single-avx2-reg))) (:result-types simd-pack-256-single) (:generator 5 (inst vxorps r r r))) (define-vop (cl3a.utilities_vop::setzero4-pd) (:translate cl3a.utilities_vop::setzero4-pd) (:policy :fast-safe) (:results (r :scs (double-avx2-reg))) (:result-types simd-pack-256-double) (:generator 5 (inst vxorpd r r r))) (define-vop (cl3a.utilities_vop::prefetcht0) (:translate cl3a.utilities_vop::prefetcht0) (:policy :fast-safe) (:args (base :scs (sap-reg)) (index :scs (signed-reg))) (:arg-types sb-sys:system-area-pointer (:constant (member . #.(loop for i below 4 collect (ash 1 (+ i sb-vm:n-fixnum-tag-bits))))) fixnum) (:results) (:info stride) (:generator 1 (inst prefetch :t0 (make-ea :byte :base base :index index :scale (ash stride (- n-fixnum-tag-bits)) :disp 0)))) (define-vop (cl3a.utilities_vop::copy-vector8-pd) (:translate cl3a.utilities_vop::copy-vector8-pd) (:policy :fast-safe) (:args (n0 :scs (signed-reg)) (va :scs (descriptor-reg)) (rma-init :scs (signed-reg)) (vb :scs (descriptor-reg)) (rmb-init :scs (signed-reg))) (:arg-types tagged-num simple-array-double-float tagged-num simple-array-double-float tagged-num) (:temporary (:sc signed-reg) i) (:temporary (:sc signed-reg :from (:argument 2)) rma) (:temporary (:sc signed-reg :from (:argument 4)) rmb) (:temporary (:sc double-avx2-reg) ymm0) (:temporary (:sc double-avx2-reg) ymm1) (:results (res :scs (descriptor-reg))) (:result-types simple-array-double-float) (:generator 10 (inst xor i i) (move rma rma-init) (move rmb rmb-init) LOOP (inst vmovupd ymm0 (make-ea-for-float-ref va rma 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd ymm1 (make-ea-for-float-ref va rma 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits)))) (inst vmovupd (make-ea-for-float-ref vb rmb 0 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm0) (inst vmovupd (make-ea-for-float-ref vb rmb 4 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ymm1) (inst add i 8) (inst add rma 8) (inst add rmb 8) (inst cmp i n0) (inst jmp :b LOOP) DONE (move res vb))) (in-package :cl3a.utilities_vop) (defun aref8-ps (x i) (aref8-ps x i)) (defun aref4-pd (x i) (aref4-pd x i)) (defun aset8-ps (x i src) (aset8-ps x i src)) (defun aset4-pd (x i src) (aset4-pd x i src)) (defsetf aref8-ps (x i) (val) `(aset8-ps ,x ,i ,val)) (defsetf aref4-pd (x i) (val) `(aset4-pd ,x ,i ,val)) (defun f8*-ps (x y) (f8*-ps x y)) (defun f8*-ss (s y) (f8*-ss s y)) (defun f4*-pd (x y) (f4*-pd x y)) (defun f4*-sd (s y) (f4*-sd s y)) (defun f8+-ps (x y) (f8+-ps x y)) (defun f8+-ss (s y) (f8+-ss s y)) (defun f4+-pd (x y) (f4+-pd x y)) (defun f4+-sd (s y) (f4+-sd s y)) (defun setzero8-ps () (setzero8-ps)) (defun setzero4-pd () (setzero4-pd)) (defun prefetcht0 (base stride index) (declare (type (member 2 4 8 16) stride)) (ecase stride (2 (prefetcht0 base 2 index)) (4 (prefetcht0 base 4 index)) (8 (prefetcht0 base 8 index)) (16 (prefetcht0 base 16 index)))) (defun copy-vector8-pd (n0 va rma vb rmb) (copy-vector8-pd n0 va rma vb rmb))
14,003
Common Lisp
.lisp
405
28.562963
88
0.618031
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
2040d3b2a0f828fb10bb81188de7568943e12b4650f72646d379a93cdfe8f96c
20,958
[ -1 ]
20,959
mmmult8.lisp
i-kiwamu_cl3a/src/mmmult8.lisp
(in-package :cl-user) (defpackage cl3a.mmmult8 (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities :cl3a.mmmult8_vop) (:export :dm*m)) (in-package :cl3a.mmmult8) (declaim (ftype (function (integer (simple-array double-float (* *)) integer (simple-array double-float (* *)) integer) double-float) sum-dgebp-reg-ker)) (defun sum-dgebp-reg-ker (t20 Atd ia Bp ib) (declare (optimize (speed 3) (safety 0)) (inline sum-dgebp-reg-ker) (type integer t20 ia ib) (type (simple-array double-float (* *)) Atd Bp)) (multiple-value-bind (r0 r1 r2 r3) (%simd-pack-256-doubles (dgebp-reg-ker t20 (sb-kernel:%array-data-vector Atd) ia (sb-kernel:%array-data-vector Bp) ib)) (+ r0 r1 r2 r3))) (declaim (ftype (function (fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) fixnum (simple-array double-float (* *)))) dgebp-reg)) (defun dgebp-reg (mr t1 t2 t3 Atd Bp jr Caux) "register-scale program of GEBP: Caux += Atd * Bp[ib]" ;; Args ;; mr: block size of row of A & C ;; t1: mc or m1 ;; t2: kc or k1 ;; t3: nr or n1 ;; Atd: left input matrix A-tilde (t1 * t2) ;; Bp: right input matrix B-packed (n * kc, transposed) ;; jr: target calculation of column at B & C ;; Caux: output sub-matrix (t1 * t3) (declare (optimize (speed 3) (safety 0)) (type fixnum mr t1 t2 t3 jr) (type (simple-array double-float (* *)) Atd Bp Caux)) (let ((t20 (min-factor t2 8))) (declare (type fixnum t20)) (do ((ir 0 (+ ir mr))) ((>= ir t1)) (declare (type fixnum ir)) (dotimes (i (min mr t1 (- t1 ir))) (let* ((iri (+ ir i)) (rmc (array-row-major-index Caux iri 0))) (declare (type fixnum iri rmc)) (dotimes (j t3) (let ((ia (array-row-major-index Atd iri 0)) (ib (array-row-major-index Bp (+ jr j) 0))) (declare (type fixnum ia ib)) (incf (row-major-aref Caux rmc) (+ (sum-dgebp-reg-ker t20 Atd ia Bp ib) (loop :for p :of-type fixnum :from t20 :below t2 :sum (* (row-major-aref Atd (+ ia p)) (row-major-aref Bp (+ ib p))) :into c :of-type double-float :finally (return c))))) (incf rmc))))))) (declaim (ftype (function (fixnum fixnum fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dgepp-blk1i)) (defun dgepp-blk1i (t1 t2 nr mr n ic Atd Bp C) "" ;; Args ;; t1: mc or m1 ;; t2: kc or k1 ;; nr: ncol of submatrix of Btilde ;; mr: nrow of submatrix of Atilde ;; n: ncol of B & C ;; ic: index from 0 to m ;; Atd: left input matrix A-tilde (t1 * t2) ;; Bp: right input matrix B-packed (n * kc, transposed) ;; C: output matrix (k * n) (declare (optimize (speed 3) (safety 0)) (type fixnum t1 t2 nr mr n ic) (type (simple-array double-float (* *)) Atd Bp C)) (flet ((incf-back-matrix (jr t1 t3 Caux C) (declare (optimize (speed 3) (safety 0)) (type fixnum jr t1 t3) (type (simple-array double-float (* *)) Caux C)) (dotimes (ii t1) (let ((rmc (array-row-major-index C (+ ic ii) jr)) (rmcaux (array-row-major-index Caux ii 0))) (declare (type fixnum rmc rmcaux)) (dotimes (jj t3) (incf (row-major-aref C rmc) (row-major-aref Caux rmcaux)) (incf rmc) (incf rmcaux)))))) (declare (inline incf-back-matrix)) (let* ((n0 (min-factor n nr)) (n1 (- n n0))) (declare (type fixnum n0 n1)) (unless (= n0 0) (do ((jr 0 (+ jr nr))) ((>= jr n0)) (let ((Caux (make-array (list t1 nr) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) Caux)) (dgebp-reg mr t1 t2 nr Atd Bp jr Caux) (incf-back-matrix jr t1 nr Caux C)))) (when (> n1 0) (let ((Caux (make-array (list t1 n1) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) Caux)) (dgebp-reg mr t1 t2 n1 Atd Bp n0 Caux) (incf-back-matrix n0 t1 n1 Caux C)))))) (declaim (ftype (function (fixnum fixnum fixnum fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dgepp-blk1)) (defun dgepp-blk1 (p mc t2 nr mr m n A Bp C) "Blocked GEPP" ;; Args ;; p: index ;; mc: nrow of Atd ;; t2: kc or k1 ;; nr: ncol of submatrix of Btilde ;; mr: nrow of submatrix of Atilde ;; m: nrow of A & C ;; n: ncol of B & C ;; A: left input matrix ;; Bp: right input matrix of n*kc (transposed) ;; C: output matrix (declare (optimize (speed 3) (safety 0)) (type fixnum p mc t2 nr mr m n) (type (simple-array double-float (* *)) A Bp C)) (let* ((m0 (min-factor m mc)) (m1 (- m m0))) (declare (type fixnum m0 m1)) (unless (= m0 0) (do ((ic 0 (+ ic mc))) ((>= ic m0)) (let ((Atd (make-array (list mc t2) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) Atd)) (copy-matrix-pd A ic mc p t2 Atd) (dgepp-blk1i mc t2 nr mr n ic Atd Bp C)))) (when (> m1 0) (let ((Atd (make-array (list m1 t2) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) Atd)) (copy-matrix-sd A m0 m1 p t2 Atd) (dgepp-blk1i m1 t2 nr mr n m0 Atd Bp C))))) (declaim (ftype (function (fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dgemm1)) (defun dgemm1 (mc kc nr mr A B C) "GEMM_VAR1" (declare (optimize (speed 3) (safety 0)) (type fixnum mc kc nr mr) (type (simple-array double-float (* *)) A B C)) (let* ((m (min (array-dimension A 0) (array-dimension C 0))) (k (min (array-dimension A 1) (array-dimension B 0))) (k0 (min-factor k kc)) (k1 (- k k0)) (n (min (array-dimension B 1) (array-dimension C 1))) (Bp (make-array (list n (min kc k)) :element-type 'double-float))) (declare (type fixnum m k k0 k1 n) (type (simple-array double-float (* *)) Bp)) (unless (= k0 0) (do ((p 0 (+ p kc))) ((>= p k0)) (declare (type fixnum p)) (copy-matrix-transpose-sd B p kc 0 n Bp) (dgepp-blk1 p mc kc nr mr m n A Bp C))) (when (> k1 0) (copy-matrix-transpose-sd B k0 k1 0 n Bp) (dgepp-blk1 k0 mc k1 nr mr m n A Bp C)))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (A B C) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) A B C)) ;; mc kc nr mr ;; m1 k1 n1 ;; t1 t2 t3 ; (dgemm1 128 1024 8 16 A B C)) (dgemm1 128 1020 8 16 A B C))
8,165
Common Lisp
.lisp
195
30.641026
72
0.495476
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
96c2efa7552c23204d54aeb635c5e9b187d7ab4e391407a166e6129ef4cc3972
20,959
[ -1 ]
20,960
mmmult_Goto.lisp
i-kiwamu_cl3a/src/mmmult_Goto.lisp
(in-package :cl-user) (defpackage cl3a.mmmult_Goto (:use :cl :alexandria :cl3a.utilities) (:export :gemm1 :gemm3 :dm*m)) (in-package :cl3a.mmmult_Goto) (declaim (ftype (function ((simple-array double-float (*)) fixnum) (sb-kernel:simd-pack double-float)) load2-sse-from-array)) (defun load2-sse-from-array (matv i) (declare (type (simple-array double-float (*)) matv) (type fixnum i)) (let ((x1 (row-major-aref matv i)) (x2 (row-major-aref matv (1+ i)))) (declare (type double-float x1 x2)) (sb-kernel:%make-simd-pack-double x1 x2))) (defmacro gebp-reg-ker (t2 Atd ia Bp ib cij) (with-gensyms (pp) `(progn (dotimes-unroll2 (,pp 0 ,t2) (incf ,cij (* (row-major-aref ,Atd ,ia) (row-major-aref ,Bp ,ib))) (incf ,ia) (incf ,ib)) ,cij))) (defmacro gebp-reg (eltype mr t1 t2 t3 Atd Bp jr Caux) "register-scale program of GEBP: Caux += Atd * Bp[ib]" ;; Args ;; mr: block size of row of A & C ;; t1: length of row of A = length of row of C ;; t2: length of column of A = length of row of B ;; t3: length of column of B = length of column of C ;; Atd: left input matrix A-tilde ;; Bp: right input matrix B-packed ;; jr: target calculation of column at B & C ;; Caux: output sub-matrix (with-gensyms (calc ir t4 i rmc j cij ia ib) `(flet ((,calc (,t2 ,Atd ,ia ,Bp ,ib ,cij) (declare (optimize (speed 3) (safety 0)) (type fixnum ,t2 ,ia ,ib) (type (simple-array ,eltype (* *)) ,Atd ,Bp) (type ,eltype ,cij)) (gebp-reg-ker ,t2 ,Atd ,ia ,Bp ,ib ,cij))) (dotimes-interval2 (,ir 0 ,t1) (,t4 ,mr) (dotimes (,i ,t4) (let ((,rmc (array-row-major-index ,Caux (+ ,ir ,i) 0))) (declare (type fixnum ,rmc)) (dotimes (,j ,t3) (let ((,cij (row-major-aref ,Caux ,rmc)) (,ia (array-row-major-index ,Atd (+ ,ir ,i) 0)) (,ib (array-row-major-index ,Bp (+ ,jr ,j) 0))) (declare (type ,eltype ,cij) (type fixnum ,ia ,ib)) (incf (row-major-aref ,Caux ,rmc) (,calc ,t2 ,Atd ,ia ,Bp ,ib ,cij)) (incf ,rmc))))))))) (macrolet ((define-gebp-reg (eltype) (let ((fname (symbolicate 'gebp-reg/ eltype))) `(progn (declaim (ftype (function (fixnum fixnum fixnum fixnum (simple-array ,eltype (* *)) (simple-array ,eltype (* *)) fixnum (simple-array ,eltype (* *)))) ,fname)) (defun ,fname (mr t1 t2 t3 Atd Bp jr Caux) (declare (optimize (speed 3) (safety 0)) (type fixnum mr t1 t2 t3 jr) (type (simple-array ,eltype (* *)) Atd Bp Caux)) (gebp-reg ,eltype mr t1 t2 t3 Atd Bp jr Caux)))))) (define-gebp-reg double-float) (define-gebp-reg long-float)) (defmacro gepp-blk1 (eltype p mc t2 nr mr m n A Bp C) "Blocked GEPP" ;; Args ;; p: index ;; mc: nrow of Atd ;; t2: kc ;; nr: ncol of submatrix of Btilde ;; mr: nrow of submatrix of Atilde ;; m: nrow of A & C ;; n: ncol of B & C ;; A: left input matrix ;; Bp: right input matrix of n*kc (transposed) ;; C: output matrix (let ((copy-matrix-eltype (symbolicate 'copy-matrix/ eltype)) (gebp-reg-eltype (symbolicate 'gebp-reg/ eltype))) (with-gensyms (ic t1 Atd jr t3 Caux ii rmc rmcaux jj) `(dotimes-interval2 (,ic 0 ,m) (,t1 ,mc) (let ((,Atd (make-array (list ,t1 ,t2) :element-type ',eltype))) (declare (type (simple-array ,eltype (* *)) ,Atd)) (,copy-matrix-eltype ,A ,ic ,t1 ,p ,t2 ,Atd) (dotimes-interval2 (,jr 0 ,n) (,t3 ,nr) (let ((,Caux (make-array (list ,t1 ,t3) :element-type ',eltype))) (declare (type (simple-array ,eltype (* *)) ,Caux)) (,gebp-reg-eltype ,mr ,t1 ,t2 ,t3 ,Atd ,Bp ,jr ,Caux) (dotimes (,ii ,t1) (let ((,rmc (array-row-major-index ,C (+ ,ic ,ii) ,jr)) (,rmcaux (array-row-major-index ,Caux ,ii 0))) (declare (type fixnum ,rmc ,rmcaux)) (dotimes (,jj ,t3) (incf (row-major-aref ,C ,rmc) (row-major-aref ,Caux ,rmcaux)) (incf ,rmc) (incf ,rmcaux))))))))))) (macrolet ((define-gepp-blk1 (eltype) (let ((fname (symbolicate 'gepp-blk1/ eltype))) `(progn (declaim (ftype (function (fixnum fixnum fixnum fixnum fixnum fixnum fixnum (simple-array ,eltype (* *)) (simple-array ,eltype (* *)) (simple-array ,eltype (* *)))) ,fname)) (defun ,fname (p mc t2 nr mr m n A Bp C) (declare (optimize (speed 3) (safety 0)) (type fixnum p mc t2 nr mr m n) (type (simple-array ,eltype (* *)) A Bp C)) (gepp-blk1 ,eltype p mc t2 nr mr m n A Bp C)))))) (define-gepp-blk1 double-float) (define-gepp-blk1 long-float)) (defmacro gemm1 (eltype mc kc nr mr A B C) "GEMM_VAR1" (let ((copy-tmatrix-eltype (symbolicate 'copy-matrix-transpose/ eltype)) (gepp-blk1-eltype (symbolicate 'gepp-blk1/ eltype))) (with-gensyms (m k n Bp p t2) `(let* ((,m (min (array-dimension ,A 0) (array-dimension ,C 0))) (,k (min (array-dimension ,A 1) (array-dimension ,B 0))) (,n (min (array-dimension ,B 1) (array-dimension ,C 1))) (,Bp (make-array (list ,n (min ,kc ,k)) :element-type ',eltype))) (declare (type fixnum ,m ,k ,n) (type (simple-array ,eltype (* *)) ,Bp)) (dotimes-interval2 (,p 0 ,k) (,t2 ,kc) (,copy-tmatrix-eltype ,B ,p ,t2 0 ,n ,Bp) (,gepp-blk1-eltype ,p ,mc ,t2 ,nr ,mr ,m ,n ,A ,Bp ,C)))))) (macrolet ((define-gemm1 (eltype) (let ((fname (symbolicate 'gemm1/ eltype))) `(progn (declaim (ftype (function (fixnum fixnum fixnum fixnum (simple-array ,eltype (* *)) (simple-array ,eltype (* *)) (simple-array ,eltype (* *)))) ,fname)) (defun ,fname (mc kc nr mr A B C) (declare (optimize (speed 3) (safety 0)) (type fixnum mc kc nr mr) (type (simple-array ,eltype (* *)) A B C)) (gemm1 ,eltype mc kc nr mr A B C)))))) (define-gemm1 double-float) (define-gemm1 long-float)) (declaim (ftype (function (fixnum fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) fixnum (simple-array double-float (* *)))) gebp-reg2) (inline gebp-reg2)) (defun gebp-reg2 (i mr t1 t2 t3 Atd Baux jr C) "kernel program of GEBP: Ci[ic] += Atd * Baux" ;; Args ;; i: row index ;; mr: block size of row of A & C ;; t1: length of row of A = length of row of C ;; t2: length of column of A = length of row of B ;; t3: length of column of B = length of column of C ;; Atd: left input matrix A-tilde ;; Baux: right input sub-matrix B ;; jr: target calculation of column at B & C ;; C: output packed-matrix (declare (optimize (speed 3) (safety 0)) (type fixnum i mr t1 t2 t3 jr) (type (simple-array double-float (* *)) Atd Baux C)) (dotimes-interval2 (ir 0 t1) (t4 mr) (dotimes (ii t4) (dotimes (jj t3) (let ((cij (aref C (the fixnum (+ i ir ii)) (+ jr jj))) (ia (array-row-major-index Atd (+ ir ii) 0)) (ib (array-row-major-index Baux jj 0))) (declare (type double-float cij) (type fixnum ia ib)) (dotimes-unroll2 (p 0 t2) (incf cij (* (row-major-aref Atd ia) (row-major-aref Baux ib))) (incf ia) (incf ib)) (setf (aref C (the fixnum (+ i ir ii)) (+ jr jj)) cij)))))) (declaim (ftype (function (fixnum fixnum fixnum fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) gepm-blk1)) (defun gepm-blk1 (i t1 kc nr mr k n A B C) "Blocked GEPM" ;; Args ;; i: row index ;; t1: mc ;; kc: ncol of Atd ;; mr: minimum panel size for GEBP ;; k: ncol of A and nrow of B ;; n: ncol of B and C ;; A: left input matrix ;; B: right input matrix ;; C: output matrix (declare (optimize (speed 3) (safety 0)) (type fixnum i t1 kc nr mr k n) (type (simple-array double-float (* *)) A B C)) (dotimes-interval2 (pc 0 k) (t2 kc) (let ((Atd (make-array (list t1 t2) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) Atd)) (copy-matrix/double-float A i t1 pc t2 Atd) (dotimes-interval2 (jr 0 n) (t3 nr) (let ((Baux (make-array (list t3 t2) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) Baux)) (copy-matrix-transpose/double-float B pc t2 jr t3 Baux) (gebp-reg2 i mr t1 t2 t3 Atd Baux jr C)))))) (declaim (ftype (function (fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) gemm3)) (defun gemm3 (mc kc nr mr A B C) "GEMM_VAR3" (declare (optimize (speed 3) (safety 0)) (type fixnum mc kc nr mr) (type (simple-array double-float (* *)) A B C)) (let* ((m (min (array-dimension A 0) (array-dimension C 0))) (k (min (array-dimension A 1) (array-dimension B 0))) (n (min (array-dimension B 1) (array-dimension C 1)))) (declare (type fixnum m k n)) (dotimes-interval2 (i 0 m) (t1 mc) (gepm-blk1 i t1 kc nr mr k n A B C)))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m)) (defun dm*m (A B C) (declare (optimize (speed 3) (safety 0)) (type (simple-array double-float (* *)) A B C)) (gemm1/double-float 128 1024 8 16 A B C)) ;; (gemm1 1024 32 4 512 A B C)) ;; (gemm1 256 512 8 2 A B C)) ;; (gemm1 12 4 2 2 A B C)) ;; (gemm3 512 256 4 4 A B C)) ;; (gemm3 1024 32 4 512 A B C)) ;; (gemm3 256 512 8 2 A B C)) ;; (gemm3 12 8 4 2 A B C))
11,639
Common Lisp
.lisp
265
31.8
74
0.492291
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0e32d51ebf32d42ca76013a271a21477efec5696033a2729c8f6e2dd1a760739
20,960
[ -1 ]
20,961
mvmult_vop.lisp
i-kiwamu_cl3a/src/mvmult_vop.lisp
(in-package :cl-user) (defpackage cl3a.mvmult_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :mvi2x4-pd :mvi2x8-pd)) (in-package :cl3a.mvmult_vop) (defknown mvi2x4-pd (fixnum fixnum fixnum (simple-array double-float (*)) (simple-array double-float (*))) (sb-kernel:simd-pack double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (defknown mvi2x8-pd (fixnum fixnum fixnum (simple-array double-float (*)) (simple-array double-float (*))) (sb-ext:simd-pack-256 double-float) (movable flushable always-translatable) :overwrite-fndb-silently t) (in-package :sb-vm) (progn (defmacro load-pd (ymm vector index &optional (offset 0)) `(inst vmovupd ,ymm (make-ea-for-float-ref ,vector ,index ,offset 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))))) (defmacro store-pd (ymm vector index &optional (offset 0)) `(inst vmovupd (make-ea-for-float-ref ,vector ,index ,offset 8 :scale (ash 2 (- word-shift n-fixnum-tag-bits))) ,ymm))) (define-vop (cl3a.mvmult_vop::mvi2x4-pd) (:translate cl3a.mvmult_vop::mvi2x4-pd) (:policy :fast-safe) (:args (k-ptr :scs (signed-reg) :target i1) (k0-ptr :scs (signed-reg) :target p) (i-ptr :scs (signed-reg)) (va :scs (descriptor-reg)) (vb :scs (descriptor-reg))) (:arg-types tagged-num tagged-num tagged-num simple-array-double-float simple-array-double-float) (:temporary (:sc signed-reg :from (:argument 0)) k) (:temporary (:sc signed-reg :from (:argument 1)) k0) (:temporary (:sc signed-reg :from (:argument 2)) i0) (:temporary (:sc signed-reg :from (:argument 2)) i1) (:temporary (:sc signed-reg :offset rcx-offset) p) (:temporary (:sc double-sse-reg :from (:argument 3)) xmm0) (:temporary (:sc double-sse-reg :from (:argument 3)) xmm1) (:temporary (:sc double-sse-reg :from (:argument 4)) xmm2) (:temporary (:sc double-sse-reg :from (:argument 4)) xmm3) (:temporary (:sc double-sse-reg :from (:argument 5)) xmm4) (:temporary (:sc double-sse-reg :from (:argument 5)) xmm5) (:results (xmm6 :scs (double-sse-reg))) (:result-types simd-pack-double) (:generator 34 (move k k-ptr) (move k0 k0-ptr) (move i0 i-ptr) (move i1 i-ptr) (inst add i1 k) (inst xor p p) (inst xorpd xmm6 xmm6 xmm6) LOOP (load-pd xmm4 vb p) (load-pd xmm5 vb p 2) (load-pd xmm0 va i0) (inst mulpd xmm0 xmm4) ; xmm0 = {va[i0] * vb[p], va[i0+1] * vb[p+1]} = {ab[i0p], ab[i0p+1]} (load-pd xmm1 va i0 2) (load-pd xmm2 va i1) (inst mulpd xmm1 xmm5) ; xmm1 = {va[i0+2] * vb[p+2], va[i0+3] * vb[p+3]} = {ab[i0p+2], ab[i0p+3]} (inst mulpd xmm2 xmm4) ; xmm2 = {va[i1] * vb[p], va[i1+1] * vb[p+1]} = {ab[i1p], ab[i1p+1]} (load-pd xmm3 va i1 2) (inst mulpd xmm3 xmm5) ; xmm3 = {va[i1+2] * vb[p+2], va[i1+3] * vb[p+3]} = {ab[i1p+2], ab[i1p+3]} (inst addpd xmm0 xmm1) ; xmm0 = {ab[i0p] + ab[i0p+2], ab[i0p+1] + ab[i0p+3]} (inst addpd xmm2 xmm3) ; xmm2 = {ab[i1p] + ab[i1p+2], ab[i1p+1] + ab[i1p+3]} (inst haddpd xmm0 xmm0) ; xmm0 = rep({ab[i0p:i0p+3]}, 2) (inst haddpd xmm2 xmm2) ; xmm2 = rep({ab[i1p:i1p+3]}, 2) (inst unpckhpd xmm2 xmm0) ; xmm2 = {ab[i0p:i0p+3], ab[i1p:i1p+3]} (inst addpd xmm6 xmm2) (inst add i0 4) (inst add i1 4) (inst add p 4) (inst cmp p k0) (inst jmp :b LOOP) DONE)) (define-vop (cl3a.mvmult_vop::mvi2x8-pd) (:translate cl3a.mvmult_vop::mvi2x8-pd) (:policy :fast-safe) (:args (k-ptr :scs (signed-reg) :target i1) (k0-ptr :scs (signed-reg) :target p) (i-ptr :scs (signed-reg)) (va :scs (descriptor-reg)) (vb :scs (descriptor-reg))) (:arg-types tagged-num tagged-num tagged-num simple-array-double-float simple-array-double-float) (:temporary (:sc signed-reg :from (:argument 0)) k) (:temporary (:sc signed-reg :from (:argument 1)) k0) (:temporary (:sc signed-reg :from (:argument 2)) i0) (:temporary (:sc signed-reg :from (:argument 2)) i1) (:temporary (:sc signed-reg :offset rcx-offset) p) (:temporary (:sc double-avx2-reg :from (:argument 3)) ymm0) (:temporary (:sc double-avx2-reg :from (:argument 3)) ymm1) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm2) (:temporary (:sc double-avx2-reg :from (:argument 4)) ymm3) (:temporary (:sc double-avx2-reg :from (:argument 5)) ymm4) (:temporary (:sc double-avx2-reg :from (:argument 5)) ymm5) (:temporary (:sc double-avx2-reg) ymm7) (:results (ymm6 :scs (double-avx2-reg))) (:result-types simd-pack-256-double) (:generator 34 (move k k-ptr) (move k0 k0-ptr) (move i0 i-ptr) (move i1 i-ptr) (inst add i1 k) (inst xor p p) (inst vxorpd ymm6 ymm6 ymm6) (inst vxorpd ymm7 ymm7 ymm7) LOOP (load-pd ymm4 vb p) (load-pd ymm5 vb p 4) (load-pd ymm0 va i0) (inst vfmadd231pd ymm6 ymm0 ymm4) ; ymm6 += {va[i0] * vb[p], va[i0+1] * vb[p+1], va[i0+2] * vb[p+2]. va[i0+3] * vb[p+3]} ; = {ab[i0p:i0p+3]} (load-pd ymm1 va i0 4) (load-pd ymm2 va i1) (inst vfmadd231pd ymm7 ymm2 ymm4) ; ymm7 += {ab[i1p:i1p+3]} (inst vfmadd231pd ymm6 ymm1 ymm5) ; ymm6 += {ab[i0p+4:i0p+7]} ; = {ab[i0p] + ab[i0p+4], ab[i0p+1] + ab[i0p+5], ; ab[i0p+2]+ ab[i0p+6], ab[i0p+3] + ab[i0p+7]} (load-pd ymm3 va i1 4) (inst vfmadd231pd ymm7 ymm3 ymm5) ; ymm7 = {ab[i1p] + ab[i1p+4], ab[i1p+1] + ab[i1p+5], ; ab[i1p+2]+ ab[i1p+6], ab[i1p+3] + ab[i1p+7]} (inst add i0 8) (inst add i1 8) (inst add p 8) (inst cmp p k0) (inst jmp :b LOOP) DONE (inst vhaddpd ymm6 ymm6 ymm7) ; ymm6 = {ab[i0p] + ab[i0p+1] + ab[i0p+4] + ab[i0p+5], ; ab[i1p] + ab[i1p+1] + ab[i1p+4] + ab[i1p+5], ; ab[i0p+2] + ab[i0p+3] + ab[i0p+6] + ab[i0p+7], ; ab[i1p+2] + ab[i1p+3] + ab[i1p+6] + ab[i1p+7]} )) (in-package :cl3a.mvmult_vop) (defun mvi2x4-pd (k k0 i va vb) (mvi2x4-pd k k0 i va vb)) (defun mvi2x8-pd (k k0 i va vb) (mvi2x8-pd k k0 i va vb))
6,316
Common Lisp
.lisp
150
36.08
124
0.581248
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c97f2c0c1aefd0f591670279c98c42756b7a43523e0b8e2aaa6eed6205d30e3a
20,961
[ -1 ]
20,962
naive-funcs.lisp
i-kiwamu_cl3a/t/naive-funcs.lisp
(in-package :cl-user) (defpackage naive-funcs (:use :cl :cl3a) (:nicknames naive) (:export :dv*v-naive :sv*v-naive :dnorm-naive :dv+v-naive :drotate-naive :dm*v-naive :dm*m-naive)) (in-package #:naive-funcs) (declaim (ftype (function ((vec double-float) (vec double-float)) double-float) dv*v-naive)) (defun dv*v-naive (va vb) (declare (type (vec double-float) va vb)) (let ((nv (min (vec-length va) (vec-length vb))) (res 0d0)) (declare (type fixnum nv)) (dotimes (i nv) (incf res (* (vecref va i) (vecref vb i)))) res)) (declaim (ftype (function ((simple-array single-float (*)) (simple-array single-float (*))) single-float) sv*v-naive)) (defun sv*v-naive (va vb) (declare (type (simple-array single-float (*)) va vb)) (let ((nv (min (length va) (length vb))) (res 0.0)) (declare (type fixnum nv)) (dotimes (i nv) (incf res (* (aref va i) (aref vb i)))) res)) (declaim (ftype (function ((vec double-float)) double-float) dnorm-naive)) (defun dnorm-naive (va) (declare (type (vec double-float) va)) (sqrt (dv*v-naive va va))) (declaim (ftype (function (double-float (simple-array double-float (*)) double-float (simple-array double-float (*)) (simple-array double-float (*)))) dv+v-naive)) (defun dv+v-naive (a va b vb vc) (declare (type (simple-array double-float (*)) va vb vc) (type double-float a b)) (let* ((nv (min (length va) (length vb)))) (dotimes (i nv) (setf (aref vc i) (+ (* a (aref va i)) (* b (aref vb i))))))) (declaim (ftype (function ((simple-array double-float (*)) (simple-array double-float (*)) (double-float -1d0 1d0) (double-float -1d0 1d0) (simple-array double-float (*)) (simple-array double-float (*)))) drotate-naive)) (defun drotate-naive (va vb c s vc vd) (declare (type (simple-array double-float (*)) va vb vc vd) (type (double-float -1d0 1d0) c s)) (let* ((nv (min (length va) (length vb)))) (declare (type fixnum nv)) (dotimes (i nv) (let ((vai (aref va i)) (vbi (aref vb i))) (declare (type double-float vai vbi)) (setf (aref vc i) (+ (* c vai) (* s vbi))) (setf (aref vd i) (- (* c vbi) (* s vai))))))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (*)) (simple-array double-float (*)))) dm*v-naive)) (defun dm*v-naive (ma vb res) (declare (type (simple-array double-float (* *)) ma) (type (simple-array double-float (*)) vb res)) (let* ((nr (array-dimension ma 0)) (nc (array-dimension ma 1))) (dotimes (i nr) (let ((resi (aref res i))) (declare (type double-float resi)) (dotimes (j nc) (incf resi (* (aref ma i j) (aref vb j)))) (setf (aref res i) resi))))) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (* *)) (simple-array double-float (* *)))) dm*m-naive)) (defun dm*m-naive (ma mb mc) (declare (type (simple-array double-float (* *)) ma mb mc)) (let ((nra (array-dimension ma 0)) (nv (min (array-dimension ma 1) (array-dimension mb 0))) (ncb (array-dimension mb 1))) (declare (type fixnum nra nv ncb)) (dotimes (i nra) (dotimes (k nv) (let ((maik (aref ma i k))) (declare (type double-float maik)) (dotimes (j ncb) (incf (aref mc i j) (* maik (aref mb k j)))))))))
4,044
Common Lisp
.lisp
102
29.333333
71
0.509929
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f18946faa739fd348e2ce2799044ee61166e6ad7f22f2c9f9fd02979a771e5f1
20,962
[ -1 ]
20,963
cl3a-test.lisp
i-kiwamu_cl3a/t/cl3a-test.lisp
(in-package :cl-user) (defpackage cl3a-test (:use :cl :rove :cl3a :naive)) (in-package #:cl3a-test) (defun equal-vector (va vb) (let* ((na (length va)) (nb (length vb)) (n (min na nb)) (test (= na nb))) (declare (type integer na nb n) (type boolean test)) (when test (block check (dotimes (i n) (let ((a (coerce (aref va i) 'single-float)) (b (coerce (aref vb i) 'single-float))) (when (/= a b) (setf test nil) (return-from check)))))) test)) (defun equal-matrix (ma mb) (let* ((nra (array-dimension ma 0)) (nrb (array-dimension mb 0)) (nca (array-dimension ma 1)) (ncb (array-dimension mb 1)) (nr (min nra nrb)) (nc (min nca ncb)) (test (and (= nra nrb) (= nca ncb)))) (declare (type integer nra nrb nca ncb nr nc) (type boolean test)) (when test (block check (dotimes (i nr) (dotimes (j nc) (let ((a (coerce (aref ma i j) 'single-float)) (b (coerce (aref mb i j) 'single-float))) (when (/= a b) ;; (when (> (abs (- a b)) 1d-6) (setf test nil) (return-from check))))))) test)) (deftest dotprod-test (defun ddotprod-test (n) (declare (type integer n)) (let ((va (make-vec-init n 'double-float)) (vb (make-vec-init n 'double-float))) (declare (type (vec double-float) va vb)) (dotimes (i n) (setf (vecref va i) (random 1d0)) (setf (vecref vb i) (random 1d0))) (values (coerce (dv*v va vb) 'single-float) (coerce (dv*v-naive va vb) 'single-float)))) (testing "dot product" (multiple-value-bind (res1 res2) (ddotprod-test 4999) (ok (= res1 res2))))) (defun sdotprod-test (n) (declare (type integer n)) (let ((va (make-array n :element-type 'single-float)) (vb (make-array n :element-type 'single-float))) (declare (type (simple-array single-float (*)) va vb)) (dotimes (i n) (setf (aref va i) (random 1.0)) (setf (aref vb i) (random 1.0))) (values (sv*v va vb) (sv*v-naive va vb)))) (deftest norm-test (defun dnorm-test (n) (declare (type integer n)) (let ((va (make-vec-init n 'double-float))) (declare (type (vec double-float) va)) (dotimes (i n) (setf (vecref va i) (random 1d0))) (values (coerce (dnorm va) 'single-float) (coerce (dnorm-naive va) 'single-float)))) (testing "normalized vector" (multiple-value-bind (res1 res2) (dnorm-test 4999) (ok (= res1 res2))))) (deftest add-test (defun dadd-test (n) (declare (type integer n)) (let ((va (make-array n :element-type 'double-float)) (vb (make-array n :element-type 'double-float)) (a (random 1d0)) (b (random 1d0)) (res1 (make-array n :element-type 'double-float)) (res2 (make-array n :element-type 'double-float))) (declare (type (simple-array double-float (*)) va vb res1 res2) (type double-float a b)) (dotimes (i n) (setf (aref va i) (random 1d0)) (setf (aref vb i) (random 1d0))) (values (dv+v a va b vb res1) (dv+v-naive a va b vb res2)))) (testing "adding two vector" (multiple-value-bind (res1 res2) (dadd-test 4999) (ok (equal-vector res1 res2))))) (deftest rotate-test (defun drotate-test (n) (declare (type integer n)) (let* ((va (make-array n :element-type 'double-float)) (vb (make-array n :element-type 'double-float)) (theta (coerce (random (* 2d0 pi)) 'double-float)) (c (cos theta)) (s (sin theta)) (res1c (make-array n :element-type 'double-float)) (res1d (make-array n :element-type 'double-float)) (res2c (make-array n :element-type 'double-float)) (res2d (make-array n :element-type 'double-float))) (declare (type (simple-array double-float (*)) va vb res1c res1d res2c res2d) (type double-float theta) (type (double-float -1d0 1d0) c s)) (dotimes (i n) (setf (aref va i) (random 1d0)) (setf (aref vb i) (random 1d0))) (drotate va vb c s res1c res1d) (drotate-naive va vb c s res2c res2d) (values res1c res2c res1d res2d))) (testing "rotating two vectors" (multiple-value-bind (res1c res2c res1d res2d) (drotate-test 4999) (ok (equal-vector res1c res2c)) (ok (equal-vector res1d res2d))))) (deftest m*v-test (defun dm*v-test (n) (declare (type integer n)) (let ((ma (make-array (list n n) :element-type 'double-float)) (vb (make-array n :element-type 'double-float)) (res1 (make-array n :element-type 'double-float)) (res2 (make-array n :element-type 'double-float))) (declare (type (simple-array double-float (* *)) ma) (type (simple-array double-float (*)) vb res1 res2)) (dotimes (i n) (dotimes (j n) (setf (aref ma i j) (random 1d0))) (setf (aref vb i) (random 1d0))) (dm*v ma vb res1) (dm*v-naive ma vb res2) (values res1 res2))) (testing "matrix-vector multiplication" (multiple-value-bind (res1 res2) (dm*v-test 499) (ok (equal-vector res1 res2))))) (deftest m*m-test (defun dm*m-test (n) (declare (type integer n)) (let ((ma (make-array (list n n) :element-type 'double-float)) (mb (make-array (list n n) :element-type 'double-float)) (res1 (make-array (list n n) :element-type 'double-float)) (res2 (make-array (list n n) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) ma mb res1 res2)) (dotimes (i n) (dotimes (j n) (setf (aref ma i j) (random 1d0)) (setf (aref mb i j) (random 1d0)))) (dm*m ma mb res1) (dm*m-naive ma mb res2) (values res1 res2))) (testing "matrix-matrix multiplication" (multiple-value-bind (res1 res2) (dm*m-test 3) (ok (equal-matrix res1 res2))) (multiple-value-bind (res1 res2) (dm*m-test 17) (ok (equal-matrix res1 res2))) (multiple-value-bind (res1 res2) (dm*m-test 1031) (ok (equal-matrix res1 res2)))))
6,600
Common Lisp
.lisp
174
29.166667
85
0.550874
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
e1e316f75d6162ea7bdcba0373ff529cb822deefdea91a61dab306fc5e0ebeb0
20,963
[ -1 ]
20,964
cl3a.asd
i-kiwamu_cl3a/cl3a.asd
(defsystem "cl3a" :description "Common Lisp Library of Linear Algebra" :version "0.4" :author "Kiwamu Ishikura" :license "GPL" :depends-on ("alexandria") :components ((:module "src" :components ((:file "cl3a" :depends-on ("typedef" "dotprod" "norm" "add_vector" ;; :depends-on ("dotprod" "norm" "add_vector" "rotate" "mvmult" "mmmult10")) (:file "typedef") (:file "utilities_vop") (:file "utilities" :depends-on ("utilities_vop")) ;; :depends-on ("typedef" "utilities_vop")) (:file "dotprod_vop") (:file "dotprod" ;; :depends-on ("utilities" "utilities_vop" "dotprod_vop")) :depends-on ("typedef" "utilities" "utilities_vop" "dotprod_vop")) (:file "norm" ;; :depends-on ("utilities" "dotprod")) :depends-on ("typedef" "utilities" "dotprod")) (:file "add_vector" :depends-on ("utilities" "utilities_vop")) ;; :depends-on ("typedef" "utilities" "utilities_vop")) (:file "rotate" :depends-on ("utilities" "utilities_vop")) ;; :depends-on ("typedef" "utilities" "utilities_vop")) (:file "mvmult_vop") (:file "mvmult" :depends-on ("utilities" "utilities_vop" "mvmult_vop")) ;; :depends-on ("typedef" "utilities" "utilities_vop" "mvmult_vop")) (:file "mmmult10_vop") (:file "mmmult10" :depends-on ("utilities" "mmmult10_vop"))))) ;; :depends-on ("typedef" "utilities" "mmmult10_vop"))))) :in-order-to ((test-op (test-op "cl3a/tests")))) (defsystem "cl3a/tests" :description "test for cl3a" :depends-on ("cl3a" "rove") :components ((:module "t" :components ((:file "cl3a-test" :depends-on ("naive-funcs")) (:file "naive-funcs")))) :perform (test-op (op c) (symbol-call :rove '#:run c)))
2,400
Common Lisp
.asd
47
32.617021
94
0.447469
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
30a5d927a18897e904b99020ba0c0fdd2ffa11a7a81228b6ff4300afa35408fe
20,964
[ -1 ]
20,965
bench-cl3a.ros
i-kiwamu_cl3a/bench/mvmult/bench-cl3a.ros
#!/bin/sh #|-*- mode:lisp -*-|# #| exec ros -Q -- $0 "$@" |# #+sbcl (sb-posix:chdir "../../") #+ccl (ccl:cwd "../") (ql:quickload "cl3a" :silent t) #+sbcl (sb-posix:chdir "./bench/mvmult") #+ccl (ccl:cwd "./bench/mvmult") (defun run-bench (n m) (declare (type fixnum n m)) (let ((ma (make-array (list n n) :element-type 'double-float)) (vb (make-array n :element-type 'double-float)) (vc (make-array n :element-type 'double-float))) (declare (type (simple-array double-float (* *)) ma) (type (simple-array double-float (*)) vb vc)) (dotimes (i n) (dotimes (j n) (setf (aref ma i j) (random 1d0))) (setf (aref vb i) (random 1d0))) (time (loop :repeat m :do (cl3a:dm*v ma vb vc))))) (defun main (n-str m-str &rest argv) (declare (ignorable argv)) (let ((n (parse-integer n-str)) (m (parse-integer m-str))) (declare (type fixnum n m)) ;#+sbcl (sb-profile:profile "CL3A" "CL3A.UTILITIES" "CL3A.MVMULT") (run-bench n m) ;#+sbcl (sb-profile:report) ;#+sbcl (sb-profile:unprofile) ))
1,084
Common Lisp
.cl
32
29.53125
70
0.586042
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
23f52bb6a383ec76b9721677906d092b0c6ff2475e9139e2e805beb4fc75e47d
20,965
[ -1 ]
20,966
bench-cl3a-512-1000.ros
i-kiwamu_cl3a/bench/mvmult/bench-cl3a-512-1000.ros
#!/bin/sh #|-*- mode:lisp -*-|# #| exec ros -Q -- $0 "$@" |# #+sbcl (sb-posix:chdir "../../") #+ccl (ccl:cwd "../") (ql:quickload "cl3a" :silent t) #+sbcl (sb-posix:chdir "./bench/mvmult") #+ccl (ccl:cwd "./bench/mvmult") (defun run-bench () (let ((ma (make-array (list 512 512) :element-type 'double-float)) (vb (make-array 512 :element-type 'double-float)) (vc (make-array 512 :element-type 'double-float))) (declare (type (simple-array double-float (512 512)) ma) (type (simple-array double-float (512)) vb vc)) (dotimes (i 512) (dotimes (j 512) (setf (aref ma i j) (random 1d0))) (setf (aref vb i) (random 1d0))) (time (loop :repeat 1000 :do (cl3a:dm*v ma vb vc))))) (defun main (&rest argv) (declare (ignorable argv)) ;#+sbcl (sb-profile:profile "CL3A" "CL3A.UTILITIES" "CL3A.MVMULT") (run-bench 512 1000) ;#+sbcl (sb-profile:report) ;#+sbcl (sb-profile:unprofile) ))
964
Common Lisp
.cl
28
30.178571
70
0.598925
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
9d1a5bdff47be55f4d6879f4c714f5c71f5181ec0b51e062c9b6c87a200b1753
20,966
[ -1 ]
20,967
bench-cl3a.ros
i-kiwamu_cl3a/bench/mmmult/bench-cl3a.ros
#!/bin/sh #|-*- mode:lisp -*-|# #| exec ros -Q -- $0 "$@" |# #+sbcl (sb-posix:chdir "../../") #+ccl (ccl:cwd "../") (ql:quickload "cl3a" :silent t) #+sbcl (sb-posix:chdir "./bench/mmmult") #+ccl (ccl:cwd "./bench/mmmult") (defun run-bench (n m) (declare (type fixnum n m)) (let ((ma (make-array (list n n) :element-type 'double-float)) (mb (make-array (list n n) :element-type 'double-float)) (mc (make-array (list n n) :element-type 'double-float))) (declare (type (simple-array double-float (* *)) ma mb mc)) (dotimes (i n) (dotimes (j n) (setf (aref ma i j) (random 1d0)) (setf (aref mb i j) (random 1d0)))) (time (loop :repeat m :do (cl3a:dm*m ma mb mc))))) (defun main (n-str m-str &rest argv) (declare (ignorable argv)) (let ((n (parse-integer n-str)) (m (parse-integer m-str))) (declare (type fixnum n m)) ;#+sbcl (sb-profile:profile "CL3A" "CL3A.UTILITIES" "CL3A.MMMULT") (run-bench n m) ;#+sbcl (sb-profile:report) ;#+sbcl (sb-profile:unprofile) ))
1,126
Common Lisp
.cl
34
27.176471
70
0.550645
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
4554a40f4edd3fdf985786008ee6c4db3eee196aa5aea5dfeef82b6afaf70051
20,967
[ -1 ]
20,968
bench-cl3a.ros
i-kiwamu_cl3a/bench/dotprod/bench-cl3a.ros
#!/bin/sh #|-*- mode:lisp -*-|# #| exec ros -Q -- $0 "$@" |# #+sbcl (sb-posix:chdir "../../") #+ccl (ccl:cwd "../") (ql:quickload "cl3a" :silent t) #+sbcl (sb-posix:chdir "./bench/dotprod") #+ccl (ccl:cwd "./bench/dotprod") (defun run-bench (n m) (declare (type fixnum n m)) (let ((va (cl3a:make-vec-init n 'double-float)) (vb (cl3a:make-vec-init n 'double-float))) (declare (type (cl3a:vec double-float) va vb)) (dotimes (i n) (setf (cl3a:vecref va i) (random 1d0)) (setf (cl3a:vecref vb i) (random 1d0))) (time (loop :repeat m :do (cl3a:dv*v va vb))))) (defun main (n-str m-str &rest argv) (declare (ignorable argv)) (let ((n (parse-integer n-str)) (m (parse-integer m-str))) (declare (type fixnum n m)) (run-bench n m)))
786
Common Lisp
.cl
25
27.96
51
0.590728
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
fecf71813f83c2854b9d0e03a3ca524194b897ff0c6e8669762a6e2f9e5811c6
20,968
[ -1 ]
20,970
qlfile.lock
i-kiwamu_cl3a/qlfile.lock
("quicklisp" . (:class qlot.source.ql:source-ql-all :initargs (:project-name "quicklisp" :%version :latest) :version "2018-04-30")) ("alexandria" . (:class qlot.source.ql:source-ql :initargs (:project-name "alexandria" :%version :latest) :version "ql-2019-01-07"))
275
Common Lisp
.l
8
32.125
58
0.700375
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
46fd5592aa554505c6783577d2f7a22cb2d9447e10909360137ce1a1e1b2f425
20,970
[ -1 ]
20,971
.travis.yml
i-kiwamu_cl3a/.travis.yml
language: common-lisp sudo: required env: global: - PATH=$HOME/.roswell/bin:$PATH - ROSWELL_INSTALL_DIR=$HOME/.roswell matrix: - LISP=sbcl-bin # - LISP=ccl-bin # - LISP=clisp # - LISP=abcl install: # Install Roswell - curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh | sh - ros install rove before_script: - ros --version - ros config script: - rove cl3a.asd
445
Common Lisp
.l
20
19.05
99
0.693587
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
d827a82b2422f044f82a6bf0e888be5a5115197b85736245ae5f3b6c513a02e2
20,971
[ -1 ]
21,001
bench-blas.f03
i-kiwamu_cl3a/bench/mvmult/bench-blas.f03
program main implicit none integer :: n, m character(len=20) :: argv call openblas_set_num_threads(1) call get_command_argument(1, argv) read (argv, *) n call get_command_argument(2, argv) read (argv, *) m call perf(n, m) end program main subroutine perf(n, m) implicit none integer, parameter :: dp = kind(0.d0) integer, intent(in) :: n, m real(dp) :: ma(n, n), vb(n), vx(n) integer :: i, t1, t2, t_rate, t_max, res call random_number(ma) call random_number(vb) call system_clock(t1) do i = 1, m call dgemv('n', n, n, 1.d0, ma, n, vb, 1, 1.d0, vx, 1) end do call system_clock(t2, t_rate, t_max) if (t2 < t1) then res = (t_max - t1) + t2 + 1 else res = t2 - t1 end if print "(A, I8, A, F10.6, A)", "Total elapsed time (" & & , m, " repeat): ", res / dble(t_rate), " sec." end subroutine perf
868
Common Lisp
.l
32
23.75
59
0.608434
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f81931781cbba0f92f5a07e8e09393f7363aef1d97a3410168270bf0f0acc292
21,001
[ -1 ]
21,002
Makefile
i-kiwamu_cl3a/bench/mvmult/Makefile
CLTARGET = bench-cl3a FTARGET = bench-blas CPPTARGET = bench-eigen ROS = ros FC = gfortran BLASINC = /usr/local/opt/openblas/include BLASLIB = /usr/local/opt/openblas/lib FFLAGS = -O3 -fimplicit-none -fbounds-check -lopenblas -L$(BLASLIB) -I$(BLASINC) CPP = clang++ EIGENINC = /usr/local/include/eigen3/ CPPFLAGS = -O3 -march=native -I$(EIGENINC) .PHONY: all all: $(CLTARGET) $(FTARGET) $(CPPTARGET) .SUFFIXES: .SUFFIXES: .ros $(CLTARGET): $(CLTARGET).ros $(ROS) build $< .SUFFIXES: .f03 $(FTARGET): $(FTARGET).f03 $(FC) $< -o $@ $(FFLAGS) .SUFFIXES: .cpp $(CPPTARGET): $(CPPTARGET).cpp $(CPP) $< -o $@ $(CPPFLAGS) .PHONY: clean clean: rm -f *.mod $(CLTARGET) $(FTARGET) $(CPPTARGET)
700
Common Lisp
.l
26
25.307692
80
0.697885
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f4320f606314b9d0f840dddeccad8b98b7ccf2bdacaa4f34abd000856c1a887e
21,002
[ -1 ]
21,005
bench-blas.f03
i-kiwamu_cl3a/bench/mmmult/bench-blas.f03
program main implicit none integer :: n, m character(len=20) :: argv call openblas_set_num_threads(1) call get_command_argument(1, argv) read (argv, *) n call get_command_argument(2, argv) read (argv, *) m call perf(n, m) end program main subroutine perf(n, m) implicit none integer, parameter :: dp = kind(0.d0) integer, intent(in) :: n, m real(dp) :: ma(n, n), mb(n, n), mc(n, n) integer :: i, t1, t2, t_rate, t_max, res call random_number(ma) call random_number(mb) call system_clock(t1) do i = 1, m call dgemm('n', 'n', n, n, n, 1.d0, ma, n, mb, n, 0.d0, mc, n) end do call system_clock(t2, t_rate, t_max) if (t2 < t1) then res = (t_max - t1) + t2 + 1 else res = t2 - t1 end if print "(A, I8, A, F10.6, A)", "Total elapsed time (" & & , m, " repeat): ", res / dble(t_rate), " sec." end subroutine perf
882
Common Lisp
.l
32
24.1875
67
0.603081
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f76fb9f899d95459c8799ee9d3552da37e53460b75f06914fc9482169c314f5e
21,005
[ -1 ]
21,006
Makefile
i-kiwamu_cl3a/bench/mmmult/Makefile
CLTARGET = bench-cl3a FTARGET = bench-blas CPPTARGET = bench-eigen ROS = ros FC = gfortran BLASINC = /usr/local/opt/openblas/include BLASLIB = /usr/local/opt/openblas/lib FFLAGS = -O3 -fimplicit-none -fbounds-check -lopenblas -L$(BLASLIB) -I$(BLASINC) CPP = clang++ EIGENINC = /usr/local/Cellar/eigen/3.3.4/include/eigen3/ CPPFLAGS = -O3 -march=native -I$(EIGENINC) .PHONY: all all: $(CLTARGET) $(FTARGET) $(CPPTARGET) .SUFFIXES: .SUFFIXES: .ros $(CLTARGET): $(CLTARGET).ros $(ROS) build $< .SUFFIXES: .f03 $(FTARGET): $(FTARGET).f03 $(FC) $< -o $@ $(FFLAGS) .SUFFIXES: .cpp $(CPPTARGET): $(CPPTARGET).cpp $(CPP) $< -o $@ $(CPPFLAGS) .PHONY: clean clean: rm -f *.mod $(CLTARGET) $(FTARGET) $(CPPTARGET)
719
Common Lisp
.l
26
26.038462
80
0.698972
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
62c07b1a6869ca42a23d9b3040b3ae2acb727b8986c9dffbdddd855386cf1f0e
21,006
[ -1 ]
21,008
bench-blas.f03
i-kiwamu_cl3a/bench/dotprod/bench-blas.f03
program main implicit none integer :: n, m character(len=20) :: argv call openblas_set_num_threads(1) call get_command_argument(1, argv) read (argv, *) n call get_command_argument(2, argv) read (argv, *) m call perf(n, m) end program main subroutine perf(n, m) implicit none integer, parameter :: dp = kind(0.d0) integer, intent(in) :: n, m real(dp), external :: ddot real(dp) :: va(n), vb(n), x integer :: i, t1, t2, t_rate, t_max, res call random_number(va) call random_number(vb) call system_clock(t1) do i = 1, m x = ddot(n, va, 1, vb, 1) end do call system_clock(t2, t_rate, t_max) if (t2 < t1) then res = (t_max - t1) + t2 + 1 else res = t2 - t1 end if print "(A, I8, A, F10.6, A)", "Total elapsed time (" & & , m, " repeat): ", res / dble(t_rate), " sec." end subroutine perf
859
Common Lisp
.l
33
22.727273
56
0.614355
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
35c3e083a4efe4c0b571e3069d7153389b74f0a5f6f3391a0fc46be5e002af2b
21,008
[ -1 ]
21,027
package.lisp
keithj_deoxybyte-unix/test/package.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the License, or ;;; (at your option) any later version. ;;; ;;; This program is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;; (defpackage :uk.co.deoxybyte-unix-test (:use #:common-lisp #:deoxybyte-unix #:lift) (:documentation "Deoxybyte Unix tests.") (:import-from #:deoxybyte-utilities #:invalid-argument-error) (:import-from #:deoxybyte-io #:with-tmp-pathname) (:export #:deoxybyte-unix-tests))
1,059
Common Lisp
.lisp
24
42.666667
73
0.73501
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
db7951196dc4c345d4d137e6893e600da4d9c1af842fb70b11f7d40692191d2b
21,027
[ -1 ]
21,028
deoxybyte-unix-test.lisp
keithj_deoxybyte-unix/test/deoxybyte-unix-test.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the License, or ;;; (at your option) any later version. ;;; ;;; This program is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;; (in-package :uk.co.deoxybyte-unix-test) (deftestsuite deoxybyte-unix-tests () ()) (defparameter *ascii-characters* (loop for i from 32 to 126 collect (code-char i))) (addtest (deoxybyte-unix-tests) file-descriptor/1 (with-tmp-pathname (tmpfile) (with-open-file (stream tmpfile :direction :output) (ensure (integerp (file-descriptor stream)))))) (addtest (deoxybyte-unix-tests) maybe-standard-stream/1 (ensure (equal "foo" (maybe-standard-stream "foo")))) (addtest (deoxybyte-unix-tests) maybe-standard-stream/2 (ensure (equal #P"foo" (maybe-standard-stream #P"foo")))) (addtest (deoxybyte-unix-tests) maybe-standard-stream/2 (ensure (equal *standard-input* (maybe-standard-stream "stdin"))) (ensure (equal *standard-output* (maybe-standard-stream "stdout"))) (ensure (equal *error-output* (maybe-standard-stream "stderr")))) (addtest (deoxybyte-unix-tests) mmap-wild-error/1 (let ((wild-path "/tmp/*")) (ensure (wild-pathname-p wild-path)) (ensure-condition invalid-argument-error (mmap wild-path)))) (addtest (deoxybyte-unix-tests) mmap-zero-length-error/1 (ensure-condition 'invalid-argument-error (mmap "/tmp/dummy" :length 0)) (ensure-condition 'invalid-argument-error (mmap "/tmp/dummy" :length -1))) (addtest (deoxybyte-unix-tests) mvector-zero-length-error/1 (ensure-condition invalid-argument-error (make-instance 'mapped-vector-ushort :length 0)) (ensure-condition invalid-argument-error (make-instance 'mapped-vector-ushort :length -1))) (addtest (deoxybyte-unix-tests) mvector-char-ops/1 (let ((vec (make-instance 'mapped-vector-char :length (length *ascii-characters*)))) (unwind-protect (progn (loop for i from 0 below (length-of vec) do (setf (mref vec i) (char-code (elt *ascii-characters* i)))) (let ((contents (loop for i from 0 below (length-of vec) collect (code-char (mref vec i))))) (ensure (equalp *ascii-characters* contents)))) (ensure (free-mapped-vector vec))))) (addtest (deoxybyte-unix-tests) mvector-ushort-ops/1 (let ((vec (make-instance 'mapped-vector-ushort :length (1- (expt 2 16))))) (unwind-protect (progn (loop for i from 0 below (length-of vec) do (setf (mref vec i) i)) (loop for i from 0 below (length-of vec) do (ensure (= i (mref vec i)))) ;; test incf specifically (loop for i from 0 below (length-of vec) do (incf (mref vec i))) (loop for i from 0 below (length-of vec) do (ensure (= (mref vec i) (1+ i))))) (ensure (free-mapped-vector vec))))) (addtest (deoxybyte-unix-tests) mvector-initial-element/1 (let ((vec1 (make-instance 'mapped-vector-ushort :length 100)) (vec2 (make-instance 'mapped-vector-ushort :length 100 :initial-element 1))) (unwind-protect (progn (loop for i from 0 below (length-of vec1) do (ensure (zerop (mref vec1 i)))) (loop for i from 0 below (length-of vec2) do (ensure (= 1 (mref vec2 i))))) (ensure (free-mapped-vector vec1)) (ensure (free-mapped-vector vec2))))) (addtest (deoxybyte-unix-tests) mvector-bounds-check/1 (let ((vec (make-instance 'mapped-vector-ushort :length 100))) (unwind-protect (progn (ensure (zerop (mref vec 0))) (ensure (zerop (mref vec 99))) (ensure-error (mref vec -1)) (ensure-error (mref vec 100)) (ensure-error (setf (mref vec -1) 99)) (ensure-error (setf (mref vec 100) 99))) (ensure (free-mapped-vector vec))))) (addtest (deoxybyte-unix-tests) mapped-index-error/1 (let ((vec (make-instance 'mapped-vector-ushort :length 100))) (unwind-protect (progn (ensure (zerop (mref vec 0))) (ensure (zerop (mref vec 99))) (ensure-condition mapped-file-error (mref vec -1)) (ensure-condition mapped-index-error (mref vec 100))) (ensure (free-mapped-vector vec))))) #+:sbcl (addtest (deoxybyte-unix-tests) mapped-type-error/1 (let ((vec (make-instance 'mapped-vector-ushort :length 100))) (unwind-protect (ensure-condition type-error (setf (mref vec 0) (expt 2 16))) (ensure (free-mapped-vector vec)))))
5,486
Common Lisp
.lisp
129
34.426357
77
0.616738
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
70b2d5c1384983d2e465c5c66ceb4d1acfc63c594917df0e6b322def1e1926de
21,028
[ -1 ]
21,029
package.lisp
keithj_deoxybyte-unix/src/package.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the License, or ;;; (at your option) any later version. ;;; ;;; This program is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;; (defpackage :uk.co.deoxybyte-unix-ffi (:use #:common-lisp #:cffi) (:nicknames #:deoxybyte-unix-ffi #:unix-ffi) (:export #:off-t #:size-t #:*c-error-number* #:seek-directive #:sysconf-arg #:c-close #:c-fileno #:c-lseek #:c-mkstemp #:c-mmap #:c-munmap #:c-open #:c-strerror #:c-sysconf #:c-write) (:documentation "The deoxybyte-unix-ffi package provides utility foreign functions to Unix via CFFI. This is a low-level FFI that does not provide a Lisp-style layer on top of the basic Unix functions. A small subset of Unix functionality is represented, with further functions being added as required.")) (defpackage :uk.co.deoxybyte-unix (:use #:common-lisp #:cffi #:deoxybyte-utilities #:deoxybyte-io #:deoxybyte-unix-ffi) (:nicknames #:deoxybyte-unix #:dxn) (:export ;; streams and file descriptors #:file-descriptor #:maybe-standard-stream ;; memory map #:mmap #:munmap #:mapped-file-error #:mapped-index-error #:mapped-file #:mapped-vector #:mapped-vector-char #:mapped-vector-uchar #:mapped-vector-short #:mapped-vector-ushort #:mapped-vector-int #:mapped-vector-uint #:mapped-vector-float #:mapped-vector-double #:mapped-vector-int32 #:mapped-vector-uint32 #:mapped-vector-int16 #:mapped-vector-uint16 #:mmap-area #:mmap-area-fd #:mmap-area-type #:mmap-area-size #:mmap-area-ptr #:mmap-area-live-p #:length #:filespec-of #:delete-policy-of #:length-of #:in-memory-p #:mref #:define-mapped-vector #:with-mapped-vector #:free-mapped-vector) (:documentation "The deoxybyte-unix package provides a Lisp style interface to the low level FFI in the :deoxybyte-unix-ffi package. Some, but not all, Lisp implementations provide a POSIX or Unix package. While deoxybyte-unix treads some well-worn ground in that respect, it should be portable to all Unix platforms supported by CFFI."))
2,747
Common Lisp
.lisp
91
27.10989
73
0.714717
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
8ddf115c1d0a939993e130605ca9282fb934ba31228ca866f44bda87cdf49c8c
21,029
[ -1 ]
21,030
memory-map.lisp
keithj_deoxybyte-unix/src/memory-map.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the License, or ;;; (at your option) any later version. ;;; ;;; This program is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;; (in-package :uk.co.deoxybyte-unix) (defstruct mmap-area "An aggregate of data used to describe an mmap operation. - fr: The mmap file descriptor. - type: The foreign type in the file being mmapped. - size: The size in bytes of the region mmapped. - ptr: The CFFI pointer returned by the mmap foreign function. - livep: A boolean value which is T if the file is currently mmapped, or NIL otherwise." (fd 0 :type fixnum) (type :char :type symbol) (size 0 :type fixnum) (ptr nil) (live-p nil :type boolean)) (defclass mapped-file () ((filespec :initform nil :initarg :filespec :reader filespec-of :documentation "A user-supplied pathname designator for the file to be mmapped, or NIL an automatically generated tmp file is to be used.") (delete-policy :initform nil :initarg :delete :reader delete-policy-of :documentation "A flag to indicate whether the file designated in the FILESPEC slot is to be deleted automatically when the mmapped file is freed. If an automatically generated tmp is to be used, the value of this slot is set to T.") (length :initform (error "A length argument is required.") :initarg :length :reader length-of :documentation "The length of the Lisp vector created when the file is mmapped.") (mmap-area :initform nil :initarg :mmap-area :documentation "The mmap-area. This slot symbol is exported to allow direct access without method dispatch. This is significantly faster, at least on SBCL."))) (defclass mapped-vector (mapped-file) () (:documentation "A vector backed by a mapped file.")) (defgeneric munmap (mapped-file) (:documentation "Frees the mapped memory used by MAPPED-FILE and closes the underlying file descriptor.")) (defgeneric in-memory-p (mapped-file) (:documentation "Returns T if MAPPED-FILE is mapped into memory, or NIL otherwise.")) (defgeneric mref (mapped-vector index) (:documentation "Returns the value at INDEX in MAPPED-VECTOR.")) (defgeneric (setf mref) (value mapped-vector index) (:documentation "Sets VALUE at INDEX in MAPPED-VECTOR.")) (defgeneric free-mapped-vector (mapped-vector) (:documentation "Frees the mapped memory used by MAPPED-VECTOR.")) (defun mmap (filespec &key (length 0) (foreign-type :char) (protection '(:shared))) "Maps a file into memory. Arguments: - filespec (pathname designator): The file to be mmapped. Key: - length (fixnum): The length of the Lisp vector created when the file is mmapped. - foreign-type (symbol): The foreign type of the elements to be stored in the vector. - protection (list symbol): The memory protection keyword flags used in the mmap operation. Returns: - A pointer." (check-arguments (not (wild-pathname-p filespec)) (filespec) "must be a non-wild path") (check-arguments (and (integerp length) (plusp length)) (length) "must be a positive integer") (let ((fd (c-open (pathstring filespec) '(:rdwr) #o644)) (fsize (* length (foreign-type-size foreign-type))) (offset 0)) (when (= -1 fd) (error 'mapped-file-error :mapped-file filespec :text (c-strerror *c-error-number*))) (let ((ptr (c-mmap (null-pointer) fsize '(:read :write) protection fd offset))) (when (null-pointer-p ptr) (error 'mapped-file-error :mapped-file filespec :text (c-strerror *c-error-number*))) (make-instance 'mapped-file :length length :mmap-area (make-mmap-area :fd (enlarge-file fd fsize) :type foreign-type :size fsize :ptr ptr :live-p t))))) (defmethod print-object ((mapped-file mapped-file) stream) (print-unreadable-object (mapped-file stream :type t :identity t) (with-accessors ((filespec filespec-of) (length length-of)) mapped-file (with-slots ((area mmap-area)) mapped-file (format stream "~@[~a ~]~a ~d elements, ~d bytes" filespec (mmap-area-type area) length (mmap-area-size area)))))) (defmethod print-object ((mapped-vector mapped-vector) stream) (print-unreadable-object (mapped-vector stream :type t :identity t) (with-accessors ((filespec filespec-of) (length length-of)) mapped-vector (with-slots ((area mmap-area)) mapped-vector (format stream "~@[~a ~]~a ~d elements, ~d bytes" filespec (mmap-area-type area) length (mmap-area-size area)))))) (defmethod in-memory-p ((obj mapped-file)) (with-slots ((area mmap-area)) obj (mmap-area-live-p area))) (defmethod munmap ((obj mapped-file)) (with-slots ((area mmap-area)) obj (when (mmap-area-live-p area) (when (= -1 (c-munmap (mmap-area-ptr area) (mmap-area-size area))) (error 'mapped-file-error :mapped-file (filespec-of obj) :text (c-strerror *c-error-number*))) (when (= -1 (c-close (mmap-area-fd area))) (error 'mapped-file-error :mapped-file (filespec-of obj) :text (c-strerror *c-error-number*))) (setf (mmap-area-live-p area) nil) t))) (defmethod free-mapped-vector ((vector mapped-vector)) (prog1 (munmap vector) (with-slots (filespec (deletep delete-policy)) vector (when (and filespec deletep) (delete-file filespec))))) (defmethod mref :before ((vector mapped-vector) (index fixnum)) (%vector-bounds-check vector index)) (defmethod (setf mref) :before (value (vector mapped-vector) (index fixnum)) (declare (ignore value)) (%vector-bounds-check vector index)) (defmacro define-mapped-vector (name foreign-type &optional docstring) "Defines a mapped vector class NAME, with accompanying accessor methods ( {defmethod mref} ), specialized to store elements of FOREIGN-TYPE." `(progn (defclass ,name (mapped-vector) () (:documentation ,(or docstring (format nil "A mapped vector of ~a." foreign-type)))) (defmethod initialize-instance :after ((vector ,name) &key (initial-element 0 init-elem-p)) (with-slots (filespec (deletep delete-policy) length mmap-area) vector (check-arguments (and (integerp length) (plusp length)) (length) "must be a positive integer") (let* ((file-exists (and filespec (probe-file filespec))) (fsize (* length (foreign-type-size ,foreign-type))) (offset 0) (fd (cond (file-exists (c-open (pathstring filespec) '(:rdwr) #o644)) (filespec (c-open (pathstring (ensure-file-exists filespec)) '(:rdwr) #o644)) (t (with-foreign-string (s (unix-tmpfile-template)) (prog1 (c-mkstemp s) (setf filespec (foreign-string-to-lisp s) deletep t))))))) (when (= -1 fd) (error 'mapped-file-error :mapped-file filespec :text (c-strerror *c-error-number*))) (let ((ptr (c-mmap (null-pointer) fsize '(:read :write) '(:shared) fd offset))) (when (null-pointer-p ptr) (error 'mapped-file-error :mapped-file filespec :text (c-strerror *c-error-number*))) (unless (and file-exists (not init-elem-p)) (enlarge-file fd fsize) (loop for i from 0 below length do (setf (mem-aref ptr ,foreign-type i) initial-element))) (setf mmap-area (make-mmap-area :fd fd :type ,foreign-type :size fsize :ptr ptr :live-p t))))) vector) ;; Allow safety 0 for reading (defmethod mref ((vector ,name) (index fixnum)) (declare (optimize (speed 3) (safety 0))) (with-slots ((area mmap-area)) vector (mem-aref (mmap-area-ptr area) ,foreign-type index))) ;; Use safety 1 to keep the type check on SBCL (defmethod (setf mref) (value (vector ,name) (index fixnum)) (declare (optimize (speed 3) (safety 1))) (with-slots ((area mmap-area)) vector (declare (type fixnum index)) (setf (mem-aref (mmap-area-ptr area) ,foreign-type index) value))))) (define-mapped-vector mapped-vector-char :char) (define-mapped-vector mapped-vector-uchar :unsigned-char) (define-mapped-vector mapped-vector-short :short) (define-mapped-vector mapped-vector-ushort :unsigned-short) (define-mapped-vector mapped-vector-int :int) (define-mapped-vector mapped-vector-uint :unsigned-int) (define-mapped-vector mapped-vector-float :float) (define-mapped-vector mapped-vector-double :double) (define-mapped-vector mapped-vector-int16 :int16) (define-mapped-vector mapped-vector-uint16 :uint16) (define-mapped-vector mapped-vector-int32 :int32) (define-mapped-vector mapped-vector-uint32 :uint32) (defmacro with-mapped-vector ((var class &rest initargs) &body body) "Executes BODY in the context of a newly instantiated {defclass mapped-vector} object of CLASS bound to VAR. The vector is safely munmapped after use." `(let ((,var (make-instance ,class ,@initargs))) (unwind-protect (progn ,@body) (free-mapped-vector ,var)))) (declaim (inline %vector-bounds-check)) (defun %vector-bounds-check (vector index) "Performs a bounds check on INDEX with respect to LENGTH. Returns T if 0 <= INDEX < LENGTH, or raises an error otherwise." (declare (optimize (speed 3))) (with-slots (length) vector (declare (type fixnum index length)) (unless (< -1 index length) (error 'mapped-index-error :mapped-file vector :index index :text "index out of bounds"))) t) (defun enlarge-file (fd fsize) "Enlarges the open file designated by Unix file descriptor FD to FSIZE bytes." (when (= -1 (c-lseek fd fsize :seek-set)) (error (c-strerror *c-error-number*))) (when (= -1 (c-write fd "" 1)) (error (c-strerror *c-error-number*))) fd) (defun unix-tmpfile-template () "Returns a new temporary file template string suitable for the C mkstemp function. The template is merged with *default-tmpfile-defaults* to supply the directory component." (pathstring (merge-pathnames (make-pathname :name "deoxybyte-unix-XXXXXX") *default-tmpfile-defaults*)))
12,057
Common Lisp
.lisp
265
36.022642
80
0.614783
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
1b864692003c8f3651217b1ce064c24bb6a2e1e191996b1e9319f50047ba9bc8
21,030
[ -1 ]
21,031
ccl.lisp
keithj_deoxybyte-unix/src/ccl.lisp
;;; ;;; Copyright (c) 2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the License, or ;;; (at your option) any later version. ;;; ;;; This program is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;; (in-package :uk.co.deoxybyte-unix) (defun file-descriptor (stream &optional direction) "Returns the Unix file descriptor associated with STREAM." (cond (direction (ccl:stream-device stream direction)) ((and (input-stream-p stream) (not (output-stream-p stream))) (ccl:stream-device stream :input)) ((and (output-stream-p stream) (not (input-stream-p stream))) (ccl:stream-device stream :output)) (t (check-arguments nil (direction) "no direction was specified"))))
1,304
Common Lisp
.lisp
29
41.655172
74
0.710692
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
d331180d8adf178d01f37c3c1ca1b70b41093024c1e0c16fe60f61564b8e3e8f
21,031
[ -1 ]
21,032
conditions.lisp
keithj_deoxybyte-unix/src/conditions.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the License, or ;;; (at your option) any later version. ;;; ;;; This program is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;; (in-package :uk.co.deoxybyte-unix) (define-condition mapped-file-error (error simple-text-condition) ((mapped-file :initarg :mapped-file :reader mapped-file-of :documentation "The mapped file where the error occurred.")) (:report (lambda (condition stream) (format stream "mmap error in ~a~@[: ~a~]" (mapped-file-of condition) (message-of condition)))) (:documentation "An error that is raised during an operation on a mmapped file.")) (define-condition mapped-index-error (mapped-file-error) ((index :initform nil :initarg :index :reader index-of :documentation "The index that caused the error.")) (:report (lambda (condition stream) (format stream "mmap error in ~a~@[: ~a~]" (mapped-file-of condition) (message-of condition)))) (:documentation "An error that is raised during an index operation on a mmapped file."))
1,743
Common Lisp
.lisp
38
41.052632
76
0.688014
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
30c745d8890f9d6adaf5bdbfd7758639da5d276a1451ab0d0daa15aadd923a02
21,032
[ -1 ]