-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlem-images-sprite.js
1302 lines (1301 loc) · 124 KB
/
lem-images-sprite.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Copyright 2011 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @fileoverview Lem doodle: Images in sprites.
*
* @author sfdimino@google.com (Sophia Foster-Dimino) – graphics/animation
* @author mwichary@google.com (Marcin Wichary) – code
* @author jdtang@google.com (Jonathan Tang)
* @author khom@google.com (Kristopher Hom)
*/
/**
* A list of all the image ids and their places in individual sprites.
* This is AUTO-GENERATED by the spriter.
* @const
*/
engine.IMAGE_SPRITE_INFO = {
'background/sky-3-1': { width: 840, height: 16, x: 0, y: 0 },
'background/sky-3-2': { width: 840, height: 13, x: 842, y: 0 },
'background/sky-3-3': { width: 840, height: 14, x: 0, y: 18 },
'background/sky-4-1': { width: 840, height: 17, x: 842, y: 18 },
'background/sky-4-2': { width: 840, height: 17, x: 0, y: 37 },
'background/sky-4-3': { width: 840, height: 16, x: 842, y: 37 },
'background/sky-5-1': { width: 840, height: 19, x: 0, y: 56 },
'background/sky-5-2': { width: 840, height: 22, x: 842, y: 56 },
'background/sky-5-3': { width: 840, height: 22, x: 0, y: 80 },
'background/sky-6-1': { width: 840, height: 23, x: 842, y: 80 },
'background/sky-6-2': { width: 840, height: 22, x: 0, y: 105 },
'background/sky-6-3': { width: 840, height: 22, x: 842, y: 105 },
'ui/loading': { top: 4, width: 353, height: 193, x: 0, y: 129 },
'background/mask-big-left': { width: 7, height: 575, x: 355, y: 129 },
'background/mask-big-right': { width: 6, height: 575, x: 364, y: 129 },
'background/mask-small-left': { width: 37, height: 575, x: 372, y: 129 },
'background/mask-small-right': { width: 36, height: 575, x: 411, y: 129 },
'ui/loading-progress-bar': { right: 2, width: 66, height: 24, x: 449, y: 129 },
'bird/body': { width: 11, height: 27, x: 517, y: 129 },
'bird/wing-l-1': { top: 1, bottom: 1, width: 8, height: 17, x: 530, y: 129 },
'bird/wing-l-2': { bottom: 2, width: 8, height: 17, x: 540, y: 129 },
'bird/wing-l-3': { bottom: 2, width: 8, height: 17, x: 550, y: 129 },
'bird/wing-l-4': { top: 1, bottom: 1, width: 8, height: 17, x: 560, y: 129 },
'bird/wing-l-5': { top: 2, width: 8, height: 17, x: 570, y: 129 },
'bird/wing-l-6': { top: 3, width: 8, height: 16, x: 580, y: 129 },
'bird/wing-r-1': { top: 1, bottom: 1, width: 8, height: 17, x: 590, y: 129 },
'bird/wing-r-2': { bottom: 2, width: 8, height: 17, x: 600, y: 129 },
'bird/wing-r-3': { bottom: 2, width: 8, height: 17, x: 610, y: 129 },
'bird/wing-r-4': { top: 1, bottom: 1, width: 8, height: 17, x: 620, y: 129 },
'bird/wing-r-5': { top: 2, width: 8, height: 17, x: 630, y: 129 },
'bird/wing-r-6': { top: 3, width: 8, height: 16, x: 640, y: 129 },
'bird/antennae-1': { right: 1, width: 14, height: 8, x: 650, y: 129 },
'bird/antennae-2': { width: 15, height: 8, x: 666, y: 129 },
'bird/antennae-3': { top: 1, width: 15, height: 7, x: 683, y: 129 },
'bird/antennae-4': { top: 2, width: 15, height: 6, x: 700, y: 129 },
'bird/antennae-5': { top: 1, width: 15, height: 7, x: 717, y: 129 },
'bird/antennae-6': { width: 15, height: 8, x: 734, y: 129 },
'bird/eyes': { width: 8, height: 4, x: 751, y: 129 },
'mouse-pointer/normal-black-1': { left: 3, top: 5, bottom: 1, right: 1, width: 28, height: 30, x: 761, y: 129 },
'mouse-pointer/normal-black-2': { left: 4, top: 5, bottom: 1, right: 2, width: 26, height: 30, x: 791, y: 129 },
'mouse-pointer/normal-black-3': { left: 4, top: 4, bottom: 1, right: 3, width: 25, height: 31, x: 819, y: 129 },
'mouse-pointer/normal-white-1': { left: 4, top: 4, bottom: 1, right: 3, width: 25, height: 31, x: 846, y: 129 },
'mouse-pointer/normal-white-2': { left: 4, top: 5, bottom: 1, right: 2, width: 26, height: 30, x: 873, y: 129 },
'mouse-pointer/normal-white-3': { left: 4, top: 4, bottom: 1, right: 3, width: 25, height: 31, x: 901, y: 129 },
'mouse-pointer/hover-1': { left: 2, top: 3, bottom: 3, right: 2, width: 28, height: 37, x: 928, y: 129 },
'mouse-pointer/hover-2': { left: 3, top: 3, bottom: 4, right: 1, width: 28, height: 36, x: 958, y: 129 },
'mouse-pointer/hover-3': { left: 2, top: 2, bottom: 4, right: 1, width: 29, height: 37, x: 988, y: 129 },
'mouse-pointer/click': { top: 6, bottom: 4, width: 32, height: 33, x: 1019, y: 129 },
'mouse-pointer/wait-1': { left: 4, top: 3, width: 28, height: 34, x: 1053, y: 129 },
'mouse-pointer/wait-2': { left: 4, top: 3, bottom: 1, width: 28, height: 33, x: 1083, y: 129 },
'mouse-pointer/wait-3': { left: 4, top: 3, bottom: 1, right: 2, width: 26, height: 33, x: 1113, y: 129 },
'ui/toolbar-wait-1': { width: 19, height: 20, x: 1141, y: 129 },
'ui/toolbar-wait-2': { width: 19, height: 20, x: 1162, y: 129 },
'ui/toolbar-wait-3': { width: 19, height: 20, x: 1183, y: 129 },
'ui/toolbar-wait-4': { width: 19, height: 20, x: 1204, y: 129 },
'ui/toolbar-wait-5': { width: 19, height: 20, x: 1225, y: 129 },
'ui/toolbar-wait-6': { width: 19, height: 20, x: 1246, y: 129 },
'ui/toolbar-wait-7': { width: 19, height: 20, x: 1267, y: 129 },
'ui/toolbar-wait-8': { width: 19, height: 20, x: 1288, y: 129 },
'ui/button-ffwd': { width: 18, height: 16, x: 1309, y: 129 },
'ui/button-ffwd-press-1': { top: 1, bottom: 1, right: 1, width: 17, height: 14, x: 1329, y: 129 },
'ui/button-ffwd-press-2': { top: 1, bottom: 1, right: 2, width: 16, height: 14, x: 1348, y: 129 },
'ui/button-tooltip': { width: 14, height: 25, x: 1366, y: 129 },
'ui/button-tooltip-press-1': { top: 1, width: 14, height: 24, x: 1382, y: 129 },
'ui/button-tooltip-press-2': { top: 1, width: 14, height: 24, x: 1398, y: 129 },
'ui/tooltip-arm': { width: 67, height: 270, x: 1414, y: 129 },
'ui/tooltip-hand': { width: 40, height: 69, x: 1483, y: 129 },
'ui/tooltip-hand-push': { width: 40, height: 66, x: 1525, y: 129 },
'ui/tooltip-flag': { width: 300, height: 480, x: 1567, y: 129 },
'ui/tooltip-cloud': { width: 360, height: 355, x: 0, y: 706 },
'logo': { bottom: 5, width: 304, height: 130, x: 362, y: 706 },
'intro-finale/books': { width: 28, height: 25, x: 668, y: 706 },
'intro-finale/easel': { width: 56, height: 102, x: 698, y: 706 },
'intro-finale/charging-station': { width: 25, height: 34, x: 756, y: 706 },
'intro-finale/stuff-1': { width: 25, height: 15, x: 783, y: 706 },
'intro-finale/stuff-2': { width: 39, height: 18, x: 810, y: 706 },
'intro-finale/stuff-3': { width: 10, height: 8, x: 851, y: 706 },
'intro-finale/stuff-4': { width: 18, height: 12, x: 863, y: 706 },
'intro-finale/stuff-5': { width: 18, height: 6, x: 883, y: 706 },
'intro-finale/stuff-6': { width: 40, height: 34, x: 903, y: 706 },
'intro-finale/stuff-7': { width: 32, height: 19, x: 945, y: 706 },
'intro-finale/stuff-8': { width: 68, height: 24, x: 979, y: 706 },
'intro-finale/stuff-9': { width: 17, height: 11, x: 1049, y: 706 },
'intro-finale/stuff-10': { width: 47, height: 39, x: 1068, y: 706 },
'intro-finale/stuff-11': { width: 43, height: 37, x: 1117, y: 706 },
'intro-finale/start-button': { width: 32, height: 28, x: 1162, y: 706 },
'intro-finale/start-button-press-1': { width: 32, height: 28, x: 1196, y: 706 },
'intro-finale/start-button-press-2': { width: 32, height: 28, x: 1230, y: 706 },
'trurl/sitting': { left: 7, top: 22, right: 4, width: 49, height: 91, x: 1264, y: 706 },
'trurl/sitting-down-1': { width: 48, height: 105, x: 1315, y: 706 },
'trurl/sitting-down-2': { width: 53, height: 93, x: 1365, y: 706 },
'trurl/sitting-down-3': { width: 45, height: 93, x: 1420, y: 706 },
'trurl/sitting-down-4': { width: 45, height: 94, x: 1467, y: 706 },
'trurl/looking-away-right': { width: 52, height: 104, x: 1514, y: 706 },
'trurl/looking-away-right-tap-1': { left: 6, right: 10, width: 48, height: 105, x: 1568, y: 706 },
'trurl/looking-away-right-tap-2': { left: 6, right: 1, width: 57, height: 105, x: 1618, y: 706 },
'trurl/looking-away-right-tap-3': { left: 6, width: 58, height: 105, x: 1677, y: 706 },
'trurl/looking-away-right-tap-4': { left: 6, right: 8, width: 50, height: 105, x: 1737, y: 706 },
'trurl/looking-away-left': { width: 52, height: 104, x: 1789, y: 706 },
'trurl/looking-away-left-tap-1': { left: 10, right: 6, width: 48, height: 105, x: 1843, y: 706 },
'trurl/looking-away-left-tap-2': { left: 1, right: 6, width: 57, height: 105, x: 1893, y: 706 },
'trurl/looking-away-left-tap-3': { right: 6, width: 58, height: 105, x: 0, y: 1063 },
'trurl/looking-away-left-tap-4': { left: 8, right: 6, width: 50, height: 105, x: 60, y: 1063 },
'trurl/looking-right': { width: 40, height: 107, x: 112, y: 1063 },
'trurl/looking-left': { width: 40, height: 107, x: 154, y: 1063 },
'trurl/looking-up': { width: 51, height: 105, x: 196, y: 1063 },
'trurl/walk-1': { top: 5, bottom: 3, width: 52, height: 109, x: 249, y: 1063 },
'trurl/walk-2': { left: 5, top: 12, bottom: 1, right: 9, width: 38, height: 104, x: 303, y: 1063 },
'trurl/walk-3': { left: 7, top: 5, right: 8, width: 37, height: 112, x: 343, y: 1063 },
'trurl/walk-4': { left: 6, right: 5, width: 41, height: 117, x: 382, y: 1063 },
'trurl/walk-5': { top: 5, bottom: 2, width: 52, height: 110, x: 425, y: 1063 },
'trurl/walk-6': { left: 5, top: 12, bottom: 1, right: 8, width: 39, height: 104, x: 479, y: 1063 },
'trurl/walk-7': { left: 7, top: 5, right: 7, width: 38, height: 112, x: 520, y: 1063 },
'trurl/walk-8': { left: 6, right: 3, width: 43, height: 117, x: 560, y: 1063 },
'background/mountain-1': { width: 548, height: 130, x: 605, y: 1063 },
'background/mountain-2': { width: 773, height: 81, x: 1155, y: 1063 },
'trurl-thought-cloud/disassemble-1': { top: 66, bottom: 14, right: 11, width: 227, height: 207, x: 0, y: 0 },
'trurl-thought-cloud/disassemble-2': { top: 59, bottom: 14, right: 11, width: 227, height: 214, x: 229, y: 0 },
'trurl-thought-cloud/disassemble-3': { top: 46, bottom: 14, right: 11, width: 227, height: 227, x: 458, y: 0 },
'trurl-thought-cloud/disassemble-4': { top: 35, bottom: 14, right: 11, width: 227, height: 238, x: 687, y: 0 },
'trurl-thought-cloud/disassemble-5': { top: 27, bottom: 14, right: 11, width: 227, height: 246, x: 916, y: 0 },
'trurl-thought-cloud/disassemble-6': { left: 8, top: 20, bottom: 24, right: 27, width: 203, height: 243, x: 1145, y: 0 },
'trurl-thought-cloud/disassemble-7': { left: 42, top: 15, bottom: 35, right: 28, width: 168, height: 237, x: 1350, y: 0 },
'trurl-thought-cloud/disassemble-8': { left: 40, top: 12, bottom: 70, right: 22, width: 176, height: 205, x: 1520, y: 0 },
'trurl-thought-cloud/disassemble-9': { left: 38, top: 9, bottom: 69, right: 18, width: 182, height: 209, x: 1698, y: 0 },
'trurl-thought-cloud/disassemble-10': { left: 37, top: 8, bottom: 68, right: 16, width: 185, height: 211, x: 0, y: 248 },
'bird/parts-connectors': { left: 13, top: 9, bottom: 15, right: 16, width: 36, height: 17, x: 187, y: 248 },
'bird/parts-eyes': { left: 17, top: 9, bottom: 14, right: 22, width: 26, height: 18, x: 225, y: 248 },
'bird/parts-connectors-eyes': { left: 9, top: 8, bottom: 10, right: 16, width: 40, height: 23, x: 253, y: 248 },
'bird/parts-head': { left: 14, top: 9, bottom: 3, right: 22, width: 29, height: 29, x: 295, y: 248 },
'bird/parts-complete': { bottom: 2, right: 1, width: 64, height: 39, x: 326, y: 248 },
'nbot/head-1': { right: 2, width: 38, height: 62, x: 392, y: 248 },
'trurl/waiting-user': { width: 57, height: 111, x: 432, y: 248 },
'trurl/no-1': { left: 6, top: 2, right: 13, width: 48, height: 108, x: 491, y: 248 },
'trurl/no-2': { left: 5, right: 9, width: 53, height: 110, x: 541, y: 248 },
'trurl/no-3': { top: 2, width: 67, height: 108, x: 596, y: 248 },
'trurl/no-4': { left: 1, top: 2, right: 6, width: 60, height: 108, x: 665, y: 248 },
'trurl/no-5': { top: 2, right: 8, width: 59, height: 108, x: 727, y: 248 },
'trurl/no-6': { top: 2, right: 8, width: 59, height: 108, x: 788, y: 248 },
'trurl/no-7': { top: 1, right: 8, width: 59, height: 109, x: 849, y: 248 },
'trurl/no-8': { top: 2, right: 8, width: 59, height: 108, x: 910, y: 248 },
'trurl/no-9': { top: 2, right: 8, width: 59, height: 108, x: 971, y: 248 },
'trurl/no-10': { top: 2, right: 7, width: 60, height: 108, x: 1032, y: 248 },
'trurl/no-11': { top: 1, right: 7, width: 60, height: 109, x: 1094, y: 248 },
'trurl/no-12': { top: 2, right: 7, width: 60, height: 108, x: 1156, y: 248 },
'trurl/no-13': { top: 2, right: 7, width: 60, height: 108, x: 1218, y: 248 },
'trurl/happy-1': { width: 53, height: 108, x: 1280, y: 248 },
'trurl/happy-2': { top: 2, width: 53, height: 106, x: 1335, y: 248 },
'trurl/happy-3': { top: 2, width: 53, height: 106, x: 1390, y: 248 },
'trurl-thought-cloud/opening-1': { left: 46, top: 380, right: 271, width: 13, height: 13, x: 1445, y: 248 },
'trurl-thought-cloud/opening-2': { left: 46, top: 345, bottom: 2, right: 239, width: 45, height: 46, x: 1460, y: 248 },
'trurl-thought-cloud/opening-3': { left: 48, top: 334, bottom: 4, right: 229, width: 53, height: 55, x: 1507, y: 248 },
'trurl-thought-cloud/opening-4': { left: 48, top: 208, bottom: 9, right: 123, width: 159, height: 176, x: 1562, y: 248 },
'trurl-thought-cloud/opening-5': { left: 44, top: 149, bottom: 11, right: 95, width: 191, height: 233, x: 1723, y: 248 },
'trurl-thought-cloud/opening-6': { left: 38, top: 72, bottom: 7, right: 45, width: 247, height: 314, x: 0, y: 483 },
'trurl-thought-cloud/opening-7': { top: 4, bottom: 12, right: 7, width: 323, height: 377, x: 249, y: 483 },
'trurl-thought-cloud/opening-8': { left: 3, bottom: 8, right: 3, width: 324, height: 385, x: 574, y: 483 },
'trurl-thought-cloud/opening-9': { left: 7, top: 2, bottom: 7, width: 323, height: 384, x: 900, y: 483 },
'trurl-thought-cloud/connectors-hollow': { width: 111, height: 61, x: 1225, y: 483 },
'trurl-thought-cloud/connectors': { width: 112, height: 61, x: 1338, y: 483 },
'trurl-thought-cloud/head-hollow': { width: 66, height: 47, x: 1452, y: 483 },
'trurl-thought-cloud/head': { width: 65, height: 49, x: 1520, y: 483 },
'trurl-thought-cloud/eyes-hollow': { width: 54, height: 72, x: 1587, y: 483 },
'trurl-thought-cloud/eyes': { width: 55, height: 73, x: 1643, y: 483 },
'numbot/explosion-1': { left: 177, top: 103, bottom: 159, right: 210, width: 319, height: 372, x: 0, y: 0 },
'numbot/explosion-2': { left: 166, top: 97, bottom: 154, right: 201, width: 339, height: 383, x: 321, y: 0 },
'numbot/explosion-3': { left: 148, top: 93, bottom: 101, right: 184, width: 374, height: 440, x: 662, y: 0 },
'numbot/explosion-4': { left: 147, top: 82, bottom: 70, right: 166, width: 393, height: 482, x: 1038, y: 0 },
'numbot/explosion-5': { left: 157, top: 86, bottom: 49, right: 163, width: 386, height: 499, x: 1433, y: 0 },
'numbot/explosion-6': { left: 153, top: 57, bottom: 54, right: 154, width: 399, height: 523, x: 0, y: 501 },
'numbot/explosion-7': { left: 160, top: 85, bottom: 42, right: 158, width: 388, height: 507, x: 401, y: 501 },
'numbot/explosion-8': { left: 160, top: 86, bottom: 25, right: 156, width: 390, height: 523, x: 791, y: 501 },
'numbot/explosion-9': { left: 179, top: 104, bottom: 32, right: 158, width: 369, height: 498, x: 1183, y: 501 },
'numbot/explosion-10': { left: 228, top: 221, bottom: 37, right: 160, width: 318, height: 376, x: 1554, y: 501 },
'numbot/explosion-11': { left: 299, top: 250, bottom: 25, right: 168, width: 239, height: 359, x: 0, y: 1026 },
'numbot/explosion-12': { left: 368, top: 314, bottom: 22, right: 149, width: 189, height: 298, x: 241, y: 1026 },
'numbot/explosion-13': { left: 429, top: 337, bottom: 59, right: 164, width: 113, height: 238, x: 432, y: 1026 },
'numbot/explosion-14': { left: 476, top: 394, bottom: 218, right: 213, width: 17, height: 22, x: 547, y: 1026 },
'numbot/explosion-15': { left: 519, top: 448, bottom: 168, right: 162, width: 25, height: 18, x: 566, y: 1026 },
'numbot/inside-brick': { width: 150, height: 96, x: 593, y: 1026 },
'numbot/inside-chassis-1': { width: 60, height: 67, x: 745, y: 1026 },
'numbot/inside-chassis-2': { width: 107, height: 54, x: 807, y: 1026 },
'numbot/button-top': { width: 28, height: 19, x: 916, y: 1026 },
'numbot/button-left-top': { width: 21, height: 29, x: 946, y: 1026 },
'numbot/button-right-top': { width: 25, height: 27, x: 969, y: 1026 },
'numbot/button-left-bottom': { width: 22, height: 28, x: 996, y: 1026 },
'numbot/button-right-bottom': { width: 27, height: 30, x: 1020, y: 1026 },
'numbot/button-bottom': { width: 30, height: 23, x: 1049, y: 1026 },
'numbot/button-activate': { width: 44, height: 42, x: 1081, y: 1026 },
'numbot/button-top-press': { width: 28, height: 19, x: 1127, y: 1026 },
'numbot/button-left-top-press': { width: 21, height: 29, x: 1157, y: 1026 },
'numbot/button-right-top-press': { width: 25, height: 27, x: 1180, y: 1026 },
'numbot/button-left-bottom-press': { width: 22, height: 28, x: 1207, y: 1026 },
'numbot/button-right-bottom-press': { width: 27, height: 30, x: 1231, y: 1026 },
'numbot/button-bottom-press': { width: 30, height: 23, x: 1260, y: 1026 },
'numbot/button-activate-press-1': { width: 44, height: 42, x: 1292, y: 1026 },
'numbot/button-activate-press-2': { width: 44, height: 42, x: 1338, y: 1026 },
'numbot/button-alt-left-top': { width: 25, height: 27, x: 1384, y: 1026 },
'numbot/button-alt-left-bottom': { width: 26, height: 29, x: 1411, y: 1026 },
'numbot/button-alt-left-top-press': { width: 25, height: 27, x: 1439, y: 1026 },
'numbot/button-alt-left-bottom-press': { width: 26, height: 29, x: 1466, y: 1026 },
'hints/bubble-1': { left: 74, top: 145, right: 24, width: 34, height: 56, x: 0, y: 0 },
'hints/bubble-2': { left: 76, top: 121, bottom: 1, right: 18, width: 38, height: 79, x: 36, y: 0 },
'hints/bubble-3': { left: 55, top: 95, bottom: 5, right: 20, width: 57, height: 101, x: 76, y: 0 },
'hints/bubble-4': { left: 30, top: 55, bottom: 4, right: 15, width: 87, height: 142, x: 135, y: 0 },
'hints/bubble-5': { left: 20, top: 28, bottom: 7, right: 9, width: 103, height: 166, x: 224, y: 0 },
'hints/bubble-6': { top: 1, bottom: 8, width: 132, height: 192, x: 329, y: 0 },
'hints/bubble-7': { top: 1, bottom: 10, right: 1, width: 131, height: 190, x: 463, y: 0 },
'hints/bubble-8': { bottom: 10, right: 1, width: 131, height: 191, x: 596, y: 0 },
'hints/numbot-button-1': { width: 42, height: 39, x: 729, y: 0 },
'hints/numbot-button-2': { width: 42, height: 39, x: 773, y: 0 },
'hints/numbot-button-3': { width: 42, height: 39, x: 817, y: 0 },
'hints/numbot-formula-1-1': { width: 76, height: 21, x: 861, y: 0 },
'hints/numbot-formula-1-2': { width: 76, height: 21, x: 939, y: 0 },
'hints/numbot-formula-1-3': { width: 76, height: 21, x: 1017, y: 0 },
'hints/numbot-formula-2-1': { width: 76, height: 20, x: 1095, y: 0 },
'hints/numbot-formula-2-2': { width: 76, height: 20, x: 1173, y: 0 },
'hints/numbot-formula-2-3': { width: 76, height: 20, x: 1251, y: 0 },
'hints/numbot-formula-3-1': { width: 76, height: 19, x: 1329, y: 0 },
'hints/numbot-formula-3-2': { width: 76, height: 19, x: 1407, y: 0 },
'hints/numbot-formula-3-3': { width: 76, height: 19, x: 1485, y: 0 },
'hints/numbot-mouse-pointer-1': { width: 50, height: 31, x: 1563, y: 0 },
'hints/numbot-mouse-pointer-2': { width: 50, height: 31, x: 1615, y: 0 },
'hints/numbot-mouse-pointer-3': { right: 1, width: 49, height: 31, x: 1667, y: 0 },
'numbot/head-1': { left: 19, top: 16, right: 22, width: 68, height: 58, x: 1718, y: 0 },
'numbot/head-2': { left: 20, top: 16, right: 24, width: 65, height: 58, x: 1788, y: 0 },
'numbot/head-3': { left: 21, top: 18, bottom: 1, right: 23, width: 65, height: 55, x: 1855, y: 0 },
'numbot/head-4': { left: 21, top: 18, bottom: 1, right: 24, width: 64, height: 55, x: 1922, y: 0 },
'numbot/head-5': { left: 22, top: 19, bottom: 2, right: 27, width: 60, height: 53, x: 0, y: 194 },
'numbot/head-6': { left: 23, top: 20, bottom: 2, right: 27, width: 59, height: 52, x: 62, y: 194 },
'numbot/head-7': { left: 23, top: 21, bottom: 2, right: 26, width: 60, height: 51, x: 123, y: 194 },
'numbot/head-8': { left: 25, top: 21, bottom: 3, right: 24, width: 60, height: 50, x: 185, y: 194 },
'numbot/head-9': { left: 26, top: 20, bottom: 2, right: 24, width: 59, height: 52, x: 247, y: 194 },
'numbot/head-happy': { left: 21, top: 17, right: 22, width: 66, height: 57, x: 308, y: 194 },
'numbot/steam-2-1': { left: 4, top: 3, bottom: 1, right: 5, width: 106, height: 31, x: 376, y: 194 },
'numbot/steam-2-2': { left: 1, top: 1, right: 1, width: 113, height: 34, x: 484, y: 194 },
'numbot/steam-2-3': { width: 115, height: 35, x: 599, y: 194 },
'numbot/steam-3-1': { left: 4, top: 4, bottom: 1, right: 4, width: 109, height: 58, x: 716, y: 194 },
'numbot/steam-3-2': { left: 2, top: 2, right: 2, width: 113, height: 61, x: 827, y: 194 },
'numbot/steam-3-3': { width: 117, height: 63, x: 942, y: 194 },
'numbot/body': { left: 29, top: 125, right: 1, width: 231, height: 304, x: 1061, y: 194 },
'numbot/body-cover-1': { left: 54, top: 181, bottom: 190, right: 60, width: 147, height: 58, x: 1294, y: 194 },
'numbot/body-cover-2': { left: 50, top: 181, bottom: 162, right: 57, width: 154, height: 86, x: 1443, y: 194 },
'numbot/body-cover-3': { left: 46, top: 181, bottom: 136, right: 54, width: 161, height: 112, x: 1599, y: 194 },
'numbot/body-cover-4': { left: 41, top: 181, bottom: 114, right: 52, width: 168, height: 134, x: 1762, y: 194 },
'numbot/body-cover-5': { left: 38, top: 181, bottom: 95, right: 50, width: 173, height: 153, x: 0, y: 500 },
'numbot/body-cover-6': { left: 35, top: 181, bottom: 81, right: 47, width: 179, height: 167, x: 175, y: 500 },
'numbot/body-cover-7': { left: 34, top: 181, bottom: 70, right: 47, width: 180, height: 178, x: 356, y: 500 },
'numbot/body-cover-8': { left: 32, top: 181, bottom: 63, right: 45, width: 184, height: 185, x: 538, y: 500 },
'numbot/body-cover-9': { left: 32, top: 181, bottom: 60, right: 48, width: 181, height: 188, x: 724, y: 500 },
'numbot/body-cover-10': { left: 31, top: 181, bottom: 59, right: 48, width: 182, height: 189, x: 907, y: 500 },
'numbot/l-upper-arm': { width: 95, height: 173, x: 1091, y: 500 },
'numbot/l-upper-arm-rotate-0.8': { width: 95, height: 173, x: 1188, y: 500 },
'numbot/l-upper-arm-rotate-0.4': { width: 95, height: 173, x: 1285, y: 500 },
'numbot/l-upper-arm-rotate0.4': { width: 95, height: 173, x: 1382, y: 500 },
'numbot/l-upper-arm-rotate0.8': { width: 96, height: 172, x: 1479, y: 500 },
'numbot/l-lower-arm': { width: 56, height: 146, x: 1577, y: 500 },
'numbot/l-lower-arm-rotate-1.2': { width: 53, height: 146, x: 1635, y: 500 },
'numbot/l-lower-arm-rotate-0.6': { width: 54, height: 146, x: 1690, y: 500 },
'numbot/l-lower-arm-rotate0.6': { width: 57, height: 146, x: 1746, y: 500 },
'numbot/l-lower-arm-rotate1.2': { width: 58, height: 146, x: 1805, y: 500 },
'numbot/l-leg': { width: 100, height: 231, x: 1865, y: 500 },
'numbot/r-upper-arm': { width: 87, height: 173, x: 0, y: 733 },
'numbot/r-upper-arm-rotate-0.8': { width: 87, height: 173, x: 89, y: 733 },
'numbot/r-upper-arm-rotate-0.4': { width: 87, height: 173, x: 178, y: 733 },
'numbot/r-upper-arm-rotate0.4': { width: 86, height: 173, x: 267, y: 733 },
'numbot/r-upper-arm-rotate0.8': { width: 86, height: 173, x: 355, y: 733 },
'numbot/r-lower-arm': { width: 58, height: 169, x: 443, y: 733 },
'numbot/r-lower-arm-rotate-1.2': { width: 61, height: 168, x: 503, y: 733 },
'numbot/r-lower-arm-rotate-0.6': { width: 60, height: 168, x: 566, y: 733 },
'numbot/r-lower-arm-rotate0.6': { width: 57, height: 169, x: 628, y: 733 },
'numbot/r-lower-arm-rotate1.2': { width: 56, height: 169, x: 687, y: 733 },
'numbot/l-hand': { right: 1, width: 95, height: 137, x: 745, y: 733 },
'numbot/l-hand-rotate-4': { width: 97, height: 139, x: 842, y: 733 },
'numbot/l-hand-rotate-2': { width: 95, height: 138, x: 941, y: 733 },
'numbot/l-hand-rotate2': { width: 93, height: 136, x: 1038, y: 733 },
'numbot/l-hand-rotate4': { width: 91, height: 136, x: 1133, y: 733 },
'numbot/r-hand': { width: 100, height: 143, x: 1226, y: 733 },
'numbot/r-hand-rotate-4': { width: 101, height: 142, x: 1328, y: 733 },
'numbot/r-hand-rotate-2': { width: 100, height: 142, x: 1431, y: 733 },
'numbot/r-hand-rotate2': { width: 100, height: 143, x: 1533, y: 733 },
'numbot/r-hand-rotate4': { width: 99, height: 143, x: 1635, y: 733 },
'numbot/r-leg': { width: 121, height: 248, x: 1736, y: 733 },
'numbot/digit-window-1': { width: 80, height: 112, x: 1859, y: 733 },
'numbot/digit-window-2': { width: 79, height: 112, x: 0, y: 983 },
'numbot/digit-window-3': { width: 85, height: 110, x: 81, y: 983 },
'numbot/formula-1-1': { left: 24, top: 40, bottom: 16, right: 75, width: 8, height: 4, x: 168, y: 983 },
'numbot/formula-1-2': { left: 24, top: 32, bottom: 16, right: 71, width: 12, height: 12, x: 178, y: 983 },
'numbot/formula-1-3': { left: 25, top: 26, bottom: 22, right: 71, width: 11, height: 12, x: 192, y: 983 },
'numbot/formula-1-4': { left: 25, top: 27, bottom: 21, right: 71, width: 11, height: 12, x: 205, y: 983 },
'numbot/formula-1-5': { left: 25, top: 28, bottom: 19, right: 60, width: 22, height: 13, x: 218, y: 983 },
'numbot/formula-1-6': { left: 25, top: 29, bottom: 18, right: 55, width: 27, height: 13, x: 242, y: 983 },
'numbot/formula-1-7': { left: 25, top: 28, bottom: 18, right: 55, width: 27, height: 14, x: 271, y: 983 },
'numbot/formula-1-8': { left: 25, top: 24, bottom: 18, right: 54, width: 28, height: 18, x: 300, y: 983 },
'numbot/formula-1-9': { left: 25, top: 25, bottom: 18, right: 55, width: 27, height: 17, x: 330, y: 983 },
'numbot/formula-1-10': { left: 25, top: 26, bottom: 18, right: 41, width: 41, height: 16, x: 359, y: 983 },
'numbot/formula-1-11': { left: 25, top: 27, bottom: 18, right: 40, width: 42, height: 15, x: 402, y: 983 },
'numbot/formula-1-12': { left: 25, top: 23, bottom: 18, right: 37, width: 45, height: 19, x: 446, y: 983 },
'numbot/formula-1-13': { left: 25, top: 20, bottom: 18, right: 37, width: 45, height: 22, x: 493, y: 983 },
'numbot/formula-1-14': { left: 25, top: 22, bottom: 18, right: 37, width: 45, height: 20, x: 540, y: 983 },
'numbot/formula-1-15': { left: 25, top: 22, bottom: 18, right: 37, width: 45, height: 20, x: 587, y: 983 },
'numbot/formula-1-16': { left: 25, top: 23, bottom: 18, right: 21, width: 61, height: 19, x: 634, y: 983 },
'numbot/formula-1-17': { left: 25, top: 24, bottom: 18, right: 21, width: 61, height: 18, x: 697, y: 983 },
'numbot/formula-1-18': { left: 25, top: 19, bottom: 18, right: 21, width: 61, height: 23, x: 760, y: 983 },
'numbot/formula-1-19': { left: 25, top: 18, bottom: 18, right: 21, width: 61, height: 24, x: 823, y: 983 },
'numbot/formula-1-20': { left: 25, top: 20, bottom: 18, right: 21, width: 61, height: 22, x: 886, y: 983 },
'numbot/formula-1-21': { left: 25, top: 21, bottom: 18, right: 21, width: 61, height: 21, x: 949, y: 983 },
'numbot/formula-1-22': { left: 25, top: 22, bottom: 18, right: 21, width: 61, height: 20, x: 1012, y: 983 },
'numbot/formula-1-23': { left: 25, top: 23, bottom: 18, right: 21, width: 61, height: 19, x: 1075, y: 983 },
'numbot/formula-1-24': { left: 25, top: 24, bottom: 18, right: 21, width: 61, height: 18, x: 1138, y: 983 },
'numbot/formula-2-1': { left: 25, top: 24, bottom: 18, right: 20, width: 62, height: 18, x: 1201, y: 983 },
'numbot/formula-2-2': { left: 25, top: 24, bottom: 19, right: 20, width: 62, height: 17, x: 1265, y: 983 },
'numbot/formula-2-3': { left: 25, top: 24, bottom: 20, right: 20, width: 62, height: 16, x: 1329, y: 983 },
'numbot/formula-2-4': { left: 25, top: 24, bottom: 22, right: 20, width: 62, height: 14, x: 1393, y: 983 },
'numbot/formula-2-5': { left: 25, top: 24, bottom: 23, right: 20, width: 62, height: 13, x: 1457, y: 983 },
'numbot/formula-2-6': { left: 25, top: 24, bottom: 23, right: 20, width: 62, height: 13, x: 1521, y: 983 },
'numbot/formula-2-7': { left: 25, top: 24, bottom: 23, right: 20, width: 62, height: 13, x: 1585, y: 983 },
'numbot/formula-2-8': { left: 43, top: 24, bottom: 23, right: 20, width: 44, height: 13, x: 1649, y: 983 },
'numbot/formula-2-9': { left: 43, top: 24, bottom: 23, right: 20, width: 44, height: 13, x: 1695, y: 983 },
'numbot/formula-2-10': { left: 43, top: 24, bottom: 24, right: 20, width: 44, height: 12, x: 1741, y: 983 },
'numbot/formula-2-11': { left: 43, top: 24, bottom: 24, right: 20, width: 44, height: 12, x: 1787, y: 983 },
'numbot/formula-2-12': { left: 43, top: 24, bottom: 24, right: 20, width: 44, height: 12, x: 1833, y: 983 },
'numbot/formula-2-13': { left: 43, top: 23, bottom: 24, right: 20, width: 44, height: 13, x: 1879, y: 983 },
'numbot/formula-2-14': { left: 43, top: 22, bottom: 24, right: 20, width: 44, height: 14, x: 1925, y: 983 },
'numbot/formula-2-15': { left: 47, top: 23, bottom: 24, right: 20, width: 40, height: 13, x: 0, y: 1097 },
'numbot/formula-2-16': { left: 59, top: 24, bottom: 24, right: 20, width: 28, height: 12, x: 42, y: 1097 },
'numbot/formula-2-17': { left: 59, top: 24, bottom: 25, right: 20, width: 28, height: 11, x: 72, y: 1097 },
'numbot/formula-2-18': { left: 59, top: 23, bottom: 25, right: 20, width: 28, height: 12, x: 102, y: 1097 },
'numbot/formula-2-19': { left: 59, top: 22, bottom: 27, right: 20, width: 28, height: 11, x: 132, y: 1097 },
'numbot/formula-2-20': { left: 59, top: 20, bottom: 28, right: 20, width: 28, height: 12, x: 162, y: 1097 },
'numbot/formula-2-21': { left: 59, top: 20, bottom: 30, right: 20, width: 28, height: 10, x: 192, y: 1097 },
'numbot/formula-2-22': { left: 59, top: 20, bottom: 30, right: 20, width: 28, height: 10, x: 222, y: 1097 },
'numbot/formula-2-23': { left: 59, top: 20, bottom: 30, right: 20, width: 28, height: 10, x: 252, y: 1097 },
'numbot/formula-2-24': { left: 77, top: 24, bottom: 30, right: 20, width: 10, height: 6, x: 282, y: 1097 },
'numbot/formula-2-25': { left: 77, top: 24, bottom: 30, right: 20, width: 10, height: 6, x: 294, y: 1097 },
'numbot/formula-2-26': { left: 77, top: 23, bottom: 31, right: 20, width: 10, height: 6, x: 306, y: 1097 },
'numbot/formula-2-27': { left: 77, top: 22, bottom: 32, right: 20, width: 10, height: 6, x: 318, y: 1097 },
'numbot/formula-2-28': { left: 77, top: 20, bottom: 34, right: 20, width: 10, height: 6, x: 330, y: 1097 },
'numbot/formula-2-29': { left: 77, top: 18, bottom: 36, right: 21, width: 9, height: 6, x: 342, y: 1097 },
'numbot/formula-2-30': { left: 77, top: 18, bottom: 39, right: 21, width: 9, height: 3, x: 353, y: 1097 },
'numbot/formula-2-31': { bottom: 60, right: 107, width: 0, height: 0, x: 364, y: 1097 },
'numbot/formula-2-32': { left: 26, top: 40, bottom: 17, right: 76, width: 5, height: 3, x: 366, y: 1097 },
'numbot/formula-2-33': { left: 25, top: 32, bottom: 16, right: 72, width: 10, height: 12, x: 373, y: 1097 },
'numbot/formula-2-34': { left: 25, top: 26, bottom: 22, right: 71, width: 11, height: 12, x: 385, y: 1097 },
'numbot/formula-2-35': { left: 25, top: 27, bottom: 21, right: 71, width: 11, height: 12, x: 398, y: 1097 },
'numbot/formula-2-36': { left: 25, top: 28, bottom: 19, right: 60, width: 22, height: 13, x: 411, y: 1097 },
'numbot/formula-2-37': { left: 25, top: 29, bottom: 19, right: 55, width: 27, height: 12, x: 435, y: 1097 },
'numbot/formula-2-38': { left: 25, top: 28, bottom: 18, right: 55, width: 27, height: 14, x: 464, y: 1097 },
'numbot/formula-2-39': { left: 25, top: 24, bottom: 18, right: 54, width: 28, height: 18, x: 493, y: 1097 },
'numbot/formula-2-40': { left: 25, top: 25, bottom: 18, right: 55, width: 27, height: 17, x: 523, y: 1097 },
'numbot/formula-2-41': { left: 25, top: 26, bottom: 18, right: 41, width: 41, height: 16, x: 552, y: 1097 },
'numbot/formula-2-42': { left: 25, top: 27, bottom: 18, right: 40, width: 42, height: 15, x: 595, y: 1097 },
'numbot/formula-2-43': { left: 25, top: 23, bottom: 18, right: 37, width: 45, height: 19, x: 639, y: 1097 },
'numbot/formula-2-44': { left: 25, top: 20, bottom: 18, right: 37, width: 45, height: 22, x: 686, y: 1097 },
'numbot/formula-2-45': { left: 25, top: 22, bottom: 18, right: 37, width: 45, height: 20, x: 733, y: 1097 },
'numbot/formula-2-46': { left: 25, top: 22, bottom: 18, right: 37, width: 45, height: 20, x: 780, y: 1097 },
'numbot/formula-2-47': { left: 25, top: 23, bottom: 18, right: 21, width: 61, height: 19, x: 827, y: 1097 },
'numbot/formula-2-48': { left: 25, top: 24, bottom: 18, right: 21, width: 61, height: 18, x: 890, y: 1097 },
'numbot/formula-2-49': { left: 25, top: 19, bottom: 18, right: 21, width: 61, height: 23, x: 953, y: 1097 },
'numbot/formula-2-50': { left: 25, top: 18, bottom: 18, right: 21, width: 61, height: 24, x: 1016, y: 1097 },
'numbot/formula-2-51': { left: 25, top: 20, bottom: 18, right: 21, width: 61, height: 22, x: 1079, y: 1097 },
'numbot/formula-2-52': { left: 25, top: 21, bottom: 18, right: 21, width: 61, height: 21, x: 1142, y: 1097 },
'numbot/formula-2-53': { left: 25, top: 22, bottom: 18, right: 21, width: 61, height: 20, x: 1205, y: 1097 },
'numbot/formula-2-54': { left: 25, top: 23, bottom: 18, right: 21, width: 61, height: 19, x: 1268, y: 1097 },
'numbot/formula-2-55': { left: 25, top: 24, bottom: 18, right: 21, width: 61, height: 18, x: 1331, y: 1097 },
'numbot/formula-3-1': { left: 25, top: 24, bottom: 18, right: 20, width: 62, height: 18, x: 1394, y: 1097 },
'numbot/formula-3-2': { left: 25, top: 24, bottom: 19, right: 20, width: 62, height: 17, x: 1458, y: 1097 },
'numbot/formula-3-3': { left: 25, top: 24, bottom: 20, right: 20, width: 62, height: 16, x: 1522, y: 1097 },
'numbot/formula-3-4': { left: 25, top: 24, bottom: 22, right: 20, width: 62, height: 14, x: 1586, y: 1097 },
'numbot/formula-3-5': { left: 25, top: 24, bottom: 23, right: 20, width: 62, height: 13, x: 1650, y: 1097 },
'numbot/formula-3-6': { left: 25, top: 24, bottom: 23, right: 20, width: 62, height: 13, x: 1714, y: 1097 },
'numbot/formula-3-7': { left: 26, top: 24, bottom: 23, right: 20, width: 61, height: 13, x: 1778, y: 1097 },
'numbot/formula-3-8': { left: 43, top: 24, bottom: 23, right: 20, width: 44, height: 13, x: 1841, y: 1097 },
'numbot/formula-3-9': { left: 43, top: 24, bottom: 23, right: 20, width: 44, height: 13, x: 1887, y: 1097 },
'numbot/formula-3-10': { left: 43, top: 24, bottom: 24, right: 20, width: 44, height: 12, x: 1933, y: 1097 },
'numbot/formula-3-11': { left: 43, top: 24, bottom: 24, right: 20, width: 44, height: 12, x: 0, y: 1123 },
'numbot/formula-3-12': { left: 43, top: 24, bottom: 24, right: 20, width: 44, height: 12, x: 46, y: 1123 },
'numbot/formula-3-13': { left: 43, top: 23, bottom: 24, right: 20, width: 44, height: 13, x: 92, y: 1123 },
'numbot/formula-3-14': { left: 43, top: 22, bottom: 24, right: 20, width: 44, height: 14, x: 138, y: 1123 },
'numbot/formula-3-15': { left: 47, top: 23, bottom: 24, right: 20, width: 40, height: 13, x: 184, y: 1123 },
'numbot/formula-3-16': { left: 59, top: 24, bottom: 24, right: 20, width: 28, height: 12, x: 226, y: 1123 },
'numbot/formula-3-17': { left: 59, top: 24, bottom: 25, right: 20, width: 28, height: 11, x: 256, y: 1123 },
'numbot/formula-3-18': { left: 59, top: 23, bottom: 25, right: 20, width: 28, height: 12, x: 286, y: 1123 },
'numbot/formula-3-19': { left: 59, top: 22, bottom: 27, right: 20, width: 28, height: 11, x: 316, y: 1123 },
'numbot/formula-3-20': { left: 59, top: 20, bottom: 28, right: 20, width: 28, height: 12, x: 346, y: 1123 },
'numbot/formula-3-21': { left: 59, top: 20, bottom: 30, right: 20, width: 28, height: 10, x: 376, y: 1123 },
'numbot/formula-3-22': { left: 59, top: 20, bottom: 30, right: 20, width: 28, height: 10, x: 406, y: 1123 },
'numbot/formula-3-23': { left: 59, top: 20, bottom: 30, right: 20, width: 28, height: 10, x: 436, y: 1123 },
'numbot/formula-3-24': { left: 77, top: 24, bottom: 30, right: 20, width: 10, height: 6, x: 466, y: 1123 },
'numbot/formula-3-25': { left: 77, top: 24, bottom: 30, right: 20, width: 10, height: 6, x: 478, y: 1123 },
'numbot/formula-3-26': { left: 77, top: 23, bottom: 31, right: 20, width: 10, height: 6, x: 490, y: 1123 },
'numbot/formula-3-27': { left: 77, top: 22, bottom: 32, right: 20, width: 10, height: 6, x: 502, y: 1123 },
'numbot/formula-3-28': { left: 77, top: 20, bottom: 34, right: 20, width: 10, height: 6, x: 514, y: 1123 },
'numbot/formula-3-29': { left: 77, top: 18, bottom: 36, right: 21, width: 9, height: 6, x: 526, y: 1123 },
'numbot/formula-3-30': { left: 77, top: 18, bottom: 39, right: 21, width: 9, height: 3, x: 537, y: 1123 },
'numbot/formula-3-31': { bottom: 60, right: 107, width: 0, height: 0, x: 548, y: 1123 },
'numbot/formula-3-32': { left: 26, top: 40, bottom: 17, right: 76, width: 5, height: 3, x: 550, y: 1123 },
'numbot/formula-3-33': { left: 25, top: 32, bottom: 16, right: 72, width: 10, height: 12, x: 557, y: 1123 },
'numbot/formula-3-34': { left: 25, top: 26, bottom: 22, right: 71, width: 11, height: 12, x: 569, y: 1123 },
'numbot/formula-3-35': { left: 25, top: 27, bottom: 21, right: 71, width: 11, height: 12, x: 582, y: 1123 },
'numbot/formula-3-36': { left: 25, top: 28, bottom: 19, right: 60, width: 22, height: 13, x: 595, y: 1123 },
'numbot/formula-3-37': { left: 25, top: 29, bottom: 19, right: 55, width: 27, height: 12, x: 619, y: 1123 },
'numbot/formula-3-38': { left: 25, top: 28, bottom: 18, right: 55, width: 27, height: 14, x: 648, y: 1123 },
'numbot/formula-3-39': { left: 25, top: 24, bottom: 18, right: 54, width: 28, height: 18, x: 677, y: 1123 },
'numbot/formula-3-40': { left: 25, top: 25, bottom: 18, right: 55, width: 27, height: 17, x: 707, y: 1123 },
'numbot/formula-3-41': { left: 25, top: 26, bottom: 18, right: 42, width: 40, height: 16, x: 736, y: 1123 },
'numbot/formula-3-42': { left: 25, top: 27, bottom: 18, right: 42, width: 40, height: 15, x: 778, y: 1123 },
'numbot/formula-3-43': { left: 25, top: 23, bottom: 18, right: 38, width: 44, height: 19, x: 820, y: 1123 },
'numbot/formula-3-44': { left: 25, top: 20, bottom: 18, right: 38, width: 44, height: 22, x: 866, y: 1123 },
'numbot/formula-3-45': { left: 25, top: 22, bottom: 18, right: 38, width: 44, height: 20, x: 912, y: 1123 },
'numbot/formula-3-46': { left: 25, top: 22, bottom: 18, right: 38, width: 44, height: 20, x: 958, y: 1123 },
'numbot/formula-3-47': { left: 25, top: 23, bottom: 18, right: 21, width: 61, height: 19, x: 1004, y: 1123 },
'numbot/formula-3-48': { left: 25, top: 24, bottom: 18, right: 21, width: 61, height: 18, x: 1067, y: 1123 },
'numbot/formula-3-49': { left: 25, top: 19, bottom: 18, right: 21, width: 61, height: 23, x: 1130, y: 1123 },
'numbot/formula-3-50': { left: 25, top: 18, bottom: 18, right: 21, width: 61, height: 24, x: 1193, y: 1123 },
'numbot/formula-3-51': { left: 25, top: 20, bottom: 18, right: 21, width: 61, height: 22, x: 1256, y: 1123 },
'numbot/formula-3-52': { left: 25, top: 21, bottom: 18, right: 21, width: 61, height: 21, x: 1319, y: 1123 },
'numbot/formula-3-53': { left: 25, top: 22, bottom: 18, right: 21, width: 61, height: 20, x: 1382, y: 1123 },
'numbot/formula-3-54': { left: 25, top: 23, bottom: 18, right: 21, width: 61, height: 19, x: 1445, y: 1123 },
'numbot/formula-3-end-1': { left: 25, top: 24, bottom: 19, right: 20, width: 62, height: 17, x: 1508, y: 1123 },
'numbot/formula-3-end-2': { left: 25, top: 24, bottom: 20, right: 20, width: 62, height: 16, x: 1572, y: 1123 },
'numbot/formula-3-end-3': { left: 25, top: 24, bottom: 22, right: 20, width: 62, height: 14, x: 1636, y: 1123 },
'numbot/formula-3-end-4': { left: 25, top: 24, bottom: 23, right: 20, width: 62, height: 13, x: 1700, y: 1123 },
'numbot/formula-3-end-5': { left: 25, top: 24, bottom: 23, right: 20, width: 62, height: 13, x: 1764, y: 1123 },
'numbot/formula-3-end-6': { left: 26, top: 24, bottom: 23, right: 20, width: 61, height: 13, x: 1828, y: 1123 },
'numbot/formula-3-end-7': { left: 43, top: 24, bottom: 23, right: 20, width: 44, height: 13, x: 1891, y: 1123 },
'numbot/formula-3-end-8': { left: 43, top: 24, bottom: 23, right: 20, width: 44, height: 13, x: 1937, y: 1123 },
'numbot/formula-3-end-9': { left: 43, top: 24, bottom: 24, right: 20, width: 44, height: 12, x: 0, y: 1149 },
'numbot/formula-3-end-10': { left: 43, top: 24, bottom: 24, right: 20, width: 44, height: 12, x: 46, y: 1149 },
'numbot/formula-3-end-11': { left: 43, top: 24, bottom: 24, right: 20, width: 44, height: 12, x: 92, y: 1149 },
'numbot/formula-3-end-12': { left: 43, top: 23, bottom: 24, right: 20, width: 44, height: 13, x: 138, y: 1149 },
'numbot/formula-3-end-13': { left: 43, top: 22, bottom: 24, right: 20, width: 44, height: 14, x: 184, y: 1149 },
'numbot/formula-3-end-14': { left: 47, top: 23, bottom: 24, right: 20, width: 40, height: 13, x: 230, y: 1149 },
'numbot/formula-3-end-15': { left: 60, top: 24, bottom: 24, right: 20, width: 27, height: 12, x: 272, y: 1149 },
'numbot/formula-3-end-16': { left: 60, top: 24, bottom: 25, right: 20, width: 27, height: 11, x: 301, y: 1149 },
'numbot/formula-3-end-17': { left: 60, top: 23, bottom: 25, right: 20, width: 27, height: 12, x: 330, y: 1149 },
'numbot/formula-3-end-18': { left: 60, top: 22, bottom: 27, right: 20, width: 27, height: 11, x: 359, y: 1149 },
'numbot/formula-3-end-19': { left: 60, top: 20, bottom: 28, right: 20, width: 27, height: 12, x: 388, y: 1149 },
'numbot/formula-3-end-20': { left: 60, top: 20, bottom: 30, right: 20, width: 27, height: 10, x: 417, y: 1149 },
'numbot/formula-3-end-21': { left: 60, top: 20, bottom: 30, right: 20, width: 27, height: 10, x: 446, y: 1149 },
'numbot/formula-3-end-22': { left: 60, top: 20, bottom: 30, right: 20, width: 27, height: 10, x: 475, y: 1149 },
'numbot/formula-3-end-23': { left: 77, top: 24, bottom: 30, right: 20, width: 10, height: 6, x: 504, y: 1149 },
'numbot/formula-3-end-24': { left: 77, top: 23, bottom: 31, right: 20, width: 10, height: 6, x: 516, y: 1149 },
'numbot/formula-3-end-25': { left: 77, top: 22, bottom: 32, right: 20, width: 10, height: 6, x: 528, y: 1149 },
'numbot/formula-3-end-26': { left: 77, top: 20, bottom: 34, right: 20, width: 10, height: 6, x: 540, y: 1149 },
'numbot/formula-3-end-27': { left: 77, top: 18, bottom: 36, right: 21, width: 9, height: 6, x: 552, y: 1149 },
'numbot/formula-3-end-28': { left: 77, top: 18, bottom: 39, right: 21, width: 9, height: 3, x: 563, y: 1149 },
'numbot/formula-1-segment-1': { width: 34, height: 8, x: 574, y: 1149 },
'numbot/formula-1-segment-2': { width: 7, height: 30, x: 610, y: 1149 },
'numbot/formula-1-segment-3': { left: 1, right: 1, width: 5, height: 30, x: 619, y: 1149 },
'numbot/formula-1-segment-4': { left: 5, width: 35, height: 9, x: 626, y: 1149 },
'numbot/formula-1-segment-5': { width: 8, height: 35, x: 663, y: 1149 },
'numbot/formula-1-segment-6': { left: 1, right: 1, width: 6, height: 34, x: 673, y: 1149 },
'numbot/formula-1-segment-7': { width: 39, height: 9, x: 681, y: 1149 },
'numbot/formula-2-segment-1': { width: 33, height: 8, x: 722, y: 1149 },
'numbot/formula-2-segment-2': { width: 6, height: 30, x: 757, y: 1149 },
'numbot/formula-2-segment-3': { left: 1, right: 1, width: 4, height: 30, x: 765, y: 1149 },
'numbot/formula-2-segment-4': { left: 5, top: 1, bottom: 1, width: 35, height: 8, x: 771, y: 1149 },
'numbot/formula-2-segment-5': { width: 7, height: 35, x: 808, y: 1149 },
'numbot/formula-2-segment-6': { right: 1, width: 5, height: 34, x: 817, y: 1149 },
'numbot/formula-2-segment-7': { top: 1, bottom: 1, width: 38, height: 8, x: 824, y: 1149 },
'numbot/formula-3-segment-1': { width: 34, height: 8, x: 864, y: 1149 },
'numbot/formula-3-segment-2': { width: 8, height: 30, x: 900, y: 1149 },
'numbot/formula-3-segment-3': { left: 1, right: 1, width: 5, height: 30, x: 910, y: 1149 },
'numbot/formula-3-segment-4': { left: 5, width: 37, height: 9, x: 917, y: 1149 },
'numbot/formula-3-segment-5': { width: 9, height: 35, x: 956, y: 1149 },
'numbot/formula-3-segment-6': { left: 1, right: 1, width: 6, height: 34, x: 967, y: 1149 },
'numbot/formula-3-segment-7': { width: 40, height: 9, x: 975, y: 1149 },
'demonbot/paper-finale-11': { left: 314, top: 133, bottom: 86, right: 98, width: 298, height: 353, x: 0, y: 0 },
'demonbot/paper-finale-13': { left: 312, top: 20, bottom: 79, right: 92, width: 306, height: 473, x: 300, y: 0 },
'demonbot/paper-finale-15': { left: 299, top: 25, bottom: 82, right: 88, width: 323, height: 465, x: 608, y: 0 },
'demonbot/paper-finale-17': { left: 299, top: 25, bottom: 82, right: 88, width: 323, height: 465, x: 933, y: 0 },
'demonbot/paper-finale-19': { left: 251, top: 28, bottom: 71, right: 81, width: 378, height: 473, x: 1258, y: 0 },
'demonbot/paper-finale-21': { left: 178, top: 28, bottom: 71, right: 81, width: 451, height: 473, x: 0, y: 475 },
'demonbot/paper-finale-23': { left: 179, top: 26, bottom: 72, right: 79, width: 452, height: 474, x: 453, y: 475 },
'demonbot/paper-finale-25': { left: 20, top: 6, bottom: 70, right: 73, width: 617, height: 496, x: 907, y: 475 },
'demonbot/paper-finale-27': { left: 30, top: 12, bottom: 70, right: 73, width: 607, height: 490, x: 0, y: 973 },
'demonbot/paper-finale-29': { left: 27, top: 23, bottom: 36, right: 67, width: 616, height: 513, x: 609, y: 973 },
'demonbot/hair': { width: 245, height: 189, x: 0, y: 0 },
'demonbot/hair-rotate-0.5': { width: 243, height: 190, x: 247, y: 0 },
'demonbot/hair-rotate-1': { width: 242, height: 192, x: 492, y: 0 },
'demonbot/hair-rotate-1.5': { width: 241, height: 194, x: 736, y: 0 },
'demonbot/hair-rotate-2': { width: 240, height: 196, x: 979, y: 0 },
'demonbot/hair-rotate-2.5': { width: 239, height: 197, x: 1221, y: 0 },
'demonbot/hair-rotate-3': { width: 237, height: 199, x: 1462, y: 0 },
'demonbot/hair-rotate-3.5': { width: 236, height: 201, x: 1701, y: 0 },
'demonbot/hair-rotate-4': { width: 235, height: 203, x: 0, y: 203 },
'demonbot/hair-rotate-4.5': { width: 234, height: 204, x: 237, y: 203 },
'demonbot/hair-rotate-4.75': { width: 233, height: 205, x: 473, y: 203 },
'demonbot/hair-rotate-5': { width: 233, height: 206, x: 708, y: 203 },
'hints/demonbot-target-wave-1': { width: 75, height: 54, x: 943, y: 203 },
'hints/demonbot-target-wave-2': { width: 75, height: 54, x: 1020, y: 203 },
'hints/demonbot-target-wave-3': { top: 2, right: 1, width: 74, height: 52, x: 1097, y: 203 },
'hints/demonbot-wave-1': { bottom: 1, width: 73, height: 54, x: 1173, y: 203 },
'hints/demonbot-wave-2': { top: 1, bottom: 1, width: 73, height: 53, x: 1248, y: 203 },
'hints/demonbot-wave-3': { top: 2, width: 73, height: 53, x: 1323, y: 203 },
'demonbot/paper-finale-1': { left: 434, top: 325, bottom: 92, right: 112, width: 164, height: 155, x: 1398, y: 203 },
'demonbot/paper-finale-3': { left: 331, top: 327, bottom: 88, right: 110, width: 269, height: 157, x: 1564, y: 203 },
'demonbot/paper-finale-5': { left: 311, top: 269, bottom: 87, right: 110, width: 289, height: 216, x: 0, y: 411 },
'demonbot/paper-finale-7': { left: 313, top: 216, bottom: 84, right: 102, width: 295, height: 272, x: 291, y: 411 },
'demonbot/paper-finale-9': { left: 314, top: 220, bottom: 86, right: 98, width: 298, height: 266, x: 588, y: 411 },
'background/satellite': { width: 90, height: 87, x: 888, y: 411 },
'demonbot/eye-big': { width: 11, height: 10, x: 980, y: 411 },
'demonbot/eye-medium': { width: 8, height: 7, x: 993, y: 411 },
'demonbot/eye-small': { width: 6, height: 5, x: 1003, y: 411 },
'demonbot/big-eye-left': { left: 3, top: 15, bottom: 3, right: 49, width: 57, height: 55, x: 1011, y: 411 },
'demonbot/big-eye-right-1': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1070, y: 411 },
'demonbot/big-eye-right-2': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1129, y: 411 },
'demonbot/big-eye-right-3': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1188, y: 411 },
'demonbot/big-eye-right-4': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1247, y: 411 },
'demonbot/big-eye-right-5': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1306, y: 411 },
'demonbot/big-eye-right-6': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1365, y: 411 },
'demonbot/big-eye-right-7': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1424, y: 411 },
'demonbot/big-eye-right-8': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1483, y: 411 },
'demonbot/big-eye-right-9': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1542, y: 411 },
'demonbot/big-eye-right-10': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1601, y: 411 },
'demonbot/big-eye-right-11': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1660, y: 411 },
'demonbot/big-eye-right-12': { left: 49, top: 15, bottom: 3, right: 3, width: 57, height: 55, x: 1719, y: 411 },
'demonbot/ui-cogs-1': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 1778, y: 411 },
'demonbot/ui-cogs-2': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 0, y: 685 },
'demonbot/ui-cogs-3': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 168, y: 685 },
'demonbot/ui-cogs-4': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 336, y: 685 },
'demonbot/ui-cogs-5': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 504, y: 685 },
'demonbot/ui-cogs-6': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 672, y: 685 },
'demonbot/ui-cogs-7': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 840, y: 685 },
'demonbot/ui-cogs-8': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 1008, y: 685 },
'demonbot/ui-cogs-9': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 1176, y: 685 },
'demonbot/ui-cogs-10': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 1344, y: 685 },
'demonbot/ui-cogs-11': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 1512, y: 685 },
'demonbot/ui-cogs-12': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 1680, y: 685 },
'demonbot/ui-cogs-13': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 0, y: 713 },
'demonbot/ui-cogs-14': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 168, y: 713 },
'demonbot/ui-cogs-15': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 336, y: 713 },
'demonbot/ui-cogs-16': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 504, y: 713 },
'demonbot/ui-cogs-17': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 672, y: 713 },
'demonbot/ui-cogs-18': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 840, y: 713 },
'demonbot/ui-cogs-19': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 1008, y: 713 },
'demonbot/ui-cogs-20': { left: 27, top: 52, bottom: 38, right: 35, width: 166, height: 26, x: 1176, y: 713 },
'demonbot/ui': { width: 339, height: 185, x: 1344, y: 713 },
'demonbot/ui-top': { width: 103, height: 70, x: 1685, y: 713 },
'demonbot/ui-dial-amplitude-empty': { width: 26, height: 26, x: 1790, y: 713 },
'demonbot/ui-dial-amplitude-mid': { width: 26, height: 26, x: 1818, y: 713 },
'demonbot/ui-dial-amplitude-short': { width: 26, height: 26, x: 1846, y: 713 },
'demonbot/ui-dial-amplitude-tall': { width: 26, height: 26, x: 1874, y: 713 },
'demonbot/ui-dial-frequency-empty': { width: 25, height: 25, x: 1902, y: 713 },
'demonbot/ui-dial-frequency-mid': { width: 25, height: 25, x: 1929, y: 713 },
'demonbot/ui-dial-frequency-squish': { width: 25, height: 25, x: 1956, y: 713 },
'demonbot/ui-dial-frequency-stretch': { width: 25, height: 25, x: 0, y: 900 },
'demonbot/ui-dial-wave-empty': { width: 25, height: 25, x: 27, y: 900 },
'demonbot/ui-dial-wave-saw': { width: 25, height: 25, x: 54, y: 900 },
'demonbot/ui-dial-wave-sine': { width: 25, height: 25, x: 81, y: 900 },
'demonbot/ui-dial-wave-square': { width: 25, height: 25, x: 108, y: 900 },
'demonbot/ui-button-activate': { left: 13, top: 7, bottom: 26, right: 33, width: 57, height: 59, x: 135, y: 900 },
'demonbot/ui-button-activate-press-1': { left: 13, top: 7, bottom: 26, right: 33, width: 57, height: 59, x: 194, y: 900 },
'demonbot/ui-button-activate-press-2': { left: 13, top: 7, bottom: 26, right: 33, width: 57, height: 59, x: 253, y: 900 },
'demonbot/ui-button-activate-press-3': { left: 13, top: 7, bottom: 26, right: 33, width: 57, height: 59, x: 312, y: 900 },
'demonbot/ui-button-left': { width: 14, height: 19, x: 371, y: 900 },
'demonbot/ui-button-right': { width: 13, height: 19, x: 387, y: 900 },
'demonbot/ui-button-left-press': { width: 14, height: 19, x: 402, y: 900 },
'demonbot/ui-button-right-press': { width: 13, height: 19, x: 418, y: 900 },
'demonbot/ui-extension-1': { width: 97, height: 72, x: 433, y: 900 },
'demonbot/ui-extension-2': { width: 88, height: 68, x: 532, y: 900 },
'demonbot/ui-extension-3': { width: 80, height: 73, x: 622, y: 900 },
'demonbot/paper-1': { bottom: 3, width: 351, height: 110, x: 704, y: 900 },
'demonbot/paper-2': { top: 2, bottom: 4, right: 2, width: 349, height: 107, x: 1057, y: 900 },
'demonbot/paper-3': { top: 5, bottom: 4, width: 351, height: 104, x: 1408, y: 900 },
'demonbot/paper-4': { top: 8, bottom: 2, right: 1, width: 350, height: 103, x: 0, y: 1012 },
'demonbot/paper-5': { top: 9, right: 3, width: 348, height: 104, x: 352, y: 1012 },
'demonbot/paper-6': { top: 8, bottom: 2, right: 1, width: 350, height: 103, x: 702, y: 1012 },
'demonbot/paper-7': { top: 5, bottom: 4, width: 351, height: 104, x: 1054, y: 1012 },
'demonbot/paper-8': { top: 2, bottom: 4, right: 2, width: 349, height: 107, x: 1407, y: 1012 },
'demonbot/left-hand-1': { left: 7, top: 6, bottom: 2, right: 16, width: 35, height: 48, x: 1758, y: 1012 },
'demonbot/left-hand-2': { left: 4, top: 8, bottom: 2, right: 16, width: 38, height: 46, x: 1795, y: 1012 },
'demonbot/left-hand-3': { left: 1, top: 10, bottom: 2, right: 16, width: 41, height: 44, x: 1835, y: 1012 },
'demonbot/left-hand-4': { left: 15, top: 2, bottom: 1, right: 15, width: 28, height: 53, x: 1878, y: 1012 },
'demonbot/left-hand-5': { left: 28, top: 1, bottom: 1, right: 13, width: 17, height: 54, x: 1908, y: 1012 },
'demonbot/left-hand-6': { left: 28, top: 2, bottom: 1, right: 6, width: 24, height: 53, x: 1927, y: 1012 },
'demonbot/left-hand-7': { left: 28, top: 3, bottom: 1, right: 2, width: 28, height: 52, x: 1953, y: 1012 },
'demonbot/left-hand-8': { left: 28, top: 4, bottom: 1, width: 30, height: 51, x: 0, y: 1121 },
'demonbot/left-hand-9': { left: 28, top: 3, bottom: 1, right: 2, width: 28, height: 52, x: 32, y: 1121 },
'demonbot/left-hand-10': { left: 28, top: 2, bottom: 1, right: 6, width: 24, height: 53, x: 62, y: 1121 },
'demonbot/left-hand-11': { left: 28, top: 1, bottom: 1, right: 13, width: 17, height: 54, x: 88, y: 1121 },
'demonbot/left-hand-12': { left: 15, top: 2, bottom: 1, right: 15, width: 28, height: 53, x: 107, y: 1121 },
'demonbot/left-hand-13': { left: 1, top: 10, bottom: 2, right: 16, width: 41, height: 44, x: 137, y: 1121 },
'demonbot/left-hand-14': { left: 5, top: 7, bottom: 2, right: 16, width: 37, height: 47, x: 180, y: 1121 },
'demonbot/left-hand-15': { left: 7, top: 6, bottom: 2, right: 16, width: 35, height: 48, x: 219, y: 1121 },
'demonbot/right-hand-1': { left: 8, top: 8, bottom: 3, right: 22, width: 73, height: 74, x: 256, y: 1121 },
'demonbot/right-hand-2': { left: 8, top: 8, bottom: 3, right: 22, width: 73, height: 74, x: 331, y: 1121 },
'demonbot/right-hand-3': { left: 8, top: 8, bottom: 3, right: 21, width: 74, height: 74, x: 406, y: 1121 },
'demonbot/right-hand-4': { left: 8, top: 8, bottom: 3, right: 21, width: 74, height: 74, x: 482, y: 1121 },
'demonbot/right-hand-5': { left: 8, top: 8, bottom: 3, right: 19, width: 76, height: 74, x: 558, y: 1121 },
'demonbot/right-hand-6': { left: 8, top: 8, bottom: 3, right: 17, width: 78, height: 74, x: 636, y: 1121 },
'demonbot/right-hand-7': { left: 8, top: 8, bottom: 3, right: 14, width: 81, height: 74, x: 716, y: 1121 },
'demonbot/right-hand-8': { left: 8, top: 8, bottom: 3, right: 10, width: 85, height: 74, x: 799, y: 1121 },
'demonbot/right-hand-9': { left: 7, top: 8, bottom: 3, right: 6, width: 90, height: 74, x: 886, y: 1121 },
'demonbot/right-hand-10': { left: 6, top: 8, bottom: 3, right: 3, width: 94, height: 74, x: 978, y: 1121 },
'demonbot/right-hand-11': { left: 6, top: 6, bottom: 3, right: 11, width: 86, height: 76, x: 1074, y: 1121 },
'demonbot/right-hand-12': { left: 5, top: 5, bottom: 3, right: 14, width: 84, height: 77, x: 1162, y: 1121 },
'demonbot/right-hand-13': { left: 5, top: 5, bottom: 3, right: 15, width: 83, height: 77, x: 1248, y: 1121 },
'demonbot/right-hand-14': { left: 5, top: 4, bottom: 3, right: 15, width: 83, height: 78, x: 1333, y: 1121 },
'demonbot/right-hand-15': { left: 5, top: 4, bottom: 3, right: 15, width: 83, height: 78, x: 1418, y: 1121 },
'demonbot/right-hand-16': { left: 5, top: 4, bottom: 3, right: 15, width: 83, height: 78, x: 1503, y: 1121 },
'demonbot/right-hand-17': { left: 5, top: 4, bottom: 3, right: 15, width: 83, height: 78, x: 1588, y: 1121 },
'demonbot/right-hand-18': { left: 4, top: 4, bottom: 3, right: 15, width: 84, height: 78, x: 1673, y: 1121 },
'demonbot/right-hand-19': { left: 4, top: 4, bottom: 3, right: 16, width: 83, height: 78, x: 1759, y: 1121 },
'demonbot/right-hand-20': { left: 3, top: 5, bottom: 3, right: 17, width: 83, height: 77, x: 1844, y: 1121 },
'demonbot/right-hand-21': { left: 3, top: 8, bottom: 3, right: 18, width: 82, height: 74, x: 0, y: 1201 },
'demonbot/right-hand-22': { left: 2, top: 12, bottom: 3, right: 19, width: 82, height: 70, x: 84, y: 1201 },
'demonbot/right-hand-23': { left: 2, top: 16, bottom: 3, right: 19, width: 82, height: 66, x: 168, y: 1201 },
'demonbot/right-hand-24': { left: 2, top: 15, bottom: 3, right: 19, width: 82, height: 67, x: 252, y: 1201 },
'demonbot/right-hand-25': { left: 2, top: 15, bottom: 3, right: 20, width: 81, height: 67, x: 336, y: 1201 },
'demonbot/right-hand-26': { left: 2, top: 14, bottom: 3, right: 20, width: 81, height: 68, x: 419, y: 1201 },
'demonbot/right-hand-27': { left: 2, top: 13, bottom: 3, right: 20, width: 81, height: 69, x: 502, y: 1201 },
'demonbot/right-hand-28': { left: 2, top: 10, bottom: 3, right: 20, width: 81, height: 72, x: 585, y: 1201 },
'demonbot/right-hand-29': { left: 1, top: 7, bottom: 3, right: 21, width: 81, height: 75, x: 668, y: 1201 },
'demonbot/right-hand-30': { left: 1, top: 4, bottom: 3, right: 22, width: 80, height: 78, x: 751, y: 1201 },
'demonbot/right-hand-31': { left: 2, top: 8, bottom: 3, right: 22, width: 79, height: 74, x: 833, y: 1201 },
'demonbot/right-hand-32': { left: 3, top: 8, bottom: 3, right: 22, width: 78, height: 74, x: 914, y: 1201 },
'demonbot/right-hand-33': { left: 4, top: 8, bottom: 3, right: 22, width: 77, height: 74, x: 994, y: 1201 },
'demonbot/right-hand-34': { left: 4, top: 8, bottom: 3, right: 22, width: 77, height: 74, x: 1073, y: 1201 },
'demonbot/right-hand-35': { left: 5, top: 8, bottom: 3, right: 22, width: 76, height: 74, x: 1152, y: 1201 },
'demonbot/right-hand-36': { left: 5, top: 8, bottom: 3, right: 22, width: 76, height: 74, x: 1230, y: 1201 },
'demonbot/right-hand-37': { left: 5, top: 8, bottom: 3, right: 22, width: 76, height: 74, x: 1308, y: 1201 },
'demonbot/right-hand-38': { left: 6, top: 8, bottom: 3, right: 22, width: 75, height: 74, x: 1386, y: 1201 },
'demonbot/right-hand-39': { left: 8, top: 8, bottom: 3, right: 22, width: 73, height: 74, x: 1463, y: 1201 },
'demonbot/right-hand-40': { left: 8, top: 8, bottom: 3, right: 22, width: 73, height: 74, x: 1538, y: 1201 },
'demonbot/pen-base-top': { width: 48, height: 32, x: 1613, y: 1201 },
'demonbot/pen-base-bottom': { width: 66, height: 60, x: 1663, y: 1201 },
'demonbot/pen-extend-1': { left: 338, top: 157, bottom: 296, right: 32, width: 9, height: 32, x: 1731, y: 1201 },
'demonbot/pen-extend-2': { left: 338, top: 155, bottom: 296, right: 32, width: 9, height: 34, x: 1742, y: 1201 },
'demonbot/pen-extend-3': { left: 337, top: 147, bottom: 296, right: 30, width: 12, height: 42, x: 1753, y: 1201 },
'demonbot/pen-extend-4': { left: 336, top: 126, bottom: 296, right: 30, width: 13, height: 63, x: 1767, y: 1201 },
'demonbot/paper-finale-30': { left: 22, top: 37, bottom: 33, right: 48, width: 640, height: 502, x: 0, y: 0 },
'demonbot/paper-finale-31': { left: 14, top: 59, bottom: 33, right: 48, width: 648, height: 480, x: 642, y: 0 },
'demonbot/paper-finale-32': { left: 9, top: 67, bottom: 30, right: 51, width: 650, height: 475, x: 1292, y: 0 },
'demonbot/paper-finale-33': { left: 8, top: 108, bottom: 32, right: 47, width: 655, height: 432, x: 0, y: 504 },
'demonbot/paper-finale-34': { left: 6, top: 140, bottom: 31, right: 20, width: 684, height: 401, x: 657, y: 504 },
'demonbot/paper-finale-35': { left: 2, top: 151, bottom: 33, right: 17, width: 691, height: 388, x: 0, y: 938 },
'demonbot/paper-finale-36': { top: 151, bottom: 31, right: 7, width: 703, height: 390, x: 0, y: 0 },
'demonbot/paper-finale-37': { left: 3, top: 158, bottom: 28, right: 2, width: 705, height: 386, x: 705, y: 0 },
'demonbot/paper-finale-38': { left: 1, top: 161, bottom: 27, right: 1, width: 708, height: 384, x: 0, y: 392 },
'demonbot/paper-finale-39': { top: 165, bottom: 26, width: 710, height: 381, x: 710, y: 392 },
'demonbot/paper-finale-40': { top: 165, width: 710, height: 380, x: 0, y: 778 },
'demonbot/body': { width: 565, height: 551, x: 712, y: 778 },
'demonbot/wave-saw-mid-mid': { top: 14, bottom: 14, width: 772, height: 34, x: 0, y: 1331 },
'demonbot/wave-saw-mid-squish': { top: 14, bottom: 13, width: 772, height: 35, x: 774, y: 1331 },
'demonbot/wave-saw-mid-stretch': { top: 14, bottom: 13, width: 772, height: 35, x: 0, y: 1368 },
'demonbot/wave-saw-short-mid': { top: 22, bottom: 21, width: 772, height: 19, x: 774, y: 1368 },
'demonbot/wave-saw-short-squish': { top: 22, bottom: 21, width: 772, height: 19, x: 0, y: 1405 },
'demonbot/wave-saw-short-stretch': { top: 22, bottom: 21, width: 772, height: 19, x: 774, y: 1405 },
'demonbot/wave-saw-tall-mid': { top: 1, width: 772, height: 61, x: 0, y: 1426 },
'demonbot/wave-saw-tall-squish': { width: 772, height: 62, x: 774, y: 1426 },
'demonbot/wave-saw-tall-stretch': { top: 1, bottom: 1, width: 772, height: 60, x: 0, y: 1490 },
'demonbot/wave-sine-mid-mid': { top: 15, bottom: 15, width: 772, height: 32, x: 774, y: 1490 },
'demonbot/wave-sine-mid-squish': { top: 15, bottom: 15, width: 772, height: 32, x: 0, y: 1552 },
'demonbot/wave-sine-mid-stretch': { top: 15, bottom: 13, width: 772, height: 34, x: 774, y: 1552 },
'demonbot/wave-sine-short-mid': { top: 24, bottom: 23, width: 772, height: 15, x: 0, y: 1588 },
'demonbot/wave-sine-short-squish': { top: 24, bottom: 24, width: 772, height: 14, x: 774, y: 1588 },
'demonbot/wave-sine-short-stretch': { top: 24, bottom: 22, width: 772, height: 16, x: 0, y: 1605 },
'demonbot/wave-sine-tall-mid': { top: 3, bottom: 3, width: 772, height: 56, x: 774, y: 1605 },
'demonbot/wave-sine-tall-squish': { top: 3, bottom: 3, width: 772, height: 56, x: 0, y: 1663 },
'demonbot/wave-sine-tall-stretch': { top: 3, bottom: 2, width: 772, height: 57, x: 774, y: 1663 },
'demonbot/wave-square-mid-mid': { top: 15, bottom: 15, width: 772, height: 32, x: 0, y: 1722 },
'demonbot/wave-square-mid-squish': { top: 15, bottom: 15, width: 772, height: 32, x: 774, y: 1722 },
'demonbot/wave-square-mid-stretch': { top: 15, bottom: 15, width: 772, height: 32, x: 0, y: 1756 },
'demonbot/wave-square-short-mid': { top: 23, bottom: 24, width: 772, height: 15, x: 774, y: 1756 },
'demonbot/wave-square-short-squish': { top: 24, bottom: 24, width: 772, height: 14, x: 0, y: 1790 },
'demonbot/wave-square-short-stretch': { top: 24, bottom: 24, width: 772, height: 14, x: 774, y: 1790 },
'demonbot/wave-square-tall-mid': { top: 2, bottom: 2, width: 772, height: 58, x: 0, y: 1806 },
'demonbot/wave-square-tall-squish': { top: 2, bottom: 2, width: 772, height: 58, x: 774, y: 1806 },
'demonbot/wave-square-tall-stretch': { top: 2, bottom: 3, width: 772, height: 57, x: 0, y: 1866 },
'demonbot/wave-target': { left: 1, top: 15, bottom: 15, right: 2, width: 769, height: 32, x: 774, y: 1866 },
'demonbot/pen-extend-5': { left: 326, top: 3, bottom: 296, right: 18, width: 35, height: 186, x: 0, y: 0 },
'demonbot/pen-extend-6': { left: 326, top: 3, bottom: 296, right: 18, width: 35, height: 186, x: 37, y: 0 },
'demonbot/pen-extend-7': { left: 335, bottom: 296, right: 25, width: 19, height: 189, x: 74, y: 0 },
'demonbot/pen-extend-8': { left: 336, bottom: 296, right: 27, width: 16, height: 189, x: 95, y: 0 },
'demonbot/pen-extend-9': { left: 333, bottom: 296, right: 26, width: 20, height: 189, x: 113, y: 0 },
'demonbot/pen-extend-10': { left: 327, bottom: 296, right: 21, width: 31, height: 189, x: 135, y: 0 },
'demonbot/pen-extend-11': { left: 327, bottom: 312, right: 21, width: 31, height: 173, x: 168, y: 0 },
'demonbot/pen-extend-12': { left: 327, bottom: 320, right: 21, width: 31, height: 165, x: 201, y: 0 },
'demonbot/pen-extend-13': { left: 327, bottom: 321, right: 21, width: 31, height: 164, x: 234, y: 0 },
'demonbot/pen-extend-14': { left: 327, bottom: 321, right: 17, width: 35, height: 164, x: 267, y: 0 },
'demonbot/pen-extend-15': { left: 327, bottom: 321, right: 17, width: 35, height: 164, x: 304, y: 0 },
'demonbot/pen-extend-16': { left: 3, bottom: 322, right: 13, width: 363, height: 163, x: 341, y: 0 },
'demonbot/pen-extend-17': { left: 65, bottom: 322, right: 10, width: 304, height: 163, x: 706, y: 0 },
'demonbot/pen-extend-18': { left: 119, bottom: 289, right: 8, width: 252, height: 196, x: 1012, y: 0 },
'demonbot/pen-extend-19': { left: 142, bottom: 268, right: 7, width: 230, height: 217, x: 1266, y: 0 },
'demonbot/pen-extend-20': { left: 150, bottom: 263, right: 7, width: 222, height: 222, x: 1498, y: 0 },
'demonbot/pen-extend-21': { left: 150, bottom: 259, right: 8, width: 221, height: 226, x: 1722, y: 0 },
'demonbot/pen-extend-22': { left: 151, bottom: 247, right: 12, width: 216, height: 238, x: 0, y: 228 },
'demonbot/pen-extend-23': { left: 146, bottom: 227, right: 19, width: 214, height: 258, x: 218, y: 228 },
'demonbot/pen-extend-24': { left: 137, bottom: 202, right: 21, width: 221, height: 283, x: 434, y: 228 },
'demonbot/pen-extend-25': { left: 131, top: 3, bottom: 173, right: 20, width: 228, height: 309, x: 657, y: 228 },
'demonbot/pen-extend-26': { left: 133, top: 25, bottom: 146, right: 20, width: 226, height: 314, x: 887, y: 228 },
'demonbot/pen-extend-27': { left: 130, top: 50, bottom: 102, right: 19, width: 230, height: 333, x: 1115, y: 228 },
'demonbot/pen-extend-28': { left: 133, top: 72, bottom: 67, right: 19, width: 227, height: 346, x: 1347, y: 228 },
'demonbot/pen-extend-29': { left: 136, top: 81, bottom: 40, right: 19, width: 224, height: 364, x: 1576, y: 228 },
'demonbot/pen-extend-30': { left: 140, top: 84, bottom: 22, right: 19, width: 220, height: 379, x: 0, y: 594 },
'demonbot/pen-extend-31': { left: 143, top: 87, bottom: 11, right: 19, width: 217, height: 387, x: 222, y: 594 },
'demonbot/pen-extend-32': { left: 144, top: 87, bottom: 7, right: 19, width: 216, height: 391, x: 441, y: 594 },
'demonbot/pen-extend-33': { left: 146, top: 88, bottom: 10, right: 19, width: 214, height: 387, x: 659, y: 594 },
'demonbot/pen-extend-34': { left: 148, top: 88, bottom: 12, right: 19, width: 212, height: 385, x: 875, y: 594 },
'demonbot/pen-extend-35': { left: 148, top: 88, bottom: 13, right: 19, width: 212, height: 384, x: 1089, y: 594 },
'demonbot/pen-extend-36': { left: 148, top: 89, bottom: 14, right: 19, width: 212, height: 382, x: 1303, y: 594 },
'demonbot/pen-extend-37': { left: 148, top: 88, bottom: 14, right: 19, width: 212, height: 383, x: 1517, y: 594 },
'demonbot/pen-extend-38': { left: 148, top: 88, bottom: 13, right: 19, width: 212, height: 384, x: 1731, y: 594 },
'demonbot/pen-extend-39': { left: 148, top: 88, bottom: 12, right: 19, width: 212, height: 385, x: 0, y: 987 },
'demonbot/pen-extend-40': { left: 146, top: 88, bottom: 10, right: 19, width: 214, height: 387, x: 214, y: 987 },
'babybot/planet-opening-1': { left: 18, top: 5, bottom: 6, right: 16, width: 6, height: 21, x: 0, y: 0 },
'babybot/planet-opening-2': { left: 11, top: 3, bottom: 3, right: 8, width: 21, height: 26, x: 8, y: 0 },
'babybot/planet-opening-3': { left: 2, right: 2, width: 36, height: 32, x: 31, y: 0 },
'babybot/planet-opening-4': { left: 2, right: 3, width: 35, height: 32, x: 69, y: 0 },
'babybot/gift-1': { left: 34, top: 24, bottom: 25, right: 47, width: 26, height: 27, x: 106, y: 0 },
'babybot/gift-2': { left: 25, top: 15, bottom: 12, right: 37, width: 45, height: 49, x: 134, y: 0 },
'babybot/gift-3': { left: 16, top: 4, bottom: 7, right: 28, width: 63, height: 65, x: 181, y: 0 },
'babybot/gift-4': { left: 6, bottom: 7, right: 15, width: 86, height: 69, x: 246, y: 0 },
'babybot/gift-5': { top: 3, bottom: 7, right: 10, width: 97, height: 66, x: 334, y: 0 },
'babybot/gift-6': { top: 21, width: 107, height: 55, x: 433, y: 0 },
'babybot/gift-7': { top: 21, width: 107, height: 55, x: 542, y: 0 },
'babybot/planet-1-explosion-1': { left: 90, top: 103, bottom: 106, right: 72, width: 48, height: 44, x: 651, y: 0 },
'babybot/planet-1-explosion-2': { left: 79, top: 84, bottom: 100, right: 59, width: 72, height: 69, x: 701, y: 0 },
'babybot/planet-1-explosion-3': { left: 76, top: 83, bottom: 94, right: 47, width: 87, height: 76, x: 775, y: 0 },
'babybot/planet-1-explosion-4': { left: 65, top: 73, bottom: 87, right: 40, width: 105, height: 93, x: 864, y: 0 },
'babybot/planet-2-explosion-1': { left: 85, top: 90, bottom: 106, right: 64, width: 61, height: 57, x: 971, y: 0 },
'babybot/planet-2-explosion-2': { left: 72, top: 67, bottom: 100, right: 48, width: 90, height: 86, x: 1034, y: 0 },
'babybot/planet-2-explosion-3': { left: 66, top: 63, bottom: 92, right: 33, width: 111, height: 98, x: 1126, y: 0 },
'babybot/planet-2-explosion-4': { left: 53, top: 52, bottom: 84, right: 27, width: 130, height: 117, x: 1239, y: 0 },
'babybot/planet-3-explosion-1': { left: 77, top: 78, bottom: 107, right: 56, width: 77, height: 68, x: 1371, y: 0 },
'babybot/planet-3-explosion-2': { left: 62, top: 49, bottom: 97, right: 38, width: 110, height: 107, x: 1450, y: 0 },
'babybot/planet-3-explosion-3': { left: 53, top: 46, bottom: 90, right: 20, width: 137, height: 117, x: 1562, y: 0 },
'babybot/planet-3-explosion-4': { left: 38, top: 30, bottom: 78, right: 6, width: 166, height: 145, x: 1701, y: 0 },
'babybot/planet-1-ambiance-1': { left: 70, top: 87, bottom: 104, right: 67, width: 73, height: 62, x: 1869, y: 0 },
'babybot/planet-1-ambiance-2': { left: 70, top: 74, bottom: 104, right: 75, width: 65, height: 75, x: 0, y: 147 },
'babybot/planet-1-ambiance-3': { left: 69, top: 82, bottom: 103, right: 75, width: 66, height: 68, x: 67, y: 147 },
'babybot/planet-1-ambiance-4': { left: 69, top: 87, bottom: 103, right: 75, width: 66, height: 63, x: 135, y: 147 },
'babybot/planet-1-ambiance-5': { left: 70, top: 87, bottom: 104, right: 75, width: 65, height: 62, x: 203, y: 147 },
'babybot/planet-1-ambiance-6': { left: 70, top: 87, bottom: 90, right: 75, width: 65, height: 76, x: 270, y: 147 },
'babybot/planet-1-ambiance-7': { left: 57, top: 87, bottom: 75, right: 75, width: 78, height: 91, x: 337, y: 147 },
'babybot/planet-1-ambiance-8': { left: 42, top: 87, bottom: 64, right: 75, width: 93, height: 102, x: 417, y: 147 },
'babybot/planet-1-ambiance-9': { left: 39, top: 87, bottom: 58, right: 75, width: 96, height: 108, x: 512, y: 147 },
'babybot/planet-1-ambiance-10': { left: 36, top: 87, bottom: 62, right: 75, width: 99, height: 104, x: 610, y: 147 },
'babybot/planet-1-ambiance-11': { left: 42, top: 87, bottom: 63, right: 75, width: 93, height: 103, x: 711, y: 147 },
'babybot/planet-1-ambiance-12': { left: 70, top: 77, bottom: 104, right: 75, width: 65, height: 72, x: 806, y: 147 },
'babybot/planet-1-ambiance-13': { left: 69, top: 63, bottom: 103, right: 43, width: 98, height: 87, x: 873, y: 147 },
'babybot/planet-1-ambiance-14': { left: 69, top: 87, bottom: 103, right: 33, width: 108, height: 63, x: 973, y: 147 },
'babybot/planet-1-ambiance-15': { left: 70, top: 87, bottom: 104, right: 42, width: 98, height: 62, x: 1083, y: 147 },
'babybot/planet-1-ambiance-16': { left: 70, top: 87, bottom: 104, right: 44, width: 96, height: 62, x: 1183, y: 147 },
'babybot/planet-1-ambiance-17': { left: 70, top: 87, bottom: 102, right: 33, width: 107, height: 64, x: 1281, y: 147 },
'babybot/planet-1-ambiance-18': { left: 69, top: 87, bottom: 99, right: 21, width: 120, height: 67, x: 1390, y: 147 },
'babybot/planet-1-ambiance-19': { left: 69, top: 87, bottom: 95, right: 16, width: 125, height: 71, x: 1512, y: 147 },
'babybot/planet-1-ambiance-20': { left: 70, top: 87, bottom: 93, right: 17, width: 123, height: 73, x: 1639, y: 147 },
'babybot/planet-2-ambiance-1': { left: 46, top: 70, bottom: 98, right: 15, width: 149, height: 85, x: 1764, y: 147 },
'babybot/planet-2-ambiance-2': { left: 46, top: 70, bottom: 98, right: 15, width: 149, height: 85, x: 0, y: 257 },
'babybot/planet-2-ambiance-3': { left: 46, top: 70, bottom: 96, right: 15, width: 149, height: 87, x: 151, y: 257 },
'babybot/planet-2-ambiance-4': { left: 46, top: 70, bottom: 97, right: 15, width: 149, height: 86, x: 302, y: 257 },
'babybot/planet-2-ambiance-5': { left: 46, top: 70, bottom: 98, right: 15, width: 149, height: 85, x: 453, y: 257 },
'babybot/planet-3-ambiance-1': { left: 37, top: 45, bottom: 101, right: 55, width: 118, height: 107, x: 604, y: 257 },
'babybot/planet-3-ambiance-2': { left: 37, top: 45, bottom: 98, right: 55, width: 118, height: 110, x: 724, y: 257 },
'babybot/planet-3-ambiance-3': { left: 37, top: 45, bottom: 98, right: 55, width: 118, height: 110, x: 844, y: 257 },
'babybot/planet-3-ambiance-4': { left: 37, top: 45, bottom: 98, right: 55, width: 118, height: 110, x: 964, y: 257 },
'babybot/planet-3-ambiance-5': { left: 37, top: 45, bottom: 98, right: 55, width: 118, height: 110, x: 1084, y: 257 },
'babybot/planet-4-ambiance-1': { bottom: 103, right: 44, width: 166, height: 150, x: 1204, y: 257 },
'babybot/planet-4-ambiance-2': { bottom: 103, right: 44, width: 166, height: 150, x: 1372, y: 257 },
'babybot/planet-4-ambiance-3': { top: 1, bottom: 101, right: 44, width: 166, height: 151, x: 1540, y: 257 },
'babybot/planet-4-ambiance-4': { top: 1, bottom: 102, right: 44, width: 166, height: 150, x: 1708, y: 257 },
'babybot/planet-4-ambiance-5': { bottom: 103, right: 44, width: 166, height: 150, x: 0, y: 410 },
'babybot/cannon-wheel': { width: 110, height: 110, x: 168, y: 410 },
'babybot/cannon-wheel-rotate24': { width: 110, height: 110, x: 280, y: 410 },
'babybot/cannon-wheel-rotate48': { width: 110, height: 110, x: 392, y: 410 },
'babybot/cannon-wheel-rotate72': { width: 110, height: 110, x: 504, y: 410 },
'babybot/cannon-wheel-rotate96': { width: 110, height: 110, x: 616, y: 410 },
'babybot/cannon-wheel-rotate120': { width: 110, height: 110, x: 728, y: 410 },
'babybot/cannon-wheel-rotate144': { width: 110, height: 110, x: 840, y: 410 },
'babybot/cannon-wheel-rotate168': { width: 109, height: 110, x: 952, y: 410 },
'babybot/cannon-wheel-rotate-168': { width: 110, height: 110, x: 1063, y: 410 },
'babybot/cannon-wheel-rotate-144': { width: 110, height: 111, x: 1175, y: 410 },
'babybot/cannon-wheel-rotate-120': { width: 110, height: 110, x: 1287, y: 410 },
'babybot/cannon-wheel-rotate-96': { width: 110, height: 110, x: 1399, y: 410 },
'babybot/cannon-wheel-rotate-72': { width: 110, height: 109, x: 1511, y: 410 },
'babybot/cannon-wheel-rotate-48': { width: 111, height: 110, x: 1623, y: 410 },
'babybot/cannon-wheel-rotate-24': { width: 110, height: 110, x: 1736, y: 410 },
'babybot/planet-3': { left: 54, top: 70, bottom: 36, right: 31, width: 125, height: 147, x: 1848, y: 410 },
'babybot/planet-4': { left: 23, top: 24, width: 187, height: 229, x: 0, y: 562 },
'babybot/cannon-body': { width: 132, height: 250, x: 189, y: 562 },
'babybot/cannon-body-rotate1': { left: 1, right: 3, width: 132, height: 252, x: 323, y: 562 },
'babybot/cannon-body-rotate2': { left: 2, top: 1, bottom: 2, right: 6, width: 132, height: 250, x: 457, y: 562 },
'babybot/cannon-body-rotate3': { left: 3, top: 1, bottom: 3, right: 9, width: 132, height: 251, x: 591, y: 562 },
'babybot/cannon-body-rotate4': { left: 4, top: 3, bottom: 4, right: 12, width: 133, height: 250, x: 725, y: 562 },
'babybot/cannon-body-rotate5': { left: 5, top: 4, bottom: 5, right: 15, width: 133, height: 250, x: 860, y: 562 },
'babybot/cannon-body-rotate-1': { left: 3, bottom: 1, right: 1, width: 132, height: 251, x: 995, y: 562 },
'babybot/cannon-body-rotate-2': { left: 6, top: 1, bottom: 2, right: 2, width: 132, height: 250, x: 1129, y: 562 },
'babybot/cannon-body-rotate-3': { left: 9, top: 1, bottom: 3, right: 3, width: 132, height: 251, x: 1263, y: 562 },
'babybot/cannon-body-rotate-4': { left: 13, top: 2, bottom: 4, right: 3, width: 133, height: 251, x: 1397, y: 562 },
'babybot/cannon-body-rotate-5': { left: 16, top: 3, bottom: 5, right: 5, width: 132, height: 251, x: 1532, y: 562 },
'babybot/cannon-button-left': { width: 17, height: 26, x: 1666, y: 562 },
'babybot/cannon-button-left-press': { top: 4, width: 17, height: 22, x: 1685, y: 562 },
'babybot/cannon-button-left-rotate-2.5': { width: 17, height: 26, x: 1704, y: 562 },
'babybot/cannon-button-left-rotate-5': { width: 17, height: 26, x: 1723, y: 562 },
'babybot/cannon-button-left-rotate2.5': { width: 18, height: 25, x: 1742, y: 562 },
'babybot/cannon-button-left-rotate5': { width: 18, height: 25, x: 1762, y: 562 },
'babybot/cannon-button-right': { width: 17, height: 27, x: 1782, y: 562 },
'babybot/cannon-button-right-press': { top: 4, width: 17, height: 23, x: 1801, y: 562 },
'babybot/cannon-button-right-rotate-2.5': { width: 17, height: 27, x: 1820, y: 562 },
'babybot/cannon-button-right-rotate-5': { width: 17, height: 27, x: 1839, y: 562 },
'babybot/cannon-button-right-rotate2.5': { width: 17, height: 27, x: 1858, y: 562 },
'babybot/cannon-button-right-rotate5': { width: 17, height: 27, x: 1877, y: 562 },
'babybot/cannon-button-activate': { width: 34, height: 38, x: 1896, y: 562 },
'babybot/cannon-button-activate-press': { top: 7, width: 34, height: 31, x: 1932, y: 562 },
'babybot/cannon-button-activate-rotate-2.5': { width: 33, height: 38, x: 0, y: 816 },
'babybot/cannon-button-activate-rotate-5': { width: 33, height: 38, x: 35, y: 816 },
'babybot/cannon-button-activate-rotate2.5': { width: 34, height: 38, x: 70, y: 816 },
'babybot/cannon-button-activate-rotate5': { width: 35, height: 38, x: 106, y: 816 },
'babybot/cannon-baby-inside': { left: 43, top: 9, bottom: 62, right: 39, width: 38, height: 50, x: 143, y: 816 },
'babybot/cannon-baby-right-1': { left: 33, top: 9, bottom: 62, right: 45, width: 42, height: 50, x: 183, y: 816 },
'babybot/cannon-baby-right-2': { left: 49, top: 9, bottom: 61, right: 33, width: 38, height: 51, x: 227, y: 816 },
'babybot/cannon-baby-right-3': { left: 51, top: 10, bottom: 61, right: 30, width: 39, height: 50, x: 267, y: 816 },
'babybot/cannon-baby-right-4': { left: 48, top: 9, bottom: 61, right: 24, width: 48, height: 51, x: 308, y: 816 },
'babybot/cannon-baby-right-5': { left: 47, top: 7, bottom: 61, right: 31, width: 42, height: 53, x: 358, y: 816 },
'babybot/cannon-baby-right-6': { left: 47, top: 9, bottom: 62, right: 36, width: 37, height: 50, x: 402, y: 816 },
'babybot/cannon-baby-right-7': { left: 34, top: 9, bottom: 62, right: 45, width: 41, height: 50, x: 441, y: 816 },
'babybot/cannon-baby-right-8': { left: 41, top: 9, bottom: 62, right: 41, width: 38, height: 50, x: 484, y: 816 },
'babybot/cannon-baby-left-1': { left: 51, top: 10, bottom: 61, right: 30, width: 39, height: 50, x: 524, y: 816 },
'babybot/cannon-baby-left-2': { left: 36, top: 9, bottom: 62, right: 44, width: 40, height: 50, x: 565, y: 816 },
'babybot/cannon-baby-left-3': { left: 33, top: 9, bottom: 62, right: 45, width: 42, height: 50, x: 607, y: 816 },
'babybot/cannon-baby-left-4': { left: 30, top: 7, bottom: 64, right: 38, width: 52, height: 50, x: 651, y: 816 },
'babybot/cannon-baby-left-5': { left: 35, top: 6, bottom: 64, right: 36, width: 49, height: 51, x: 705, y: 816 },
'babybot/cannon-baby-left-6': { left: 41, top: 9, bottom: 62, right: 41, width: 38, height: 50, x: 756, y: 816 },
'babybot/cannon-baby-left-7': { left: 51, top: 10, bottom: 60, right: 29, width: 40, height: 51, x: 796, y: 816 },
'babybot/cannon-baby-left-8': { left: 39, top: 9, bottom: 63, right: 43, width: 38, height: 49, x: 838, y: 816 },
'babybot/cannon-baby-load-1': { left: 44, top: 10, bottom: 65, right: 40, width: 36, height: 46, x: 878, y: 816 },
'babybot/cannon-baby-load-2': { left: 44, top: 7, bottom: 68, right: 40, width: 36, height: 46, x: 916, y: 816 },
'babybot/cannon-baby-load-3': { left: 43, top: 7, bottom: 63, right: 40, width: 37, height: 51, x: 954, y: 816 },
'babybot/cannon-baby-load-4': { left: 43, top: 7, bottom: 63, right: 40, width: 37, height: 51, x: 993, y: 816 },
'babybot/cannon-baby-load-5': { left: 43, top: 8, bottom: 62, right: 40, width: 37, height: 51, x: 1032, y: 816 },
'babybot/cannon-baby-load-6': { left: 43, top: 9, bottom: 61, right: 40, width: 37, height: 51, x: 1071, y: 816 },
'babybot/cannon-baby-load-7': { left: 43, top: 11, bottom: 59, right: 40, width: 37, height: 51, x: 1110, y: 816 },
'babybot/cannon-baby-load-8': { left: 43, top: 14, bottom: 56, right: 40, width: 37, height: 51, x: 1149, y: 816 },
'babybot/cannon-baby-load-9': { left: 43, top: 17, bottom: 53, right: 40, width: 37, height: 51, x: 1188, y: 816 },
'babybot/cannon-baby-load-10': { left: 43, top: 21, bottom: 49, right: 40, width: 37, height: 51, x: 1227, y: 816 },
'babybot/cannon-baby-load-11': { left: 43, top: 26, bottom: 44, right: 40, width: 37, height: 51, x: 1266, y: 816 },
'babybot/cannon-baby-load-12': { left: 43, top: 31, bottom: 39, right: 40, width: 37, height: 51, x: 1305, y: 816 },
'babybot/cannon-baby-load-13': { left: 43, top: 37, bottom: 33, right: 40, width: 37, height: 51, x: 1344, y: 816 },
'babybot/cannon-baby-load-14': { left: 43, top: 43, bottom: 27, right: 40, width: 37, height: 51, x: 1383, y: 816 },
'babybot/cannon-baby-load-15': { left: 43, top: 50, bottom: 20, right: 40, width: 37, height: 51, x: 1422, y: 816 },
'babybot/cannon-baby-new-1': { left: 45, top: 57, bottom: 18, right: 39, width: 36, height: 46, x: 1461, y: 816 },
'babybot/cannon-baby-new-2': { left: 45, top: 57, bottom: 18, right: 39, width: 36, height: 46, x: 1499, y: 816 },
'babybot/cannon-baby-new-3': { left: 45, top: 56, bottom: 19, right: 39, width: 36, height: 46, x: 1537, y: 816 },
'babybot/cannon-baby-new-4': { left: 45, top: 55, bottom: 20, right: 39, width: 36, height: 46, x: 1575, y: 816 },
'babybot/cannon-baby-new-5': { left: 45, top: 53, bottom: 22, right: 39, width: 36, height: 46, x: 1613, y: 816 },
'babybot/cannon-baby-new-6': { left: 45, top: 51, bottom: 24, right: 39, width: 36, height: 46, x: 1651, y: 816 },
'babybot/cannon-baby-new-7': { left: 45, top: 48, bottom: 27, right: 39, width: 36, height: 46, x: 1689, y: 816 },
'babybot/cannon-baby-new-8': { left: 45, top: 45, bottom: 30, right: 39, width: 36, height: 46, x: 1727, y: 816 },
'babybot/cannon-baby-new-9': { left: 45, top: 41, bottom: 34, right: 39, width: 36, height: 46, x: 1765, y: 816 },
'babybot/cannon-baby-new-10': { left: 45, top: 37, bottom: 39, right: 39, width: 36, height: 45, x: 1803, y: 816 },
'babybot/cannon-baby-new-11': { left: 45, top: 32, bottom: 44, right: 39, width: 36, height: 45, x: 1841, y: 816 },
'babybot/cannon-baby-new-12': { left: 45, top: 26, bottom: 49, right: 39, width: 36, height: 46, x: 1879, y: 816 },
'babybot/cannon-baby-new-13': { left: 45, top: 20, bottom: 55, right: 39, width: 36, height: 46, x: 1917, y: 816 },
'babybot/cannon-baby-new-14': { left: 45, top: 14, bottom: 61, right: 39, width: 36, height: 46, x: 1955, y: 816 },
'babybot/cannon-baby-new-15': { left: 42, bottom: 70, right: 41, width: 37, height: 51, x: 0, y: 871 },
'babybot/cannon-baby-new-16': { left: 42, top: 3, bottom: 67, right: 41, width: 37, height: 51, x: 39, y: 871 },
'babybot/cannon-baby-flying-up-half': { left: 40, top: 62, right: 36, width: 44, height: 59, x: 78, y: 871 },
'babybot/cannon-baby-flying-up-full': { left: 40, top: 1, bottom: 8, right: 36, width: 44, height: 112, x: 124, y: 871 },
'babybot/cannon-baby-falling-down': { width: 21, height: 50, x: 170, y: 871 },
'babybot/cannon-baby-falling-down-rotate24': { left: 3, top: 2, bottom: 4, right: 3, width: 33, height: 48, x: 193, y: 871 },
'babybot/cannon-baby-falling-down-rotate48': { left: 4, top: 4, bottom: 7, right: 3, width: 44, height: 38, x: 228, y: 871 },
'babybot/cannon-baby-falling-down-rotate72': { left: 2, top: 4, bottom: 6, right: 1, width: 51, height: 25, x: 274, y: 871 },
'babybot/cannon-baby-falling-down-rotate96': { left: 1, top: 1, bottom: 2, right: 1, width: 50, height: 23, x: 327, y: 871 },
'babybot/cannon-baby-falling-down-rotate120': { left: 4, top: 4, bottom: 3, right: 2, width: 48, height: 36, x: 379, y: 871 },
'babybot/cannon-baby-falling-down-rotate144': { left: 7, top: 4, bottom: 2, right: 4, width: 35, height: 47, x: 429, y: 871 },
'babybot/cannon-baby-falling-down-rotate168': { left: 5, top: 1, bottom: 1, right: 3, width: 22, height: 51, x: 466, y: 871 },
'babybot/cannon-baby-falling-down-rotate-168': { left: 2, top: 2, bottom: 1, right: 2, width: 26, height: 50, x: 490, y: 871 },
'babybot/cannon-baby-falling-down-rotate-144': { left: 3, top: 5, bottom: 3, right: 4, width: 39, height: 45, x: 518, y: 871 },
'babybot/cannon-baby-falling-down-rotate-120': { left: 2, top: 7, bottom: 4, right: 3, width: 49, height: 32, x: 559, y: 871 },
'babybot/cannon-baby-falling-down-rotate-96': { top: 3, bottom: 2, width: 52, height: 21, x: 610, y: 871 },
'babybot/cannon-baby-falling-down-rotate-72': { left: 2, top: 3, bottom: 2, right: 3, width: 49, height: 30, x: 664, y: 871 },
'babybot/cannon-baby-falling-down-rotate-48': { left: 3, top: 3, bottom: 4, right: 6, width: 42, height: 42, x: 715, y: 871 },
'babybot/cannon-baby-falling-down-rotate-24': { left: 3, top: 2, bottom: 3, right: 7, width: 29, height: 49, x: 759, y: 871 },
'babybot/bk-star': { bottom: 1, width: 11, height: 10, x: 790, y: 871 },
'babybot/planet-1': { left: 79, top: 107, bottom: 69, right: 62, width: 69, height: 77, x: 803, y: 871 },
'babybot/planet-2': { left: 68, top: 94, bottom: 51, right: 42, width: 100, height: 108, x: 874, y: 871 },
'babybot/planet-1-moon': { width: 18, height: 21, x: 976, y: 871 },
'babybot/planet-2-moon': { width: 25, height: 30, x: 996, y: 871 },
'babybot/planet-3-moon': { width: 28, height: 37, x: 1023, y: 871 },
'babybot/planet-4-moon': { width: 46, height: 57, x: 1053, y: 871 },
'babybot/bk-constellation-1': { width: 83, height: 85, x: 1101, y: 871 },
'babybot/bk-constellation-2': { width: 43, height: 68, x: 1186, y: 871 },
'explosions/explosion-1-1': { left: 88, top: 89, bottom: 71, right: 90, width: 32, height: 28, x: 1231, y: 871 },
'explosions/explosion-1-2': { left: 67, top: 77, bottom: 58, right: 80, width: 63, height: 53, x: 1265, y: 871 },
'explosions/explosion-1-3': { left: 61, top: 51, bottom: 52, right: 70, width: 79, height: 85, x: 1330, y: 871 },
'explosions/explosion-1-4': { left: 49, top: 51, bottom: 41, right: 57, width: 104, height: 96, x: 1411, y: 871 },
'explosions/explosion-1-5': { left: 30, top: 33, bottom: 27, right: 36, width: 144, height: 128, x: 1517, y: 871 },
'explosions/explosion-1-6': { left: 20, top: 23, bottom: 19, right: 22, width: 168, height: 146, x: 1663, y: 871 },
'explosions/explosion-1-7': { left: 14, top: 18, bottom: 15, right: 14, width: 182, height: 155, x: 0, y: 1019 },
'explosions/explosion-1-8': { left: 7, top: 10, bottom: 9, right: 6, width: 197, height: 169, x: 184, y: 1019 },
'explosions/explosion-1-9': { left: 3, top: 4, bottom: 4, right: 3, width: 204, height: 180, x: 383, y: 1019 },
'explosions/explosion-1-10': { width: 210, height: 188, x: 589, y: 1019 },
'explosions/explosion-2-1': { left: 53, top: 51, bottom: 60, right: 57, width: 14, height: 11, x: 801, y: 1019 },
'explosions/explosion-2-2': { left: 43, top: 45, bottom: 53, right: 50, width: 31, height: 24, x: 817, y: 1019 },
'explosions/explosion-2-3': { left: 24, top: 30, bottom: 39, right: 29, width: 71, height: 53, x: 850, y: 1019 },
'explosions/explosion-2-4': { left: 17, top: 24, bottom: 33, right: 21, width: 86, height: 65, x: 923, y: 1019 },
'explosions/explosion-2-5': { left: 14, top: 17, bottom: 24, right: 14, width: 96, height: 81, x: 1011, y: 1019 },
'explosions/explosion-2-6': { left: 11, top: 10, bottom: 16, right: 11, width: 102, height: 96, x: 1109, y: 1019 },
'explosions/explosion-2-7': { left: 5, top: 5, bottom: 10, right: 6, width: 113, height: 107, x: 1213, y: 1019 },
'explosions/explosion-2-8': { left: 3, top: 3, bottom: 6, right: 5, width: 116, height: 113, x: 1328, y: 1019 },
'explosions/explosion-2-9': { left: 1, top: 1, bottom: 3, right: 2, width: 121, height: 118, x: 1446, y: 1019 },
'explosions/explosion-2-10': { width: 124, height: 122, x: 1569, y: 1019 },
'explosions/explosion-3-1': { left: 36, top: 71, bottom: 64, right: 31, width: 30, height: 45, x: 1695, y: 1019 },
'explosions/explosion-3-2': { left: 34, top: 60, bottom: 54, right: 30, width: 33, height: 66, x: 1727, y: 1019 },
'explosions/explosion-3-3': { left: 30, top: 48, bottom: 38, right: 25, width: 42, height: 94, x: 1762, y: 1019 },
'explosions/explosion-3-4': { left: 25, top: 38, bottom: 33, right: 18, width: 54, height: 109, x: 1806, y: 1019 },
'explosions/explosion-3-5': { left: 17, top: 34, bottom: 29, right: 15, width: 65, height: 117, x: 1862, y: 1019 },
'explosions/explosion-3-6': { left: 11, top: 29, bottom: 26, right: 10, width: 76, height: 125, x: 0, y: 1209 },
'explosions/explosion-3-7': { left: 8, top: 20, bottom: 22, right: 6, width: 83, height: 138, x: 78, y: 1209 },
'explosions/explosion-3-8': { left: 4, top: 13, bottom: 13, right: 2, width: 91, height: 154, x: 163, y: 1209 },
'explosions/explosion-3-9': { top: 5, bottom: 5, width: 97, height: 170, x: 256, y: 1209 },
'explosions/explosion-3-10': { left: 13, right: 9, width: 75, height: 180, x: 355, y: 1209 },
'explosions/explosion-4-1': { left: 42, top: 40, bottom: 41, right: 45, width: 27, height: 28, x: 432, y: 1209 },
'explosions/explosion-4-2': { left: 34, top: 34, bottom: 34, right: 35, width: 45, height: 41, x: 461, y: 1209 },
'explosions/explosion-4-3': { left: 25, top: 27, bottom: 26, right: 26, width: 63, height: 56, x: 508, y: 1209 },
'explosions/explosion-4-4': { left: 20, top: 20, bottom: 22, right: 24, width: 70, height: 67, x: 573, y: 1209 },
'explosions/explosion-4-5': { left: 15, top: 16, bottom: 16, right: 19, width: 80, height: 77, x: 645, y: 1209 },
'explosions/explosion-4-6': { left: 7, top: 11, bottom: 8, right: 11, width: 96, height: 90, x: 727, y: 1209 },
'explosions/explosion-4-7': { left: 4, top: 7, bottom: 5, right: 6, width: 104, height: 97, x: 825, y: 1209 },
'explosions/explosion-4-8': { left: 1, top: 4, bottom: 2, right: 3, width: 110, height: 103, x: 931, y: 1209 },
'explosions/explosion-4-9': { top: 1, width: 114, height: 108, x: 1043, y: 1209 },
'explosions/explosion-4-10': { left: 54, right: 56, width: 4, height: 109, x: 1159, y: 1209 },
'cat/sit-body': { left: 11, top: 5, right: 5, width: 32, height: 46, x: 1165, y: 1209 },
'cat/sit-head-1': { left: 22, top: 1, bottom: 33, width: 26, height: 17, x: 1199, y: 1209 },
'cat/sit-head-2': { left: 22, bottom: 33, width: 26, height: 18, x: 1227, y: 1209 },
'cat/sit-head-3': { left: 23, bottom: 33, width: 25, height: 18, x: 1255, y: 1209 },
'cat/sit-head-4': { left: 23, bottom: 31, width: 25, height: 20, x: 1282, y: 1209 },
'cat/sit-head-5': { left: 21, top: 1, bottom: 29, width: 27, height: 21, x: 1309, y: 1209 },
'cat/sit-head-6': { left: 21, top: 1, bottom: 31, width: 27, height: 19, x: 1338, y: 1209 },
'cat/sit-head-7': { left: 22, bottom: 33, width: 26, height: 18, x: 1367, y: 1209 },
'cat/sit-head-8': { left: 23, bottom: 33, width: 25, height: 18, x: 1395, y: 1209 },
'cat/sit-head-9': { left: 23, bottom: 33, width: 25, height: 18, x: 1422, y: 1209 },
'cat/sit-tail-1': { left: 3, top: 22, bottom: 9, right: 27, width: 18, height: 20, x: 1449, y: 1209 },
'cat/sit-tail-2': { left: 3, top: 21, bottom: 9, right: 26, width: 19, height: 21, x: 1469, y: 1209 },
'cat/sit-tail-3': { left: 3, top: 21, bottom: 9, right: 26, width: 19, height: 21, x: 1490, y: 1209 },
'cat/sit-tail-4': { left: 4, top: 21, bottom: 9, right: 26, width: 18, height: 21, x: 1511, y: 1209 },
'cat/sit-tail-5': { left: 4, top: 20, bottom: 9, right: 26, width: 18, height: 22, x: 1531, y: 1209 },
'cat/sit-tail-6': { left: 4, top: 20, bottom: 9, right: 26, width: 18, height: 22, x: 1551, y: 1209 },
'cat/stand': { top: 5, width: 68, height: 46, x: 1571, y: 1209 },
'cat/walk-1': { left: 2, top: 1, width: 67, height: 48, x: 1641, y: 1209 },
'cat/walk-2': { left: 2, top: 1, width: 67, height: 48, x: 1710, y: 1209 },
'cat/walk-3': { left: 1, top: 2, width: 68, height: 47, x: 1779, y: 1209 },
'cat/walk-4': { left: 1, top: 1, width: 68, height: 48, x: 1849, y: 1209 },
'cat/walk-5': { top: 1, width: 69, height: 48, x: 1919, y: 1209 },
'cat/walk-6': { left: 1, width: 68, height: 49, x: 0, y: 1391 },
'cat/walk-7': { left: 1, bottom: 1, width: 68, height: 48, x: 70, y: 1391 },
'cat/walk-8': { left: 2, width: 67, height: 49, x: 140, y: 1391 },
'hints/babybot-1': { left: 2, top: 18, right: 5, width: 48, height: 85, x: 209, y: 1391 },
'hints/babybot-2': { left: 2, top: 18, right: 5, width: 48, height: 85, x: 259, y: 1391 },
'hints/babybot-3': { top: 18, right: 5, width: 50, height: 85, x: 309, y: 1391 },
'hints/babybot-4': { top: 10, right: 5, width: 50, height: 93, x: 361, y: 1391 },
'hints/babybot-5': { left: 2, top: 3, right: 5, width: 48, height: 100, x: 413, y: 1391 },
'hints/babybot-6': { left: 2, right: 5, width: 48, height: 103, x: 463, y: 1391 },
'hints/babybot-7': { left: 2, top: 1, right: 5, width: 48, height: 102, x: 513, y: 1391 },
'hints/babybot-8': { left: 2, top: 3, right: 5, width: 48, height: 100, x: 563, y: 1391 },
'hints/babybot-9': { left: 2, top: 8, right: 5, width: 48, height: 95, x: 613, y: 1391 },
'hints/babybot-10': { left: 2, top: 13, right: 3, width: 50, height: 90, x: 663, y: 1391 },
'hints/babybot-11': { left: 2, top: 10, right: 1, width: 52, height: 93, x: 715, y: 1391 },
'hints/babybot-12': { left: 2, top: 8, width: 53, height: 95, x: 769, y: 1391 },
'hints/babybot-13': { left: 2, top: 8, width: 53, height: 95, x: 824, y: 1391 },
'intro-finale/items-letter-n': { width: 91, height: 89, x: 0, y: 0 },
'intro-finale/items-letter-s': { left: 4, right: 9, width: 78, height: 94, x: 93, y: 0 },
'intro-finale/items-letter-h': { top: 2, right: 4, width: 87, height: 87, x: 173, y: 0 },
'intro-finale/items-clove': { left: 21, top: 6, bottom: 13, right: 19, width: 28, height: 55, x: 262, y: 0 },
'intro-finale/items-control-room': { left: 3, top: 7, bottom: 8, right: 6, width: 56, height: 50, x: 292, y: 0 },
'intro-finale/items-earmuffs': { left: 4, top: 8, bottom: 7, right: 18, width: 43, height: 50, x: 350, y: 0 },
'intro-finale/items-forget-me-not': { left: 8, top: 11, bottom: 10, right: 13, width: 44, height: 44, x: 395, y: 0 },