fixed bug with player moving when releasing one of several pressed snap keys
[rocksndiamonds.git] / src / conf_gfx.c
1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // conf_gfx.c
10 // ============================================================================
11
12 #include "libgame/libgame.h"
13 #include "main.h"
14
15
16 // List values that are not defined in the configuration file are set to
17 // reliable default values. If that value is GFX_ARG_UNDEFINED, it will
18 // be dynamically determined, using some of the other list values.
19
20 struct ConfigTypeInfo image_config_suffix[] =
21 {
22   { ".x",                               ARG_UNDEFINED,  TYPE_INTEGER    },
23   { ".y",                               ARG_UNDEFINED,  TYPE_INTEGER    },
24   { ".xpos",                            ARG_UNDEFINED,  TYPE_INTEGER    },
25   { ".ypos",                            ARG_UNDEFINED,  TYPE_INTEGER    },
26   { ".width",                           ARG_UNDEFINED,  TYPE_INTEGER    },
27   { ".height",                          ARG_UNDEFINED,  TYPE_INTEGER    },
28   { ".vertical",                        "false",        TYPE_BOOLEAN    },
29   { ".offset",                          ARG_UNDEFINED,  TYPE_INTEGER    },
30   { ".xoffset",                         ARG_UNDEFINED,  TYPE_INTEGER    },
31   { ".yoffset",                         ARG_UNDEFINED,  TYPE_INTEGER    },
32   { ".2nd_movement_tile",               "false",        TYPE_BOOLEAN    },
33   { ".2nd_vertical",                    ARG_UNDEFINED,  TYPE_BOOLEAN    },
34   { ".2nd_offset",                      ARG_UNDEFINED,  TYPE_INTEGER    },
35   { ".2nd_xoffset",                     ARG_UNDEFINED,  TYPE_INTEGER    },
36   { ".2nd_yoffset",                     ARG_UNDEFINED,  TYPE_INTEGER    },
37   { ".2nd_swap_tiles",                  ARG_UNDEFINED,  TYPE_BOOLEAN    },
38   { ".frames",                          ARG_UNDEFINED,  TYPE_INTEGER    },
39   { ".frames_per_line",                 ARG_UNDEFINED,  TYPE_INTEGER    },
40   { ".start_frame",                     ARG_UNDEFINED,  TYPE_INTEGER    },
41   { ".delay",                           "1",            TYPE_INTEGER    },
42   { ".anim_mode",                       ARG_UNDEFINED,  TYPE_STRING     },
43   { ".global_sync",                     "false",        TYPE_BOOLEAN    },
44   { ".crumbled_like",                   ARG_UNDEFINED,  TYPE_ELEMENT    },
45   { ".diggable_like",                   ARG_UNDEFINED,  TYPE_ELEMENT    },
46   { ".border_size",                     ARG_UNDEFINED,  TYPE_INTEGER    },
47   { ".step_offset",                     "4",            TYPE_INTEGER    },
48   { ".step_xoffset",                    ARG_UNDEFINED,  TYPE_INTEGER    },
49   { ".step_yoffset",                    ARG_UNDEFINED,  TYPE_INTEGER    },
50   { ".step_delay",                      "1",            TYPE_INTEGER    },
51   { ".direction",                       ARG_UNDEFINED,  TYPE_STRING     },
52   { ".position",                        ARG_UNDEFINED,  TYPE_STRING     },
53   { ".draw_xoffset",                    "0",            TYPE_INTEGER    },
54   { ".draw_yoffset",                    "0",            TYPE_INTEGER    },
55   { ".draw_masked",                     ARG_UNDEFINED,  TYPE_BOOLEAN    },
56   { ".draw_order",                      ARG_UNDEFINED,  TYPE_INTEGER    },
57   { ".init_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
58   { ".init_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
59   { ".anim_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
60   { ".anim_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
61   { ".post_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
62   { ".post_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
63   { ".init_event",                      ARG_UNDEFINED,  TYPE_STRING     },
64   { ".init_event_action",               ARG_UNDEFINED,  TYPE_STRING     },
65   { ".anim_event",                      ARG_UNDEFINED,  TYPE_STRING     },
66   { ".anim_event_action",               ARG_UNDEFINED,  TYPE_STRING     },
67   { ".name",                            ARG_UNDEFINED,  TYPE_STRING     },
68   { ".scale_up_factor",                 ARG_UNDEFINED,  TYPE_INTEGER    },
69   { ".tile_size",                       ARG_UNDEFINED,  TYPE_INTEGER    },
70   { ".clone_from",                      ARG_UNDEFINED,  TYPE_GRAPHIC    },
71   { ".fade_mode",                       ARG_UNDEFINED,  TYPE_INTEGER    },
72   { ".fade_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
73   { ".post_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
74   { ".auto_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
75   { ".align",                           ARG_UNDEFINED,  TYPE_INTEGER    },
76   { ".valign",                          ARG_UNDEFINED,  TYPE_INTEGER    },
77   { ".sort_priority",                   ARG_UNDEFINED,  TYPE_INTEGER    },
78   { ".class",                           ARG_UNDEFINED,  TYPE_STRING     },
79   { ".style",                           ARG_UNDEFINED,  TYPE_STRING     },
80   { ".active_xoffset",                  "0",            TYPE_INTEGER    },
81   { ".active_yoffset",                  "0",            TYPE_INTEGER    },
82   { ".pressed_xoffset",                 "0",            TYPE_INTEGER    },
83   { ".pressed_yoffset",                 "0",            TYPE_INTEGER    },
84
85   { NULL,                               NULL,           0               }
86 };
87
88 struct ConfigInfo image_config[] =
89 {
90   // ==========================================================================
91   // image definitions for game elements (for in-game and editor graphics)
92   // ==========================================================================
93
94   // images for Boulder Dash style elements and actions
95
96   { "bd_wall",                                  "RocksDC.png"           },
97   { "bd_wall.xpos",                             "12"                    },
98   { "bd_wall.ypos",                             "9"                     },
99   { "bd_wall.frames",                           "1"                     },
100   { "bd_wall.EDITOR",                           "RocksDC.png"           },
101   { "bd_wall.EDITOR.xpos",                      "14"                    },
102   { "bd_wall.EDITOR.ypos",                      "13"                    },
103
104   { "bd_rock",                                  "RocksDC.png"           },
105   { "bd_rock.xpos",                             "12"                    },
106   { "bd_rock.ypos",                             "10"                    },
107   { "bd_rock.frames",                           "1"                     },
108   { "bd_rock.EDITOR",                           "RocksDC.png"           },
109   { "bd_rock.EDITOR.xpos",                      "14"                    },
110   { "bd_rock.EDITOR.ypos",                      "14"                    },
111   { "bd_rock.moving.left",                      "RocksDC.png"           },
112   { "bd_rock.moving.left.xpos",                 "12"                    },
113   { "bd_rock.moving.left.ypos",                 "10"                    },
114   { "bd_rock.moving.left.frames",               "4"                     },
115   { "bd_rock.moving.left.delay",                "2"                     },
116   { "bd_rock.moving.left.anim_mode",            "reverse"               },
117   { "bd_rock.moving.right",                     "RocksDC.png"           },
118   { "bd_rock.moving.right.xpos",                "12"                    },
119   { "bd_rock.moving.right.ypos",                "10"                    },
120   { "bd_rock.moving.right.frames",              "4"                     },
121   { "bd_rock.moving.right.start_frame",         "1"                     },
122   { "bd_rock.moving.right.delay",               "2"                     },
123   { "bd_rock.pushing.left",                     "RocksDC.png"           },
124   { "bd_rock.pushing.left.xpos",                "12"                    },
125   { "bd_rock.pushing.left.ypos",                "10"                    },
126   { "bd_rock.pushing.left.frames",              "4"                     },
127   { "bd_rock.pushing.left.delay",               "2"                     },
128   { "bd_rock.pushing.left.anim_mode",           "reverse"               },
129   { "bd_rock.pushing.right",                    "RocksDC.png"           },
130   { "bd_rock.pushing.right.xpos",               "12"                    },
131   { "bd_rock.pushing.right.ypos",               "10"                    },
132   { "bd_rock.pushing.right.frames",             "4"                     },
133   { "bd_rock.pushing.right.start_frame",        "1"                     },
134   { "bd_rock.pushing.right.delay",              "2"                     },
135
136   { "bd_diamond",                               "RocksElements.png"     },
137   { "bd_diamond.xpos",                          "0"                     },
138   { "bd_diamond.ypos",                          "10"                    },
139   { "bd_diamond.frames",                        "4"                     },
140   { "bd_diamond.delay",                         "4"                     },
141   { "bd_diamond.anim_mode",                     "reverse"               },
142   { "bd_diamond.moving",                        "RocksElements.png"     },
143   { "bd_diamond.moving.xpos",                   "3"                     },
144   { "bd_diamond.moving.ypos",                   "10"                    },
145   { "bd_diamond.moving.frames",                 "2"                     },
146   { "bd_diamond.moving.delay",                  "4"                     },
147   { "bd_diamond.falling",                       "RocksElements.png"     },
148   { "bd_diamond.falling.xpos",                  "3"                     },
149   { "bd_diamond.falling.ypos",                  "10"                    },
150   { "bd_diamond.falling.frames",                "2"                     },
151   { "bd_diamond.falling.delay",                 "4"                     },
152
153   { "bd_magic_wall",                            "RocksElements.png"     },
154   { "bd_magic_wall.xpos",                       "12"                    },
155   { "bd_magic_wall.ypos",                       "10"                    },
156   { "bd_magic_wall.frames",                     "1"                     },
157   { "bd_magic_wall.active",                     "RocksElements.png"     },
158   { "bd_magic_wall.active.xpos",                "12"                    },
159   { "bd_magic_wall.active.ypos",                "10"                    },
160   { "bd_magic_wall.active.frames",              "4"                     },
161   { "bd_magic_wall.active.anim_mode",           "reverse"               },
162   { "bd_magic_wall.active.delay",               "4"                     },
163   { "bd_magic_wall.active.global_sync",         "true"                  },
164   { "bd_magic_wall.filling",                    "RocksElements.png"     },
165   { "bd_magic_wall.filling.xpos",               "12"                    },
166   { "bd_magic_wall.filling.ypos",               "10"                    },
167   { "bd_magic_wall.filling.frames",             "4"                     },
168   { "bd_magic_wall.filling.anim_mode",          "reverse"               },
169   { "bd_magic_wall.filling.delay",              "4"                     },
170   { "bd_magic_wall.filling.global_sync",        "true"                  },
171   { "bd_magic_wall_full",                       "RocksElements.png"     },
172   { "bd_magic_wall_full.xpos",                  "12"                    },
173   { "bd_magic_wall_full.ypos",                  "10"                    },
174   { "bd_magic_wall_full.frames",                "4"                     },
175   { "bd_magic_wall_full.anim_mode",             "reverse"               },
176   { "bd_magic_wall_full.delay",                 "4"                     },
177   { "bd_magic_wall_full.global_sync",           "true"                  },
178   { "bd_magic_wall.emptying",                   "RocksElements.png"     },
179   { "bd_magic_wall.emptying.xpos",              "12"                    },
180   { "bd_magic_wall.emptying.ypos",              "10"                    },
181   { "bd_magic_wall.emptying.frames",            "4"                     },
182   { "bd_magic_wall.emptying.anim_mode",         "reverse"               },
183   { "bd_magic_wall.emptying.delay",             "4"                     },
184   { "bd_magic_wall.emptying.global_sync",       "true"                  },
185   { "bd_magic_wall_dead",                       "RocksElements.png"     },
186   { "bd_magic_wall_dead.xpos",                  "12"                    },
187   { "bd_magic_wall_dead.ypos",                  "10"                    },
188   { "bd_magic_wall_dead.frames",                "1"                     },
189
190   { "bd_amoeba",                                "RocksElements.png"     },
191   { "bd_amoeba.xpos",                           "8"                     },
192   { "bd_amoeba.ypos",                           "6"                     },
193   { "bd_amoeba.frames",                         "4"                     },
194   { "bd_amoeba.delay",                          "1000000"               },
195   { "bd_amoeba.anim_mode",                      "random"                },
196   { "bd_amoeba.EDITOR",                         "RocksElements.png"     },
197   { "bd_amoeba.EDITOR.xpos",                    "8"                     },
198   { "bd_amoeba.EDITOR.ypos",                    "7"                     },
199
200   { "bd_butterfly",                             "RocksElements.png"     },
201   { "bd_butterfly.xpos",                        "4"                     },
202   { "bd_butterfly.ypos",                        "12"                    },
203   { "bd_butterfly.frames",                      "2"                     },
204   { "bd_butterfly.anim_mode",                   "pingpong"              },
205   { "bd_butterfly.delay",                       "4"                     },
206   { "bd_butterfly.global_sync",                 "true"                  },
207   { "bd_butterfly.right",                       "RocksElements.png"     },
208   { "bd_butterfly.right.xpos",                  "4"                     },
209   { "bd_butterfly.right.ypos",                  "12"                    },
210   { "bd_butterfly.right.frames",                "2"                     },
211   { "bd_butterfly.right.anim_mode",             "pingpong"              },
212   { "bd_butterfly.right.delay",                 "4"                     },
213   { "bd_butterfly.right.global_sync",           "true"                  },
214   { "bd_butterfly.right.EDITOR",                "RocksElements.png"     },
215   { "bd_butterfly.right.EDITOR.xpos",           "8"                     },
216   { "bd_butterfly.right.EDITOR.ypos",           "12"                    },
217   { "bd_butterfly.up",                          "RocksElements.png"     },
218   { "bd_butterfly.up.xpos",                     "4"                     },
219   { "bd_butterfly.up.ypos",                     "12"                    },
220   { "bd_butterfly.up.frames",                   "2"                     },
221   { "bd_butterfly.up.anim_mode",                "pingpong"              },
222   { "bd_butterfly.up.delay",                    "4"                     },
223   { "bd_butterfly.up.global_sync",              "true"                  },
224   { "bd_butterfly.up.EDITOR",                   "RocksElements.png"     },
225   { "bd_butterfly.up.EDITOR.xpos",              "9"                     },
226   { "bd_butterfly.up.EDITOR.ypos",              "12"                    },
227   { "bd_butterfly.left",                        "RocksElements.png"     },
228   { "bd_butterfly.left.xpos",                   "4"                     },
229   { "bd_butterfly.left.ypos",                   "12"                    },
230   { "bd_butterfly.left.frames",                 "2"                     },
231   { "bd_butterfly.left.anim_mode",              "pingpong"              },
232   { "bd_butterfly.left.delay",                  "4"                     },
233   { "bd_butterfly.left.global_sync",            "true"                  },
234   { "bd_butterfly.left.EDITOR",                 "RocksElements.png"     },
235   { "bd_butterfly.left.EDITOR.xpos",            "10"                    },
236   { "bd_butterfly.left.EDITOR.ypos",            "12"                    },
237   { "bd_butterfly.down",                        "RocksElements.png"     },
238   { "bd_butterfly.down.xpos",                   "4"                     },
239   { "bd_butterfly.down.ypos",                   "12"                    },
240   { "bd_butterfly.down.frames",                 "2"                     },
241   { "bd_butterfly.down.anim_mode",              "pingpong"              },
242   { "bd_butterfly.down.delay",                  "4"                     },
243   { "bd_butterfly.down.global_sync",            "true"                  },
244   { "bd_butterfly.down.EDITOR",                 "RocksElements.png"     },
245   { "bd_butterfly.down.EDITOR.xpos",            "11"                    },
246   { "bd_butterfly.down.EDITOR.ypos",            "12"                    },
247
248   { "bd_firefly",                               "RocksElements.png"     },
249   { "bd_firefly.xpos",                          "6"                     },
250   { "bd_firefly.ypos",                          "12"                    },
251   { "bd_firefly.frames",                        "2"                     },
252   { "bd_firefly.anim_mode",                     "pingpong"              },
253   { "bd_firefly.delay",                         "4"                     },
254   { "bd_firefly.global_sync",                   "true"                  },
255   { "bd_firefly.right",                         "RocksElements.png"     },
256   { "bd_firefly.right.xpos",                    "6"                     },
257   { "bd_firefly.right.ypos",                    "12"                    },
258   { "bd_firefly.right.frames",                  "2"                     },
259   { "bd_firefly.right.anim_mode",               "pingpong"              },
260   { "bd_firefly.right.delay",                   "4"                     },
261   { "bd_firefly.right.global_sync",             "true"                  },
262   { "bd_firefly.right.EDITOR",                  "RocksElements.png"     },
263   { "bd_firefly.right.EDITOR.xpos",             "12"                    },
264   { "bd_firefly.right.EDITOR.ypos",             "12"                    },
265   { "bd_firefly.up",                            "RocksElements.png"     },
266   { "bd_firefly.up.xpos",                       "6"                     },
267   { "bd_firefly.up.ypos",                       "12"                    },
268   { "bd_firefly.up.frames",                     "2"                     },
269   { "bd_firefly.up.anim_mode",                  "pingpong"              },
270   { "bd_firefly.up.delay",                      "4"                     },
271   { "bd_firefly.up.global_sync",                "true"                  },
272   { "bd_firefly.up.EDITOR",                     "RocksElements.png"     },
273   { "bd_firefly.up.EDITOR.xpos",                "13"                    },
274   { "bd_firefly.up.EDITOR.ypos",                "12"                    },
275   { "bd_firefly.left",                          "RocksElements.png"     },
276   { "bd_firefly.left.xpos",                     "6"                     },
277   { "bd_firefly.left.ypos",                     "12"                    },
278   { "bd_firefly.left.frames",                   "2"                     },
279   { "bd_firefly.left.anim_mode",                "pingpong"              },
280   { "bd_firefly.left.delay",                    "4"                     },
281   { "bd_firefly.left.global_sync",              "true"                  },
282   { "bd_firefly.left.EDITOR",                   "RocksElements.png"     },
283   { "bd_firefly.left.EDITOR.xpos",              "14"                    },
284   { "bd_firefly.left.EDITOR.ypos",              "12"                    },
285   { "bd_firefly.down",                          "RocksElements.png"     },
286   { "bd_firefly.down.xpos",                     "6"                     },
287   { "bd_firefly.down.ypos",                     "12"                    },
288   { "bd_firefly.down.frames",                   "2"                     },
289   { "bd_firefly.down.anim_mode",                "pingpong"              },
290   { "bd_firefly.down.delay",                    "4"                     },
291   { "bd_firefly.down.global_sync",              "true"                  },
292   { "bd_firefly.down.EDITOR",                   "RocksElements.png"     },
293   { "bd_firefly.down.EDITOR.xpos",              "15"                    },
294   { "bd_firefly.down.EDITOR.ypos",              "12"                    },
295
296   // images for Supaplex style elements and actions
297
298   { "[sp_default].exploding",                   "RocksSP.png"           },
299   { "[sp_default].exploding.xpos",              "8"                     },
300   { "[sp_default].exploding.ypos",              "3"                     },
301   { "[sp_default].exploding.frames",            "8"                     },
302   { "[sp_default].exploding.delay",             "4"                     },
303   { "[sp_default].exploding.anim_mode",         "linear"                },
304
305   { "sp_zonk",                                  "RocksSP.png"           },
306   { "sp_zonk.xpos",                             "1"                     },
307   { "sp_zonk.ypos",                             "0"                     },
308   { "sp_zonk.frames",                           "1"                     },
309   { "sp_zonk.moving.left",                      "RocksSP.png"           },
310   { "sp_zonk.moving.left.xpos",                 "0"                     },
311   { "sp_zonk.moving.left.ypos",                 "6"                     },
312   { "sp_zonk.moving.left.frames",               "4"                     },
313   { "sp_zonk.moving.left.delay",                "1"                     },
314   { "sp_zonk.moving.left.anim_mode",            "reverse"               },
315   { "sp_zonk.moving.right",                     "RocksSP.png"           },
316   { "sp_zonk.moving.right.xpos",                "0"                     },
317   { "sp_zonk.moving.right.ypos",                "6"                     },
318   { "sp_zonk.moving.right.frames",              "4"                     },
319   { "sp_zonk.moving.right.start_frame",         "1"                     },
320   { "sp_zonk.moving.right.delay",               "1"                     },
321   { "sp_zonk.pushing.left",                     "RocksSP.png"           },
322   { "sp_zonk.pushing.left.xpos",                "0"                     },
323   { "sp_zonk.pushing.left.ypos",                "6"                     },
324   { "sp_zonk.pushing.left.frames",              "4"                     },
325   { "sp_zonk.pushing.left.delay",               "1"                     },
326   { "sp_zonk.pushing.left.anim_mode",           "reverse"               },
327   { "sp_zonk.pushing.right",                    "RocksSP.png"           },
328   { "sp_zonk.pushing.right.xpos",               "0"                     },
329   { "sp_zonk.pushing.right.ypos",               "6"                     },
330   { "sp_zonk.pushing.right.frames",             "4"                     },
331   { "sp_zonk.pushing.right.start_frame",        "1"                     },
332   { "sp_zonk.pushing.right.delay",              "1"                     },
333
334   { "sp_base",                                  "RocksSP.png"           },
335   { "sp_base.xpos",                             "2"                     },
336   { "sp_base.ypos",                             "0"                     },
337   { "sp_base.frames",                           "1"                     },
338   { "sp_base.digging",                          "RocksSP.png"           },
339   { "sp_base.digging.xpos",                     "2"                     },
340   { "sp_base.digging.ypos",                     "0"                     },
341   { "sp_base.digging.frames",                   "1"                     },
342   { "sp_base.digging.anim_mode",                "opaque_player"         },
343   { "sp_base.snapping",                         "RocksSP.png"           },
344   { "sp_base.snapping.xpos",                    "8"                     },
345   { "sp_base.snapping.ypos",                    "2"                     },
346   { "sp_base.snapping.frames",                  "7"                     },
347   { "sp_base.snapping.anim_mode",               "linear"                },
348
349   { "sp_murphy",                                "RocksSP.png"           },
350   { "sp_murphy.xpos",                           "3"                     },
351   { "sp_murphy.ypos",                           "0"                     },
352   { "sp_murphy.frames",                         "1"                     },
353   { "sp_murphy.moving.left",                    "RocksSP.png"           },
354   { "sp_murphy.moving.left.xpos",               "8"                     },
355   { "sp_murphy.moving.left.ypos",               "0"                     },
356   { "sp_murphy.moving.left.frames",             "3"                     },
357   { "sp_murphy.moving.left.anim_mode",          "pingpong"              },
358   { "sp_murphy.moving.left.delay",              "2"                     },
359   { "sp_murphy.moving.left.start_frame",        "1"                     },
360   { "sp_murphy.moving.right",                   "RocksSP.png"           },
361   { "sp_murphy.moving.right.xpos",              "11"                    },
362   { "sp_murphy.moving.right.ypos",              "0"                     },
363   { "sp_murphy.moving.right.frames",            "3"                     },
364   { "sp_murphy.moving.right.anim_mode",         "pingpong"              },
365   { "sp_murphy.moving.right.delay",             "2"                     },
366   { "sp_murphy.moving.right.start_frame",       "1"                     },
367   { "sp_murphy.digging.left",                   "RocksSP.png"           },
368   { "sp_murphy.digging.left.xpos",              "8"                     },
369   { "sp_murphy.digging.left.ypos",              "0"                     },
370   { "sp_murphy.digging.left.frames",            "3"                     },
371   { "sp_murphy.digging.left.anim_mode",         "pingpong"              },
372   { "sp_murphy.digging.left.delay",             "2"                     },
373   { "sp_murphy.digging.left.start_frame",       "1"                     },
374   { "sp_murphy.digging.right",                  "RocksSP.png"           },
375   { "sp_murphy.digging.right.xpos",             "11"                    },
376   { "sp_murphy.digging.right.ypos",             "0"                     },
377   { "sp_murphy.digging.right.frames",           "3"                     },
378   { "sp_murphy.digging.right.anim_mode",        "pingpong"              },
379   { "sp_murphy.digging.right.delay",            "2"                     },
380   { "sp_murphy.digging.right.start_frame",      "1"                     },
381   { "sp_murphy.collecting.left",                "RocksSP.png"           },
382   { "sp_murphy.collecting.left.xpos",           "8"                     },
383   { "sp_murphy.collecting.left.ypos",           "0"                     },
384   { "sp_murphy.collecting.left.frames",         "3"                     },
385   { "sp_murphy.collecting.left.anim_mode",      "pingpong"              },
386   { "sp_murphy.collecting.left.delay",          "2"                     },
387   { "sp_murphy.collecting.left.start_frame",    "1"                     },
388   { "sp_murphy.collecting.right",               "RocksSP.png"           },
389   { "sp_murphy.collecting.right.xpos",          "11"                    },
390   { "sp_murphy.collecting.right.ypos",          "0"                     },
391   { "sp_murphy.collecting.right.frames",        "3"                     },
392   { "sp_murphy.collecting.right.anim_mode",     "pingpong"              },
393   { "sp_murphy.collecting.right.delay",         "2"                     },
394   { "sp_murphy.collecting.right.start_frame",   "1"                     },
395   { "sp_murphy.pushing.left",                   "RocksSP.png"           },
396   { "sp_murphy.pushing.left.xpos",              "11"                    },
397   { "sp_murphy.pushing.left.ypos",              "1"                     },
398   { "sp_murphy.pushing.left.frames",            "1"                     },
399   { "sp_murphy.pushing.right",                  "RocksSP.png"           },
400   { "sp_murphy.pushing.right.xpos",             "10"                    },
401   { "sp_murphy.pushing.right.ypos",             "1"                     },
402   { "sp_murphy.pushing.right.frames",           "1"                     },
403   { "sp_murphy.snapping.left",                  "RocksSP.png"           },
404   { "sp_murphy.snapping.left.xpos",             "9"                     },
405   { "sp_murphy.snapping.left.ypos",             "1"                     },
406   { "sp_murphy.snapping.left.frames",           "1"                     },
407   { "sp_murphy.snapping.right",                 "RocksSP.png"           },
408   { "sp_murphy.snapping.right.xpos",            "8"                     },
409   { "sp_murphy.snapping.right.ypos",            "1"                     },
410   { "sp_murphy.snapping.right.frames",          "1"                     },
411   { "sp_murphy.snapping.up",                    "RocksSP.png"           },
412   { "sp_murphy.snapping.up.xpos",               "14"                    },
413   { "sp_murphy.snapping.up.ypos",               "0"                     },
414   { "sp_murphy.snapping.up.frames",             "1"                     },
415   { "sp_murphy.snapping.down",                  "RocksSP.png"           },
416   { "sp_murphy.snapping.down.xpos",             "15"                    },
417   { "sp_murphy.snapping.down.ypos",             "0"                     },
418   { "sp_murphy.snapping.down.frames",           "1"                     },
419   { "sp_murphy.boring",                         "RocksSP.png"           },
420   { "sp_murphy.boring.xpos",                    "11"                    },
421   { "sp_murphy.boring.ypos",                    "12"                    },
422   { "sp_murphy.boring.frames",                  "1"                     },
423   { "sp_murphy.boring[1]",                      "RocksSP.png"           },
424   { "sp_murphy.boring[1].xpos",                 "0"                     },
425   { "sp_murphy.boring[1].ypos",                 "12"                    },
426   { "sp_murphy.boring[1].frames",               "12"                    },
427   { "sp_murphy.boring[1].delay",                "10"                    },
428   { "sp_murphy.boring[1].anim_mode",            "linear"                },
429   { "sp_murphy.boring[1].anim_delay_fixed",     "120"                   },
430   { "sp_murphy.boring[1].anim_delay_random",    "0"                     },
431   { "sp_murphy.boring[1].post_delay_fixed",     "500"                   },
432   { "sp_murphy.boring[1].post_delay_random",    "500"                   },
433   { "sp_murphy.sleeping.left",                  "RocksSP.png"           },
434   { "sp_murphy.sleeping.left.xpos",             "4"                     },
435   { "sp_murphy.sleeping.left.ypos",             "9"                     },
436   { "sp_murphy.sleeping.left.frames",           "3"                     },
437   { "sp_murphy.sleeping.left.delay",            "100"                   },
438   { "sp_murphy.sleeping.left.anim_mode",        "linear,reverse"        },
439   { "sp_murphy.sleeping.right",                 "RocksSP.png"           },
440   { "sp_murphy.sleeping.right.xpos",            "13"                    },
441   { "sp_murphy.sleeping.right.ypos",            "12"                    },
442   { "sp_murphy.sleeping.right.frames",          "3"                     },
443   { "sp_murphy.sleeping.right.delay",           "100"                   },
444   { "sp_murphy.sleeping.right.anim_mode",       "linear"                },
445   { "sp_murphy.dropping",                       "RocksSP.png"           },
446   { "sp_murphy.dropping.xpos",                  "11"                    },
447   { "sp_murphy.dropping.ypos",                  "12"                    },
448   { "sp_murphy.dropping.frames",                "1"                     },
449   { "sp_murphy.shrinking",                      "RocksSP.png"           },
450   { "sp_murphy.shrinking.xpos",                 "8"                     },
451   { "sp_murphy.shrinking.ypos",                 "14"                    },
452   { "sp_murphy.shrinking.frames",               "8"                     },
453   { "sp_murphy.shrinking.delay",                "4"                     },
454   { "sp_murphy.shrinking.anim_mode",            "linear"                },
455
456   { "sp_murphy_clone",                          "RocksSP.png"           },
457   { "sp_murphy_clone.xpos",                     "3"                     },
458   { "sp_murphy_clone.ypos",                     "0"                     },
459   { "sp_murphy_clone.frames",                   "1"                     },
460
461   { "sp_infotron",                              "RocksSP.png"           },
462   { "sp_infotron.xpos",                         "4"                     },
463   { "sp_infotron.ypos",                         "0"                     },
464   { "sp_infotron.frames",                       "1"                     },
465   { "sp_infotron.EDITOR",                       "RocksSP.png"           },
466   { "sp_infotron.EDITOR.xpos",                  "8"                     },
467   { "sp_infotron.EDITOR.ypos",                  "11"                    },
468   { "sp_infotron.moving.left",                  "RocksSP.png"           },
469   { "sp_infotron.moving.left.xpos",             "8"                     },
470   { "sp_infotron.moving.left.ypos",             "13"                    },
471   { "sp_infotron.moving.left.frames",           "8"                     },
472   { "sp_infotron.moving.right",                 "RocksSP.png"           },
473   { "sp_infotron.moving.right.xpos",            "8"                     },
474   { "sp_infotron.moving.right.ypos",            "13"                    },
475   { "sp_infotron.moving.right.frames",          "8"                     },
476   { "sp_infotron.moving.right.start_frame",     "6"                     },
477   { "sp_infotron.moving.right.anim_mode",       "reverse"               },
478   { "sp_infotron.collecting",                   "RocksSP.png"           },
479   { "sp_infotron.collecting.xpos",              "8"                     },
480   { "sp_infotron.collecting.ypos",              "7"                     },
481   { "sp_infotron.collecting.frames",            "8"                     },
482   { "sp_infotron.collecting.anim_mode",         "linear"                },
483
484   { "sp_chip_single",                           "RocksSP.png"           },
485   { "sp_chip_single.xpos",                      "5"                     },
486   { "sp_chip_single.ypos",                      "0"                     },
487   { "sp_chip_single.frames",                    "1"                     },
488   { "sp_chip_left",                             "RocksSP.png"           },
489   { "sp_chip_left.xpos",                        "2"                     },
490   { "sp_chip_left.ypos",                        "3"                     },
491   { "sp_chip_left.frames",                      "1"                     },
492   { "sp_chip_right",                            "RocksSP.png"           },
493   { "sp_chip_right.xpos",                       "3"                     },
494   { "sp_chip_right.ypos",                       "3"                     },
495   { "sp_chip_right.frames",                     "1"                     },
496   { "sp_chip_top",                              "RocksSP.png"           },
497   { "sp_chip_top.xpos",                         "6"                     },
498   { "sp_chip_top.ypos",                         "4"                     },
499   { "sp_chip_top.frames",                       "1"                     },
500   { "sp_chip_bottom",                           "RocksSP.png"           },
501   { "sp_chip_bottom.xpos",                      "7"                     },
502   { "sp_chip_bottom.ypos",                      "4"                     },
503   { "sp_chip_bottom.frames",                    "1"                     },
504
505   { "sp_hardware_gray",                         "RocksSP.png"           },
506   { "sp_hardware_gray.xpos",                    "6"                     },
507   { "sp_hardware_gray.ypos",                    "0"                     },
508   { "sp_hardware_gray.frames",                  "1"                     },
509   { "sp_hardware_green",                        "RocksSP.png"           },
510   { "sp_hardware_green.xpos",                   "5"                     },
511   { "sp_hardware_green.ypos",                   "3"                     },
512   { "sp_hardware_green.frames",                 "1"                     },
513   { "sp_hardware_blue",                         "RocksSP.png"           },
514   { "sp_hardware_blue.xpos",                    "6"                     },
515   { "sp_hardware_blue.ypos",                    "3"                     },
516   { "sp_hardware_blue.frames",                  "1"                     },
517   { "sp_hardware_red",                          "RocksSP.png"           },
518   { "sp_hardware_red.xpos",                     "7"                     },
519   { "sp_hardware_red.ypos",                     "3"                     },
520   { "sp_hardware_red.frames",                   "1"                     },
521   { "sp_hardware_yellow",                       "RocksSP.png"           },
522   { "sp_hardware_yellow.xpos",                  "0"                     },
523   { "sp_hardware_yellow.ypos",                  "4"                     },
524   { "sp_hardware_yellow.frames",                "1"                     },
525
526   { "sp_exit_closed",                           "RocksSP.png"           },
527   { "sp_exit_closed.xpos",                      "7"                     },
528   { "sp_exit_closed.ypos",                      "0"                     },
529   { "sp_exit_closed.frames",                    "1"                     },
530   { "sp_exit.opening",                          "RocksSP.png"           },
531   { "sp_exit.opening.xpos",                     "7"                     },
532   { "sp_exit.opening.ypos",                     "0"                     },
533   { "sp_exit.opening.frames",                   "1"                     },
534   { "sp_exit_open",                             "RocksSP.png"           },
535   { "sp_exit_open.xpos",                        "7"                     },
536   { "sp_exit_open.ypos",                        "0"                     },
537   { "sp_exit_open.frames",                      "1"                     },
538   { "sp_exit.closing",                          "RocksSP.png"           },
539   { "sp_exit.closing.xpos",                     "7"                     },
540   { "sp_exit.closing.ypos",                     "0"                     },
541   { "sp_exit.closing.frames",                   "1"                     },
542
543   { "sp_disk_orange",                           "RocksSP.png"           },
544   { "sp_disk_orange.xpos",                      "0"                     },
545   { "sp_disk_orange.ypos",                      "1"                     },
546   { "sp_disk_orange.frames",                    "1"                     },
547
548   { "sp_disk_yellow",                           "RocksSP.png"           },
549   { "sp_disk_yellow.xpos",                      "2"                     },
550   { "sp_disk_yellow.ypos",                      "2"                     },
551   { "sp_disk_yellow.frames",                    "1"                     },
552
553   { "sp_disk_red",                              "RocksSP.png"           },
554   { "sp_disk_red.xpos",                         "4"                     },
555   { "sp_disk_red.ypos",                         "2"                     },
556   { "sp_disk_red.frames",                       "1"                     },
557   { "sp_disk_red.collecting",                   "RocksSP.png"           },
558   { "sp_disk_red.collecting.xpos",              "9"                     },
559   { "sp_disk_red.collecting.ypos",              "5"                     },
560   { "sp_disk_red.collecting.frames",            "7"                     },
561   { "sp_disk_red.collecting.anim_mode",         "linear"                },
562   { "sp_disk_red.active",                       "RocksSP.png"           },
563   { "sp_disk_red.active.xpos",                  "4"                     },
564   { "sp_disk_red.active.ypos",                  "2"                     },
565   { "sp_disk_red.active.frames",                "1"                     },
566
567   { "sp_port_right",                            "RocksSP.png"           },
568   { "sp_port_right.xpos",                       "1"                     },
569   { "sp_port_right.ypos",                       "1"                     },
570   { "sp_port_right.frames",                     "1"                     },
571   { "sp_port_down",                             "RocksSP.png"           },
572   { "sp_port_down.xpos",                        "2"                     },
573   { "sp_port_down.ypos",                        "1"                     },
574   { "sp_port_down.frames",                      "1"                     },
575   { "sp_port_left",                             "RocksSP.png"           },
576   { "sp_port_left.xpos",                        "3"                     },
577   { "sp_port_left.ypos",                        "1"                     },
578   { "sp_port_left.frames",                      "1"                     },
579   { "sp_port_up",                               "RocksSP.png"           },
580   { "sp_port_up.xpos",                          "4"                     },
581   { "sp_port_up.ypos",                          "1"                     },
582   { "sp_port_up.frames",                        "1"                     },
583   { "sp_port_horizontal",                       "RocksSP.png"           },
584   { "sp_port_horizontal.xpos",                  "6"                     },
585   { "sp_port_horizontal.ypos",                  "2"                     },
586   { "sp_port_horizontal.frames",                "1"                     },
587   { "sp_port_vertical",                         "RocksSP.png"           },
588   { "sp_port_vertical.xpos",                    "5"                     },
589   { "sp_port_vertical.ypos",                    "2"                     },
590   { "sp_port_vertical.frames",                  "1"                     },
591   { "sp_port_any",                              "RocksSP.png"           },
592   { "sp_port_any.xpos",                         "7"                     },
593   { "sp_port_any.ypos",                         "2"                     },
594   { "sp_port_any.frames",                       "1"                     },
595   { "sp_gravity_port_right",                    "RocksSP.png"           },
596   { "sp_gravity_port_right.xpos",               "1"                     },
597   { "sp_gravity_port_right.ypos",               "1"                     },
598   { "sp_gravity_port_right.frames",             "1"                     },
599   { "sp_gravity_port_right.EDITOR",             "RocksSP.png"           },
600   { "sp_gravity_port_right.EDITOR.xpos",        "0"                     },
601   { "sp_gravity_port_right.EDITOR.ypos",        "14"                    },
602   { "sp_gravity_port_down",                     "RocksSP.png"           },
603   { "sp_gravity_port_down.xpos",                "2"                     },
604   { "sp_gravity_port_down.ypos",                "1"                     },
605   { "sp_gravity_port_down.frames",              "1"                     },
606   { "sp_gravity_port_down.EDITOR",              "RocksSP.png"           },
607   { "sp_gravity_port_down.EDITOR.xpos",         "1"                     },
608   { "sp_gravity_port_down.EDITOR.ypos",         "14"                    },
609   { "sp_gravity_port_left",                     "RocksSP.png"           },
610   { "sp_gravity_port_left.xpos",                "3"                     },
611   { "sp_gravity_port_left.ypos",                "1"                     },
612   { "sp_gravity_port_left.frames",              "1"                     },
613   { "sp_gravity_port_left.EDITOR",              "RocksSP.png"           },
614   { "sp_gravity_port_left.EDITOR.xpos",         "2"                     },
615   { "sp_gravity_port_left.EDITOR.ypos",         "14"                    },
616   { "sp_gravity_port_up",                       "RocksSP.png"           },
617   { "sp_gravity_port_up.xpos",                  "4"                     },
618   { "sp_gravity_port_up.ypos",                  "1"                     },
619   { "sp_gravity_port_up.frames",                "1"                     },
620   { "sp_gravity_port_up.EDITOR",                "RocksSP.png"           },
621   { "sp_gravity_port_up.EDITOR.xpos",           "3"                     },
622   { "sp_gravity_port_up.EDITOR.ypos",           "14"                    },
623   { "sp_gravity_on_port_right",                 "RocksSP.png"           },
624   { "sp_gravity_on_port_right.xpos",            "1"                     },
625   { "sp_gravity_on_port_right.ypos",            "1"                     },
626   { "sp_gravity_on_port_right.frames",          "1"                     },
627   { "sp_gravity_on_port_right.EDITOR",          "RocksSP.png"           },
628   { "sp_gravity_on_port_right.EDITOR.xpos",     "0"                     },
629   { "sp_gravity_on_port_right.EDITOR.ypos",     "13"                    },
630   { "sp_gravity_on_port_down",                  "RocksSP.png"           },
631   { "sp_gravity_on_port_down.xpos",             "2"                     },
632   { "sp_gravity_on_port_down.ypos",             "1"                     },
633   { "sp_gravity_on_port_down.frames",           "1"                     },
634   { "sp_gravity_on_port_down.EDITOR",           "RocksSP.png"           },
635   { "sp_gravity_on_port_down.EDITOR.xpos",      "1"                     },
636   { "sp_gravity_on_port_down.EDITOR.ypos",      "13"                    },
637   { "sp_gravity_on_port_left",                  "RocksSP.png"           },
638   { "sp_gravity_on_port_left.xpos",             "3"                     },
639   { "sp_gravity_on_port_left.ypos",             "1"                     },
640   { "sp_gravity_on_port_left.frames",           "1"                     },
641   { "sp_gravity_on_port_left.EDITOR",           "RocksSP.png"           },
642   { "sp_gravity_on_port_left.EDITOR.xpos",      "2"                     },
643   { "sp_gravity_on_port_left.EDITOR.ypos",      "13"                    },
644   { "sp_gravity_on_port_up",                    "RocksSP.png"           },
645   { "sp_gravity_on_port_up.xpos",               "4"                     },
646   { "sp_gravity_on_port_up.ypos",               "1"                     },
647   { "sp_gravity_on_port_up.frames",             "1"                     },
648   { "sp_gravity_on_port_up.EDITOR",             "RocksSP.png"           },
649   { "sp_gravity_on_port_up.EDITOR.xpos",        "3"                     },
650   { "sp_gravity_on_port_up.EDITOR.ypos",        "13"                    },
651   { "sp_gravity_off_port_right",                "RocksSP.png"           },
652   { "sp_gravity_off_port_right.xpos",           "1"                     },
653   { "sp_gravity_off_port_right.ypos",           "1"                     },
654   { "sp_gravity_off_port_right.frames",         "1"                     },
655   { "sp_gravity_off_port_right.EDITOR",         "RocksSP.png"           },
656   { "sp_gravity_off_port_right.EDITOR.xpos",    "4"                     },
657   { "sp_gravity_off_port_right.EDITOR.ypos",    "13"                    },
658   { "sp_gravity_off_port_down",                 "RocksSP.png"           },
659   { "sp_gravity_off_port_down.xpos",            "2"                     },
660   { "sp_gravity_off_port_down.ypos",            "1"                     },
661   { "sp_gravity_off_port_down.frames",          "1"                     },
662   { "sp_gravity_off_port_down.EDITOR",          "RocksSP.png"           },
663   { "sp_gravity_off_port_down.EDITOR.xpos",     "5"                     },
664   { "sp_gravity_off_port_down.EDITOR.ypos",     "13"                    },
665   { "sp_gravity_off_port_left",                 "RocksSP.png"           },
666   { "sp_gravity_off_port_left.xpos",            "3"                     },
667   { "sp_gravity_off_port_left.ypos",            "1"                     },
668   { "sp_gravity_off_port_left.frames",          "1"                     },
669   { "sp_gravity_off_port_left.EDITOR",          "RocksSP.png"           },
670   { "sp_gravity_off_port_left.EDITOR.xpos",     "6"                     },
671   { "sp_gravity_off_port_left.EDITOR.ypos",     "13"                    },
672   { "sp_gravity_off_port_up",                   "RocksSP.png"           },
673   { "sp_gravity_off_port_up.xpos",              "4"                     },
674   { "sp_gravity_off_port_up.ypos",              "1"                     },
675   { "sp_gravity_off_port_up.frames",            "1"                     },
676   { "sp_gravity_off_port_up.EDITOR",            "RocksSP.png"           },
677   { "sp_gravity_off_port_up.EDITOR.xpos",       "7"                     },
678   { "sp_gravity_off_port_up.EDITOR.ypos",       "13"                    },
679
680   { "sp_sniksnak",                              "RocksSP.png"           },
681   { "sp_sniksnak.xpos",                         "1"                     },
682   { "sp_sniksnak.ypos",                         "2"                     },
683   { "sp_sniksnak.frames",                       "1"                     },
684   { "sp_sniksnak.left",                         "RocksSP.png"           },
685   { "sp_sniksnak.left.xpos",                    "8"                     },
686   { "sp_sniksnak.left.ypos",                    "8"                     },
687   { "sp_sniksnak.left.frames",                  "4"                     },
688   { "sp_sniksnak.left.anim_mode",               "pingpong2"             },
689   { "sp_sniksnak.right",                        "RocksSP.png"           },
690   { "sp_sniksnak.right.xpos",                   "12"                    },
691   { "sp_sniksnak.right.ypos",                   "8"                     },
692   { "sp_sniksnak.right.frames",                 "4"                     },
693   { "sp_sniksnak.right.anim_mode",              "pingpong2"             },
694   { "sp_sniksnak.up",                           "RocksSP.png"           },
695   { "sp_sniksnak.up.xpos",                      "8"                     },
696   { "sp_sniksnak.up.ypos",                      "9"                     },
697   { "sp_sniksnak.up.frames",                    "4"                     },
698   { "sp_sniksnak.up.anim_mode",                 "pingpong2"             },
699   { "sp_sniksnak.down",                         "RocksSP.png"           },
700   { "sp_sniksnak.down.xpos",                    "12"                    },
701   { "sp_sniksnak.down.ypos",                    "9"                     },
702   { "sp_sniksnak.down.frames",                  "4"                     },
703   { "sp_sniksnak.down.anim_mode",               "pingpong2"             },
704   { "sp_sniksnak.turning_from_left.up",         "RocksSP.png"           },
705   { "sp_sniksnak.turning_from_left.up.xpos",    "12"                    },
706   { "sp_sniksnak.turning_from_left.up.ypos",    "6"                     },
707   { "sp_sniksnak.turning_from_left.up.frames",  "2"                     },
708   { "sp_sniksnak.turning_from_left.up.delay",   "4"                     },
709   { "sp_sniksnak.turning_from_left.up.offset",  "1408"                  },
710   { "sp_sniksnak.turning_from_left.up.anim_mode","linear"               },
711   { "sp_sniksnak.turning_from_left.down",       "RocksSP.png"           },
712   { "sp_sniksnak.turning_from_left.down.xpos",  "13"                    },
713   { "sp_sniksnak.turning_from_left.down.ypos",  "6"                     },
714   { "sp_sniksnak.turning_from_left.down.frames","2"                     },
715   { "sp_sniksnak.turning_from_left.down.delay", "4"                     },
716   { "sp_sniksnak.turning_from_left.down.offset","1504"                  },
717   { "sp_sniksnak.turning_from_left.down.anim_mode","linear"             },
718   { "sp_sniksnak.turning_from_right.up",        "RocksSP.png"           },
719   { "sp_sniksnak.turning_from_right.up.xpos",   "15"                    },
720   { "sp_sniksnak.turning_from_right.up.ypos",   "6"                     },
721   { "sp_sniksnak.turning_from_right.up.frames", "2"                     },
722   { "sp_sniksnak.turning_from_right.up.delay",  "4"                     },
723   { "sp_sniksnak.turning_from_right.up.offset", "1312"                  },
724   { "sp_sniksnak.turning_from_right.up.anim_mode","linear"              },
725   { "sp_sniksnak.turning_from_right.down",      "RocksSP.png"           },
726   { "sp_sniksnak.turning_from_right.down.xpos", "14"                    },
727   { "sp_sniksnak.turning_from_right.down.ypos", "6"                     },
728   { "sp_sniksnak.turning_from_right.down.frames","2"                    },
729   { "sp_sniksnak.turning_from_right.down.delay","4"                     },
730   { "sp_sniksnak.turning_from_right.down.offset","1472"                 },
731   { "sp_sniksnak.turning_from_right.down.anim_mode","linear"            },
732   { "sp_sniksnak.turning_from_up.left",         "RocksSP.png"           },
733   { "sp_sniksnak.turning_from_up.left.xpos",    "12"                    },
734   { "sp_sniksnak.turning_from_up.left.ypos",    "6"                     },
735   { "sp_sniksnak.turning_from_up.left.frames",  "2"                     },
736   { "sp_sniksnak.turning_from_up.left.delay",   "4"                     },
737   { "sp_sniksnak.turning_from_up.left.offset",  "896"                   },
738   { "sp_sniksnak.turning_from_up.left.anim_mode","linear"               },
739   { "sp_sniksnak.turning_from_up.right",        "RocksSP.png"           },
740   { "sp_sniksnak.turning_from_up.right.xpos",   "15"                    },
741   { "sp_sniksnak.turning_from_up.right.ypos",   "6"                     },
742   { "sp_sniksnak.turning_from_up.right.frames", "2"                     },
743   { "sp_sniksnak.turning_from_up.right.delay",  "4"                     },
744   { "sp_sniksnak.turning_from_up.right.offset", "928"                   },
745   { "sp_sniksnak.turning_from_up.right.anim_mode","linear"              },
746   { "sp_sniksnak.turning_from_down.left",       "RocksSP.png"           },
747   { "sp_sniksnak.turning_from_down.left.xpos",  "13"                    },
748   { "sp_sniksnak.turning_from_down.left.ypos",  "6"                     },
749   { "sp_sniksnak.turning_from_down.left.frames","2"                     },
750   { "sp_sniksnak.turning_from_down.left.delay", "4"                     },
751   { "sp_sniksnak.turning_from_down.left.offset","864"                   },
752   { "sp_sniksnak.turning_from_down.left.anim_mode","linear"             },
753   { "sp_sniksnak.turning_from_down.right",      "RocksSP.png"           },
754   { "sp_sniksnak.turning_from_down.right.xpos", "14"                    },
755   { "sp_sniksnak.turning_from_down.right.ypos", "6"                     },
756   { "sp_sniksnak.turning_from_down.right.frames","2"                    },
757   { "sp_sniksnak.turning_from_down.right.delay","4"                     },
758   { "sp_sniksnak.turning_from_down.right.offset","960"                  },
759   { "sp_sniksnak.turning_from_down.right.anim_mode","linear"            },
760
761   { "sp_electron",                              "RocksSP.png"           },
762   { "sp_electron.xpos",                         "8"                     },
763   { "sp_electron.ypos",                         "10"                    },
764   { "sp_electron.frames",                       "8"                     },
765   { "sp_electron.delay",                        "4"                     },
766   { "sp_electron.global_sync",                  "true"                  },
767   { "sp_electron.EDITOR",                       "RocksSP.png"           },
768   { "sp_electron.EDITOR.xpos",                  "10"                    },
769   { "sp_electron.EDITOR.ypos",                  "11"                    },
770   { "sp_electron.exploding",                    "RocksSP.png"           },
771   { "sp_electron.exploding.xpos",               "8"                     },
772   { "sp_electron.exploding.ypos",               "4"                     },
773   { "sp_electron.exploding.frames",             "8"                     },
774   { "sp_electron.exploding.delay",              "4"                     },
775   { "sp_electron.exploding.anim_mode",          "linear"                },
776
777   { "sp_terminal",                              "RocksSP.png"           },
778   { "sp_terminal.xpos",                         "0"                     },
779   { "sp_terminal.ypos",                         "10"                    },
780   { "sp_terminal.frames",                       "7"                     },
781   { "sp_terminal.delay",                        "12"                    },
782   { "sp_terminal.EDITOR",                       "RocksSP.png"           },
783   { "sp_terminal.EDITOR.xpos",                  "9"                     },
784   { "sp_terminal.EDITOR.ypos",                  "11"                    },
785   { "sp_terminal.active",                       "RocksSP.png"           },
786   { "sp_terminal.active.xpos",                  "0"                     },
787   { "sp_terminal.active.ypos",                  "11"                    },
788   { "sp_terminal.active.frames",                "7"                     },
789   { "sp_terminal.active.delay",                 "4"                     },
790
791   { "sp_buggy_base",                            "RocksSP.png"           },
792   { "sp_buggy_base.xpos",                       "1"                     },
793   { "sp_buggy_base.ypos",                       "3"                     },
794   { "sp_buggy_base.frames",                     "1"                     },
795   { "sp_buggy_base.EDITOR",                     "RocksSP.png"           },
796   { "sp_buggy_base.EDITOR.xpos",                "9"                     },
797   { "sp_buggy_base.EDITOR.ypos",                "6"                     },
798   { "sp_buggy_base.activating",                 "RocksSP.png"           },
799   { "sp_buggy_base.activating.xpos",            "15"                    },
800   { "sp_buggy_base.activating.ypos",            "2"                     },
801   { "sp_buggy_base.activating.frames",          "1"                     },
802   { "sp_buggy_base.active",                     "RocksSP.png"           },
803   { "sp_buggy_base.active.xpos",                "8"                     },
804   { "sp_buggy_base.active.ypos",                "6"                     },
805   { "sp_buggy_base.active.frames",              "4"                     },
806   { "sp_buggy_base.active.delay",               "4"                     },
807   { "sp_buggy_base.active.anim_mode",           "pingpong"              },
808
809   { "sp_hardware_base_1",                       "RocksSP.png"           },
810   { "sp_hardware_base_1.xpos",                  "4"                     },
811   { "sp_hardware_base_1.ypos",                  "3"                     },
812   { "sp_hardware_base_1.frames",                "1"                     },
813   { "sp_hardware_base_2",                       "RocksSP.png"           },
814   { "sp_hardware_base_2.xpos",                  "1"                     },
815   { "sp_hardware_base_2.ypos",                  "4"                     },
816   { "sp_hardware_base_2.frames",                "1"                     },
817   { "sp_hardware_base_3",                       "RocksSP.png"           },
818   { "sp_hardware_base_3.xpos",                  "2"                     },
819   { "sp_hardware_base_3.ypos",                  "4"                     },
820   { "sp_hardware_base_3.frames",                "1"                     },
821   { "sp_hardware_base_4",                       "RocksSP.png"           },
822   { "sp_hardware_base_4.xpos",                  "3"                     },
823   { "sp_hardware_base_4.ypos",                  "4"                     },
824   { "sp_hardware_base_4.frames",                "1"                     },
825   { "sp_hardware_base_5",                       "RocksSP.png"           },
826   { "sp_hardware_base_5.xpos",                  "4"                     },
827   { "sp_hardware_base_5.ypos",                  "4"                     },
828   { "sp_hardware_base_5.frames",                "1"                     },
829   { "sp_hardware_base_6",                       "RocksSP.png"           },
830   { "sp_hardware_base_6.xpos",                  "5"                     },
831   { "sp_hardware_base_6.ypos",                  "4"                     },
832   { "sp_hardware_base_6.frames",                "1"                     },
833
834   // images for Sokoban style elements and actions
835
836   { "sokoban_object",                           "RocksElements.png"     },
837   { "sokoban_object.xpos",                      "9"                     },
838   { "sokoban_object.ypos",                      "7"                     },
839   { "sokoban_object.frames",                    "1"                     },
840   { "sokoban_object.EDITOR",                    "RocksElements.png"     },
841   { "sokoban_object.EDITOR.xpos",               "2"                     },
842   { "sokoban_object.EDITOR.ypos",               "14"                    },
843
844   { "sokoban_field_empty",                      "RocksElements.png"     },
845   { "sokoban_field_empty.xpos",                 "10"                    },
846   { "sokoban_field_empty.ypos",                 "7"                     },
847   { "sokoban_field_empty.frames",               "1"                     },
848
849   { "sokoban_field_full",                       "RocksElements.png"     },
850   { "sokoban_field_full.xpos",                  "11"                    },
851   { "sokoban_field_full.ypos",                  "7"                     },
852   { "sokoban_field_full.frames",                "1"                     },
853
854   { "sokoban_field_player",                     "RocksHeroes.png"       },
855   { "sokoban_field_player.xpos",                "0"                     },
856   { "sokoban_field_player.ypos",                "15"                    },
857   { "sokoban_field_player.frames",              "1"                     },
858   { "sokoban_field_player.EDITOR",              "RocksHeroes.png"       },
859   { "sokoban_field_player.EDITOR.xpos",         "1"                     },
860   { "sokoban_field_player.EDITOR.ypos",         "15"                    },
861
862   // images for Emerald Mine style elements and actions
863
864   { "empty_space",                              "RocksSP.png"           },
865   { "empty_space.xpos",                         "0"                     },
866   { "empty_space.ypos",                         "0"                     },
867   { "empty_space.frames",                       "1"                     },
868
869   { "sand",                                     "RocksElements.png"     },
870   { "sand.xpos",                                "0"                     },
871   { "sand.ypos",                                "0"                     },
872   { "sand.frames",                              "1"                     },
873   { "sand.CRUMBLED",                            "RocksElements.png"     },
874   { "sand.CRUMBLED.xpos",                       "1"                     },
875   { "sand.CRUMBLED.ypos",                       "0"                     },
876   { "sand.CRUMBLED.frames",                     "1"                     },
877   { "sand.digging.left",                        "RocksMore.png"         },
878   { "sand.digging.left.xpos",                   "6"                     },
879   { "sand.digging.left.ypos",                   "3"                     },
880   { "sand.digging.left.frames",                 "3"                     },
881   { "sand.digging.left.delay",                  "2"                     },
882   { "sand.digging.left.anim_mode",              "linear"                },
883   { "sand.digging.right",                       "RocksMore.png"         },
884   { "sand.digging.right.xpos",                  "9"                     },
885   { "sand.digging.right.ypos",                  "3"                     },
886   { "sand.digging.right.frames",                "3"                     },
887   { "sand.digging.right.delay",                 "2"                     },
888   { "sand.digging.right.anim_mode",             "linear"                },
889   { "sand.digging.up",                          "RocksMore.png"         },
890   { "sand.digging.up.xpos",                     "0"                     },
891   { "sand.digging.up.ypos",                     "3"                     },
892   { "sand.digging.up.frames",                   "3"                     },
893   { "sand.digging.up.delay",                    "2"                     },
894   { "sand.digging.up.anim_mode",                "linear"                },
895   { "sand.digging.down",                        "RocksMore.png"         },
896   { "sand.digging.down.xpos",                   "3"                     },
897   { "sand.digging.down.ypos",                   "3"                     },
898   { "sand.digging.down.frames",                 "3"                     },
899   { "sand.digging.down.delay",                  "2"                     },
900   { "sand.digging.down.anim_mode",              "linear"                },
901   { "sand.digging.left.CRUMBLED",               "RocksMore.png"         },
902   { "sand.digging.left.CRUMBLED.xpos",          "6"                     },
903   { "sand.digging.left.CRUMBLED.ypos",          "0"                     },
904   { "sand.digging.left.CRUMBLED.frames",        "3"                     },
905   { "sand.digging.left.CRUMBLED.delay",         "2"                     },
906   { "sand.digging.left.CRUMBLED.anim_mode",     "linear"                },
907   { "sand.digging.right.CRUMBLED",              "RocksMore.png"         },
908   { "sand.digging.right.CRUMBLED.xpos",         "9"                     },
909   { "sand.digging.right.CRUMBLED.ypos",         "0"                     },
910   { "sand.digging.right.CRUMBLED.frames",       "3"                     },
911   { "sand.digging.right.CRUMBLED.delay",        "2"                     },
912   { "sand.digging.right.CRUMBLED.anim_mode",    "linear"                },
913   { "sand.digging.up.CRUMBLED",                 "RocksMore.png"         },
914   { "sand.digging.up.CRUMBLED.xpos",            "0"                     },
915   { "sand.digging.up.CRUMBLED.ypos",            "0"                     },
916   { "sand.digging.up.CRUMBLED.frames",          "3"                     },
917   { "sand.digging.up.CRUMBLED.delay",           "2"                     },
918   { "sand.digging.up.CRUMBLED.anim_mode",       "linear"                },
919   { "sand.digging.down.CRUMBLED",               "RocksMore.png"         },
920   { "sand.digging.down.CRUMBLED.xpos",          "3"                     },
921   { "sand.digging.down.CRUMBLED.ypos",          "0"                     },
922   { "sand.digging.down.CRUMBLED.frames",        "3"                     },
923   { "sand.digging.down.CRUMBLED.delay",         "2"                     },
924   { "sand.digging.down.CRUMBLED.anim_mode",     "linear"                },
925
926   { "wall",                                     "RocksElements.png"     },
927   { "wall.xpos",                                "5"                     },
928   { "wall.ypos",                                "0"                     },
929   { "wall.frames",                              "1"                     },
930
931   { "wall_slippery",                            "RocksElements.png"     },
932   { "wall_slippery.xpos",                       "6"                     },
933   { "wall_slippery.ypos",                       "0"                     },
934   { "wall_slippery.frames",                     "1"                     },
935
936   { "steelwall",                                "RocksElements.png"     },
937   { "steelwall.xpos",                           "4"                     },
938   { "steelwall.ypos",                           "0"                     },
939   { "steelwall.frames",                         "1"                     },
940
941   { "rock",                                     "RocksElements.png"     },
942   { "rock.xpos",                                "12"                    },
943   { "rock.ypos",                                "0"                     },
944   { "rock.frames",                              "1"                     },
945   { "rock.moving.left",                         "RocksElements.png"     },
946   { "rock.moving.left.xpos",                    "12"                    },
947   { "rock.moving.left.ypos",                    "0"                     },
948   { "rock.moving.left.frames",                  "4"                     },
949   { "rock.moving.left.delay",                   "2"                     },
950   { "rock.moving.left.anim_mode",               "reverse"               },
951   { "rock.moving.right",                        "RocksElements.png"     },
952   { "rock.moving.right.xpos",                   "12"                    },
953   { "rock.moving.right.ypos",                   "0"                     },
954   { "rock.moving.right.frames",                 "4"                     },
955   { "rock.moving.right.start_frame",            "1"                     },
956   { "rock.moving.right.delay",                  "2"                     },
957   { "rock.pushing.left",                        "RocksElements.png"     },
958   { "rock.pushing.left.xpos",                   "12"                    },
959   { "rock.pushing.left.ypos",                   "0"                     },
960   { "rock.pushing.left.frames",                 "4"                     },
961   { "rock.pushing.left.delay",                  "2"                     },
962   { "rock.pushing.left.anim_mode",              "reverse"               },
963   { "rock.pushing.right",                       "RocksElements.png"     },
964   { "rock.pushing.right.xpos",                  "12"                    },
965   { "rock.pushing.right.ypos",                  "0"                     },
966   { "rock.pushing.right.frames",                "4"                     },
967   { "rock.pushing.right.start_frame",           "1"                     },
968   { "rock.pushing.right.delay",                 "2"                     },
969
970   { "emerald",                                  "RocksElements.png"     },
971   { "emerald.xpos",                             "8"                     },
972   { "emerald.ypos",                             "0"                     },
973   { "emerald.frames",                           "1"                     },
974   { "emerald.moving",                           "RocksElements.png"     },
975   { "emerald.moving.xpos",                      "8"                     },
976   { "emerald.moving.ypos",                      "0"                     },
977   { "emerald.moving.frames",                    "2"                     },
978   { "emerald.moving.delay",                     "4"                     },
979   { "emerald.falling",                          "RocksElements.png"     },
980   { "emerald.falling.xpos",                     "8"                     },
981   { "emerald.falling.ypos",                     "0"                     },
982   { "emerald.falling.frames",                   "2"                     },
983   { "emerald.falling.delay",                    "4"                     },
984   { "emerald.collecting",                       "RocksMore.png"         },
985   { "emerald.collecting.xpos",                  "3"                     },
986   { "emerald.collecting.ypos",                  "2"                     },
987   { "emerald.collecting.frames",                "3"                     },
988   { "emerald.collecting.delay",                 "2"                     },
989   { "emerald.collecting.anim_mode",             "linear"                },
990
991   { "diamond",                                  "RocksElements.png"     },
992   { "diamond.xpos",                             "10"                    },
993   { "diamond.ypos",                             "0"                     },
994   { "diamond.frames",                           "1"                     },
995   { "diamond.moving",                           "RocksElements.png"     },
996   { "diamond.moving.xpos",                      "10"                    },
997   { "diamond.moving.ypos",                      "0"                     },
998   { "diamond.moving.frames",                    "2"                     },
999   { "diamond.moving.delay",                     "4"                     },
1000   { "diamond.falling",                          "RocksElements.png"     },
1001   { "diamond.falling.xpos",                     "10"                    },
1002   { "diamond.falling.ypos",                     "0"                     },
1003   { "diamond.falling.frames",                   "2"                     },
1004   { "diamond.falling.delay",                    "4"                     },
1005   { "diamond.collecting",                       "RocksMore.png"         },
1006   { "diamond.collecting.xpos",                  "7"                     },
1007   { "diamond.collecting.ypos",                  "2"                     },
1008   { "diamond.collecting.frames",                "3"                     },
1009   { "diamond.collecting.delay",                 "2"                     },
1010   { "diamond.collecting.anim_mode",             "linear"                },
1011
1012   { "bomb",                                     "RocksElements.png"     },
1013   { "bomb.xpos",                                "11"                    },
1014   { "bomb.ypos",                                "1"                     },
1015   { "bomb.frames",                              "1"                     },
1016
1017   { "nut",                                      "RocksElements.png"     },
1018   { "nut.xpos",                                 "12"                    },
1019   { "nut.ypos",                                 "1"                     },
1020   { "nut.frames",                               "1"                     },
1021   { "nut.breaking",                             "RocksElements.png"     },
1022   { "nut.breaking.xpos",                        "13"                    },
1023   { "nut.breaking.ypos",                        "1"                     },
1024   { "nut.breaking.frames",                      "3"                     },
1025   { "nut.breaking.delay",                       "2"                     },
1026   { "nut.breaking.anim_mode",                   "linear"                },
1027
1028   { "dynamite",                                 "RocksElements.png"     },
1029   { "dynamite.xpos",                            "0"                     },
1030   { "dynamite.ypos",                            "3"                     },
1031   { "dynamite.frames",                          "1"                     },
1032   { "dynamite.EDITOR",                          "RocksElements.png"     },
1033   { "dynamite.EDITOR.xpos",                     "0"                     },
1034   { "dynamite.EDITOR.ypos",                     "14"                    },
1035   { "dynamite.active",                          "RocksElements.png"     },
1036   { "dynamite.active.xpos",                     "1"                     },
1037   { "dynamite.active.ypos",                     "3"                     },
1038   { "dynamite.active.frames",                   "7"                     },
1039   { "dynamite.active.delay",                    "12"                    },
1040   { "dynamite.active.anim_mode",                "linear"                },
1041   { "dynamite.active.EDITOR",                   "RocksElements.png"     },
1042   { "dynamite.active.EDITOR.xpos",              "1"                     },
1043   { "dynamite.active.EDITOR.ypos",              "14"                    },
1044
1045   { "em_dynamite",                              "RocksEMC.png"          },
1046   { "em_dynamite.xpos",                         "0"                     },
1047   { "em_dynamite.ypos",                         "15"                    },
1048   { "em_dynamite.frames",                       "1"                     },
1049   { "em_dynamite.active",                       "RocksEMC.png"          },
1050   { "em_dynamite.active.xpos",                  "1"                     },
1051   { "em_dynamite.active.ypos",                  "15"                    },
1052   { "em_dynamite.active.frames",                "4"                     },
1053   { "em_dynamite.active.delay",                 "8"                     },
1054   { "em_dynamite.active.anim_mode",             "linear"                },
1055   { "em_dynamite.active.EDITOR",                "RocksEMC.png"          },
1056   { "em_dynamite.active.EDITOR.xpos",           "2"                     },
1057   { "em_dynamite.active.EDITOR.ypos",           "15"                    },
1058
1059   { "wall_emerald",                             "RocksElements.png"     },
1060   { "wall_emerald.xpos",                        "4"                     },
1061   { "wall_emerald.ypos",                        "8"                     },
1062   { "wall_emerald.frames",                      "1"                     },
1063
1064   { "wall_diamond",                             "RocksElements.png"     },
1065   { "wall_diamond.xpos",                        "5"                     },
1066   { "wall_diamond.ypos",                        "8"                     },
1067   { "wall_diamond.frames",                      "1"                     },
1068
1069   { "bug",                                      "RocksElements.png"     },
1070   { "bug.xpos",                                 "8"                     },
1071   { "bug.ypos",                                 "4"                     },
1072   { "bug.frames",                               "4"                     },
1073   { "bug.delay",                                "8"                     },
1074   { "bug.right",                                "RocksElements.png"     },
1075   { "bug.right.xpos",                           "8"                     },
1076   { "bug.right.ypos",                           "4"                     },
1077   { "bug.right.frames",                         "1"                     },
1078   { "bug.up",                                   "RocksElements.png"     },
1079   { "bug.up.xpos",                              "9"                     },
1080   { "bug.up.ypos",                              "4"                     },
1081   { "bug.up.frames",                            "1"                     },
1082   { "bug.left",                                 "RocksElements.png"     },
1083   { "bug.left.xpos",                            "10"                    },
1084   { "bug.left.ypos",                            "4"                     },
1085   { "bug.left.frames",                          "1"                     },
1086   { "bug.down",                                 "RocksElements.png"     },
1087   { "bug.down.xpos",                            "11"                    },
1088   { "bug.down.ypos",                            "4"                     },
1089   { "bug.down.frames",                          "1"                     },
1090   { "bug.moving.right",                         "RocksElements.png"     },
1091   { "bug.moving.right.xpos",                    "8"                     },
1092   { "bug.moving.right.ypos",                    "4"                     },
1093   { "bug.moving.right.frames",                  "2"                     },
1094   { "bug.moving.right.delay",                   "4"                     },
1095   { "bug.moving.right.offset",                  "128"                   },
1096   { "bug.moving.up",                            "RocksElements.png"     },
1097   { "bug.moving.up.xpos",                       "9"                     },
1098   { "bug.moving.up.ypos",                       "4"                     },
1099   { "bug.moving.up.frames",                     "2"                     },
1100   { "bug.moving.up.delay",                      "4"                     },
1101   { "bug.moving.up.offset",                     "128"                   },
1102   { "bug.moving.left",                          "RocksElements.png"     },
1103   { "bug.moving.left.xpos",                     "10"                    },
1104   { "bug.moving.left.ypos",                     "4"                     },
1105   { "bug.moving.left.frames",                   "2"                     },
1106   { "bug.moving.left.delay",                    "4"                     },
1107   { "bug.moving.left.offset",                   "128"                   },
1108   { "bug.moving.down",                          "RocksElements.png"     },
1109   { "bug.moving.down.xpos",                     "11"                    },
1110   { "bug.moving.down.ypos",                     "4"                     },
1111   { "bug.moving.down.frames",                   "2"                     },
1112   { "bug.moving.down.delay",                    "4"                     },
1113   { "bug.moving.down.offset",                   "128"                   },
1114   { "bug.turning_from_right.up",                "RocksMore.png"         },
1115   { "bug.turning_from_right.up.xpos",           "0"                     },
1116   { "bug.turning_from_right.up.ypos",           "6"                     },
1117   { "bug.turning_from_right.up.frames",         "4"                     },
1118   { "bug.turning_from_right.up.delay",          "2"                     },
1119   { "bug.turning_from_right.up.anim_mode",      "linear,reverse"        },
1120   { "bug.turning_from_up.left",                 "RocksMore.png"         },
1121   { "bug.turning_from_up.left.xpos",            "12"                    },
1122   { "bug.turning_from_up.left.ypos",            "6"                     },
1123   { "bug.turning_from_up.left.frames",          "4"                     },
1124   { "bug.turning_from_up.left.delay",           "2"                     },
1125   { "bug.turning_from_up.left.anim_mode",       "linear,reverse"        },
1126   { "bug.turning_from_left.down",               "RocksMore.png"         },
1127   { "bug.turning_from_left.down.xpos",          "8"                     },
1128   { "bug.turning_from_left.down.ypos",          "6"                     },
1129   { "bug.turning_from_left.down.frames",        "4"                     },
1130   { "bug.turning_from_left.down.delay",         "2"                     },
1131   { "bug.turning_from_left.down.anim_mode",     "linear,reverse"        },
1132   { "bug.turning_from_down.right",              "RocksMore.png"         },
1133   { "bug.turning_from_down.right.xpos",         "4"                     },
1134   { "bug.turning_from_down.right.ypos",         "6"                     },
1135   { "bug.turning_from_down.right.frames",       "4"                     },
1136   { "bug.turning_from_down.right.delay",        "2"                     },
1137   { "bug.turning_from_down.right.anim_mode",    "linear,reverse"        },
1138   { "bug.turning_from_right.down",              "RocksMore.png"         },
1139   { "bug.turning_from_right.down.xpos",         "5"                     },
1140   { "bug.turning_from_right.down.ypos",         "6"                     },
1141   { "bug.turning_from_right.down.frames",       "4"                     },
1142   { "bug.turning_from_right.down.delay",        "2"                     },
1143   { "bug.turning_from_right.down.anim_mode",    "linear"                },
1144   { "bug.turning_from_up.right",                "RocksMore.png"         },
1145   { "bug.turning_from_up.right.xpos",           "1"                     },
1146   { "bug.turning_from_up.right.ypos",           "6"                     },
1147   { "bug.turning_from_up.right.frames",         "4"                     },
1148   { "bug.turning_from_up.right.delay",          "2"                     },
1149   { "bug.turning_from_up.right.anim_mode",      "linear"                },
1150   { "bug.turning_from_left.up",                 "RocksMore.png"         },
1151   { "bug.turning_from_left.up.xpos",            "13"                    },
1152   { "bug.turning_from_left.up.ypos",            "6"                     },
1153   { "bug.turning_from_left.up.frames",          "4"                     },
1154   { "bug.turning_from_left.up.delay",           "2"                     },
1155   { "bug.turning_from_left.up.anim_mode",       "linear"                },
1156   { "bug.turning_from_down.left",               "RocksMore.png"         },
1157   { "bug.turning_from_down.left.xpos",          "9"                     },
1158   { "bug.turning_from_down.left.ypos",          "6"                     },
1159   { "bug.turning_from_down.left.frames",        "4"                     },
1160   { "bug.turning_from_down.left.delay",         "2"                     },
1161   { "bug.turning_from_down.left.anim_mode",     "linear"                },
1162
1163   { "spaceship",                                "RocksElements.png"     },
1164   { "spaceship.xpos",                           "8"                     },
1165   { "spaceship.ypos",                           "3"                     },
1166   { "spaceship.frames",                         "4"                     },
1167   { "spaceship.delay",                          "8"                     },
1168   { "spaceship.right",                          "RocksElements.png"     },
1169   { "spaceship.right.xpos",                     "8"                     },
1170   { "spaceship.right.ypos",                     "3"                     },
1171   { "spaceship.right.frames",                   "1"                     },
1172   { "spaceship.up",                             "RocksElements.png"     },
1173   { "spaceship.up.xpos",                        "9"                     },
1174   { "spaceship.up.ypos",                        "3"                     },
1175   { "spaceship.up.frames",                      "1"                     },
1176   { "spaceship.left",                           "RocksElements.png"     },
1177   { "spaceship.left.xpos",                      "10"                    },
1178   { "spaceship.left.ypos",                      "3"                     },
1179   { "spaceship.left.frames",                    "1"                     },
1180   { "spaceship.down",                           "RocksElements.png"     },
1181   { "spaceship.down.xpos",                      "11"                    },
1182   { "spaceship.down.ypos",                      "3"                     },
1183   { "spaceship.down.frames",                    "1"                     },
1184   { "spaceship.moving.right",                   "RocksElements.png"     },
1185   { "spaceship.moving.right.xpos",              "8"                     },
1186   { "spaceship.moving.right.ypos",              "3"                     },
1187   { "spaceship.moving.right.frames",            "2"                     },
1188   { "spaceship.moving.right.delay",             "4"                     },
1189   { "spaceship.moving.right.offset",            "128"                   },
1190   { "spaceship.moving.up",                      "RocksElements.png"     },
1191   { "spaceship.moving.up.xpos",                 "9"                     },
1192   { "spaceship.moving.up.ypos",                 "3"                     },
1193   { "spaceship.moving.up.frames",               "2"                     },
1194   { "spaceship.moving.up.delay",                "4"                     },
1195   { "spaceship.moving.up.offset",               "128"                   },
1196   { "spaceship.moving.left",                    "RocksElements.png"     },
1197   { "spaceship.moving.left.xpos",               "10"                    },
1198   { "spaceship.moving.left.ypos",               "3"                     },
1199   { "spaceship.moving.left.frames",             "2"                     },
1200   { "spaceship.moving.left.delay",              "4"                     },
1201   { "spaceship.moving.left.offset",             "128"                   },
1202   { "spaceship.moving.down",                    "RocksElements.png"     },
1203   { "spaceship.moving.down.xpos",               "11"                    },
1204   { "spaceship.moving.down.ypos",               "3"                     },
1205   { "spaceship.moving.down.frames",             "2"                     },
1206   { "spaceship.moving.down.delay",              "4"                     },
1207   { "spaceship.moving.down.offset",             "128"                   },
1208   { "spaceship.turning_from_right.up",          "RocksMore.png"         },
1209   { "spaceship.turning_from_right.up.xpos",     "0"                     },
1210   { "spaceship.turning_from_right.up.ypos",     "5"                     },
1211   { "spaceship.turning_from_right.up.frames",   "4"                     },
1212   { "spaceship.turning_from_right.up.delay",    "2"                     },
1213   { "spaceship.turning_from_right.up.anim_mode","linear,reverse"        },
1214   { "spaceship.turning_from_up.left",           "RocksMore.png"         },
1215   { "spaceship.turning_from_up.left.xpos",      "12"                    },
1216   { "spaceship.turning_from_up.left.ypos",      "5"                     },
1217   { "spaceship.turning_from_up.left.frames",    "4"                     },
1218   { "spaceship.turning_from_up.left.delay",     "2"                     },
1219   { "spaceship.turning_from_up.left.anim_mode", "linear,reverse"        },
1220   { "spaceship.turning_from_left.down",         "RocksMore.png"         },
1221   { "spaceship.turning_from_left.down.xpos",    "8"                     },
1222   { "spaceship.turning_from_left.down.ypos",    "5"                     },
1223   { "spaceship.turning_from_left.down.frames",  "4"                     },
1224   { "spaceship.turning_from_left.down.delay",   "2"                     },
1225   { "spaceship.turning_from_left.down.anim_mode","linear,reverse"       },
1226   { "spaceship.turning_from_down.right",        "RocksMore.png"         },
1227   { "spaceship.turning_from_down.right.xpos",   "4"                     },
1228   { "spaceship.turning_from_down.right.ypos",   "5"                     },
1229   { "spaceship.turning_from_down.right.frames", "4"                     },
1230   { "spaceship.turning_from_down.right.delay",  "2"                     },
1231   { "spaceship.turning_from_down.right.anim_mode","linear,reverse"      },
1232   { "spaceship.turning_from_right.down",        "RocksMore.png"         },
1233   { "spaceship.turning_from_right.down.xpos",   "5"                     },
1234   { "spaceship.turning_from_right.down.ypos",   "5"                     },
1235   { "spaceship.turning_from_right.down.frames", "4"                     },
1236   { "spaceship.turning_from_right.down.delay",  "2"                     },
1237   { "spaceship.turning_from_right.down.anim_mode","linear"              },
1238   { "spaceship.turning_from_up.right",          "RocksMore.png"         },
1239   { "spaceship.turning_from_up.right.xpos",     "1"                     },
1240   { "spaceship.turning_from_up.right.ypos",     "5"                     },
1241   { "spaceship.turning_from_up.right.frames",   "4"                     },
1242   { "spaceship.turning_from_up.right.delay",    "2"                     },
1243   { "spaceship.turning_from_up.right.anim_mode","linear"                },
1244   { "spaceship.turning_from_left.up",           "RocksMore.png"         },
1245   { "spaceship.turning_from_left.up.xpos",      "13"                    },
1246   { "spaceship.turning_from_left.up.ypos",      "5"                     },
1247   { "spaceship.turning_from_left.up.frames",    "4"                     },
1248   { "spaceship.turning_from_left.up.delay",     "2"                     },
1249   { "spaceship.turning_from_left.up.anim_mode", "linear"                },
1250   { "spaceship.turning_from_down.left",         "RocksMore.png"         },
1251   { "spaceship.turning_from_down.left.xpos",    "9"                     },
1252   { "spaceship.turning_from_down.left.ypos",    "5"                     },
1253   { "spaceship.turning_from_down.left.frames",  "4"                     },
1254   { "spaceship.turning_from_down.left.delay",   "2"                     },
1255   { "spaceship.turning_from_down.left.anim_mode","linear"               },
1256
1257   { "yamyam",                                   "RocksElements.png"     },
1258   { "yamyam.xpos",                              "0"                     },
1259   { "yamyam.ypos",                              "5"                     },
1260   { "yamyam.frames",                            "4"                     },
1261   { "yamyam.anim_mode",                         "pingpong2"             },
1262   { "yamyam.left",                              "RocksElements.png"     },
1263   { "yamyam.left.xpos",                         "0"                     },
1264   { "yamyam.left.ypos",                         "5"                     },
1265   { "yamyam.left.frames",                       "4"                     },
1266   { "yamyam.left.anim_mode",                    "pingpong2"             },
1267   { "yamyam.left.EDITOR",                       "RocksEMC.png"          },
1268   { "yamyam.left.EDITOR.xpos",                  "7"                     },
1269   { "yamyam.left.EDITOR.ypos",                  "15"                    },
1270   { "yamyam.right",                             "RocksElements.png"     },
1271   { "yamyam.right.xpos",                        "0"                     },
1272   { "yamyam.right.ypos",                        "5"                     },
1273   { "yamyam.right.frames",                      "4"                     },
1274   { "yamyam.right.anim_mode",                   "pingpong2"             },
1275   { "yamyam.right.EDITOR",                      "RocksEMC.png"          },
1276   { "yamyam.right.EDITOR.xpos",                 "8"                     },
1277   { "yamyam.right.EDITOR.ypos",                 "15"                    },
1278   { "yamyam.up",                                "RocksElements.png"     },
1279   { "yamyam.up.xpos",                           "0"                     },
1280   { "yamyam.up.ypos",                           "5"                     },
1281   { "yamyam.up.frames",                         "4"                     },
1282   { "yamyam.up.anim_mode",                      "pingpong2"             },
1283   { "yamyam.up.EDITOR",                         "RocksEMC.png"          },
1284   { "yamyam.up.EDITOR.xpos",                    "5"                     },
1285   { "yamyam.up.EDITOR.ypos",                    "15"                    },
1286   { "yamyam.down",                              "RocksElements.png"     },
1287   { "yamyam.down.xpos",                         "0"                     },
1288   { "yamyam.down.ypos",                         "5"                     },
1289   { "yamyam.down.frames",                       "4"                     },
1290   { "yamyam.down.anim_mode",                    "pingpong2"             },
1291   { "yamyam.down.EDITOR",                       "RocksEMC.png"          },
1292   { "yamyam.down.EDITOR.xpos",                  "6"                     },
1293   { "yamyam.down.EDITOR.ypos",                  "15"                    },
1294   { "yamyam.moving",                            "RocksElements.png"     },
1295   { "yamyam.moving.xpos",                       "0"                     },
1296   { "yamyam.moving.ypos",                       "5"                     },
1297   { "yamyam.moving.frames",                     "1"                     },
1298
1299   { "robot",                                    "RocksElements.png"     },
1300   { "robot.xpos",                               "4"                     },
1301   { "robot.ypos",                               "5"                     },
1302   { "robot.frames",                             "4"                     },
1303   { "robot.anim_mode",                          "pingpong2"             },
1304   { "robot.moving",                             "RocksElements.png"     },
1305   { "robot.moving.xpos",                        "4"                     },
1306   { "robot.moving.ypos",                        "5"                     },
1307   { "robot.moving.frames",                      "1"                     },
1308
1309   { "robot_wheel",                              "RocksElements.png"     },
1310   { "robot_wheel.xpos",                         "0"                     },
1311   { "robot_wheel.ypos",                         "6"                     },
1312   { "robot_wheel.frames",                       "1"                     },
1313   { "robot_wheel.active",                       "RocksElements.png"     },
1314   { "robot_wheel.active.xpos",                  "0"                     },
1315   { "robot_wheel.active.ypos",                  "6"                     },
1316   { "robot_wheel.active.frames",                "4"                     },
1317
1318   { "magic_wall",                               "RocksElements.png"     },
1319   { "magic_wall.xpos",                          "0"                     },
1320   { "magic_wall.ypos",                          "8"                     },
1321   { "magic_wall.frames",                        "1"                     },
1322   { "magic_wall.active",                        "RocksElements.png"     },
1323   { "magic_wall.active.xpos",                   "0"                     },
1324   { "magic_wall.active.ypos",                   "8"                     },
1325   { "magic_wall.active.frames",                 "4"                     },
1326   { "magic_wall.active.anim_mode",              "reverse"               },
1327   { "magic_wall.active.delay",                  "4"                     },
1328   { "magic_wall.active.global_sync",            "true"                  },
1329   { "magic_wall.filling",                       "RocksElements.png"     },
1330   { "magic_wall.filling.xpos",                  "0"                     },
1331   { "magic_wall.filling.ypos",                  "8"                     },
1332   { "magic_wall.filling.frames",                "4"                     },
1333   { "magic_wall.filling.anim_mode",             "reverse"               },
1334   { "magic_wall.filling.delay",                 "4"                     },
1335   { "magic_wall.filling.global_sync",           "true"                  },
1336   { "magic_wall_full",                          "RocksElements.png"     },
1337   { "magic_wall_full.xpos",                     "0"                     },
1338   { "magic_wall_full.ypos",                     "8"                     },
1339   { "magic_wall_full.frames",                   "4"                     },
1340   { "magic_wall_full.anim_mode",                "reverse"               },
1341   { "magic_wall_full.delay",                    "4"                     },
1342   { "magic_wall_full.global_sync",              "true"                  },
1343   { "magic_wall.emptying",                      "RocksElements.png"     },
1344   { "magic_wall.emptying.xpos",                 "0"                     },
1345   { "magic_wall.emptying.ypos",                 "8"                     },
1346   { "magic_wall.emptying.frames",               "4"                     },
1347   { "magic_wall.emptying.anim_mode",            "reverse"               },
1348   { "magic_wall.emptying.delay",                "4"                     },
1349   { "magic_wall.emptying.global_sync",          "true"                  },
1350   { "magic_wall_dead",                          "RocksElements.png"     },
1351   { "magic_wall_dead.xpos",                     "0"                     },
1352   { "magic_wall_dead.ypos",                     "8"                     },
1353   { "magic_wall_dead.frames",                   "1"                     },
1354
1355   { "dc_magic_wall",                            "RocksDC2.png"          },
1356   { "dc_magic_wall.xpos",                       "0"                     },
1357   { "dc_magic_wall.ypos",                       "3"                     },
1358   { "dc_magic_wall.frames",                     "1"                     },
1359   { "dc_magic_wall.active",                     "RocksDC2.png"          },
1360   { "dc_magic_wall.active.xpos",                "0"                     },
1361   { "dc_magic_wall.active.ypos",                "3"                     },
1362   { "dc_magic_wall.active.frames",              "4"                     },
1363   { "dc_magic_wall.active.anim_mode",           "reverse"               },
1364   { "dc_magic_wall.active.delay",               "4"                     },
1365   { "dc_magic_wall.active.global_sync",         "true"                  },
1366   { "dc_magic_wall.filling",                    "RocksDC2.png"          },
1367   { "dc_magic_wall.filling.xpos",               "0"                     },
1368   { "dc_magic_wall.filling.ypos",               "3"                     },
1369   { "dc_magic_wall.filling.frames",             "4"                     },
1370   { "dc_magic_wall.filling.anim_mode",          "reverse"               },
1371   { "dc_magic_wall.filling.delay",              "4"                     },
1372   { "dc_magic_wall.filling.global_sync",        "true"                  },
1373   { "dc_magic_wall_full",                       "RocksDC2.png"          },
1374   { "dc_magic_wall_full.xpos",                  "0"                     },
1375   { "dc_magic_wall_full.ypos",                  "3"                     },
1376   { "dc_magic_wall_full.frames",                "4"                     },
1377   { "dc_magic_wall_full.anim_mode",             "reverse"               },
1378   { "dc_magic_wall_full.delay",                 "4"                     },
1379   { "dc_magic_wall_full.global_sync",           "true"                  },
1380   { "dc_magic_wall.emptying",                   "RocksDC2.png"          },
1381   { "dc_magic_wall.emptying.xpos",              "0"                     },
1382   { "dc_magic_wall.emptying.ypos",              "3"                     },
1383   { "dc_magic_wall.emptying.frames",            "4"                     },
1384   { "dc_magic_wall.emptying.anim_mode",         "reverse"               },
1385   { "dc_magic_wall.emptying.delay",             "4"                     },
1386   { "dc_magic_wall.emptying.global_sync",       "true"                  },
1387   { "dc_magic_wall_dead",                       "RocksDC2.png"          },
1388   { "dc_magic_wall_dead.xpos",                  "0"                     },
1389   { "dc_magic_wall_dead.ypos",                  "3"                     },
1390   { "dc_magic_wall_dead.frames",                "1"                     },
1391
1392   { "quicksand_empty",                          "RocksElements.png"     },
1393   { "quicksand_empty.xpos",                     "2"                     },
1394   { "quicksand_empty.ypos",                     "0"                     },
1395   { "quicksand_empty.frames",                   "1"                     },
1396   { "quicksand.filling",                        "RocksElements.png"     },
1397   { "quicksand.filling.xpos",                   "3"                     },
1398   { "quicksand.filling.ypos",                   "0"                     },
1399   { "quicksand.filling.frames",                 "1"                     },
1400   { "quicksand_full",                           "RocksElements.png"     },
1401   { "quicksand_full.xpos",                      "3"                     },
1402   { "quicksand_full.ypos",                      "0"                     },
1403   { "quicksand_full.frames",                    "1"                     },
1404   { "quicksand_full.EDITOR",                    "RocksElements.png"     },
1405   { "quicksand_full.EDITOR.xpos",               "3"                     },
1406   { "quicksand_full.EDITOR.ypos",               "14"                    },
1407   { "quicksand.emptying",                       "RocksElements.png"     },
1408   { "quicksand.emptying.xpos",                  "3"                     },
1409   { "quicksand.emptying.ypos",                  "0"                     },
1410   { "quicksand.emptying.frames",                "1"                     },
1411
1412   { "quicksand_fast_empty",                     "RocksDC2.png"          },
1413   { "quicksand_fast_empty.xpos",                "4"                     },
1414   { "quicksand_fast_empty.ypos",                "3"                     },
1415   { "quicksand_fast_empty.frames",              "1"                     },
1416   { "quicksand_fast.filling",                   "RocksDC2.png"          },
1417   { "quicksand_fast.filling.xpos",              "4"                     },
1418   { "quicksand_fast.filling.ypos",              "3"                     },
1419   { "quicksand_fast.filling.frames",            "1"                     },
1420   { "quicksand_fast_full",                      "RocksDC2.png"          },
1421   { "quicksand_fast_full.xpos",                 "4"                     },
1422   { "quicksand_fast_full.ypos",                 "3"                     },
1423   { "quicksand_fast_full.frames",               "1"                     },
1424   { "quicksand_fast_full.EDITOR",               "RocksDC2.png"          },
1425   { "quicksand_fast_full.EDITOR.xpos",          "5"                     },
1426   { "quicksand_fast_full.EDITOR.ypos",          "3"                     },
1427   { "quicksand_fast.emptying",                  "RocksDC2.png"          },
1428   { "quicksand_fast.emptying.xpos",             "4"                     },
1429   { "quicksand_fast.emptying.ypos",             "3"                     },
1430   { "quicksand_fast.emptying.frames",           "1"                     },
1431
1432   { "acid_pool_topleft",                        "RocksElements.png"     },
1433   { "acid_pool_topleft.xpos",                   "0"                     },
1434   { "acid_pool_topleft.ypos",                   "1"                     },
1435   { "acid_pool_topleft.frames",                 "1"                     },
1436   { "acid_pool_topright",                       "RocksElements.png"     },
1437   { "acid_pool_topright.xpos",                  "2"                     },
1438   { "acid_pool_topright.ypos",                  "1"                     },
1439   { "acid_pool_topright.frames",                "1"                     },
1440   { "acid_pool_bottomleft",                     "RocksElements.png"     },
1441   { "acid_pool_bottomleft.xpos",                "0"                     },
1442   { "acid_pool_bottomleft.ypos",                "2"                     },
1443   { "acid_pool_bottomleft.frames",              "1"                     },
1444   { "acid_pool_bottom",                         "RocksElements.png"     },
1445   { "acid_pool_bottom.xpos",                    "1"                     },
1446   { "acid_pool_bottom.ypos",                    "2"                     },
1447   { "acid_pool_bottom.frames",                  "1"                     },
1448   { "acid_pool_bottomright",                    "RocksElements.png"     },
1449   { "acid_pool_bottomright.xpos",               "2"                     },
1450   { "acid_pool_bottomright.ypos",               "2"                     },
1451   { "acid_pool_bottomright.frames",             "1"                     },
1452
1453   { "acid",                                     "RocksElements.png"     },
1454   { "acid.xpos",                                "12"                    },
1455   { "acid.ypos",                                "7"                     },
1456   { "acid.frames",                              "4"                     },
1457   { "acid.delay",                               "10"                    },
1458   { "acid.global_sync",                         "true"                  },
1459
1460   { "acid_splash_left",                         "RocksHeroes.png"       },
1461   { "acid_splash_left.xpos",                    "8"                     },
1462   { "acid_splash_left.ypos",                    "10"                    },
1463   { "acid_splash_left.frames",                  "4"                     },
1464   { "acid_splash_left.delay",                   "2"                     },
1465   { "acid_splash_left.anim_mode",               "linear"                },
1466   { "acid_splash_right",                        "RocksHeroes.png"       },
1467   { "acid_splash_right.xpos",                   "12"                    },
1468   { "acid_splash_right.ypos",                   "10"                    },
1469   { "acid_splash_right.frames",                 "4"                     },
1470   { "acid_splash_right.delay",                  "2"                     },
1471   { "acid_splash_right.anim_mode",              "linear"                },
1472
1473   { "amoeba_drop",                              "RocksElements.png"     },
1474   { "amoeba_drop.xpos",                         "5"                     },
1475   { "amoeba_drop.ypos",                         "6"                     },
1476   { "amoeba_drop.frames",                       "1"                     },
1477   { "amoeba.growing",                           "RocksElements.png"     },
1478   { "amoeba.growing.xpos",                      "5"                     },
1479   { "amoeba.growing.ypos",                      "6"                     },
1480   { "amoeba.growing.frames",                    "3"                     },
1481   { "amoeba.growing.delay",                     "2"                     },
1482   { "amoeba.growing.anim_mode",                 "linear"                },
1483   { "amoeba.shrinking",                         "RocksElements.png"     },
1484   { "amoeba.shrinking.xpos",                    "5"                     },
1485   { "amoeba.shrinking.ypos",                    "6"                     },
1486   { "amoeba.shrinking.frames",                  "3"                     },
1487   { "amoeba.shrinking.delay",                   "2"                     },
1488   { "amoeba.shrinking.anim_mode",               "linear,reverse"        },
1489   { "amoeba_wet",                               "RocksElements.png"     },
1490   { "amoeba_wet.xpos",                          "8"                     },
1491   { "amoeba_wet.ypos",                          "6"                     },
1492   { "amoeba_wet.frames",                        "4"                     },
1493   { "amoeba_wet.delay",                         "1000000"               },
1494   { "amoeba_wet.anim_mode",                     "random"                },
1495   { "amoeba_wet.EDITOR",                        "RocksElements.png"     },
1496   { "amoeba_wet.EDITOR.xpos",                   "4"                     },
1497   { "amoeba_wet.EDITOR.ypos",                   "6"                     },
1498   { "amoeba.dropping",                          "RocksElements.png"     },
1499   { "amoeba.dropping.xpos",                     "8"                     },
1500   { "amoeba.dropping.ypos",                     "6"                     },
1501   { "amoeba.dropping.frames",                   "4"                     },
1502   { "amoeba.dropping.delay",                    "1000000"               },
1503   { "amoeba.dropping.anim_mode",                "random"                },
1504   { "amoeba_dry",                               "RocksElements.png"     },
1505   { "amoeba_dry.xpos",                          "8"                     },
1506   { "amoeba_dry.ypos",                          "6"                     },
1507   { "amoeba_dry.frames",                        "4"                     },
1508   { "amoeba_dry.delay",                         "1000000"               },
1509   { "amoeba_dry.anim_mode",                     "random"                },
1510   { "amoeba_full",                              "RocksElements.png"     },
1511   { "amoeba_full.xpos",                         "8"                     },
1512   { "amoeba_full.ypos",                         "6"                     },
1513   { "amoeba_full.frames",                       "4"                     },
1514   { "amoeba_full.delay",                        "1000000"               },
1515   { "amoeba_full.anim_mode",                    "random"                },
1516   { "amoeba_full.EDITOR",                       "RocksElements.png"     },
1517   { "amoeba_full.EDITOR.xpos",                  "8"                     },
1518   { "amoeba_full.EDITOR.ypos",                  "7"                     },
1519   { "amoeba_dead",                              "RocksElements.png"     },
1520   { "amoeba_dead.xpos",                         "12"                    },
1521   { "amoeba_dead.ypos",                         "6"                     },
1522   { "amoeba_dead.frames",                       "4"                     },
1523   { "amoeba_dead.delay",                        "1000000"               },
1524   { "amoeba_dead.anim_mode",                    "random"                },
1525   { "amoeba_dead.EDITOR",                       "RocksElements.png"     },
1526   { "amoeba_dead.EDITOR.xpos",                  "12"                    },
1527   { "amoeba_dead.EDITOR.ypos",                  "6"                     },
1528
1529   { "em_key_1",                                 "RocksSP.png"           },
1530   { "em_key_1.xpos",                            "4"                     },
1531   { "em_key_1.ypos",                            "6"                     },
1532   { "em_key_1.frames",                          "1"                     },
1533   { "em_key_2",                                 "RocksSP.png"           },
1534   { "em_key_2.xpos",                            "5"                     },
1535   { "em_key_2.ypos",                            "6"                     },
1536   { "em_key_2.frames",                          "1"                     },
1537   { "em_key_3",                                 "RocksSP.png"           },
1538   { "em_key_3.xpos",                            "6"                     },
1539   { "em_key_3.ypos",                            "6"                     },
1540   { "em_key_3.frames",                          "1"                     },
1541   { "em_key_4",                                 "RocksSP.png"           },
1542   { "em_key_4.xpos",                            "7"                     },
1543   { "em_key_4.ypos",                            "6"                     },
1544   { "em_key_4.frames",                          "1"                     },
1545
1546   { "dc_key_white",                             "RocksSP.png"           },
1547   { "dc_key_white.xpos",                        "13"                    },
1548   { "dc_key_white.ypos",                        "1"                     },
1549   { "dc_key_white.frames",                      "1"                     },
1550
1551   { "em_gate_1",                                "RocksSP.png"           },
1552   { "em_gate_1.xpos",                           "0"                     },
1553   { "em_gate_1.ypos",                           "7"                     },
1554   { "em_gate_1.frames",                         "1"                     },
1555   { "em_gate_2",                                "RocksSP.png"           },
1556   { "em_gate_2.xpos",                           "1"                     },
1557   { "em_gate_2.ypos",                           "7"                     },
1558   { "em_gate_2.frames",                         "1"                     },
1559   { "em_gate_3",                                "RocksSP.png"           },
1560   { "em_gate_3.xpos",                           "2"                     },
1561   { "em_gate_3.ypos",                           "7"                     },
1562   { "em_gate_3.frames",                         "1"                     },
1563   { "em_gate_4",                                "RocksSP.png"           },
1564   { "em_gate_4.xpos",                           "3"                     },
1565   { "em_gate_4.ypos",                           "7"                     },
1566   { "em_gate_4.frames",                         "1"                     },
1567
1568   { "dc_gate_white",                            "RocksSP.png"           },
1569   { "dc_gate_white.xpos",                       "14"                    },
1570   { "dc_gate_white.ypos",                       "1"                     },
1571   { "dc_gate_white.frames",                     "1"                     },
1572
1573   { "em_gate_1_gray",                           "RocksSP.png"           },
1574   { "em_gate_1_gray.xpos",                      "4"                     },
1575   { "em_gate_1_gray.ypos",                      "7"                     },
1576   { "em_gate_1_gray.frames",                    "1"                     },
1577   { "em_gate_1_gray.EDITOR",                    "RocksSP.png"           },
1578   { "em_gate_1_gray.EDITOR.xpos",               "12"                    },
1579   { "em_gate_1_gray.EDITOR.ypos",               "11"                    },
1580   { "em_gate_1_gray.active",                    "RocksSP.png"           },
1581   { "em_gate_1_gray.active.xpos",               "0"                     },
1582   { "em_gate_1_gray.active.ypos",               "7"                     },
1583   { "em_gate_1_gray.active.frames",             "1"                     },
1584   { "em_gate_2_gray",                           "RocksSP.png"           },
1585   { "em_gate_2_gray.xpos",                      "5"                     },
1586   { "em_gate_2_gray.ypos",                      "7"                     },
1587   { "em_gate_2_gray.frames",                    "1"                     },
1588   { "em_gate_2_gray.EDITOR",                    "RocksSP.png"           },
1589   { "em_gate_2_gray.EDITOR.xpos",               "13"                    },
1590   { "em_gate_2_gray.EDITOR.ypos",               "11"                    },
1591   { "em_gate_2_gray.active",                    "RocksSP.png"           },
1592   { "em_gate_2_gray.active.xpos",               "1"                     },
1593   { "em_gate_2_gray.active.ypos",               "7"                     },
1594   { "em_gate_2_gray.active.frames",             "1"                     },
1595   { "em_gate_3_gray",                           "RocksSP.png"           },
1596   { "em_gate_3_gray.xpos",                      "6"                     },
1597   { "em_gate_3_gray.ypos",                      "7"                     },
1598   { "em_gate_3_gray.frames",                    "1"                     },
1599   { "em_gate_3_gray.EDITOR",                    "RocksSP.png"           },
1600   { "em_gate_3_gray.EDITOR.xpos",               "14"                    },
1601   { "em_gate_3_gray.EDITOR.ypos",               "11"                    },
1602   { "em_gate_3_gray.active",                    "RocksSP.png"           },
1603   { "em_gate_3_gray.active.xpos",               "2"                     },
1604   { "em_gate_3_gray.active.ypos",               "7"                     },
1605   { "em_gate_3_gray.active.frames",             "1"                     },
1606   { "em_gate_4_gray",                           "RocksSP.png"           },
1607   { "em_gate_4_gray.xpos",                      "7"                     },
1608   { "em_gate_4_gray.ypos",                      "7"                     },
1609   { "em_gate_4_gray.frames",                    "1"                     },
1610   { "em_gate_4_gray.EDITOR",                    "RocksSP.png"           },
1611   { "em_gate_4_gray.EDITOR.xpos",               "15"                    },
1612   { "em_gate_4_gray.EDITOR.ypos",               "11"                    },
1613   { "em_gate_4_gray.active",                    "RocksSP.png"           },
1614   { "em_gate_4_gray.active.xpos",               "3"                     },
1615   { "em_gate_4_gray.active.ypos",               "7"                     },
1616   { "em_gate_4_gray.active.frames",             "1"                     },
1617
1618   { "dc_gate_white_gray",                       "RocksSP.png"           },
1619   { "dc_gate_white_gray.xpos",                  "7"                     },
1620   { "dc_gate_white_gray.ypos",                  "7"                     },
1621   { "dc_gate_white_gray.frames",                "1"                     },
1622   { "dc_gate_white_gray.EDITOR",                "RocksSP.png"           },
1623   { "dc_gate_white_gray.EDITOR.xpos",           "15"                    },
1624   { "dc_gate_white_gray.EDITOR.ypos",           "1"                     },
1625   { "dc_gate_white_gray.active",                "RocksSP.png"           },
1626   { "dc_gate_white_gray.active.xpos",           "14"                    },
1627   { "dc_gate_white_gray.active.ypos",           "1"                     },
1628   { "dc_gate_white_gray.active.frames",         "1"                     },
1629
1630   { "dc_gate_fake_gray",                        "RocksSP.png"           },
1631   { "dc_gate_fake_gray.xpos",                   "7"                     },
1632   { "dc_gate_fake_gray.ypos",                   "7"                     },
1633   { "dc_gate_fake_gray.frames",                 "1"                     },
1634
1635   { "exit_closed",                              "RocksElements.png"     },
1636   { "exit_closed.xpos",                         "0"                     },
1637   { "exit_closed.ypos",                         "11"                    },
1638   { "exit_closed.frames",                       "1"                     },
1639   { "exit.opening",                             "RocksElements.png"     },
1640   { "exit.opening.xpos",                        "0"                     },
1641   { "exit.opening.ypos",                        "11"                    },
1642   { "exit.opening.frames",                      "5"                     },
1643   { "exit.opening.delay",                       "6"                     },
1644   { "exit.opening.anim_mode",                   "linear"                },
1645   { "exit_open",                                "RocksElements.png"     },
1646   { "exit_open.xpos",                           "4"                     },
1647   { "exit_open.ypos",                           "11"                    },
1648   { "exit_open.frames",                         "4"                     },
1649   { "exit_open.delay",                          "4"                     },
1650   { "exit_open.anim_mode",                      "pingpong"              },
1651   { "exit.closing",                             "RocksElements.png"     },
1652   { "exit.closing.xpos",                        "0"                     },
1653   { "exit.closing.ypos",                        "11"                    },
1654   { "exit.closing.frames",                      "5"                     },
1655   { "exit.closing.delay",                       "6"                     },
1656   { "exit.closing.anim_mode",                   "linear,reverse"        },
1657
1658   { "steel_exit_closed",                        "RocksDC2.png"  },
1659   { "steel_exit_closed.xpos",                   "8"                     },
1660   { "steel_exit_closed.ypos",                   "0"                     },
1661   { "steel_exit_closed.frames",                 "1"                     },
1662   { "steel_exit.opening",                       "RocksDC2.png"  },
1663   { "steel_exit.opening.xpos",                  "8"                     },
1664   { "steel_exit.opening.ypos",                  "0"                     },
1665   { "steel_exit.opening.frames",                "5"                     },
1666   { "steel_exit.opening.delay",                 "6"                     },
1667   { "steel_exit.opening.anim_mode",             "linear"                },
1668   { "steel_exit_open",                          "RocksDC2.png"  },
1669   { "steel_exit_open.xpos",                     "12"                    },
1670   { "steel_exit_open.ypos",                     "0"                     },
1671   { "steel_exit_open.frames",                   "4"                     },
1672   { "steel_exit_open.delay",                    "4"                     },
1673   { "steel_exit_open.anim_mode",                "pingpong"              },
1674   { "steel_exit.closing",                       "RocksDC2.png"  },
1675   { "steel_exit.closing.xpos",                  "8"                     },
1676   { "steel_exit.closing.ypos",                  "0"                     },
1677   { "steel_exit.closing.frames",                "5"                     },
1678   { "steel_exit.closing.delay",                 "6"                     },
1679   { "steel_exit.closing.anim_mode",             "linear,reverse"        },
1680
1681   { "em_exit_closed",                           "RocksDC2.png"  },
1682   { "em_exit_closed.xpos",                      "0"                     },
1683   { "em_exit_closed.ypos",                      "4"                     },
1684   { "em_exit_closed.frames",                    "1"                     },
1685   { "em_exit.opening",                          "RocksDC2.png"  },
1686   { "em_exit.opening.xpos",                     "0"                     },
1687   { "em_exit.opening.ypos",                     "4"                     },
1688   { "em_exit.opening.frames",                   "5"                     },
1689   { "em_exit.opening.delay",                    "6"                     },
1690   { "em_exit.opening.anim_mode",                "linear"                },
1691   { "em_exit_open",                             "RocksDC2.png"  },
1692   { "em_exit_open.xpos",                        "4"                     },
1693   { "em_exit_open.ypos",                        "4"                     },
1694   { "em_exit_open.frames",                      "4"                     },
1695   { "em_exit_open.delay",                       "4"                     },
1696   { "em_exit_open.anim_mode",                   "pingpong"              },
1697   { "em_exit.closing",                          "RocksDC2.png"  },
1698   { "em_exit.closing.xpos",                     "0"                     },
1699   { "em_exit.closing.ypos",                     "6"                     },
1700   { "em_exit.closing.frames",                   "5"                     },
1701   { "em_exit.closing.delay",                    "6"                     },
1702   { "em_exit.closing.anim_mode",                "linear"                },
1703
1704   { "em_steel_exit_closed",                     "RocksDC2.png"  },
1705   { "em_steel_exit_closed.xpos",                "0"                     },
1706   { "em_steel_exit_closed.ypos",                "5"                     },
1707   { "em_steel_exit_closed.frames",              "1"                     },
1708   { "em_steel_exit.opening",                    "RocksDC2.png"  },
1709   { "em_steel_exit.opening.xpos",               "0"                     },
1710   { "em_steel_exit.opening.ypos",               "5"                     },
1711   { "em_steel_exit.opening.frames",             "5"                     },
1712   { "em_steel_exit.opening.delay",              "6"                     },
1713   { "em_steel_exit.opening.anim_mode",          "linear"                },
1714   { "em_steel_exit_open",                       "RocksDC2.png"  },
1715   { "em_steel_exit_open.xpos",                  "4"                     },
1716   { "em_steel_exit_open.ypos",                  "5"                     },
1717   { "em_steel_exit_open.frames",                "4"                     },
1718   { "em_steel_exit_open.delay",                 "4"                     },
1719   { "em_steel_exit_open.anim_mode",             "pingpong"              },
1720   { "em_steel_exit.closing",                    "RocksDC2.png"  },
1721   { "em_steel_exit.closing.xpos",               "0"                     },
1722   { "em_steel_exit.closing.ypos",               "7"                     },
1723   { "em_steel_exit.closing.frames",             "5"                     },
1724   { "em_steel_exit.closing.delay",              "6"                     },
1725   { "em_steel_exit.closing.anim_mode",          "linear"                },
1726
1727   // images for Emerald Mine Club style elements and actions
1728
1729   { "balloon",                                  "RocksDC.png"           },
1730   { "balloon.xpos",                             "12"                    },
1731   { "balloon.ypos",                             "7"                     },
1732   { "balloon.frames",                           "1"                     },
1733   { "balloon.moving",                           "RocksDC.png"           },
1734   { "balloon.moving.xpos",                      "12"                    },
1735   { "balloon.moving.ypos",                      "7"                     },
1736   { "balloon.moving.frames",                    "4"                     },
1737   { "balloon.moving.anim_mode",                 "pingpong"              },
1738   { "balloon.moving.delay",                     "2"                     },
1739   { "balloon.pushing",                          "RocksDC.png"           },
1740   { "balloon.pushing.xpos",                     "12"                    },
1741   { "balloon.pushing.ypos",                     "7"                     },
1742   { "balloon.pushing.frames",                   "4"                     },
1743   { "balloon.pushing.anim_mode",                "pingpong"              },
1744   { "balloon.pushing.delay",                    "2"                     },
1745   { "balloon_switch_left",                      "RocksDC.png"           },
1746   { "balloon_switch_left.xpos",                 "8"                     },
1747   { "balloon_switch_left.ypos",                 "7"                     },
1748   { "balloon_switch_left.frames",               "1"                     },
1749   { "balloon_switch_right",                     "RocksDC.png"           },
1750   { "balloon_switch_right.xpos",                "9"                     },
1751   { "balloon_switch_right.ypos",                "7"                     },
1752   { "balloon_switch_right.frames",              "1"                     },
1753   { "balloon_switch_up",                        "RocksDC.png"           },
1754   { "balloon_switch_up.xpos",                   "10"                    },
1755   { "balloon_switch_up.ypos",                   "7"                     },
1756   { "balloon_switch_up.frames",                 "1"                     },
1757   { "balloon_switch_down",                      "RocksDC.png"           },
1758   { "balloon_switch_down.xpos",                 "11"                    },
1759   { "balloon_switch_down.ypos",                 "7"                     },
1760   { "balloon_switch_down.frames",               "1"                     },
1761   { "balloon_switch_any",                       "RocksDC.png"           },
1762   { "balloon_switch_any.xpos",                  "15"                    },
1763   { "balloon_switch_any.ypos",                  "0"                     },
1764   { "balloon_switch_any.frames",                "1"                     },
1765   { "balloon_switch_none",                      "RocksDC.png"           },
1766   { "balloon_switch_none.xpos",                 "13"                    },
1767   { "balloon_switch_none.ypos",                 "5"                     },
1768   { "balloon_switch_none.frames",               "1"                     },
1769
1770   { "spring",                                   "RocksDC.png"           },
1771   { "spring.xpos",                              "8"                     },
1772   { "spring.ypos",                              "13"                    },
1773   { "spring.frames",                            "1"                     },
1774
1775   { "emc_steelwall_1",                          "RocksDC.png"           },
1776   { "emc_steelwall_1.xpos",                     "14"                    },
1777   { "emc_steelwall_1.ypos",                     "0"                     },
1778   { "emc_steelwall_1.frames",                   "1"                     },
1779   { "emc_steelwall_2",                          "RocksEMC.png"          },
1780   { "emc_steelwall_2.xpos",                     "9"                     },
1781   { "emc_steelwall_2.ypos",                     "8"                     },
1782   { "emc_steelwall_2.frames",                   "1"                     },
1783   { "emc_steelwall_3",                          "RocksEMC.png"          },
1784   { "emc_steelwall_3.xpos",                     "9"                     },
1785   { "emc_steelwall_3.ypos",                     "9"                     },
1786   { "emc_steelwall_3.frames",                   "1"                     },
1787   { "emc_steelwall_4",                          "RocksEMC.png"          },
1788   { "emc_steelwall_4.xpos",                     "9"                     },
1789   { "emc_steelwall_4.ypos",                     "10"                    },
1790   { "emc_steelwall_4.frames",                   "1"                     },
1791
1792   { "emc_wall_1",                               "RocksDC.png"           },
1793   { "emc_wall_1.xpos",                          "13"                    },
1794   { "emc_wall_1.ypos",                          "6"                     },
1795   { "emc_wall_1.frames",                        "1"                     },
1796   { "emc_wall_2",                               "RocksDC.png"           },
1797   { "emc_wall_2.xpos",                          "14"                    },
1798   { "emc_wall_2.ypos",                          "6"                     },
1799   { "emc_wall_2.frames",                        "1"                     },
1800   { "emc_wall_3",                               "RocksDC.png"           },
1801   { "emc_wall_3.xpos",                          "15"                    },
1802   { "emc_wall_3.ypos",                          "6"                     },
1803   { "emc_wall_3.frames",                        "1"                     },
1804   { "emc_wall_4",                               "RocksDC.png"           },
1805   { "emc_wall_4.xpos",                          "14"                    },
1806   { "emc_wall_4.ypos",                          "1"                     },
1807   { "emc_wall_4.frames",                        "1"                     },
1808   { "emc_wall_5",                               "RocksDC.png"           },
1809   { "emc_wall_5.xpos",                          "15"                    },
1810   { "emc_wall_5.ypos",                          "1"                     },
1811   { "emc_wall_5.frames",                        "1"                     },
1812   { "emc_wall_6",                               "RocksDC.png"           },
1813   { "emc_wall_6.xpos",                          "14"                    },
1814   { "emc_wall_6.ypos",                          "2"                     },
1815   { "emc_wall_6.frames",                        "1"                     },
1816   { "emc_wall_7",                               "RocksDC.png"           },
1817   { "emc_wall_7.xpos",                          "15"                    },
1818   { "emc_wall_7.ypos",                          "2"                     },
1819   { "emc_wall_7.frames",                        "1"                     },
1820   { "emc_wall_8",                               "RocksEMC.png"          },
1821   { "emc_wall_8.xpos",                          "8"                     },
1822   { "emc_wall_8.ypos",                          "7"                     },
1823   { "emc_wall_8.frames",                        "1"                     },
1824
1825   // images for Diamond Caves style elements and actions
1826
1827   { "invisible_steelwall",                      "RocksSP.png"           },
1828   { "invisible_steelwall.xpos",                 "3"                     },
1829   { "invisible_steelwall.ypos",                 "5"                     },
1830   { "invisible_steelwall.frames",               "1"                     },
1831   { "invisible_steelwall.EDITOR",               "RocksSP.png"           },
1832   { "invisible_steelwall.EDITOR.xpos",          "1"                     },
1833   { "invisible_steelwall.EDITOR.ypos",          "5"                     },
1834   { "invisible_steelwall.active",               "RocksSP.png"           },
1835   { "invisible_steelwall.active.xpos",          "1"                     },
1836   { "invisible_steelwall.active.ypos",          "5"                     },
1837   { "invisible_steelwall.active.frames",        "1"                     },
1838
1839   { "invisible_wall",                           "RocksSP.png"           },
1840   { "invisible_wall.xpos",                      "7"                     },
1841   { "invisible_wall.ypos",                      "5"                     },
1842   { "invisible_wall.frames",                    "1"                     },
1843   { "invisible_wall.EDITOR",                    "RocksSP.png"           },
1844   { "invisible_wall.EDITOR.xpos",               "5"                     },
1845   { "invisible_wall.EDITOR.ypos",               "5"                     },
1846   { "invisible_wall.active",                    "RocksSP.png"           },
1847   { "invisible_wall.active.xpos",               "5"                     },
1848   { "invisible_wall.active.ypos",               "5"                     },
1849   { "invisible_wall.active.frames",             "1"                     },
1850
1851   { "invisible_sand",                           "RocksSP.png"           },
1852   { "invisible_sand.xpos",                      "0"                     },
1853   { "invisible_sand.ypos",                      "0"                     },
1854   { "invisible_sand.frames",                    "1"                     },
1855   { "invisible_sand.EDITOR",                    "RocksEMC.png"          },
1856   { "invisible_sand.EDITOR.xpos",               "2"                     },
1857   { "invisible_sand.EDITOR.ypos",               "4"                     },
1858   { "invisible_sand.active",                    "RocksEMC.png"          },
1859   { "invisible_sand.active.xpos",               "2"                     },
1860   { "invisible_sand.active.ypos",               "4"                     },
1861   { "invisible_sand.active.frames",             "1"                     },
1862   { "invisible_sand.active.CRUMBLED",           "RocksEMC.png"          },
1863   { "invisible_sand.active.CRUMBLED.xpos",      "3"                     },
1864   { "invisible_sand.active.CRUMBLED.ypos",      "4"                     },
1865   { "invisible_sand.active.CRUMBLED.frames",    "1"                     },
1866   { "invisible_sand.active.digging.left",       "RocksEMC.png"          },
1867   { "invisible_sand.active.digging.left.xpos",  "6"                     },
1868   { "invisible_sand.active.digging.left.ypos",  "2"                     },
1869   { "invisible_sand.active.digging.left.frames","3"                     },
1870   { "invisible_sand.active.digging.left.delay", "2"                     },
1871   { "invisible_sand.active.digging.left.anim_mode","linear"             },
1872   { "invisible_sand.active.digging.right",      "RocksEMC.png"          },
1873   { "invisible_sand.active.digging.right.xpos", "9"                     },
1874   { "invisible_sand.active.digging.right.ypos", "2"                     },
1875   { "invisible_sand.active.digging.right.frames","3"                    },
1876   { "invisible_sand.active.digging.right.delay","2"                     },
1877   { "invisible_sand.active.digging.right.anim_mode","linear"            },
1878   { "invisible_sand.active.digging.up",         "RocksEMC.png"          },
1879   { "invisible_sand.active.digging.up.xpos",    "0"                     },
1880   { "invisible_sand.active.digging.up.ypos",    "2"                     },
1881   { "invisible_sand.active.digging.up.frames",  "3"                     },
1882   { "invisible_sand.active.digging.up.delay",   "2"                     },
1883   { "invisible_sand.active.digging.up.anim_mode","linear"               },
1884   { "invisible_sand.active.digging.down",       "RocksEMC.png"          },
1885   { "invisible_sand.active.digging.down.xpos",  "3"                     },
1886   { "invisible_sand.active.digging.down.ypos",  "2"                     },
1887   { "invisible_sand.active.digging.down.frames","3"                     },
1888   { "invisible_sand.active.digging.down.delay", "2"                     },
1889   { "invisible_sand.active.digging.down.anim_mode","linear"             },
1890   { "invisible_sand.active.digging.left.CRUMBLED",      "RocksEMC.png"  },
1891   { "invisible_sand.active.digging.left.CRUMBLED.xpos", "6"             },
1892   { "invisible_sand.active.digging.left.CRUMBLED.ypos", "3"             },
1893   { "invisible_sand.active.digging.left.CRUMBLED.frames","3"            },
1894   { "invisible_sand.active.digging.left.CRUMBLED.delay","2"             },
1895   { "invisible_sand.active.digging.left.CRUMBLED.anim_mode","linear"    },
1896   { "invisible_sand.active.digging.right.CRUMBLED",     "RocksEMC.png"  },
1897   { "invisible_sand.active.digging.right.CRUMBLED.xpos","9"             },
1898   { "invisible_sand.active.digging.right.CRUMBLED.ypos","3"             },
1899   { "invisible_sand.active.digging.right.CRUMBLED.frames","3"           },
1900   { "invisible_sand.active.digging.right.CRUMBLED.delay","2"            },
1901   { "invisible_sand.active.digging.right.CRUMBLED.anim_mode","linear"   },
1902   { "invisible_sand.active.digging.up.CRUMBLED",        "RocksEMC.png"  },
1903   { "invisible_sand.active.digging.up.CRUMBLED.xpos",   "0"             },
1904   { "invisible_sand.active.digging.up.CRUMBLED.ypos",   "3"             },
1905   { "invisible_sand.active.digging.up.CRUMBLED.frames", "3"             },
1906   { "invisible_sand.active.digging.up.CRUMBLED.delay",  "2"             },
1907   { "invisible_sand.active.digging.up.CRUMBLED.anim_mode","linear"      },
1908   { "invisible_sand.active.digging.down.CRUMBLED",      "RocksEMC.png"  },
1909   { "invisible_sand.active.digging.down.CRUMBLED.xpos", "3"             },
1910   { "invisible_sand.active.digging.down.CRUMBLED.ypos", "3"             },
1911   { "invisible_sand.active.digging.down.CRUMBLED.frames","3"            },
1912   { "invisible_sand.active.digging.down.CRUMBLED.delay","2"             },
1913   { "invisible_sand.active.digging.down.CRUMBLED.anim_mode","linear"    },
1914
1915   { "conveyor_belt_1_middle",                   "RocksDC.png"           },
1916   { "conveyor_belt_1_middle.xpos",              "0"                     },
1917   { "conveyor_belt_1_middle.ypos",              "0"                     },
1918   { "conveyor_belt_1_middle.frames",            "1"                     },
1919   { "conveyor_belt_1_middle.active",            "RocksDC.png"           },
1920   { "conveyor_belt_1_middle.active.xpos",       "0"                     },
1921   { "conveyor_belt_1_middle.active.ypos",       "0"                     },
1922   { "conveyor_belt_1_middle.active.frames",     "8"                     },
1923   { "conveyor_belt_1_middle.active.delay",      "2"                     },
1924   { "conveyor_belt_1_left",                     "RocksDC.png"           },
1925   { "conveyor_belt_1_left.xpos",                "0"                     },
1926   { "conveyor_belt_1_left.ypos",                "1"                     },
1927   { "conveyor_belt_1_left.frames",              "1"                     },
1928   { "conveyor_belt_1_left.active",              "RocksDC.png"           },
1929   { "conveyor_belt_1_left.active.xpos",         "0"                     },
1930   { "conveyor_belt_1_left.active.ypos",         "1"                     },
1931   { "conveyor_belt_1_left.active.frames",       "8"                     },
1932   { "conveyor_belt_1_left.active.delay",        "2"                     },
1933   { "conveyor_belt_1_right",                    "RocksDC.png"           },
1934   { "conveyor_belt_1_right.xpos",               "0"                     },
1935   { "conveyor_belt_1_right.ypos",               "2"                     },
1936   { "conveyor_belt_1_right.frames",             "1"                     },
1937   { "conveyor_belt_1_right.active",             "RocksDC.png"           },
1938   { "conveyor_belt_1_right.active.xpos",        "0"                     },
1939   { "conveyor_belt_1_right.active.ypos",        "2"                     },
1940   { "conveyor_belt_1_right.active.frames",      "8"                     },
1941   { "conveyor_belt_1_right.active.delay",       "2"                     },
1942   { "conveyor_belt_1_switch_left",              "RocksDC.png"           },
1943   { "conveyor_belt_1_switch_left.xpos",         "0"                     },
1944   { "conveyor_belt_1_switch_left.ypos",         "12"                    },
1945   { "conveyor_belt_1_switch_left.frames",       "1"                     },
1946   { "conveyor_belt_1_switch_middle",            "RocksDC.png"           },
1947   { "conveyor_belt_1_switch_middle.xpos",       "0"                     },
1948   { "conveyor_belt_1_switch_middle.ypos",       "13"                    },
1949   { "conveyor_belt_1_switch_middle.frames",     "1"                     },
1950   { "conveyor_belt_1_switch_right",             "RocksDC.png"           },
1951   { "conveyor_belt_1_switch_right.xpos",        "0"                     },
1952   { "conveyor_belt_1_switch_right.ypos",        "14"                    },
1953   { "conveyor_belt_1_switch_right.frames",      "1"                     },
1954
1955   { "conveyor_belt_2_middle",                   "RocksDC.png"           },
1956   { "conveyor_belt_2_middle.xpos",              "0"                     },
1957   { "conveyor_belt_2_middle.ypos",              "3"                     },
1958   { "conveyor_belt_2_middle.frames",            "1"                     },
1959   { "conveyor_belt_2_middle.active",            "RocksDC.png"           },
1960   { "conveyor_belt_2_middle.active.xpos",       "0"                     },
1961   { "conveyor_belt_2_middle.active.ypos",       "3"                     },
1962   { "conveyor_belt_2_middle.active.frames",     "8"                     },
1963   { "conveyor_belt_2_middle.active.delay",      "2"                     },
1964   { "conveyor_belt_2_left",                     "RocksDC.png"           },
1965   { "conveyor_belt_2_left.xpos",                "0"                     },
1966   { "conveyor_belt_2_left.ypos",                "4"                     },
1967   { "conveyor_belt_2_left.frames",              "1"                     },
1968   { "conveyor_belt_2_left.active",              "RocksDC.png"           },
1969   { "conveyor_belt_2_left.active.xpos",         "0"                     },
1970   { "conveyor_belt_2_left.active.ypos",         "4"                     },
1971   { "conveyor_belt_2_left.active.frames",       "8"                     },
1972   { "conveyor_belt_2_left.active.delay",        "2"                     },
1973   { "conveyor_belt_2_right",                    "RocksDC.png"           },
1974   { "conveyor_belt_2_right.xpos",               "0"                     },
1975   { "conveyor_belt_2_right.ypos",               "5"                     },
1976   { "conveyor_belt_2_right.frames",             "1"                     },
1977   { "conveyor_belt_2_right.active",             "RocksDC.png"           },
1978   { "conveyor_belt_2_right.active.xpos",        "0"                     },
1979   { "conveyor_belt_2_right.active.ypos",        "5"                     },
1980   { "conveyor_belt_2_right.active.frames",      "8"                     },
1981   { "conveyor_belt_2_right.active.delay",       "2"                     },
1982   { "conveyor_belt_2_switch_left",              "RocksDC.png"           },
1983   { "conveyor_belt_2_switch_left.xpos",         "1"                     },
1984   { "conveyor_belt_2_switch_left.ypos",         "12"                    },
1985   { "conveyor_belt_2_switch_left.frames",       "1"                     },
1986   { "conveyor_belt_2_switch_middle",            "RocksDC.png"           },
1987   { "conveyor_belt_2_switch_middle.xpos",       "1"                     },
1988   { "conveyor_belt_2_switch_middle.ypos",       "13"                    },
1989   { "conveyor_belt_2_switch_middle.frames",     "1"                     },
1990   { "conveyor_belt_2_switch_right",             "RocksDC.png"           },
1991   { "conveyor_belt_2_switch_right.xpos",        "1"                     },
1992   { "conveyor_belt_2_switch_right.ypos",        "14"                    },
1993   { "conveyor_belt_2_switch_right.frames",      "1"                     },
1994
1995   { "conveyor_belt_3_middle",                   "RocksDC.png"           },
1996   { "conveyor_belt_3_middle.xpos",              "0"                     },
1997   { "conveyor_belt_3_middle.ypos",              "6"                     },
1998   { "conveyor_belt_3_middle.frames",            "1"                     },
1999   { "conveyor_belt_3_middle.active",            "RocksDC.png"           },
2000   { "conveyor_belt_3_middle.active.xpos",       "0"                     },
2001   { "conveyor_belt_3_middle.active.ypos",       "6"                     },
2002   { "conveyor_belt_3_middle.active.frames",     "8"                     },
2003   { "conveyor_belt_3_middle.active.delay",      "2"                     },
2004   { "conveyor_belt_3_left",                     "RocksDC.png"           },
2005   { "conveyor_belt_3_left.xpos",                "0"                     },
2006   { "conveyor_belt_3_left.ypos",                "7"                     },
2007   { "conveyor_belt_3_left.frames",              "1"                     },
2008   { "conveyor_belt_3_left.active",              "RocksDC.png"           },
2009   { "conveyor_belt_3_left.active.xpos",         "0"                     },
2010   { "conveyor_belt_3_left.active.ypos",         "7"                     },
2011   { "conveyor_belt_3_left.active.frames",       "8"                     },
2012   { "conveyor_belt_3_left.active.delay",        "2"                     },
2013   { "conveyor_belt_3_right",                    "RocksDC.png"           },
2014   { "conveyor_belt_3_right.xpos",               "0"                     },
2015   { "conveyor_belt_3_right.ypos",               "8"                     },
2016   { "conveyor_belt_3_right.frames",             "1"                     },
2017   { "conveyor_belt_3_right.active",             "RocksDC.png"           },
2018   { "conveyor_belt_3_right.active.xpos",        "0"                     },
2019   { "conveyor_belt_3_right.active.ypos",        "8"                     },
2020   { "conveyor_belt_3_right.active.frames",      "8"                     },
2021   { "conveyor_belt_3_right.active.delay",       "2"                     },
2022   { "conveyor_belt_3_switch_left",              "RocksDC.png"           },
2023   { "conveyor_belt_3_switch_left.xpos",         "2"                     },
2024   { "conveyor_belt_3_switch_left.ypos",         "12"                    },
2025   { "conveyor_belt_3_switch_left.frames",       "1"                     },
2026   { "conveyor_belt_3_switch_middle",            "RocksDC.png"           },
2027   { "conveyor_belt_3_switch_middle.xpos",       "2"                     },
2028   { "conveyor_belt_3_switch_middle.ypos",       "13"                    },
2029   { "conveyor_belt_3_switch_middle.frames",     "1"                     },
2030   { "conveyor_belt_3_switch_right",             "RocksDC.png"           },
2031   { "conveyor_belt_3_switch_right.xpos",        "2"                     },
2032   { "conveyor_belt_3_switch_right.ypos",        "14"                    },
2033   { "conveyor_belt_3_switch_right.frames",      "1"                     },
2034
2035   { "conveyor_belt_4_middle",                   "RocksDC.png"           },
2036   { "conveyor_belt_4_middle.xpos",              "0"                     },
2037   { "conveyor_belt_4_middle.ypos",              "9"                     },
2038   { "conveyor_belt_4_middle.frames",            "1"                     },
2039   { "conveyor_belt_4_middle.active",            "RocksDC.png"           },
2040   { "conveyor_belt_4_middle.active.xpos",       "0"                     },
2041   { "conveyor_belt_4_middle.active.ypos",       "9"                     },
2042   { "conveyor_belt_4_middle.active.frames",     "8"                     },
2043   { "conveyor_belt_4_middle.active.delay",      "2"                     },
2044   { "conveyor_belt_4_left",                     "RocksDC.png"           },
2045   { "conveyor_belt_4_left.xpos",                "0"                     },
2046   { "conveyor_belt_4_left.ypos",                "10"                    },
2047   { "conveyor_belt_4_left.frames",              "1"                     },
2048   { "conveyor_belt_4_left.active",              "RocksDC.png"           },
2049   { "conveyor_belt_4_left.active.xpos",         "0"                     },
2050   { "conveyor_belt_4_left.active.ypos",         "10"                    },
2051   { "conveyor_belt_4_left.active.frames",       "8"                     },
2052   { "conveyor_belt_4_left.active.delay",        "2"                     },
2053   { "conveyor_belt_4_right",                    "RocksDC.png"           },
2054   { "conveyor_belt_4_right.xpos",               "0"                     },
2055   { "conveyor_belt_4_right.ypos",               "11"                    },
2056   { "conveyor_belt_4_right.frames",             "1"                     },
2057   { "conveyor_belt_4_right.active",             "RocksDC.png"           },
2058   { "conveyor_belt_4_right.active.xpos",        "0"                     },
2059   { "conveyor_belt_4_right.active.ypos",        "11"                    },
2060   { "conveyor_belt_4_right.active.frames",      "8"                     },
2061   { "conveyor_belt_4_right.active.delay",       "2"                     },
2062   { "conveyor_belt_4_switch_left",              "RocksDC.png"           },
2063   { "conveyor_belt_4_switch_left.xpos",         "3"                     },
2064   { "conveyor_belt_4_switch_left.ypos",         "12"                    },
2065   { "conveyor_belt_4_switch_left.frames",       "1"                     },
2066   { "conveyor_belt_4_switch_middle",            "RocksDC.png"           },
2067   { "conveyor_belt_4_switch_middle.xpos",       "3"                     },
2068   { "conveyor_belt_4_switch_middle.ypos",       "13"                    },
2069   { "conveyor_belt_4_switch_middle.frames",     "1"                     },
2070   { "conveyor_belt_4_switch_right",             "RocksDC.png"           },
2071   { "conveyor_belt_4_switch_right.xpos",        "3"                     },
2072   { "conveyor_belt_4_switch_right.ypos",        "14"                    },
2073   { "conveyor_belt_4_switch_right.frames",      "1"                     },
2074
2075   { "switchgate_switch_up",                     "RocksDC.png"           },
2076   { "switchgate_switch_up.xpos",                "4"                     },
2077   { "switchgate_switch_up.ypos",                "12"                    },
2078   { "switchgate_switch_up.frames",              "1"                     },
2079   { "switchgate_switch_down",                   "RocksDC.png"           },
2080   { "switchgate_switch_down.xpos",              "5"                     },
2081   { "switchgate_switch_down.ypos",              "12"                    },
2082   { "switchgate_switch_down.frames",            "1"                     },
2083
2084   { "dc_switchgate_switch_up",                  "RocksDC2.png"          },
2085   { "dc_switchgate_switch_up.xpos",             "10"                    },
2086   { "dc_switchgate_switch_up.ypos",             "1"                     },
2087   { "dc_switchgate_switch_up.frames",           "1"                     },
2088   { "dc_switchgate_switch_down",                "RocksDC2.png"          },
2089   { "dc_switchgate_switch_down.xpos",           "11"                    },
2090   { "dc_switchgate_switch_down.ypos",           "1"                     },
2091   { "dc_switchgate_switch_down.frames",         "1"                     },
2092
2093   { "light_switch",                             "RocksDC.png"           },
2094   { "light_switch.xpos",                        "6"                     },
2095   { "light_switch.ypos",                        "12"                    },
2096   { "light_switch.frames",                      "1"                     },
2097   { "light_switch.active",                      "RocksDC.png"           },
2098   { "light_switch.active.xpos",                 "7"                     },
2099   { "light_switch.active.ypos",                 "12"                    },
2100   { "light_switch.active.frames",               "1"                     },
2101
2102   { "timegate_switch",                          "RocksDC.png"           },
2103   { "timegate_switch.xpos",                     "0"                     },
2104   { "timegate_switch.ypos",                     "15"                    },
2105   { "timegate_switch.frames",                   "1"                     },
2106   { "timegate_switch.active",                   "RocksDC.png"           },
2107   { "timegate_switch.active.xpos",              "0"                     },
2108   { "timegate_switch.active.ypos",              "15"                    },
2109   { "timegate_switch.active.frames",            "4"                     },
2110
2111   { "dc_timegate_switch",                       "RocksDC2.png"          },
2112   { "dc_timegate_switch.xpos",                  "12"                    },
2113   { "dc_timegate_switch.ypos",                  "1"                     },
2114   { "dc_timegate_switch.frames",                "1"                     },
2115   { "dc_timegate_switch.active",                "RocksDC2.png"          },
2116   { "dc_timegate_switch.active.xpos",           "12"                    },
2117   { "dc_timegate_switch.active.ypos",           "1"                     },
2118   { "dc_timegate_switch.active.frames",         "4"                     },
2119
2120   { "envelope_1",                               "RocksMore.png"         },
2121   { "envelope_1.xpos",                          "0"                     },
2122   { "envelope_1.ypos",                          "4"                     },
2123   { "envelope_1.frames",                        "1"                     },
2124   { "envelope_1.collecting",                    "RocksMore.png"         },
2125   { "envelope_1.collecting.xpos",               "5"                     },
2126   { "envelope_1.collecting.ypos",               "4"                     },
2127   { "envelope_1.collecting.frames",             "3"                     },
2128   { "envelope_1.collecting.delay",              "2"                     },
2129   { "envelope_1.collecting.anim_mode",          "linear"                },
2130   { "envelope_2",                               "RocksMore.png"         },
2131   { "envelope_2.xpos",                          "1"                     },
2132   { "envelope_2.ypos",                          "4"                     },
2133   { "envelope_2.frames",                        "1"                     },
2134   { "envelope_2.collecting",                    "RocksMore.png"         },
2135   { "envelope_2.collecting.xpos",               "5"                     },
2136   { "envelope_2.collecting.ypos",               "4"                     },
2137   { "envelope_2.collecting.frames",             "3"                     },
2138   { "envelope_2.collecting.delay",              "2"                     },
2139   { "envelope_2.collecting.anim_mode",          "linear"                },
2140   { "envelope_3",                               "RocksMore.png"         },
2141   { "envelope_3.xpos",                          "2"                     },
2142   { "envelope_3.ypos",                          "4"                     },
2143   { "envelope_3.frames",                        "1"                     },
2144   { "envelope_3.collecting",                    "RocksMore.png"         },
2145   { "envelope_3.collecting.xpos",               "5"                     },
2146   { "envelope_3.collecting.ypos",               "4"                     },
2147   { "envelope_3.collecting.frames",             "3"                     },
2148   { "envelope_3.collecting.delay",              "2"                     },
2149   { "envelope_3.collecting.anim_mode",          "linear"                },
2150   { "envelope_4",                               "RocksMore.png"         },
2151   { "envelope_4.xpos",                          "3"                     },
2152   { "envelope_4.ypos",                          "4"                     },
2153   { "envelope_4.frames",                        "1"                     },
2154   { "envelope_4.collecting",                    "RocksMore.png"         },
2155   { "envelope_4.collecting.xpos",               "5"                     },
2156   { "envelope_4.collecting.ypos",               "4"                     },
2157   { "envelope_4.collecting.frames",             "3"                     },
2158   { "envelope_4.collecting.delay",              "2"                     },
2159   { "envelope_4.collecting.anim_mode",          "linear"                },
2160
2161   { "sign_radioactivity",                       "RocksDC.png"           },
2162   { "sign_radioactivity.xpos",                  "4"                     },
2163   { "sign_radioactivity.ypos",                  "13"                    },
2164   { "sign_radioactivity.frames",                "1"                     },
2165
2166   { "sign_give_way",                            "RocksDC.png"           },
2167   { "sign_give_way.xpos",                       "5"                     },
2168   { "sign_give_way.ypos",                       "13"                    },
2169   { "sign_give_way.frames",                     "1"                     },
2170
2171   { "sign_no_entry",                            "RocksDC.png"           },
2172   { "sign_no_entry.xpos",                       "6"                     },
2173   { "sign_no_entry.ypos",                       "13"                    },
2174   { "sign_no_entry.frames",                     "1"                     },
2175
2176   { "sign_emergency_exit",                      "RocksDC.png"           },
2177   { "sign_emergency_exit.xpos",                 "7"                     },
2178   { "sign_emergency_exit.ypos",                 "13"                    },
2179   { "sign_emergency_exit.frames",               "1"                     },
2180
2181   { "sign_yin_yang",                            "RocksDC.png"           },
2182   { "sign_yin_yang.xpos",                       "4"                     },
2183   { "sign_yin_yang.ypos",                       "14"                    },
2184   { "sign_yin_yang.frames",                     "1"                     },
2185
2186   { "sign_exclamation",                         "RocksDC.png"           },
2187   { "sign_exclamation.xpos",                    "5"                     },
2188   { "sign_exclamation.ypos",                    "14"                    },
2189   { "sign_exclamation.frames",                  "1"                     },
2190
2191   { "sign_stop",                                "RocksDC.png"           },
2192   { "sign_stop.xpos",                           "6"                     },
2193   { "sign_stop.ypos",                           "14"                    },
2194   { "sign_stop.frames",                         "1"                     },
2195
2196   { "sign_parking",                             "RocksDC.png"           },
2197   { "sign_parking.xpos",                        "6"                     },
2198   { "sign_parking.ypos",                        "15"                    },
2199   { "sign_parking.frames",                      "1"                     },
2200
2201   { "sign_wheelchair",                          "RocksDC.png"           },
2202   { "sign_wheelchair.xpos",                     "7"                     },
2203   { "sign_wheelchair.ypos",                     "15"                    },
2204   { "sign_wheelchair.frames",                   "1"                     },
2205
2206   { "sign_entry_forbidden",                     "RocksDC.png"           },
2207   { "sign_entry_forbidden.xpos",                "12"                    },
2208   { "sign_entry_forbidden.ypos",                "15"                    },
2209   { "sign_entry_forbidden.frames",              "1"                     },
2210
2211   { "sperms",                                   "RocksDC2.png"          },
2212   { "sperms.xpos",                              "11"                    },
2213   { "sperms.ypos",                              "3"                     },
2214   { "sperms.frames",                            "1"                     },
2215
2216   { "bullet",                                   "RocksDC2.png"          },
2217   { "bullet.xpos",                              "12"                    },
2218   { "bullet.ypos",                              "3"                     },
2219   { "bullet.frames",                            "1"                     },
2220
2221   { "heart",                                    "RocksDC2.png"          },
2222   { "heart.xpos",                               "13"                    },
2223   { "heart.ypos",                               "3"                     },
2224   { "heart.frames",                             "1"                     },
2225
2226   { "cross",                                    "RocksDC2.png"          },
2227   { "cross.xpos",                               "14"                    },
2228   { "cross.ypos",                               "3"                     },
2229   { "cross.frames",                             "1"                     },
2230
2231   { "frankie",                                  "RocksDC2.png"          },
2232   { "frankie.xpos",                             "15"                    },
2233   { "frankie.ypos",                             "3"                     },
2234   { "frankie.frames",                           "1"                     },
2235
2236   { "sign_sperms",                              "RocksDC2.png"          },
2237   { "sign_sperms.xpos",                         "11"                    },
2238   { "sign_sperms.ypos",                         "2"                     },
2239   { "sign_sperms.frames",                       "1"                     },
2240
2241   { "sign_bullet",                              "RocksDC2.png"          },
2242   { "sign_bullet.xpos",                         "12"                    },
2243   { "sign_bullet.ypos",                         "2"                     },
2244   { "sign_bullet.frames",                       "1"                     },
2245
2246   { "sign_heart",                               "RocksDC2.png"          },
2247   { "sign_heart.xpos",                          "13"                    },
2248   { "sign_heart.ypos",                          "2"                     },
2249   { "sign_heart.frames",                        "1"                     },
2250
2251   { "sign_cross",                               "RocksDC2.png"          },
2252   { "sign_cross.xpos",                          "14"                    },
2253   { "sign_cross.ypos",                          "2"                     },
2254   { "sign_cross.frames",                        "1"                     },
2255
2256   { "sign_frankie",                             "RocksDC2.png"          },
2257   { "sign_frankie.xpos",                        "15"                    },
2258   { "sign_frankie.ypos",                        "2"                     },
2259   { "sign_frankie.frames",                      "1"                     },
2260
2261   { "landmine",                                 "RocksDC.png"           },
2262   { "landmine.xpos",                            "7"                     },
2263   { "landmine.ypos",                            "14"                    },
2264   { "landmine.frames",                          "1"                     },
2265   { "landmine.crumbled_like",                   "sand"                  },
2266
2267   { "dc_landmine",                              "RocksDC.png"           },
2268   { "dc_landmine.xpos",                         "14"                    },
2269   { "dc_landmine.ypos",                         "5"                     },
2270   { "dc_landmine.frames",                       "1"                     },
2271   { "dc_landmine.crumbled_like",                "sand"                  },
2272
2273   { "steelwall_slippery",                       "RocksDC.png"           },
2274   { "steelwall_slippery.xpos",                  "5"                     },
2275   { "steelwall_slippery.ypos",                  "15"                    },
2276   { "steelwall_slippery.frames",                "1"                     },
2277
2278   { "extra_time",                               "RocksDC.png"           },
2279   { "extra_time.xpos",                          "8"                     },
2280   { "extra_time.ypos",                          "0"                     },
2281   { "extra_time.frames",                        "6"                     },
2282   { "extra_time.delay",                         "4"                     },
2283
2284   { "shield_normal",                            "RocksDC.png"           },
2285   { "shield_normal.xpos",                       "8"                     },
2286   { "shield_normal.ypos",                       "2"                     },
2287   { "shield_normal.frames",                     "6"                     },
2288   { "shield_normal.delay",                      "4"                     },
2289   { "shield_normal.active",                     "RocksHeroes.png"       },
2290   { "shield_normal.active.xpos",                "1"                     },
2291   { "shield_normal.active.ypos",                "13"                    },
2292   { "shield_normal.active.frames",              "3"                     },
2293   { "shield_normal.active.delay",               "8"                     },
2294   { "shield_normal.active.anim_mode",           "pingpong"              },
2295
2296   { "shield_deadly",                            "RocksDC.png"           },
2297   { "shield_deadly.xpos",                       "8"                     },
2298   { "shield_deadly.ypos",                       "1"                     },
2299   { "shield_deadly.frames",                     "6"                     },
2300   { "shield_deadly.delay",                      "4"                     },
2301   { "shield_deadly.active",                     "RocksHeroes.png"       },
2302   { "shield_deadly.active.xpos",                "5"                     },
2303   { "shield_deadly.active.ypos",                "13"                    },
2304   { "shield_deadly.active.frames",              "3"                     },
2305   { "shield_deadly.active.delay",               "8"                     },
2306   { "shield_deadly.active.anim_mode",           "pingpong"              },
2307
2308   { "switchgate_closed",                        "RocksDC.png"           },
2309   { "switchgate_closed.xpos",                   "8"                     },
2310   { "switchgate_closed.ypos",                   "5"                     },
2311   { "switchgate_closed.frames",                 "1"                     },
2312   { "switchgate.opening",                       "RocksDC.png"           },
2313   { "switchgate.opening.xpos",                  "8"                     },
2314   { "switchgate.opening.ypos",                  "5"                     },
2315   { "switchgate.opening.frames",                "5"                     },
2316   { "switchgate.opening.delay",                 "6"                     },
2317   { "switchgate_open",                          "RocksDC.png"           },
2318   { "switchgate_open.xpos",                     "12"                    },
2319   { "switchgate_open.ypos",                     "5"                     },
2320   { "switchgate_open.frames",                   "1"                     },
2321   { "switchgate.closing",                       "RocksDC.png"           },
2322   { "switchgate.closing.xpos",                  "8"                     },
2323   { "switchgate.closing.ypos",                  "5"                     },
2324   { "switchgate.closing.frames",                "5"                     },
2325   { "switchgate.closing.delay",                 "6"                     },
2326   { "switchgate.closing.anim_mode",             "reverse"               },
2327
2328   { "timegate_closed",                          "RocksDC.png"           },
2329   { "timegate_closed.xpos",                     "8"                     },
2330   { "timegate_closed.ypos",                     "6"                     },
2331   { "timegate_closed.frames",                   "1"                     },
2332   { "timegate.opening",                         "RocksDC.png"           },
2333   { "timegate.opening.xpos",                    "8"                     },
2334   { "timegate.opening.ypos",                    "6"                     },
2335   { "timegate.opening.frames",                  "5"                     },
2336   { "timegate.opening.delay",                   "6"                     },
2337   { "timegate_open",                            "RocksDC.png"           },
2338   { "timegate_open.xpos",                       "12"                    },
2339   { "timegate_open.ypos",                       "6"                     },
2340   { "timegate_open.frames",                     "1"                     },
2341   { "timegate.closing",                         "RocksDC.png"           },
2342   { "timegate.closing.xpos",                    "8"                     },
2343   { "timegate.closing.ypos",                    "6"                     },
2344   { "timegate.closing.frames",                  "5"                     },
2345   { "timegate.closing.delay",                   "6"                     },
2346   { "timegate.closing.anim_mode",               "reverse"               },
2347
2348   { "pearl",                                    "RocksDC.png"           },
2349   { "pearl.xpos",                               "8"                     },
2350   { "pearl.ypos",                               "11"                    },
2351   { "pearl.frames",                             "1"                     },
2352   { "pearl.breaking",                           "RocksDC.png"           },
2353   { "pearl.breaking.xpos",                      "8"                     },
2354   { "pearl.breaking.ypos",                      "12"                    },
2355   { "pearl.breaking.frames",                    "4"                     },
2356   { "pearl.breaking.delay",                     "2"                     },
2357   { "pearl.breaking.anim_mode",                 "linear"                },
2358
2359   { "crystal",                                  "RocksDC.png"           },
2360   { "crystal.xpos",                             "9"                     },
2361   { "crystal.ypos",                             "11"                    },
2362   { "crystal.frames",                           "1"                     },
2363
2364   { "wall_pearl",                               "RocksDC.png"           },
2365   { "wall_pearl.xpos",                          "10"                    },
2366   { "wall_pearl.ypos",                          "11"                    },
2367   { "wall_pearl.frames",                        "1"                     },
2368
2369   { "wall_crystal",                             "RocksDC.png"           },
2370   { "wall_crystal.xpos",                        "11"                    },
2371   { "wall_crystal.ypos",                        "11"                    },
2372   { "wall_crystal.frames",                      "1"                     },
2373
2374   { "dc_steelwall_1_left",                      "RocksDC2.png"          },
2375   { "dc_steelwall_1_left.xpos",                 "5"                     },
2376   { "dc_steelwall_1_left.ypos",                 "1"                     },
2377   { "dc_steelwall_1_left.frames",               "1"                     },
2378   { "dc_steelwall_1_right",                     "RocksDC2.png"          },
2379   { "dc_steelwall_1_right.xpos",                "3"                     },
2380   { "dc_steelwall_1_right.ypos",                "1"                     },
2381   { "dc_steelwall_1_right.frames",              "1"                     },
2382   { "dc_steelwall_1_top",                       "RocksDC2.png"          },
2383   { "dc_steelwall_1_top.xpos",                  "4"                     },
2384   { "dc_steelwall_1_top.ypos",                  "2"                     },
2385   { "dc_steelwall_1_top.frames",                "1"                     },
2386   { "dc_steelwall_1_bottom",                    "RocksDC2.png"          },
2387   { "dc_steelwall_1_bottom.xpos",               "4"                     },
2388   { "dc_steelwall_1_bottom.ypos",               "0"                     },
2389   { "dc_steelwall_1_bottom.frames",             "1"                     },
2390   { "dc_steelwall_1_horizontal",                "RocksDC2.png"          },
2391   { "dc_steelwall_1_horizontal.xpos",           "1"                     },
2392   { "dc_steelwall_1_horizontal.ypos",           "0"                     },
2393   { "dc_steelwall_1_horizontal.frames",         "1"                     },
2394   { "dc_steelwall_1_vertical",                  "RocksDC2.png"          },
2395   { "dc_steelwall_1_vertical.xpos",             "0"                     },
2396   { "dc_steelwall_1_vertical.ypos",             "1"                     },
2397   { "dc_steelwall_1_vertical.frames",           "1"                     },
2398   { "dc_steelwall_1_topleft",                   "RocksDC2.png"          },
2399   { "dc_steelwall_1_topleft.xpos",              "0"                     },
2400   { "dc_steelwall_1_topleft.ypos",              "0"                     },
2401   { "dc_steelwall_1_topleft.frames",            "1"                     },
2402   { "dc_steelwall_1_topright",                  "RocksDC2.png"          },
2403   { "dc_steelwall_1_topright.xpos",             "2"                     },
2404   { "dc_steelwall_1_topright.ypos",             "0"                     },
2405   { "dc_steelwall_1_topright.frames",           "1"                     },
2406   { "dc_steelwall_1_bottomleft",                "RocksDC2.png"          },
2407   { "dc_steelwall_1_bottomleft.xpos",           "0"                     },
2408   { "dc_steelwall_1_bottomleft.ypos",           "2"                     },
2409   { "dc_steelwall_1_bottomleft.frames",         "1"                     },
2410   { "dc_steelwall_1_bottomright",               "RocksDC2.png"          },
2411   { "dc_steelwall_1_bottomright.xpos",          "2"                     },
2412   { "dc_steelwall_1_bottomright.ypos",          "2"                     },
2413   { "dc_steelwall_1_bottomright.frames",        "1"                     },
2414   { "dc_steelwall_1_topleft_2",                 "RocksDC2.png"          },
2415   { "dc_steelwall_1_topleft_2.xpos",            "5"                     },
2416   { "dc_steelwall_1_topleft_2.ypos",            "2"                     },
2417   { "dc_steelwall_1_topleft_2.frames",          "1"                     },
2418   { "dc_steelwall_1_topright_2",                "RocksDC2.png"          },
2419   { "dc_steelwall_1_topright_2.xpos",           "3"                     },
2420   { "dc_steelwall_1_topright_2.ypos",           "2"                     },
2421   { "dc_steelwall_1_topright_2.frames",         "1"                     },
2422   { "dc_steelwall_1_bottomleft_2",              "RocksDC2.png"          },
2423   { "dc_steelwall_1_bottomleft_2.xpos",         "5"                     },
2424   { "dc_steelwall_1_bottomleft_2.ypos",         "0"                     },
2425   { "dc_steelwall_1_bottomleft_2.frames",       "1"                     },
2426   { "dc_steelwall_1_bottomright_2",             "RocksDC2.png"          },
2427   { "dc_steelwall_1_bottomright_2.xpos",        "3"                     },
2428   { "dc_steelwall_1_bottomright_2.ypos",        "0"                     },
2429   { "dc_steelwall_1_bottomright_2.frames",      "1"                     },
2430
2431   { "dc_steelwall_2_left",                      "RocksDC2.png"          },
2432   { "dc_steelwall_2_left.xpos",                 "6"                     },
2433   { "dc_steelwall_2_left.ypos",                 "1"                     },
2434   { "dc_steelwall_2_left.frames",               "1"                     },
2435   { "dc_steelwall_2_right",                     "RocksDC2.png"          },
2436   { "dc_steelwall_2_right.xpos",                "9"                     },
2437   { "dc_steelwall_2_right.ypos",                "1"                     },
2438   { "dc_steelwall_2_right.frames",              "1"                     },
2439   { "dc_steelwall_2_top",                       "RocksDC2.png"          },
2440   { "dc_steelwall_2_top.xpos",                  "7"                     },
2441   { "dc_steelwall_2_top.ypos",                  "0"                     },
2442   { "dc_steelwall_2_top.frames",                "1"                     },
2443   { "dc_steelwall_2_bottom",                    "RocksDC2.png"          },
2444   { "dc_steelwall_2_bottom.xpos",               "7"                     },
2445   { "dc_steelwall_2_bottom.ypos",               "3"                     },
2446   { "dc_steelwall_2_bottom.frames",             "1"                     },
2447   { "dc_steelwall_2_horizontal",                "RocksDC2.png"          },
2448   { "dc_steelwall_2_horizontal.xpos",           "8"                     },
2449   { "dc_steelwall_2_horizontal.ypos",           "1"                     },
2450   { "dc_steelwall_2_horizontal.frames",         "1"                     },
2451   { "dc_steelwall_2_vertical",                  "RocksDC2.png"          },
2452   { "dc_steelwall_2_vertical.xpos",             "7"                     },
2453   { "dc_steelwall_2_vertical.ypos",             "2"                     },
2454   { "dc_steelwall_2_vertical.frames",           "1"                     },
2455   { "dc_steelwall_2_middle",                    "RocksDC2.png"          },
2456   { "dc_steelwall_2_middle.xpos",               "7"                     },
2457   { "dc_steelwall_2_middle.ypos",               "1"                     },
2458   { "dc_steelwall_2_middle.frames",             "1"                     },
2459   { "dc_steelwall_2_single",                    "RocksDC2.png"          },
2460   { "dc_steelwall_2_single.xpos",               "6"                     },
2461   { "dc_steelwall_2_single.ypos",               "0"                     },
2462   { "dc_steelwall_2_single.frames",             "1"                     },
2463
2464   // images for DX Boulderdash style elements and actions
2465
2466   { "tube_right_down",                          "RocksDC.png"           },
2467   { "tube_right_down.xpos",                     "9"                     },
2468   { "tube_right_down.ypos",                     "13"                    },
2469   { "tube_right_down.frames",                   "1"                     },
2470
2471   { "tube_horizontal_down",                     "RocksDC.png"           },
2472   { "tube_horizontal_down.xpos",                "10"                    },
2473   { "tube_horizontal_down.ypos",                "13"                    },
2474   { "tube_horizontal_down.frames",              "1"                     },
2475
2476   { "tube_left_down",                           "RocksDC.png"           },
2477   { "tube_left_down.xpos",                      "11"                    },
2478   { "tube_left_down.ypos",                      "13"                    },
2479   { "tube_left_down.frames",                    "1"                     },
2480
2481   { "tube_horizontal",                          "RocksDC.png"           },
2482   { "tube_horizontal.xpos",                     "8"                     },
2483   { "tube_horizontal.ypos",                     "14"                    },
2484   { "tube_horizontal.frames",                   "1"                     },
2485
2486   { "tube_vertical_right",                      "RocksDC.png"           },
2487   { "tube_vertical_right.xpos",                 "9"                     },
2488   { "tube_vertical_right.ypos",                 "14"                    },
2489   { "tube_vertical_right.frames",               "1"                     },
2490
2491   { "tube_any",                                 "RocksDC.png"           },
2492   { "tube_any.xpos",                            "10"                    },
2493   { "tube_any.ypos",                            "14"                    },
2494   { "tube_any.frames",                          "1"                     },
2495
2496   { "tube_vertical_left",                       "RocksDC.png"           },
2497   { "tube_vertical_left.xpos",                  "11"                    },
2498   { "tube_vertical_left.ypos",                  "14"                    },
2499   { "tube_vertical_left.frames",                "1"                     },
2500
2501   { "tube_vertical",                            "RocksDC.png"           },
2502   { "tube_vertical.xpos",                       "8"                     },
2503   { "tube_vertical.ypos",                       "15"                    },
2504   { "tube_vertical.frames",                     "1"                     },
2505
2506   { "tube_right_up",                            "RocksDC.png"           },
2507   { "tube_right_up.xpos",                       "9"                     },
2508   { "tube_right_up.ypos",                       "15"                    },
2509   { "tube_right_up.frames",                     "1"                     },
2510
2511   { "tube_horizontal_up",                       "RocksDC.png"           },
2512   { "tube_horizontal_up.xpos",                  "10"                    },
2513   { "tube_horizontal_up.ypos",                  "15"                    },
2514   { "tube_horizontal_up.frames",                "1"                     },
2515
2516   { "tube_left_up",                             "RocksDC.png"           },
2517   { "tube_left_up.xpos",                        "11"                    },
2518   { "tube_left_up.ypos",                        "15"                    },
2519   { "tube_left_up.frames",                      "1"                     },
2520
2521   { "trap",                                     "RocksDC.png"           },
2522   { "trap.xpos",                                "12"                    },
2523   { "trap.ypos",                                "8"                     },
2524   { "trap.frames",                              "1"                     },
2525   { "trap.crumbled_like",                       "sand"                  },
2526   { "trap.diggable_like",                       "sand"                  },
2527   { "trap.active",                              "RocksDC.png"           },
2528   { "trap.active.xpos",                         "12"                    },
2529   { "trap.active.ypos",                         "8"                     },
2530   { "trap.active.frames",                       "4"                     },
2531   { "trap.active.delay",                        "4"                     },
2532   { "trap.active.anim_mode",                    "pingpong2"             },
2533   { "trap.active.crumbled_like",                "sand"                  },
2534
2535   { "dx_supabomb",                              "RocksDC.png"           },
2536   { "dx_supabomb.xpos",                         "15"                    },
2537   { "dx_supabomb.ypos",                         "9"                     },
2538   { "dx_supabomb.frames",                       "1"                     },
2539
2540   // images for Rocks'n'Diamonds style elements and actions
2541
2542   { "key_1",                                    "RocksElements.png"     },
2543   { "key_1.xpos",                               "4"                     },
2544   { "key_1.ypos",                               "1"                     },
2545   { "key_1.frames",                             "1"                     },
2546   { "key_1.EDITOR",                             "RocksElements.png"     },
2547   { "key_1.EDITOR.xpos",                        "4"                     },
2548   { "key_1.EDITOR.ypos",                        "14"                    },
2549   { "key_2",                                    "RocksElements.png"     },
2550   { "key_2.xpos",                               "5"                     },
2551   { "key_2.ypos",                               "1"                     },
2552   { "key_2.frames",                             "1"                     },
2553   { "key_2.EDITOR",                             "RocksElements.png"     },
2554   { "key_2.EDITOR.xpos",                        "5"                     },
2555   { "key_2.EDITOR.ypos",                        "14"                    },
2556   { "key_3",                                    "RocksElements.png"     },
2557   { "key_3.xpos",                               "6"                     },
2558   { "key_3.ypos",                               "1"                     },
2559   { "key_3.frames",                             "1"                     },
2560   { "key_3.EDITOR",                             "RocksElements.png"     },
2561   { "key_3.EDITOR.xpos",                        "6"                     },
2562   { "key_3.EDITOR.ypos",                        "14"                    },
2563   { "key_4",                                    "RocksElements.png"     },
2564   { "key_4.xpos",                               "7"                     },
2565   { "key_4.ypos",                               "1"                     },
2566   { "key_4.frames",                             "1"                     },
2567   { "key_4.EDITOR",                             "RocksElements.png"     },
2568   { "key_4.EDITOR.xpos",                        "7"                     },
2569   { "key_4.EDITOR.ypos",                        "14"                    },
2570
2571   { "gate_1",                                   "RocksElements.png"     },
2572   { "gate_1.xpos",                              "4"                     },
2573   { "gate_1.ypos",                              "2"                     },
2574   { "gate_1.frames",                            "1"                     },
2575   { "gate_2",                                   "RocksElements.png"     },
2576   { "gate_2.xpos",                              "5"                     },
2577   { "gate_2.ypos",                              "2"                     },
2578   { "gate_2.frames",                            "1"                     },
2579   { "gate_3",                                   "RocksElements.png"     },
2580   { "gate_3.xpos",                              "6"                     },
2581   { "gate_3.ypos",                              "2"                     },
2582   { "gate_3.frames",                            "1"                     },
2583   { "gate_4",                                   "RocksElements.png"     },
2584   { "gate_4.xpos",                              "7"                     },
2585   { "gate_4.ypos",                              "2"                     },
2586   { "gate_4.frames",                            "1"                     },
2587   { "gate_1_gray",                              "RocksElements.png"     },
2588   { "gate_1_gray.xpos",                         "8"                     },
2589   { "gate_1_gray.ypos",                         "2"                     },
2590   { "gate_1_gray.frames",                       "1"                     },
2591   { "gate_1_gray.EDITOR",                       "RocksElements.png"     },
2592   { "gate_1_gray.EDITOR.xpos",                  "8"                     },
2593   { "gate_1_gray.EDITOR.ypos",                  "14"                    },
2594   { "gate_1_gray.active",                       "RocksElements.png"     },
2595   { "gate_1_gray.active.xpos",                  "4"                     },
2596   { "gate_1_gray.active.ypos",                  "2"                     },
2597   { "gate_1_gray.active.frames",                "1"                     },
2598   { "gate_2_gray",                              "RocksElements.png"     },
2599   { "gate_2_gray.xpos",                         "9"                     },
2600   { "gate_2_gray.ypos",                         "2"                     },
2601   { "gate_2_gray.frames",                       "1"                     },
2602   { "gate_2_gray.EDITOR",                       "RocksElements.png"     },
2603   { "gate_2_gray.EDITOR.xpos",                  "9"                     },
2604   { "gate_2_gray.EDITOR.ypos",                  "14"                    },
2605   { "gate_2_gray.active",                       "RocksElements.png"     },
2606   { "gate_2_gray.active.xpos",                  "5"                     },
2607   { "gate_2_gray.active.ypos",                  "2"                     },
2608   { "gate_2_gray.active.frames",                "1"                     },
2609   { "gate_3_gray",                              "RocksElements.png"     },
2610   { "gate_3_gray.xpos",                         "10"                    },
2611   { "gate_3_gray.ypos",                         "2"                     },
2612   { "gate_3_gray.frames",                       "1"                     },
2613   { "gate_3_gray.EDITOR",                       "RocksElements.png"     },
2614   { "gate_3_gray.EDITOR.xpos",                  "10"                    },
2615   { "gate_3_gray.EDITOR.ypos",                  "14"                    },
2616   { "gate_3_gray.active",                       "RocksElements.png"     },
2617   { "gate_3_gray.active.xpos",                  "6"                     },
2618   { "gate_3_gray.active.ypos",                  "2"                     },
2619   { "gate_3_gray.active.frames",                "1"                     },
2620   { "gate_4_gray",                              "RocksElements.png"     },
2621   { "gate_4_gray.xpos",                         "11"                    },
2622   { "gate_4_gray.ypos",                         "2"                     },
2623   { "gate_4_gray.frames",                       "1"                     },
2624   { "gate_4_gray.EDITOR",                       "RocksElements.png"     },
2625   { "gate_4_gray.EDITOR.xpos",                  "11"                    },
2626   { "gate_4_gray.EDITOR.ypos",                  "14"                    },
2627   { "gate_4_gray.active",                       "RocksElements.png"     },
2628   { "gate_4_gray.active.xpos",                  "7"                     },
2629   { "gate_4_gray.active.ypos",                  "2"                     },
2630   { "gate_4_gray.active.frames",                "1"                     },
2631
2632   { "game_of_life",                             "RocksElements.png"     },
2633   { "game_of_life.xpos",                        "8"                     },
2634   { "game_of_life.ypos",                        "1"                     },
2635   { "game_of_life.frames",                      "1"                     },
2636
2637   { "biomaze",                                  "RocksElements.png"     },
2638   { "biomaze.xpos",                             "9"                     },
2639   { "biomaze.ypos",                             "1"                     },
2640   { "biomaze.frames",                           "1"                     },
2641
2642   { "pacman",                                   "RocksElements.png"     },
2643   { "pacman.xpos",                              "8"                     },
2644   { "pacman.ypos",                              "5"                     },
2645   { "pacman.frames",                            "1"                     },
2646   { "pacman.right",                             "RocksElements.png"     },
2647   { "pacman.right.xpos",                        "8"                     },
2648   { "pacman.right.ypos",                        "5"                     },
2649   { "pacman.right.frames",                      "2"                     },
2650   { "pacman.right.delay",                       "4"                     },
2651   { "pacman.right.offset",                      "128"                   },
2652   { "pacman.up",                                "RocksElements.png"     },
2653   { "pacman.up.xpos",                           "9"                     },
2654   { "pacman.up.ypos",                           "5"                     },
2655   { "pacman.up.frames",                         "2"                     },
2656   { "pacman.up.delay",                          "4"                     },
2657   { "pacman.up.offset",                         "128"                   },
2658   { "pacman.left",                              "RocksElements.png"     },
2659   { "pacman.left.xpos",                         "10"                    },
2660   { "pacman.left.ypos",                         "5"                     },
2661   { "pacman.left.frames",                       "2"                     },
2662   { "pacman.left.delay",                        "4"                     },
2663   { "pacman.left.offset",                       "128"                   },
2664   { "pacman.down",                              "RocksElements.png"     },
2665   { "pacman.down.xpos",                         "11"                    },
2666   { "pacman.down.ypos",                         "5"                     },
2667   { "pacman.down.frames",                       "2"                     },
2668   { "pacman.down.delay",                        "4"                     },
2669   { "pacman.down.offset",                       "128"                   },
2670   { "pacman.turning_from_right",                "RocksElements.png"     },
2671   { "pacman.turning_from_right.xpos",           "12"                    },
2672   { "pacman.turning_from_right.ypos",           "5"                     },
2673   { "pacman.turning_from_right.frames",         "1"                     },
2674   { "pacman.turning_from_up",                   "RocksElements.png"     },
2675   { "pacman.turning_from_up.xpos",              "13"                    },
2676   { "pacman.turning_from_up.ypos",              "5"                     },
2677   { "pacman.turning_from_up.frames",            "1"                     },
2678   { "pacman.turning_from_left",                 "RocksElements.png"     },
2679   { "pacman.turning_from_left.xpos",            "14"                    },
2680   { "pacman.turning_from_left.ypos",            "5"                     },
2681   { "pacman.turning_from_left.frames",          "1"                     },
2682   { "pacman.turning_from_down",                 "RocksElements.png"     },
2683   { "pacman.turning_from_down.xpos",            "15"                    },
2684   { "pacman.turning_from_down.ypos",            "5"                     },
2685   { "pacman.turning_from_down.frames",          "1"                     },
2686
2687   { "lamp",                                     "RocksElements.png"     },
2688   { "lamp.xpos",                                "0"                     },
2689   { "lamp.ypos",                                "7"                     },
2690   { "lamp.frames",                              "1"                     },
2691   { "lamp.EDITOR",                              "RocksElements.png"     },
2692   { "lamp.EDITOR.xpos",                         "2"                     },
2693   { "lamp.EDITOR.ypos",                         "14"                    },
2694   { "lamp.active",                              "RocksElements.png"     },
2695   { "lamp.active.xpos",                         "1"                     },
2696   { "lamp.active.ypos",                         "7"                     },
2697   { "lamp.active.frames",                       "1"                     },
2698
2699   { "time_orb_full",                            "RocksElements.png"     },
2700   { "time_orb_full.xpos",                       "2"                     },
2701   { "time_orb_full.ypos",                       "7"                     },
2702   { "time_orb_full.frames",                     "1"                     },
2703   { "time_orb_empty",                           "RocksElements.png"     },
2704   { "time_orb_empty.xpos",                      "3"                     },
2705   { "time_orb_empty.ypos",                      "7"                     },
2706   { "time_orb_empty.frames",                    "1"                     },
2707
2708   { "emerald_yellow",                           "RocksElements.png"     },
2709   { "emerald_yellow.xpos",                      "10"                    },
2710   { "emerald_yellow.ypos",                      "8"                     },
2711   { "emerald_yellow.frames",                    "1"                     },
2712   { "emerald_yellow.moving",                    "RocksElements.png"     },
2713   { "emerald_yellow.moving.xpos",               "10"                    },
2714   { "emerald_yellow.moving.ypos",               "8"                     },
2715   { "emerald_yellow.moving.frames",             "2"                     },
2716   { "emerald_yellow.moving.delay",              "4"                     },
2717   { "emerald_yellow.falling",                   "RocksElements.png"     },
2718   { "emerald_yellow.falling.xpos",              "10"                    },
2719   { "emerald_yellow.falling.ypos",              "8"                     },
2720   { "emerald_yellow.falling.frames",            "2"                     },
2721   { "emerald_yellow.falling.delay",             "4"                     },
2722   { "emerald_red",                              "RocksElements.png"     },
2723   { "emerald_red.xpos",                         "8"                     },
2724   { "emerald_red.ypos",                         "9"                     },
2725   { "emerald_red.frames",                       "1"                     },
2726   { "emerald_red.moving",                       "RocksElements.png"     },
2727   { "emerald_red.moving.xpos",                  "8"                     },
2728   { "emerald_red.moving.ypos",                  "9"                     },
2729   { "emerald_red.moving.frames",                "2"                     },
2730   { "emerald_red.moving.delay",                 "4"                     },
2731   { "emerald_red.falling",                      "RocksElements.png"     },
2732   { "emerald_red.falling.xpos",                 "8"                     },
2733   { "emerald_red.falling.ypos",                 "9"                     },
2734   { "emerald_red.falling.frames",               "2"                     },
2735   { "emerald_red.falling.delay",                "4"                     },
2736   { "emerald_purple",                           "RocksElements.png"     },
2737   { "emerald_purple.xpos",                      "10"                    },
2738   { "emerald_purple.ypos",                      "9"                     },
2739   { "emerald_purple.frames",                    "1"                     },
2740   { "emerald_purple.moving",                    "RocksElements.png"     },
2741   { "emerald_purple.moving.xpos",               "10"                    },
2742   { "emerald_purple.moving.ypos",               "9"                     },
2743   { "emerald_purple.moving.frames",             "2"                     },
2744   { "emerald_purple.moving.delay",              "4"                     },
2745   { "emerald_purple.falling",                   "RocksElements.png"     },
2746   { "emerald_purple.falling.xpos",              "10"                    },
2747   { "emerald_purple.falling.ypos",              "9"                     },
2748   { "emerald_purple.falling.frames",            "2"                     },
2749   { "emerald_purple.falling.delay",             "4"                     },
2750
2751   { "wall_emerald_yellow",                      "RocksElements.png"     },
2752   { "wall_emerald_yellow.xpos",                 "8"                     },
2753   { "wall_emerald_yellow.ypos",                 "8"                     },
2754   { "wall_emerald_yellow.frames",               "1"                     },
2755   { "wall_emerald_red",                         "RocksElements.png"     },
2756   { "wall_emerald_red.xpos",                    "6"                     },
2757   { "wall_emerald_red.ypos",                    "8"                     },
2758   { "wall_emerald_red.frames",                  "1"                     },
2759   { "wall_emerald_purple",                      "RocksElements.png"     },
2760   { "wall_emerald_purple.xpos",                 "7"                     },
2761   { "wall_emerald_purple.ypos",                 "8"                     },
2762   { "wall_emerald_purple.frames",               "1"                     },
2763   { "wall_bd_diamond",                          "RocksElements.png"     },
2764   { "wall_bd_diamond.xpos",                     "9"                     },
2765   { "wall_bd_diamond.ypos",                     "8"                     },
2766   { "wall_bd_diamond.frames",                   "1"                     },
2767
2768   { "expandable_wall",                          "RocksElements.png"     },
2769   { "expandable_wall.xpos",                     "11"                    },
2770   { "expandable_wall.ypos",                     "10"                    },
2771   { "expandable_wall.frames",                   "1"                     },
2772   { "expandable_wall_horizontal",               "RocksElements.png"     },
2773   { "expandable_wall_horizontal.xpos",          "5"                     },
2774   { "expandable_wall_horizontal.ypos",          "9"                     },
2775   { "expandable_wall_horizontal.frames",        "1"                     },
2776   { "expandable_wall_horizontal.EDITOR",        "RocksElements.png"     },
2777   { "expandable_wall_horizontal.EDITOR.xpos",   "13"                    },
2778   { "expandable_wall_horizontal.EDITOR.ypos",   "13"                    },
2779   { "expandable_wall_vertical",                 "RocksElements.png"     },
2780   { "expandable_wall_vertical.xpos",            "6"                     },
2781   { "expandable_wall_vertical.ypos",            "9"                     },
2782   { "expandable_wall_vertical.frames",          "1"                     },
2783   { "expandable_wall_vertical.EDITOR",          "RocksElements.png"     },
2784   { "expandable_wall_vertical.EDITOR.xpos",     "14"                    },
2785   { "expandable_wall_vertical.EDITOR.ypos",     "13"                    },
2786   { "expandable_wall_any",                      "RocksElements.png"     },
2787   { "expandable_wall_any.xpos",                 "4"                     },
2788   { "expandable_wall_any.ypos",                 "9"                     },
2789   { "expandable_wall_any.frames",               "1"                     },
2790   { "expandable_wall_any.EDITOR",               "RocksElements.png"     },
2791   { "expandable_wall_any.EDITOR.xpos",          "12"                    },
2792   { "expandable_wall_any.EDITOR.ypos",          "13"                    },
2793
2794   { "expandable_steelwall_horizontal",          "RocksDC2.png"          },
2795   { "expandable_steelwall_horizontal.xpos",     "6"                     },
2796   { "expandable_steelwall_horizontal.ypos",     "2"                     },
2797   { "expandable_steelwall_horizontal.frames",   "1"                     },
2798   { "expandable_steelwall_horizontal.EDITOR",   "RocksDC2.png"          },
2799   { "expandable_steelwall_horizontal.EDITOR.xpos","9"                   },
2800   { "expandable_steelwall_horizontal.EDITOR.ypos","2"                   },
2801   { "expandable_steelwall_vertical",            "RocksDC2.png"          },
2802   { "expandable_steelwall_vertical.xpos",       "6"                     },
2803   { "expandable_steelwall_vertical.ypos",       "2"                     },
2804   { "expandable_steelwall_vertical.frames",     "1"                     },
2805   { "expandable_steelwall_vertical.EDITOR",     "RocksDC2.png"          },
2806   { "expandable_steelwall_vertical.EDITOR.xpos","10"                    },
2807   { "expandable_steelwall_vertical.EDITOR.ypos","2"                     },
2808   { "expandable_steelwall_any",                 "RocksDC2.png"          },
2809   { "expandable_steelwall_any.xpos",            "6"                     },
2810   { "expandable_steelwall_any.ypos",            "2"                     },
2811   { "expandable_steelwall_any.frames",          "1"                     },
2812   { "expandable_steelwall_any.EDITOR",          "RocksDC2.png"          },
2813   { "expandable_steelwall_any.EDITOR.xpos",     "8"                     },
2814   { "expandable_steelwall_any.EDITOR.ypos",     "2"                     },
2815
2816   { "bd_expandable_wall",                       "RocksElements.png"     },
2817   { "bd_expandable_wall.xpos",                  "5"                     },
2818   { "bd_expandable_wall.ypos",                  "9"                     },
2819   { "bd_expandable_wall.frames",                "1"                     },
2820   { "bd_expandable_wall.EDITOR",                "RocksDC.png"           },
2821   { "bd_expandable_wall.EDITOR.xpos",           "15"                    },
2822   { "bd_expandable_wall.EDITOR.ypos",           "15"                    },
2823
2824   { "expandable_wall.growing.left",             "RocksElements.png"     },
2825   { "expandable_wall.growing.left.xpos",        "8"                     },
2826   { "expandable_wall.growing.left.ypos",        "10"                    },
2827   { "expandable_wall.growing.left.frames",      "3"                     },
2828   { "expandable_wall.growing.left.delay",       "6"                     },
2829   { "expandable_wall.growing.left.anim_mode",   "linear"                },
2830   { "expandable_wall.growing.right",            "RocksElements.png"     },
2831   { "expandable_wall.growing.right.xpos",       "5"                     },
2832   { "expandable_wall.growing.right.ypos",       "10"                    },
2833   { "expandable_wall.growing.right.frames",     "3"                     },
2834   { "expandable_wall.growing.right.delay",      "6"                     },
2835   { "expandable_wall.growing.right.anim_mode",  "linear"                },
2836   { "expandable_wall.growing.up",               "RocksHeroes.png"       },
2837   { "expandable_wall.growing.up.xpos",          "3"                     },
2838   { "expandable_wall.growing.up.ypos",          "12"                    },
2839   { "expandable_wall.growing.up.frames",        "3"                     },
2840   { "expandable_wall.growing.up.delay",         "6"                     },
2841   { "expandable_wall.growing.up.anim_mode",     "linear"                },
2842   { "expandable_wall.growing.down",             "RocksHeroes.png"       },
2843   { "expandable_wall.growing.down.xpos",        "0"                     },
2844   { "expandable_wall.growing.down.ypos",        "12"                    },
2845   { "expandable_wall.growing.down.frames",      "3"                     },
2846   { "expandable_wall.growing.down.delay",       "6"                     },
2847   { "expandable_wall.growing.down.anim_mode",   "linear"                },
2848
2849   { "expandable_steelwall.growing.left",        "RocksDC2.png"          },
2850   { "expandable_steelwall.growing.left.xpos",   "8"                     },
2851   { "expandable_steelwall.growing.left.ypos",   "4"                     },
2852   { "expandable_steelwall.growing.left.frames", "4"                     },
2853   { "expandable_steelwall.growing.left.delay",  "4"                     },
2854   { "expandable_steelwall.growing.left.anim_mode","linear"              },
2855   { "expandable_steelwall.growing.right",       "RocksDC2.png"          },
2856   { "expandable_steelwall.growing.right.xpos",  "12"                    },
2857   { "expandable_steelwall.growing.right.ypos",  "4"                     },
2858   { "expandable_steelwall.growing.right.frames","4"                     },
2859   { "expandable_steelwall.growing.right.delay", "4"                     },
2860   { "expandable_steelwall.growing.right.anim_mode","linear"             },
2861   { "expandable_steelwall.growing.up",          "RocksDC2.png"          },
2862   { "expandable_steelwall.growing.up.xpos",     "8"                     },
2863   { "expandable_steelwall.growing.up.ypos",     "5"                     },
2864   { "expandable_steelwall.growing.up.frames",   "4"                     },
2865   { "expandable_steelwall.growing.up.delay",    "4"                     },
2866   { "expandable_steelwall.growing.up.anim_mode","linear"                },
2867   { "expandable_steelwall.growing.down",        "RocksDC2.png"          },
2868   { "expandable_steelwall.growing.down.xpos",   "12"                    },
2869   { "expandable_steelwall.growing.down.ypos",   "5"                     },
2870   { "expandable_steelwall.growing.down.frames", "4"                     },
2871   { "expandable_steelwall.growing.down.delay",  "4"                     },
2872   { "expandable_steelwall.growing.down.anim_mode","linear"              },
2873
2874   { "black_orb",                                "RocksElements.png"     },
2875   { "black_orb.xpos",                           "13"                    },
2876   { "black_orb.ypos",                           "9"                     },
2877   { "black_orb.frames",                         "1"                     },
2878
2879   { "speed_pill",                               "RocksElements.png"     },
2880   { "speed_pill.xpos",                          "14"                    },
2881   { "speed_pill.ypos",                          "9"                     },
2882   { "speed_pill.frames",                        "1"                     },
2883
2884   { "dark_yamyam",                              "RocksElements.png"     },
2885   { "dark_yamyam.xpos",                         "8"                     },
2886   { "dark_yamyam.ypos",                         "11"                    },
2887   { "dark_yamyam.frames",                       "4"                     },
2888   { "dark_yamyam.anim_mode",                    "pingpong2"             },
2889
2890   { "dynabomb",                                 "RocksElements.png"     },
2891   { "dynabomb.xpos",                            "12"                    },
2892   { "dynabomb.ypos",                            "11"                    },
2893   { "dynabomb.frames",                          "1"                     },
2894   { "dynabomb.active",                          "RocksElements.png"     },
2895   { "dynabomb.active.xpos",                     "12"                    },
2896   { "dynabomb.active.ypos",                     "11"                    },
2897   { "dynabomb.active.frames",                   "4"                     },
2898   { "dynabomb.active.delay",                    "6"                     },
2899   { "dynabomb.active.anim_mode",                "pingpong"              },
2900   { "dynabomb_player_1",                        "RocksElements.png"     },
2901   { "dynabomb_player_1.xpos",                   "12"                    },
2902   { "dynabomb_player_1.ypos",                   "11"                    },
2903   { "dynabomb_player_1.frames",                 "1"                     },
2904   { "dynabomb_player_1.active",                 "RocksElements.png"     },
2905   { "dynabomb_player_1.active.xpos",            "12"                    },
2906   { "dynabomb_player_1.active.ypos",            "11"                    },
2907   { "dynabomb_player_1.active.frames",          "4"                     },
2908   { "dynabomb_player_1.active.delay",           "6"                     },
2909   { "dynabomb_player_1.active.anim_mode",       "pingpong"              },
2910   { "dynabomb_player_2",                        "RocksElements.png"     },
2911   { "dynabomb_player_2.xpos",                   "12"                    },
2912   { "dynabomb_player_2.ypos",                   "11"                    },
2913   { "dynabomb_player_2.frames",                 "1"                     },
2914   { "dynabomb_player_2.active",                 "RocksElements.png"     },
2915   { "dynabomb_player_2.active.xpos",            "12"                    },
2916   { "dynabomb_player_2.active.ypos",            "11"                    },
2917   { "dynabomb_player_2.active.frames",          "4"                     },
2918   { "dynabomb_player_2.active.delay",           "6"                     },
2919   { "dynabomb_player_2.active.anim_mode",       "pingpong"              },
2920   { "dynabomb_player_3",                        "RocksElements.png"     },
2921   { "dynabomb_player_3.xpos",                   "12"                    },
2922   { "dynabomb_player_3.ypos",                   "11"                    },
2923   { "dynabomb_player_3.frames",                 "1"                     },
2924   { "dynabomb_player_3.active",                 "RocksElements.png"     },
2925   { "dynabomb_player_3.active.xpos",            "12"                    },
2926   { "dynabomb_player_3.active.ypos",            "11"                    },
2927   { "dynabomb_player_3.active.frames",          "4"                     },
2928   { "dynabomb_player_3.active.delay",           "6"                     },
2929   { "dynabomb_player_3.active.anim_mode",       "pingpong"              },
2930   { "dynabomb_player_4",                        "RocksElements.png"     },
2931   { "dynabomb_player_4.xpos",                   "12"                    },
2932   { "dynabomb_player_4.ypos",                   "11"                    },
2933   { "dynabomb_player_4.frames",                 "1"                     },
2934   { "dynabomb_player_4.active",                 "RocksElements.png"     },
2935   { "dynabomb_player_4.active.xpos",            "12"                    },
2936   { "dynabomb_player_4.active.ypos",            "11"                    },
2937   { "dynabomb_player_4.active.frames",          "4"                     },
2938   { "dynabomb_player_4.active.delay",           "6"                     },
2939   { "dynabomb_player_4.active.anim_mode",       "pingpong"              },
2940   { "dynabomb_increase_number",                 "RocksElements.png"     },
2941   { "dynabomb_increase_number.xpos",            "12"                    },
2942   { "dynabomb_increase_number.ypos",            "11"                    },
2943   { "dynabomb_increase_number.frames",          "1"                     },
2944   { "dynabomb_increase_size",                   "RocksElements.png"     },
2945   { "dynabomb_increase_size.xpos",              "15"                    },
2946   { "dynabomb_increase_size.ypos",              "11"                    },
2947   { "dynabomb_increase_size.frames",            "1"                     },
2948   { "dynabomb_increase_power",                  "RocksElements.png"     },
2949   { "dynabomb_increase_power.xpos",             "12"                    },
2950   { "dynabomb_increase_power.ypos",             "9"                     },
2951   { "dynabomb_increase_power.frames",           "1"                     },
2952
2953   { "pig",                                      "RocksHeroes.png"       },
2954   { "pig.xpos",                                 "8"                     },
2955   { "pig.ypos",                                 "0"                     },
2956   { "pig.frames",                               "1"                     },
2957   { "pig.down",                                 "RocksHeroes.png"       },
2958   { "pig.down.xpos",                            "8"                     },
2959   { "pig.down.ypos",                            "0"                     },
2960   { "pig.down.frames",                          "1"                     },
2961   { "pig.up",                                   "RocksHeroes.png"       },
2962   { "pig.up.xpos",                              "12"                    },
2963   { "pig.up.ypos",                              "0"                     },
2964   { "pig.up.frames",                            "1"                     },
2965   { "pig.left",                                 "RocksHeroes.png"       },
2966   { "pig.left.xpos",                            "8"                     },
2967   { "pig.left.ypos",                            "1"                     },
2968   { "pig.left.frames",                          "1"                     },
2969   { "pig.right",                                "RocksHeroes.png"       },
2970   { "pig.right.xpos",                           "12"                    },
2971   { "pig.right.ypos",                           "1"                     },
2972   { "pig.right.frames",                         "1"                     },
2973   { "pig.moving.down",                          "RocksHeroes.png"       },
2974   { "pig.moving.down.xpos",                     "8"                     },
2975   { "pig.moving.down.ypos",                     "0"                     },
2976   { "pig.moving.down.frames",                   "4"                     },
2977   { "pig.moving.down.delay",                    "2"                     },
2978   { "pig.moving.up",                            "RocksHeroes.png"       },
2979   { "pig.moving.up.xpos",                       "12"                    },
2980   { "pig.moving.up.ypos",                       "0"                     },
2981   { "pig.moving.up.frames",                     "4"                     },
2982   { "pig.moving.up.delay",                      "2"                     },
2983   { "pig.moving.left",                          "RocksHeroes.png"       },
2984   { "pig.moving.left.xpos",                     "8"                     },
2985   { "pig.moving.left.ypos",                     "1"                     },
2986   { "pig.moving.left.frames",                   "4"                     },
2987   { "pig.moving.left.delay",                    "2"                     },
2988   { "pig.moving.right",                         "RocksHeroes.png"       },
2989   { "pig.moving.right.xpos",                    "12"                    },
2990   { "pig.moving.right.ypos",                    "1"                     },
2991   { "pig.moving.right.frames",                  "4"                     },
2992   { "pig.moving.right.delay",                   "2"                     },
2993   { "pig.digging.down",                         "RocksHeroes.png"       },
2994   { "pig.digging.down.xpos",                    "8"                     },
2995   { "pig.digging.down.ypos",                    "0"                     },
2996   { "pig.digging.down.frames",                  "4"                     },
2997   { "pig.digging.down.delay",                   "2"                     },
2998   { "pig.digging.up",                           "RocksHeroes.png"       },
2999   { "pig.digging.up.xpos",                      "12"                    },
3000   { "pig.digging.up.ypos",                      "0"                     },
3001   { "pig.digging.up.frames",                    "4"                     },
3002   { "pig.digging.up.delay",                     "2"                     },
3003   { "pig.digging.left",                         "RocksHeroes.png"       },
3004   { "pig.digging.left.xpos",                    "8"                     },
3005   { "pig.digging.left.ypos",                    "1"                     },
3006   { "pig.digging.left.frames",                  "4"                     },
3007   { "pig.digging.left.delay",                   "2"                     },
3008   { "pig.digging.right",                        "RocksHeroes.png"       },
3009   { "pig.digging.right.xpos",                   "12"                    },
3010   { "pig.digging.right.ypos",                   "1"                     },
3011   { "pig.digging.right.frames",                 "4"                     },
3012   { "pig.digging.right.delay",                  "2"                     },
3013
3014   { "dragon",                                   "RocksHeroes.png"       },
3015   { "dragon.xpos",                              "8"                     },
3016   { "dragon.ypos",                              "2"                     },
3017   { "dragon.frames",                            "1"                     },
3018   { "dragon.down",                              "RocksHeroes.png"       },
3019   { "dragon.down.xpos",                         "8"                     },
3020   { "dragon.down.ypos",                         "2"                     },
3021   { "dragon.down.frames",                       "1"                     },
3022   { "dragon.up",                                "RocksHeroes.png"       },
3023   { "dragon.up.xpos",                           "12"                    },
3024   { "dragon.up.ypos",                           "2"                     },
3025   { "dragon.up.frames",                         "1"                     },
3026   { "dragon.left",                              "RocksHeroes.png"       },
3027   { "dragon.left.xpos",                         "8"                     },
3028   { "dragon.left.ypos",                         "3"                     },
3029   { "dragon.left.frames",                       "1"                     },
3030   { "dragon.right",                             "RocksHeroes.png"       },
3031   { "dragon.right.xpos",                        "12"                    },
3032   { "dragon.right.ypos",                        "3"                     },
3033   { "dragon.right.frames",                      "1"                     },
3034   { "dragon.moving.down",                       "RocksHeroes.png"       },
3035   { "dragon.moving.down.xpos",                  "8"                     },
3036   { "dragon.moving.down.ypos",                  "2"                     },
3037   { "dragon.moving.down.frames",                "4"                     },
3038   { "dragon.moving.down.delay",                 "2"                     },
3039   { "dragon.moving.up",                         "RocksHeroes.png"       },
3040   { "dragon.moving.up.xpos",                    "12"                    },
3041   { "dragon.moving.up.ypos",                    "2"                     },
3042   { "dragon.moving.up.frames",                  "4"                     },
3043   { "dragon.moving.up.delay",                   "2"                     },
3044   { "dragon.moving.left",                       "RocksHeroes.png"       },
3045   { "dragon.moving.left.xpos",                  "8"                     },
3046   { "dragon.moving.left.ypos",                  "3"                     },
3047   { "dragon.moving.left.frames",                "4"                     },
3048   { "dragon.moving.left.delay",                 "2"                     },
3049   { "dragon.moving.right",                      "RocksHeroes.png"       },
3050   { "dragon.moving.right.xpos",                 "12"                    },
3051   { "dragon.moving.right.ypos",                 "3"                     },
3052   { "dragon.moving.right.frames",               "4"                     },
3053   { "dragon.moving.right.delay",                "2"                     },
3054   { "dragon.attacking.down",                    "RocksHeroes.png"       },
3055   { "dragon.attacking.down.xpos",               "8"                     },
3056   { "dragon.attacking.down.ypos",               "2"                     },
3057   { "dragon.attacking.down.frames",             "1"                     },
3058   { "dragon.attacking.up",                      "RocksHeroes.png"       },
3059   { "dragon.attacking.up.xpos",                 "12"                    },
3060   { "dragon.attacking.up.ypos",                 "2"                     },
3061   { "dragon.attacking.up.frames",               "1"                     },
3062   { "dragon.attacking.left",                    "RocksHeroes.png"       },
3063   { "dragon.attacking.left.xpos",               "8"                     },
3064   { "dragon.attacking.left.ypos",               "3"                     },
3065   { "dragon.attacking.left.frames",             "1"                     },
3066   { "dragon.attacking.right",                   "RocksHeroes.png"       },
3067   { "dragon.attacking.right.xpos",              "12"                    },
3068   { "dragon.attacking.right.ypos",              "3"                     },
3069   { "dragon.attacking.right.frames",            "1"                     },
3070
3071   { "mole",                                     "RocksHeroes.png"       },
3072   { "mole.xpos",                                "8"                     },
3073   { "mole.ypos",                                "4"                     },
3074   { "mole.frames",                              "1"                     },
3075   { "mole.down",                                "RocksHeroes.png"       },
3076   { "mole.down.xpos",                           "8"                     },
3077   { "mole.down.ypos",                           "4"                     },
3078   { "mole.down.frames",                         "1"                     },
3079   { "mole.up",                                  "RocksHeroes.png"       },
3080   { "mole.up.xpos",                             "12"                    },
3081   { "mole.up.ypos",                             "4"                     },
3082   { "mole.up.frames",                           "1"                     },
3083   { "mole.left",                                "RocksHeroes.png"       },
3084   { "mole.left.xpos",                           "8"                     },
3085   { "mole.left.ypos",                           "5"                     },
3086   { "mole.left.frames",                         "1"                     },
3087   { "mole.right",                               "RocksHeroes.png"       },
3088   { "mole.right.xpos",                          "12"                    },
3089   { "mole.right.ypos",                          "5"                     },
3090   { "mole.right.frames",                        "1"                     },
3091   { "mole.moving.down",                         "RocksHeroes.png"       },
3092   { "mole.moving.down.xpos",                    "8"                     },
3093   { "mole.moving.down.ypos",                    "4"                     },
3094   { "mole.moving.down.frames",                  "4"                     },
3095   { "mole.moving.down.delay",                   "2"                     },
3096   { "mole.moving.up",                           "RocksHeroes.png"       },
3097   { "mole.moving.up.xpos",                      "12"                    },
3098   { "mole.moving.up.ypos",                      "4"                     },
3099   { "mole.moving.up.frames",                    "4"                     },
3100   { "mole.moving.up.delay",                     "2"                     },
3101   { "mole.moving.left",                         "RocksHeroes.png"       },
3102   { "mole.moving.left.xpos",                    "8"                     },
3103   { "mole.moving.left.ypos",                    "5"                     },
3104   { "mole.moving.left.frames",                  "4"                     },
3105   { "mole.moving.left.delay",                   "2"                     },
3106   { "mole.moving.right",                        "RocksHeroes.png"       },
3107   { "mole.moving.right.xpos",                   "12"                    },
3108   { "mole.moving.right.ypos",                   "5"                     },
3109   { "mole.moving.right.frames",                 "4"                     },
3110   { "mole.moving.right.delay",                  "2"                     },
3111   { "mole.digging.down",                        "RocksHeroes.png"       },
3112   { "mole.digging.down.xpos",                   "8"                     },
3113   { "mole.digging.down.ypos",                   "4"                     },
3114   { "mole.digging.down.frames",                 "4"                     },
3115   { "mole.digging.down.delay",                  "2"                     },
3116   { "mole.digging.up",                          "RocksHeroes.png"       },
3117   { "mole.digging.up.xpos",                     "12"                    },
3118   { "mole.digging.up.ypos",                     "4"                     },
3119   { "mole.digging.up.frames",                   "4"                     },
3120   { "mole.digging.up.delay",                    "2"                     },
3121   { "mole.digging.left",                        "RocksHeroes.png"       },
3122   { "mole.digging.left.xpos",                   "8"                     },
3123   { "mole.digging.left.ypos",                   "5"                     },
3124   { "mole.digging.left.frames",                 "4"                     },
3125   { "mole.digging.left.delay",                  "2"                     },
3126   { "mole.digging.right",                       "RocksHeroes.png"       },
3127   { "mole.digging.right.xpos",                  "12"                    },
3128   { "mole.digging.right.ypos",                  "5"                     },
3129   { "mole.digging.right.frames",                "4"                     },
3130   { "mole.digging.right.delay",                 "2"                     },
3131
3132   { "penguin",                                  "RocksHeroes.png"       },
3133   { "penguin.xpos",                             "8"                     },
3134   { "penguin.ypos",                             "6"                     },
3135   { "penguin.frames",                           "1"                     },
3136   { "penguin.EDITOR",                           "RocksElements.png"     },
3137   { "penguin.EDITOR.xpos",                      "12"                    },
3138   { "penguin.EDITOR.ypos",                      "14"                    },
3139   { "penguin.down",                             "RocksHeroes.png"       },
3140   { "penguin.down.xpos",                        "8"                     },
3141   { "penguin.down.ypos",                        "6"                     },
3142   { "penguin.down.frames",                      "1"                     },
3143   { "penguin.up",                               "RocksHeroes.png"       },
3144   { "penguin.up.xpos",                          "12"                    },
3145   { "penguin.up.ypos",                          "6"                     },
3146   { "penguin.up.frames",                        "1"                     },
3147   { "penguin.left",                             "RocksHeroes.png"       },
3148   { "penguin.left.xpos",                        "8"                     },
3149   { "penguin.left.ypos",                        "7"                     },
3150   { "penguin.left.frames",                      "1"                     },
3151   { "penguin.right",                            "RocksHeroes.png"       },
3152   { "penguin.right.xpos",                       "12"                    },
3153   { "penguin.right.ypos",                       "7"                     },
3154   { "penguin.right.frames",                     "1"                     },
3155   { "penguin.moving.down",                      "RocksHeroes.png"       },
3156   { "penguin.moving.down.xpos",                 "8"                     },
3157   { "penguin.moving.down.ypos",                 "6"                     },
3158   { "penguin.moving.down.frames",               "4"                     },
3159   { "penguin.moving.down.delay",                "2"                     },
3160   { "penguin.moving.up",                        "RocksHeroes.png"       },
3161   { "penguin.moving.up.xpos",                   "12"                    },
3162   { "penguin.moving.up.ypos",                   "6"                     },
3163   { "penguin.moving.up.frames",                 "4"                     },
3164   { "penguin.moving.up.delay",                  "2"                     },
3165   { "penguin.moving.left",                      "RocksHeroes.png"       },
3166   { "penguin.moving.left.xpos",                 "8"                     },
3167   { "penguin.moving.left.ypos",                 "7"                     },
3168   { "penguin.moving.left.frames",               "4"                     },
3169   { "penguin.moving.left.delay",                "2"                     },
3170   { "penguin.moving.right",                     "RocksHeroes.png"       },
3171   { "penguin.moving.right.xpos",                "12"                    },
3172   { "penguin.moving.right.ypos",                "7"                     },
3173   { "penguin.moving.right.frames",              "4"                     },
3174   { "penguin.moving.right.delay",               "2"                     },
3175
3176   { "satellite",                                "RocksHeroes.png"       },
3177   { "satellite.xpos",                           "8"                     },
3178   { "satellite.ypos",                           "9"                     },
3179   { "satellite.frames",                         "8"                     },
3180   { "satellite.delay",                          "2"                     },
3181   { "satellite.global_sync",                    "true"                  },
3182
3183   { "flames_1_left",                            "RocksHeroes.png"       },
3184   { "flames_1_left.xpos",                       "8"                     },
3185   { "flames_1_left.ypos",                       "12"                    },
3186   { "flames_1_left.frames",                     "2"                     },
3187   { "flames_1_left.offset",                     "96"                    },
3188   { "flames_2_left",                            "RocksHeroes.png"       },
3189   { "flames_2_left.xpos",                       "9"                     },
3190   { "flames_2_left.ypos",                       "12"                    },
3191   { "flames_2_left.frames",                     "2"                     },
3192   { "flames_2_left.offset",                     "96"                    },
3193   { "flames_3_left",                            "RocksHeroes.png"       },
3194   { "flames_3_left.xpos",                       "10"                    },
3195   { "flames_3_left.ypos",                       "12"                    },
3196   { "flames_3_left.frames",                     "2"                     },
3197   { "flames_3_left.offset",                     "96"                    },
3198
3199   { "flames_1_right",                           "RocksHeroes.png"       },
3200   { "flames_1_right.xpos",                      "8"                     },
3201   { "flames_1_right.ypos",                      "13"                    },
3202   { "flames_1_right.frames",                    "2"                     },
3203   { "flames_1_right.offset",                    "96"                    },
3204   { "flames_2_right",                           "RocksHeroes.png"       },
3205   { "flames_2_right.xpos",                      "9"                     },
3206   { "flames_2_right.ypos",                      "13"                    },
3207   { "flames_2_right.frames",                    "2"                     },
3208   { "flames_2_right.offset",                    "96"                    },
3209   { "flames_3_right",                           "RocksHeroes.png"       },
3210   { "flames_3_right.xpos",                      "10"                    },
3211   { "flames_3_right.ypos",                      "13"                    },
3212   { "flames_3_right.frames",                    "2"                     },
3213   { "flames_3_right.offset",                    "96"                    },
3214
3215   { "flames_1_up",                              "RocksHeroes.png"       },
3216   { "flames_1_up.xpos",                         "8"                     },
3217   { "flames_1_up.ypos",                         "14"                    },
3218   { "flames_1_up.frames",                       "2"                     },
3219   { "flames_1_up.offset",                       "96"                    },
3220   { "flames_2_up",                              "RocksHeroes.png"       },
3221   { "flames_2_up.xpos",                         "9"                     },
3222   { "flames_2_up.ypos",                         "14"                    },
3223   { "flames_2_up.frames",                       "2"                     },
3224   { "flames_2_up.offset",                       "96"                    },
3225   { "flames_3_up",                              "RocksHeroes.png"       },
3226   { "flames_3_up.xpos",                         "10"                    },
3227   { "flames_3_up.ypos",                         "14"                    },
3228   { "flames_3_up.frames",                       "2"                     },
3229   { "flames_3_up.offset",                       "96"                    },
3230
3231   { "flames_1_down",                            "RocksHeroes.png"       },
3232   { "flames_1_down.xpos",                       "8"                     },
3233   { "flames_1_down.ypos",                       "15"                    },
3234   { "flames_1_down.frames",                     "2"                     },
3235   { "flames_1_down.offset",                     "96"                    },
3236   { "flames_2_down",                            "RocksHeroes.png"       },
3237   { "flames_2_down.xpos",                       "9"                     },
3238   { "flames_2_down.ypos",                       "15"                    },
3239   { "flames_2_down.frames",                     "2"                     },
3240   { "flames_2_down.offset",                     "96"                    },
3241   { "flames_3_down",                            "RocksHeroes.png"       },
3242   { "flames_3_down.xpos",                       "10"                    },
3243   { "flames_3_down.ypos",                       "15"                    },
3244   { "flames_3_down.frames",                     "2"                     },
3245   { "flames_3_down.offset",                     "96"                    },
3246
3247   { "stoneblock",                               "RocksElements.png"     },
3248   { "stoneblock.xpos",                          "10"                    },
3249   { "stoneblock.ypos",                          "1"                     },
3250   { "stoneblock.frames",                        "1"                     },
3251
3252   // images for other elements and actions
3253
3254   { "player_1",                                 "RocksHeroes.png"       },
3255   { "player_1.xpos",                            "0"                     },
3256   { "player_1.ypos",                            "0"                     },
3257   { "player_1.frames",                          "1"                     },
3258   { "player_1.EDITOR",                          "RocksElements.png"     },
3259   { "player_1.EDITOR.xpos",                     "4"                     },
3260   { "player_1.EDITOR.ypos",                     "7"                     },
3261   { "player_1.down",                            "RocksHeroes.png"       },
3262   { "player_1.down.xpos",                       "0"                     },
3263   { "player_1.down.ypos",                       "0"                     },
3264   { "player_1.down.frames",                     "1"                     },
3265   { "player_1.up",                              "RocksHeroes.png"       },
3266   { "player_1.up.xpos",                         "4"                     },
3267   { "player_1.up.ypos",                         "0"                     },
3268   { "player_1.up.frames",                       "1"                     },
3269   { "player_1.left",                            "RocksHeroes.png"       },
3270   { "player_1.left.xpos",                       "0"                     },
3271   { "player_1.left.ypos",                       "1"                     },
3272   { "player_1.left.frames",                     "1"                     },
3273   { "player_1.right",                           "RocksHeroes.png"       },
3274   { "player_1.right.xpos",                      "4"                     },
3275   { "player_1.right.ypos",                      "1"                     },
3276   { "player_1.right.frames",                    "1"                     },
3277   { "player_1.moving.down",                     "RocksHeroes.png"       },
3278   { "player_1.moving.down.xpos",                "0"                     },
3279   { "player_1.moving.down.ypos",                "0"                     },
3280   { "player_1.moving.down.frames",              "4"                     },
3281   { "player_1.moving.down.start_frame",         "1"                     },
3282   { "player_1.moving.down.delay",               "4"                     },
3283   { "player_1.moving.up",                       "RocksHeroes.png"       },
3284   { "player_1.moving.up.xpos",                  "4"                     },
3285   { "player_1.moving.up.ypos",                  "0"                     },
3286   { "player_1.moving.up.frames",                "4"                     },
3287   { "player_1.moving.up.start_frame",           "1"                     },
3288   { "player_1.moving.up.delay",                 "4"                     },
3289   { "player_1.moving.left",                     "RocksHeroes.png"       },
3290   { "player_1.moving.left.xpos",                "0"                     },
3291   { "player_1.moving.left.ypos",                "1"                     },
3292   { "player_1.moving.left.frames",              "4"                     },
3293   { "player_1.moving.left.start_frame",         "1"                     },
3294   { "player_1.moving.left.delay",               "4"                     },
3295   { "player_1.moving.right",                    "RocksHeroes.png"       },
3296   { "player_1.moving.right.xpos",               "4"                     },
3297   { "player_1.moving.right.ypos",               "1"                     },
3298   { "player_1.moving.right.frames",             "4"                     },
3299   { "player_1.moving.right.start_frame",        "1"                     },
3300   { "player_1.moving.right.delay",              "4"                     },
3301   { "player_1.digging.down",                    "RocksHeroes.png"       },
3302   { "player_1.digging.down.xpos",               "0"                     },
3303   { "player_1.digging.down.ypos",               "0"                     },
3304   { "player_1.digging.down.frames",             "4"                     },
3305   { "player_1.digging.down.start_frame",        "1"                     },
3306   { "player_1.digging.down.delay",              "4"                     },
3307   { "player_1.digging.up",                      "RocksHeroes.png"       },
3308   { "player_1.digging.up.xpos",                 "4"                     },
3309   { "player_1.digging.up.ypos",                 "0"                     },
3310   { "player_1.digging.up.frames",               "4"                     },
3311   { "player_1.digging.up.start_frame",          "1"                     },
3312   { "player_1.digging.up.delay",                "4"                     },
3313   { "player_1.digging.left",                    "RocksHeroes.png"       },
3314   { "player_1.digging.left.xpos",               "0"                     },
3315   { "player_1.digging.left.ypos",               "1"                     },
3316   { "player_1.digging.left.frames",             "4"                     },
3317   { "player_1.digging.left.start_frame",        "1"                     },
3318   { "player_1.digging.left.delay",              "4"                     },
3319   { "player_1.digging.right",                   "RocksHeroes.png"       },
3320   { "player_1.digging.right.xpos",              "4"                     },
3321   { "player_1.digging.right.ypos",              "1"                     },
3322   { "player_1.digging.right.frames",            "4"                     },
3323   { "player_1.digging.right.start_frame",       "1"                     },
3324   { "player_1.digging.right.delay",             "4"                     },
3325   { "player_1.collecting.down",                 "RocksHeroes.png"       },
3326   { "player_1.collecting.down.xpos",            "0"                     },
3327   { "player_1.collecting.down.ypos",            "0"                     },
3328   { "player_1.collecting.down.frames",          "4"                     },
3329   { "player_1.collecting.down.start_frame",     "1"                     },
3330   { "player_1.collecting.down.delay",           "4"                     },
3331   { "player_1.collecting.up",                   "RocksHeroes.png"       },
3332   { "player_1.collecting.up.xpos",              "4"                     },
3333   { "player_1.collecting.up.ypos",              "0"                     },
3334   { "player_1.collecting.up.frames",            "4"                     },
3335   { "player_1.collecting.up.start_frame",       "1"                     },
3336   { "player_1.collecting.up.delay",             "4"                     },
3337   { "player_1.collecting.left",                 "RocksHeroes.png"       },
3338   { "player_1.collecting.left.xpos",            "0"                     },
3339   { "player_1.collecting.left.ypos",            "1"                     },
3340   { "player_1.collecting.left.frames",          "4"                     },
3341   { "player_1.collecting.left.start_frame",     "1"                     },
3342   { "player_1.collecting.left.delay",           "4"                     },
3343   { "player_1.collecting.right",                "RocksHeroes.png"       },
3344   { "player_1.collecting.right.xpos",           "4"                     },
3345   { "player_1.collecting.right.ypos",           "1"                     },
3346   { "player_1.collecting.right.frames",         "4"                     },
3347   { "player_1.collecting.right.start_frame",    "1"                     },
3348   { "player_1.collecting.right.delay",          "4"                     },
3349   { "player_1.pushing.down",                    "RocksHeroes.png"       },
3350   { "player_1.pushing.down.xpos",               "0"                     },
3351   { "player_1.pushing.down.ypos",               "0"                     },
3352   { "player_1.pushing.down.frames",             "4"                     },
3353   { "player_1.pushing.down.delay",              "4"                     },
3354   { "player_1.pushing.up",                      "RocksHeroes.png"       },
3355   { "player_1.pushing.up.xpos",                 "4"                     },
3356   { "player_1.pushing.up.ypos",                 "0"                     },
3357   { "player_1.pushing.up.frames",               "4"                     },
3358   { "player_1.pushing.up.delay",                "4"                     },
3359   { "player_1.pushing.left",                    "RocksHeroes.png"       },
3360   { "player_1.pushing.left.xpos",               "4"                     },
3361   { "player_1.pushing.left.ypos",               "2"                     },
3362   { "player_1.pushing.left.frames",             "4"                     },
3363   { "player_1.pushing.left.delay",              "4"                     },
3364   { "player_1.pushing.right",                   "RocksHeroes.png"       },
3365   { "player_1.pushing.right.xpos",              "0"                     },
3366   { "player_1.pushing.right.ypos",              "2"                     },
3367   { "player_1.pushing.right.frames",            "4"                     },
3368   { "player_1.pushing.right.delay",             "4"                     },
3369   { "player_1.snapping.down",                   "RocksHeroes.png"       },
3370   { "player_1.snapping.down.xpos",              "0"                     },
3371   { "player_1.snapping.down.ypos",              "0"                     },
3372   { "player_1.snapping.down.frames",            "1"                     },
3373   { "player_1.snapping.up",                     "RocksHeroes.png"       },
3374   { "player_1.snapping.up.xpos",                "4"                     },
3375   { "player_1.snapping.up.ypos",                "0"                     },
3376   { "player_1.snapping.up.frames",              "1"                     },
3377   { "player_1.snapping.left",                   "RocksHeroes.png"       },
3378   { "player_1.snapping.left.xpos",              "0"                     },
3379   { "player_1.snapping.left.ypos",              "1"                     },
3380   { "player_1.snapping.left.frames",            "1"                     },
3381   { "player_1.snapping.right",                  "RocksHeroes.png"       },
3382   { "player_1.snapping.right.xpos",             "4"                     },
3383   { "player_1.snapping.right.ypos",             "1"                     },
3384   { "player_1.snapping.right.frames",           "1"                     },
3385
3386   { "player_2",                                 "RocksHeroes.png"       },
3387   { "player_2.xpos",                            "0"                     },
3388   { "player_2.ypos",                            "3"                     },
3389   { "player_2.frames",                          "1"                     },
3390   { "player_2.EDITOR",                          "RocksElements.png"     },
3391   { "player_2.EDITOR.xpos",                     "5"                     },
3392   { "player_2.EDITOR.ypos",                     "7"                     },
3393   { "player_2.down",                            "RocksHeroes.png"       },
3394   { "player_2.down.xpos",                       "0"                     },
3395   { "player_2.down.ypos",                       "3"                     },
3396   { "player_2.down.frames",                     "1"                     },
3397   { "player_2.up",                              "RocksHeroes.png"       },
3398   { "player_2.up.xpos",                         "4"                     },
3399   { "player_2.up.ypos",                         "3"                     },
3400   { "player_2.up.frames",                       "1"                     },
3401   { "player_2.left",                            "RocksHeroes.png"       },
3402   { "player_2.left.xpos",                       "0"                     },
3403   { "player_2.left.ypos",                       "4"                     },
3404   { "player_2.left.frames",                     "1"                     },
3405   { "player_2.right",                           "RocksHeroes.png"       },
3406   { "player_2.right.xpos",                      "4"                     },
3407   { "player_2.right.ypos",                      "4"                     },
3408   { "player_2.right.frames",                    "1"                     },
3409   { "player_2.moving.down",                     "RocksHeroes.png"       },
3410   { "player_2.moving.down.xpos",                "0"                     },
3411   { "player_2.moving.down.ypos",                "3"                     },
3412   { "player_2.moving.down.frames",              "4"                     },
3413   { "player_2.moving.down.start_frame",         "1"                     },
3414   { "player_2.moving.down.delay",               "4"                     },
3415   { "player_2.moving.up",                       "RocksHeroes.png"       },
3416   { "player_2.moving.up.xpos",                  "4"                     },
3417   { "player_2.moving.up.ypos",                  "3"                     },
3418   { "player_2.moving.up.frames",                "4"                     },
3419   { "player_2.moving.up.start_frame",           "1"                     },
3420   { "player_2.moving.up.delay",                 "4"                     },
3421   { "player_2.moving.left",                     "RocksHeroes.png"       },
3422   { "player_2.moving.left.xpos",                "0"                     },
3423   { "player_2.moving.left.ypos",                "4"                     },
3424   { "player_2.moving.left.frames",              "4"                     },
3425   { "player_2.moving.left.start_frame",         "1"                     },
3426   { "player_2.moving.left.delay",               "4"                     },
3427   { "player_2.moving.right",                    "RocksHeroes.png"       },
3428   { "player_2.moving.right.xpos",               "4"                     },
3429   { "player_2.moving.right.ypos",               "4"                     },
3430   { "player_2.moving.right.frames",             "4"                     },
3431   { "player_2.moving.right.start_frame",        "1"                     },
3432   { "player_2.moving.right.delay",              "4"                     },
3433   { "player_2.digging.down",                    "RocksHeroes.png"       },
3434   { "player_2.digging.down.xpos",               "0"                     },
3435   { "player_2.digging.down.ypos",               "3"                     },
3436   { "player_2.digging.down.frames",             "4"                     },
3437   { "player_2.digging.down.start_frame",        "1"                     },
3438   { "player_2.digging.down.delay",              "4"                     },
3439   { "player_2.digging.up",                      "RocksHeroes.png"       },
3440   { "player_2.digging.up.xpos",                 "4"                     },
3441   { "player_2.digging.up.ypos",                 "3"                     },
3442   { "player_2.digging.up.frames",               "4"                     },
3443   { "player_2.digging.up.start_frame",          "1"                     },
3444   { "player_2.digging.up.delay",                "4"                     },
3445   { "player_2.digging.left",                    "RocksHeroes.png"       },
3446   { "player_2.digging.left.xpos",               "0"                     },
3447   { "player_2.digging.left.ypos",               "4"                     },
3448   { "player_2.digging.left.frames",             "4"                     },
3449   { "player_2.digging.left.start_frame",        "1"                     },
3450   { "player_2.digging.left.delay",              "4"                     },
3451   { "player_2.digging.right",                   "RocksHeroes.png"       },
3452   { "player_2.digging.right.xpos",              "4"                     },
3453   { "player_2.digging.right.ypos",              "4"                     },
3454   { "player_2.digging.right.frames",            "4"                     },
3455   { "player_2.digging.right.start_frame",       "1"                     },
3456   { "player_2.digging.right.delay",             "4"                     },
3457   { "player_2.collecting.down",                 "RocksHeroes.png"       },
3458   { "player_2.collecting.down.xpos",            "0"                     },
3459   { "player_2.collecting.down.ypos",            "3"                     },
3460   { "player_2.collecting.down.frames",          "4"                     },
3461   { "player_2.collecting.down.start_frame",     "1"                     },
3462   { "player_2.collecting.down.delay",           "4"                     },
3463   { "player_2.collecting.up",                   "RocksHeroes.png"       },
3464   { "player_2.collecting.up.xpos",              "4"                     },
3465   { "player_2.collecting.up.ypos",              "3"                     },
3466   { "player_2.collecting.up.frames",            "4"                     },
3467   { "player_2.collecting.up.start_frame",       "1"                     },
3468   { "player_2.collecting.up.delay",             "4"                     },
3469   { "player_2.collecting.left",                 "RocksHeroes.png"       },
3470   { "player_2.collecting.left.xpos",            "0"                     },
3471   { "player_2.collecting.left.ypos",            "4"                     },
3472   { "player_2.collecting.left.frames",          "4"                     },
3473   { "player_2.collecting.left.start_frame",     "1"                     },
3474   { "player_2.collecting.left.delay",           "4"                     },
3475   { "player_2.collecting.right",                "RocksHeroes.png"       },
3476   { "player_2.collecting.right.xpos",           "4"                     },
3477   { "player_2.collecting.right.ypos",           "4"                     },
3478   { "player_2.collecting.right.frames",         "4"                     },
3479   { "player_2.collecting.right.start_frame",    "1"                     },
3480   { "player_2.collecting.right.delay",          "4"                     },
3481   { "player_2.pushing.down",                    "RocksHeroes.png"       },
3482   { "player_2.pushing.down.xpos",               "0"                     },
3483   { "player_2.pushing.down.ypos",               "3"                     },
3484   { "player_2.pushing.down.frames",             "4"                     },
3485   { "player_2.pushing.down.delay",              "4"                     },
3486   { "player_2.pushing.up",                      "RocksHeroes.png"       },
3487   { "player_2.pushing.up.xpos",                 "4"                     },
3488   { "player_2.pushing.up.ypos",                 "3"                     },
3489   { "player_2.pushing.up.frames",               "4"                     },
3490   { "player_2.pushing.up.delay",                "4"                     },
3491   { "player_2.pushing.left",                    "RocksHeroes.png"       },
3492   { "player_2.pushing.left.xpos",               "4"                     },
3493   { "player_2.pushing.left.ypos",               "5"                     },
3494   { "player_2.pushing.left.frames",             "4"                     },
3495   { "player_2.pushing.left.delay",              "4"                     },
3496   { "player_2.pushing.right",                   "RocksHeroes.png"       },
3497   { "player_2.pushing.right.xpos",              "0"                     },
3498   { "player_2.pushing.right.ypos",              "5"                     },
3499   { "player_2.pushing.right.frames",            "4"                     },
3500   { "player_2.pushing.right.delay",             "4"                     },
3501   { "player_2.snapping.down",                   "RocksHeroes.png"       },
3502   { "player_2.snapping.down.xpos",              "0"                     },
3503   { "player_2.snapping.down.ypos",              "3"                     },
3504   { "player_2.snapping.down.frames",            "1"                     },
3505   { "player_2.snapping.up",                     "RocksHeroes.png"       },
3506   { "player_2.snapping.up.xpos",                "4"                     },
3507   { "player_2.snapping.up.ypos",                "3"                     },
3508   { "player_2.snapping.up.frames",              "1"                     },
3509   { "player_2.snapping.left",                   "RocksHeroes.png"       },
3510   { "player_2.snapping.left.xpos",              "0"                     },
3511   { "player_2.snapping.left.ypos",              "4"                     },
3512   { "player_2.snapping.left.frames",            "1"                     },
3513   { "player_2.snapping.right",                  "RocksHeroes.png"       },
3514   { "player_2.snapping.right.xpos",             "4"                     },
3515   { "player_2.snapping.right.ypos",             "4"                     },
3516   { "player_2.snapping.right.frames",           "1"                     },
3517
3518   { "player_3",                                 "RocksHeroes.png"       },
3519   { "player_3.xpos",                            "0"                     },
3520   { "player_3.ypos",                            "6"                     },
3521   { "player_3.frames",                          "1"                     },
3522   { "player_3.EDITOR",                          "RocksElements.png"     },
3523   { "player_3.EDITOR.xpos",                     "6"                     },
3524   { "player_3.EDITOR.ypos",                     "7"                     },
3525   { "player_3.down",                            "RocksHeroes.png"       },
3526   { "player_3.down.xpos",                       "0"                     },
3527   { "player_3.down.ypos",                       "6"                     },
3528   { "player_3.down.frames",                     "1"                     },
3529   { "player_3.up",                              "RocksHeroes.png"       },
3530   { "player_3.up.xpos",                         "4"                     },
3531   { "player_3.up.ypos",                         "6"                     },
3532   { "player_3.up.frames",                       "1"                     },
3533   { "player_3.left",                            "RocksHeroes.png"       },
3534   { "player_3.left.xpos",                       "0"                     },
3535   { "player_3.left.ypos",                       "7"                     },
3536   { "player_3.left.frames",                     "1"                     },
3537   { "player_3.right",                           "RocksHeroes.png"       },
3538   { "player_3.right.xpos",                      "4"                     },
3539   { "player_3.right.ypos",                      "7"                     },
3540   { "player_3.right.frames",                    "1"                     },
3541   { "player_3.moving.down",                     "RocksHeroes.png"       },
3542   { "player_3.moving.down.xpos",                "0"                     },
3543   { "player_3.moving.down.ypos",                "6"                     },
3544   { "player_3.moving.down.frames",              "4"                     },
3545   { "player_3.moving.down.start_frame",         "1"                     },
3546   { "player_3.moving.down.delay",               "4"                     },
3547   { "player_3.moving.up",                       "RocksHeroes.png"       },
3548   { "player_3.moving.up.xpos",                  "4"                     },
3549   { "player_3.moving.up.ypos",                  "6"                     },
3550   { "player_3.moving.up.frames",                "4"                     },
3551   { "player_3.moving.up.start_frame",           "1"                     },
3552   { "player_3.moving.up.delay",                 "4"                     },
3553   { "player_3.moving.left",                     "RocksHeroes.png"       },
3554   { "player_3.moving.left.xpos",                "0"                     },
3555   { "player_3.moving.left.ypos",                "7"                     },
3556   { "player_3.moving.left.frames",              "4"                     },
3557   { "player_3.moving.left.start_frame",         "1"                     },
3558   { "player_3.moving.left.delay",               "4"                     },
3559   { "player_3.moving.right",                    "RocksHeroes.png"       },
3560   { "player_3.moving.right.xpos",               "4"                     },
3561   { "player_3.moving.right.ypos",               "7"                     },
3562   { "player_3.moving.right.frames",             "4"                     },
3563   { "player_3.moving.right.start_frame",        "1"                     },
3564   { "player_3.moving.right.delay",              "4"                     },
3565   { "player_3.digging.down",                    "RocksHeroes.png"       },
3566   { "player_3.digging.down.xpos",               "0"                     },
3567   { "player_3.digging.down.ypos",               "6"                     },
3568   { "player_3.digging.down.frames",             "4"                     },
3569   { "player_3.digging.down.start_frame",        "1"                     },
3570   { "player_3.digging.down.delay",              "4"                     },
3571   { "player_3.digging.up",                      "RocksHeroes.png"       },
3572   { "player_3.digging.up.xpos",                 "4"                     },
3573   { "player_3.digging.up.ypos",                 "6"                     },
3574   { "player_3.digging.up.frames",               "4"                     },
3575   { "player_3.digging.up.start_frame",          "1"                     },
3576   { "player_3.digging.up.delay",                "4"                     },
3577   { "player_3.digging.left",                    "RocksHeroes.png"       },
3578   { "player_3.digging.left.xpos",               "0"                     },
3579   { "player_3.digging.left.ypos",               "7"                     },
3580   { "player_3.digging.left.frames",             "4"                     },
3581   { "player_3.digging.left.start_frame",        "1"                     },
3582   { "player_3.digging.left.delay",              "4"                     },
3583   { "player_3.digging.right",                   "RocksHeroes.png"       },
3584   { "player_3.digging.right.xpos",              "4"                     },
3585   { "player_3.digging.right.ypos",              "7"                     },
3586   { "player_3.digging.right.frames",            "4"                     },
3587   { "player_3.digging.right.start_frame",       "1"                     },
3588   { "player_3.digging.right.delay",             "4"                     },
3589   { "player_3.collecting.down",                 "RocksHeroes.png"       },
3590   { "player_3.collecting.down.xpos",            "0"                     },
3591   { "player_3.collecting.down.ypos",            "6"                     },
3592   { "player_3.collecting.down.frames",          "4"                     },
3593   { "player_3.collecting.down.start_frame",     "1"                     },
3594   { "player_3.collecting.down.delay",           "4"                     },
3595   { "player_3.collecting.up",                   "RocksHeroes.png"       },
3596   { "player_3.collecting.up.xpos",              "4"                     },
3597   { "player_3.collecting.up.ypos",              "6"                     },
3598   { "player_3.collecting.up.frames",            "4"                     },
3599   { "player_3.collecting.up.start_frame",       "1"                     },
3600   { "player_3.collecting.up.delay",             "4"                     },
3601   { "player_3.collecting.left",                 "RocksHeroes.png"       },
3602   { "player_3.collecting.left.xpos",            "0"                     },
3603   { "player_3.collecting.left.ypos",            "7"                     },
3604   { "player_3.collecting.left.frames",          "4"                     },
3605   { "player_3.collecting.left.start_frame",     "1"                     },
3606   { "player_3.collecting.left.delay",           "4"                     },
3607   { "player_3.collecting.right",                "RocksHeroes.png"       },
3608   { "player_3.collecting.right.xpos",           "4"                     },
3609   { "player_3.collecting.right.ypos",           "7"                     },
3610   { "player_3.collecting.right.frames",         "4"                     },
3611   { "player_3.collecting.right.start_frame",    "1"                     },
3612   { "player_3.collecting.right.delay",          "4"                     },
3613   { "player_3.pushing.down",                    "RocksHeroes.png"       },
3614   { "player_3.pushing.down.xpos",               "0"                     },
3615   { "player_3.pushing.down.ypos",               "6"                     },
3616   { "player_3.pushing.down.frames",             "4"                     },
3617   { "player_3.pushing.down.delay",              "4"                     },
3618   { "player_3.pushing.up",                      "RocksHeroes.png"       },
3619   { "player_3.pushing.up.xpos",                 "4"                     },
3620   { "player_3.pushing.up.ypos",                 "6"                     },
3621   { "player_3.pushing.up.frames",               "4"                     },
3622   { "player_3.pushing.up.delay",                "4"                     },
3623   { "player_3.pushing.left",                    "RocksHeroes.png"       },
3624   { "player_3.pushing.left.xpos",               "4"                     },
3625   { "player_3.pushing.left.ypos",               "8"                     },
3626   { "player_3.pushing.left.frames",             "4"                     },
3627   { "player_3.pushing.left.delay",              "4"                     },
3628   { "player_3.pushing.right",                   "RocksHeroes.png"       },
3629   { "player_3.pushing.right.xpos",              "0"                     },
3630   { "player_3.pushing.right.ypos",              "8"                     },
3631   { "player_3.pushing.right.frames",            "4"                     },
3632   { "player_3.pushing.right.delay",             "4"                     },
3633   { "player_3.snapping.down",                   "RocksHeroes.png"       },
3634   { "player_3.snapping.down.xpos",              "0"                     },
3635   { "player_3.snapping.down.ypos",              "6"                     },
3636   { "player_3.snapping.down.frames",            "1"                     },
3637   { "player_3.snapping.up",                     "RocksHeroes.png"       },
3638   { "player_3.snapping.up.xpos",                "4"                     },
3639   { "player_3.snapping.up.ypos",                "6"                     },
3640   { "player_3.snapping.up.frames",              "1"                     },
3641   { "player_3.snapping.left",                   "RocksHeroes.png"       },
3642   { "player_3.snapping.left.xpos",              "0"                     },
3643   { "player_3.snapping.left.ypos",              "7"                     },
3644   { "player_3.snapping.left.frames",            "1"                     },
3645   { "player_3.snapping.right",                  "RocksHeroes.png"       },
3646   { "player_3.snapping.right.xpos",             "4"                     },
3647   { "player_3.snapping.right.ypos",             "7"                     },
3648   { "player_3.snapping.right.frames",           "1"                     },
3649
3650   { "player_4",                                 "RocksHeroes.png"       },
3651   { "player_4.xpos",                            "0"                     },
3652   { "player_4.ypos",                            "9"                     },
3653   { "player_4.frames",                          "1"                     },
3654   { "player_4.EDITOR",                          "RocksElements.png"     },
3655   { "player_4.EDITOR.xpos",                     "7"                     },
3656   { "player_4.EDITOR.ypos",                     "7"                     },
3657   { "player_4.down",                            "RocksHeroes.png"       },
3658   { "player_4.down.xpos",                       "0"                     },
3659   { "player_4.down.ypos",                       "9"                     },
3660   { "player_4.down.frames",                     "1"                     },
3661   { "player_4.up",                              "RocksHeroes.png"       },
3662   { "player_4.up.xpos",                         "4"                     },
3663   { "player_4.up.ypos",                         "9"                     },
3664   { "player_4.up.frames",                       "1"                     },
3665   { "player_4.left",                            "RocksHeroes.png"       },
3666   { "player_4.left.xpos",                       "0"                     },
3667   { "player_4.left.ypos",                       "10"                    },
3668   { "player_4.left.frames",                     "1"                     },
3669   { "player_4.right",                           "RocksHeroes.png"       },
3670   { "player_4.right.xpos",                      "4"                     },
3671   { "player_4.right.ypos",                      "10"                    },
3672   { "player_4.right.frames",                    "1"                     },
3673   { "player_4.moving.down",                     "RocksHeroes.png"       },
3674   { "player_4.moving.down.xpos",                "0"                     },
3675   { "player_4.moving.down.ypos",                "9"                     },
3676   { "player_4.moving.down.frames",              "4"                     },
3677   { "player_4.moving.down.start_frame",         "1"                     },
3678   { "player_4.moving.down.delay",               "4"                     },
3679   { "player_4.moving.up",                       "RocksHeroes.png"       },
3680   { "player_4.moving.up.xpos",                  "4"                     },
3681   { "player_4.moving.up.ypos",                  "9"                     },
3682   { "player_4.moving.up.frames",                "4"                     },
3683   { "player_4.moving.up.start_frame",           "1"                     },
3684   { "player_4.moving.up.delay",                 "4"                     },
3685   { "player_4.moving.left",                     "RocksHeroes.png"       },
3686   { "player_4.moving.left.xpos",                "0"                     },
3687   { "player_4.moving.left.ypos",                "10"                    },
3688   { "player_4.moving.left.frames",              "4"                     },
3689   { "player_4.moving.left.start_frame",         "1"                     },
3690   { "player_4.moving.left.delay",               "4"                     },
3691   { "player_4.moving.right",                    "RocksHeroes.png"       },
3692   { "player_4.moving.right.xpos",               "4"                     },
3693   { "player_4.moving.right.ypos",               "10"                    },
3694   { "player_4.moving.right.frames",             "4"                     },
3695   { "player_4.moving.right.start_frame",        "1"                     },
3696   { "player_4.moving.right.delay",              "4"                     },
3697   { "player_4.digging.down",                    "RocksHeroes.png"       },
3698   { "player_4.digging.down.xpos",               "0"                     },
3699   { "player_4.digging.down.ypos",               "9"                     },
3700   { "player_4.digging.down.frames",             "4"                     },
3701   { "player_4.digging.down.start_frame",        "1"                     },
3702   { "player_4.digging.down.delay",              "4"                     },
3703   { "player_4.digging.up",                      "RocksHeroes.png"       },
3704   { "player_4.digging.up.xpos",                 "4"                     },
3705   { "player_4.digging.up.ypos",                 "9"                     },
3706   { "player_4.digging.up.frames",               "4"                     },
3707   { "player_4.digging.up.start_frame",          "1"                     },
3708   { "player_4.digging.up.delay",                "4"                     },
3709   { "player_4.digging.left",                    "RocksHeroes.png"       },
3710   { "player_4.digging.left.xpos",               "0"                     },
3711   { "player_4.digging.left.ypos",               "10"                    },
3712   { "player_4.digging.left.frames",             "4"                     },
3713   { "player_4.digging.left.start_frame",        "1"                     },
3714   { "player_4.digging.left.delay",              "4"                     },
3715   { "player_4.digging.right",                   "RocksHeroes.png"       },
3716   { "player_4.digging.right.xpos",              "4"                     },
3717   { "player_4.digging.right.ypos",              "10"                    },
3718   { "player_4.digging.right.frames",            "4"                     },
3719   { "player_4.digging.right.start_frame",       "1"                     },
3720   { "player_4.digging.right.delay",             "4"                     },
3721   { "player_4.collecting.down",                 "RocksHeroes.png"       },
3722   { "player_4.collecting.down.xpos",            "0"                     },
3723   { "player_4.collecting.down.ypos",            "9"                     },
3724   { "player_4.collecting.down.frames",          "4"                     },
3725   { "player_4.collecting.down.start_frame",     "1"                     },
3726   { "player_4.collecting.down.delay",           "4"                     },
3727   { "player_4.collecting.up",                   "RocksHeroes.png"       },
3728   { "player_4.collecting.up.xpos",              "4"                     },
3729   { "player_4.collecting.up.ypos",              "9"                     },
3730   { "player_4.collecting.up.frames",            "4"                     },
3731   { "player_4.collecting.up.start_frame",       "1"                     },
3732   { "player_4.collecting.up.delay",             "4"                     },
3733   { "player_4.collecting.left",                 "RocksHeroes.png"       },
3734   { "player_4.collecting.left.xpos",            "0"                     },
3735   { "player_4.collecting.left.ypos",            "10"                    },
3736   { "player_4.collecting.left.frames",          "4"                     },
3737   { "player_4.collecting.left.start_frame",     "1"                     },
3738   { "player_4.collecting.left.delay",           "4"                     },
3739   { "player_4.collecting.right",                "RocksHeroes.png"       },
3740   { "player_4.collecting.right.xpos",           "4"                     },
3741   { "player_4.collecting.right.ypos",           "10"                    },
3742   { "player_4.collecting.right.frames",         "4"                     },
3743   { "player_4.collecting.right.start_frame",    "1"                     },
3744   { "player_4.collecting.right.delay",          "4"                     },
3745   { "player_4.pushing.down",                    "RocksHeroes.png"       },
3746   { "player_4.pushing.down.xpos",               "0"                     },
3747   { "player_4.pushing.down.ypos",               "9"                     },
3748   { "player_4.pushing.down.frames",             "4"                     },
3749   { "player_4.pushing.down.delay",              "4"                     },
3750   { "player_4.pushing.up",                      "RocksHeroes.png"       },
3751   { "player_4.pushing.up.xpos",                 "4"                     },
3752   { "player_4.pushing.up.ypos",                 "9"                     },
3753   { "player_4.pushing.up.frames",               "4"                     },
3754   { "player_4.pushing.up.delay",                "4"                     },
3755   { "player_4.pushing.left",                    "RocksHeroes.png"       },
3756   { "player_4.pushing.left.xpos",               "4"                     },
3757   { "player_4.pushing.left.ypos",               "11"                    },
3758   { "player_4.pushing.left.frames",             "4"                     },
3759   { "player_4.pushing.left.delay",              "4"                     },
3760   { "player_4.pushing.right",                   "RocksHeroes.png"       },
3761   { "player_4.pushing.right.xpos",              "0"                     },
3762   { "player_4.pushing.right.ypos",              "11"                    },
3763   { "player_4.pushing.right.frames",            "4"                     },
3764   { "player_4.pushing.right.delay",             "4"                     },
3765   { "player_4.snapping.down",                   "RocksHeroes.png"       },
3766   { "player_4.snapping.down.xpos",              "0"                     },
3767   { "player_4.snapping.down.ypos",              "9"                     },
3768   { "player_4.snapping.down.frames",            "1"                     },
3769   { "player_4.snapping.up",                     "RocksHeroes.png"       },
3770   { "player_4.snapping.up.xpos",                "4"                     },
3771   { "player_4.snapping.up.ypos",                "9"                     },
3772   { "player_4.snapping.up.frames",              "1"                     },
3773   { "player_4.snapping.left",                   "RocksHeroes.png"       },
3774   { "player_4.snapping.left.xpos",              "0"                     },
3775   { "player_4.snapping.left.ypos",              "10"                    },
3776   { "player_4.snapping.left.frames",            "1"                     },
3777   { "player_4.snapping.right",                  "RocksHeroes.png"       },
3778   { "player_4.snapping.right.xpos",             "4"                     },
3779   { "player_4.snapping.right.ypos",             "10"                    },
3780   { "player_4.snapping.right.frames",           "1"                     },
3781
3782   { "[default].exploding",                      "RocksElements.png"     },
3783   { "[default].exploding.xpos",                 "0"                     },
3784   { "[default].exploding.ypos",                 "4"                     },
3785   { "[default].exploding.frames",               "8"                     },
3786   { "[default].exploding.delay",                "2"                     },
3787   { "[default].exploding.anim_mode",            "linear"                },
3788
3789   { "twinkle_blue",                             "RocksHeroes.png"       },
3790   { "twinkle_blue.xpos",                        "9"                     },
3791   { "twinkle_blue.ypos",                        "11"                    },
3792   { "twinkle_blue.frames",                      "3"                     },
3793   { "twinkle_blue.delay",                       "2"                     },
3794   { "twinkle_blue.anim_mode",                   "pingpong"              },
3795   { "twinkle_blue.global_sync",                 "false"                 },
3796   { "twinkle_white",                            "RocksHeroes.png"       },
3797   { "twinkle_white.xpos",                       "13"                    },
3798   { "twinkle_white.ypos",                       "11"                    },
3799   { "twinkle_white.frames",                     "3"                     },
3800   { "twinkle_white.delay",                      "2"                     },
3801   { "twinkle_white.anim_mode",                  "pingpong"              },
3802   { "twinkle_white.global_sync",                "false"                 },
3803
3804   { "steelwall_topleft",                        "RocksElements.png"     },
3805   { "steelwall_topleft.xpos",                   "4"                     },
3806   { "steelwall_topleft.ypos",                   "0"                     },
3807   { "steelwall_topleft.frames",                 "1"                     },
3808   { "steelwall_topright",                       "RocksElements.png"     },
3809   { "steelwall_topright.xpos",                  "4"                     },
3810   { "steelwall_topright.ypos",                  "0"                     },
3811   { "steelwall_topright.frames",                "1"                     },
3812   { "steelwall_bottomleft",                     "RocksElements.png"     },
3813   { "steelwall_bottomleft.xpos",                "4"                     },
3814   { "steelwall_bottomleft.ypos",                "0"                     },
3815   { "steelwall_bottomleft.frames",              "1"                     },
3816   { "steelwall_bottomright",                    "RocksElements.png"     },
3817   { "steelwall_bottomright.xpos",               "4"                     },
3818   { "steelwall_bottomright.ypos",               "0"                     },
3819   { "steelwall_bottomright.frames",             "1"                     },
3820   { "steelwall_horizontal",                     "RocksElements.png"     },
3821   { "steelwall_horizontal.xpos",                "4"                     },
3822   { "steelwall_horizontal.ypos",                "0"                     },
3823   { "steelwall_horizontal.frames",              "1"                     },
3824   { "steelwall_vertical",                       "RocksElements.png"     },
3825   { "steelwall_vertical.xpos",                  "4"                     },
3826   { "steelwall_vertical.ypos",                  "0"                     },
3827   { "steelwall_vertical.frames",                "1"                     },
3828
3829   { "steelwall_topleft.EDITOR",                 "RocksElements.png"     },
3830   { "steelwall_topleft.EDITOR.xpos",            "0"                     },
3831   { "steelwall_topleft.EDITOR.ypos",            "13"                    },
3832   { "steelwall_topright.EDITOR",                "RocksElements.png"     },
3833   { "steelwall_topright.EDITOR.xpos",           "1"                     },
3834   { "steelwall_topright.EDITOR.ypos",           "13"                    },
3835   { "steelwall_bottomleft.EDITOR",              "RocksElements.png"     },
3836   { "steelwall_bottomleft.EDITOR.xpos",         "2"                     },
3837   { "steelwall_bottomleft.EDITOR.ypos",         "13"                    },
3838   { "steelwall_bottomright.EDITOR",             "RocksElements.png"     },
3839   { "steelwall_bottomright.EDITOR.xpos",        "3"                     },
3840   { "steelwall_bottomright.EDITOR.ypos",        "13"                    },
3841   { "steelwall_horizontal.EDITOR",              "RocksElements.png"     },
3842   { "steelwall_horizontal.EDITOR.xpos",         "4"                     },
3843   { "steelwall_horizontal.EDITOR.ypos",         "13"                    },
3844   { "steelwall_vertical.EDITOR",                "RocksElements.png"     },
3845   { "steelwall_vertical.EDITOR.xpos",           "5"                     },
3846   { "steelwall_vertical.EDITOR.ypos",           "13"                    },
3847
3848   { "invisible_steelwall_topleft",              "RocksSP.png"           },
3849   { "invisible_steelwall_topleft.xpos",         "0"                     },
3850   { "invisible_steelwall_topleft.ypos",         "0"                     },
3851   { "invisible_steelwall_topleft.frames",       "1"                     },
3852   { "invisible_steelwall_topright",             "RocksSP.png"           },
3853   { "invisible_steelwall_topright.xpos",        "0"                     },
3854   { "invisible_steelwall_topright.ypos",        "0"                     },
3855   { "invisible_steelwall_topright.frames",      "1"                     },
3856   { "invisible_steelwall_bottomleft",           "RocksSP.png"           },
3857   { "invisible_steelwall_bottomleft.xpos",      "0"                     },
3858   { "invisible_steelwall_bottomleft.ypos",      "0"                     },
3859   { "invisible_steelwall_bottomleft.frames",    "1"                     },
3860   { "invisible_steelwall_bottomright",          "RocksSP.png"           },
3861   { "invisible_steelwall_bottomright.xpos",     "0"                     },
3862   { "invisible_steelwall_bottomright.ypos",     "0"                     },
3863   { "invisible_steelwall_bottomright.frames",   "1"                     },
3864   { "invisible_steelwall_horizontal",           "RocksSP.png"           },
3865   { "invisible_steelwall_horizontal.xpos",      "0"                     },
3866   { "invisible_steelwall_horizontal.ypos",      "0"                     },
3867   { "invisible_steelwall_horizontal.frames",    "1"                     },
3868   { "invisible_steelwall_vertical",             "RocksSP.png"           },
3869   { "invisible_steelwall_vertical.xpos",        "0"                     },
3870   { "invisible_steelwall_vertical.ypos",        "0"                     },
3871   { "invisible_steelwall_vertical.frames",      "1"                     },
3872
3873   { "invisible_steelwall_topleft.EDITOR",       "RocksElements.png"     },
3874   { "invisible_steelwall_topleft.EDITOR.xpos",  "6"                     },
3875   { "invisible_steelwall_topleft.EDITOR.ypos",  "13"                    },
3876   { "invisible_steelwall_topright.EDITOR",      "RocksElements.png"     },
3877   { "invisible_steelwall_topright.EDITOR.xpos", "7"                     },
3878   { "invisible_steelwall_topright.EDITOR.ypos", "13"                    },
3879   { "invisible_steelwall_bottomleft.EDITOR",    "RocksElements.png"     },
3880   { "invisible_steelwall_bottomleft.EDITOR.xpos","8"                    },
3881   { "invisible_steelwall_bottomleft.EDITOR.ypos","13"                   },
3882   { "invisible_steelwall_bottomright.EDITOR",   "RocksElements.png"     },
3883   { "invisible_steelwall_bottomright.EDITOR.xpos","9"                   },
3884   { "invisible_steelwall_bottomright.EDITOR.ypos","13"                  },
3885   { "invisible_steelwall_horizontal.EDITOR",    "RocksElements.png"     },
3886   { "invisible_steelwall_horizontal.EDITOR.xpos","10"                   },
3887   { "invisible_steelwall_horizontal.EDITOR.ypos","13"                   },
3888   { "invisible_steelwall_vertical.EDITOR",      "RocksElements.png"     },
3889   { "invisible_steelwall_vertical.EDITOR.xpos", "11"                    },
3890   { "invisible_steelwall_vertical.EDITOR.ypos", "13"                    },
3891
3892   { "arrow_left",                               "RocksDC.png"           },
3893   { "arrow_left.xpos",                          "8"                     },
3894   { "arrow_left.ypos",                          "8"                     },
3895   { "arrow_left.frames",                        "1"                     },
3896   { "arrow_right",                              "RocksDC.png"           },
3897   { "arrow_right.xpos",                         "9"                     },
3898   { "arrow_right.ypos",                         "8"                     },
3899   { "arrow_right.frames",                       "1"                     },
3900   { "arrow_up",                                 "RocksDC.png"           },
3901   { "arrow_up.xpos",                            "10"                    },
3902   { "arrow_up.ypos",                            "8"                     },
3903   { "arrow_up.frames",                          "1"                     },
3904   { "arrow_down",                               "RocksDC.png"           },
3905   { "arrow_down.xpos",                          "11"                    },
3906   { "arrow_down.ypos",                          "8"                     },
3907   { "arrow_down.frames",                        "1"                     },
3908
3909   { "unknown",                                  "RocksFontEM.png"       },
3910   { "unknown.xpos",                             "15"                    },
3911   { "unknown.ypos",                             "1"                     },
3912   { "unknown.frames",                           "1"                     },
3913
3914   { "trigger_element",                          "RocksDC.png"           },
3915   { "trigger_element.xpos",                     "15"                    },
3916   { "trigger_element.ypos",                     "14"                    },
3917   { "trigger_element.frames",                   "1"                     },
3918
3919   { "trigger_player",                           "RocksDC.png"           },
3920   { "trigger_player.xpos",                      "15"                    },
3921   { "trigger_player.ypos",                      "13"                    },
3922   { "trigger_player.frames",                    "1"                     },
3923
3924   { "trigger_ce_value",                         "RocksDC.png"           },
3925   { "trigger_ce_value.xpos",                    "15"                    },
3926   { "trigger_ce_value.ypos",                    "11"                    },
3927   { "trigger_ce_value.frames",                  "1"                     },
3928
3929   { "trigger_ce_score",                         "RocksDC.png"           },
3930   { "trigger_ce_score.xpos",                    "15"                    },
3931   { "trigger_ce_score.ypos",                    "12"                    },
3932   { "trigger_ce_score.frames",                  "1"                     },
3933
3934   { "current_ce_value",                         "RocksDC.png"           },
3935   { "current_ce_value.xpos",                    "14"                    },
3936   { "current_ce_value.ypos",                    "11"                    },
3937   { "current_ce_value.frames",                  "1"                     },
3938
3939   { "current_ce_score",                         "RocksDC.png"           },
3940   { "current_ce_score.xpos",                    "14"                    },
3941   { "current_ce_score.ypos",                    "12"                    },
3942   { "current_ce_score.frames",                  "1"                     },
3943
3944   { "prev_ce_1",                                "RocksMore.png"         },
3945   { "prev_ce_1.xpos",                           "0"                     },
3946   { "prev_ce_1.ypos",                           "7"                     },
3947   { "prev_ce_1.frames",                         "1"                     },
3948
3949   { "prev_ce_2",                                "RocksMore.png"         },
3950   { "prev_ce_2.xpos",                           "1"                     },
3951   { "prev_ce_2.ypos",                           "7"                     },
3952   { "prev_ce_2.frames",                         "1"                     },
3953
3954   { "prev_ce_3",                                "RocksMore.png"         },
3955   { "prev_ce_3.xpos",                           "2"                     },
3956   { "prev_ce_3.ypos",                           "7"                     },
3957   { "prev_ce_3.frames",                         "1"                     },
3958
3959   { "prev_ce_4",                                "RocksMore.png"         },
3960   { "prev_ce_4.xpos",                           "3"                     },
3961   { "prev_ce_4.ypos",                           "7"                     },
3962   { "prev_ce_4.frames",                         "1"                     },
3963
3964   { "prev_ce_5",                                "RocksMore.png"         },
3965   { "prev_ce_5.xpos",                           "4"                     },
3966   { "prev_ce_5.ypos",                           "7"                     },
3967   { "prev_ce_5.frames",                         "1"                     },
3968
3969   { "prev_ce_6",                                "RocksMore.png"         },
3970   { "prev_ce_6.xpos",                           "5"                     },
3971   { "prev_ce_6.ypos",                           "7"                     },
3972   { "prev_ce_6.frames",                         "1"                     },
3973
3974   { "prev_ce_7",                                "RocksMore.png"         },
3975   { "prev_ce_7.xpos",                           "6"                     },
3976   { "prev_ce_7.ypos",                           "7"                     },
3977   { "prev_ce_7.frames",                         "1"                     },
3978
3979   { "prev_ce_8",                                "RocksMore.png"         },
3980   { "prev_ce_8.xpos",                           "7"                     },
3981   { "prev_ce_8.ypos",                           "7"                     },
3982   { "prev_ce_8.frames",                         "1"                     },
3983
3984   { "next_ce_1",                                "RocksMore.png"         },
3985   { "next_ce_1.xpos",                           "0"                     },
3986   { "next_ce_1.ypos",                           "8"                     },
3987   { "next_ce_1.frames",                         "1"                     },
3988
3989   { "next_ce_2",                                "RocksMore.png"         },
3990   { "next_ce_2.xpos",                           "1"                     },
3991   { "next_ce_2.ypos",                           "8"                     },
3992   { "next_ce_2.frames",                         "1"                     },
3993
3994   { "next_ce_3",                                "RocksMore.png"         },
3995   { "next_ce_3.xpos",                           "2"                     },
3996   { "next_ce_3.ypos",                           "8"                     },
3997   { "next_ce_3.frames",                         "1"                     },
3998
3999   { "next_ce_4",                                "RocksMore.png"         },
4000   { "next_ce_4.xpos",                           "3"                     },
4001   { "next_ce_4.ypos",                           "8"                     },
4002   { "next_ce_4.frames",                         "1"                     },
4003
4004   { "next_ce_5",                                "RocksMore.png"         },
4005   { "next_ce_5.xpos",                           "4"                     },
4006   { "next_ce_5.ypos",                           "8"                     },
4007   { "next_ce_5.frames",                         "1"                     },
4008
4009   { "next_ce_6",                                "RocksMore.png"         },
4010   { "next_ce_6.xpos",                           "5"                     },
4011   { "next_ce_6.ypos",                           "8"                     },
4012   { "next_ce_6.frames",                         "1"                     },
4013
4014   { "next_ce_7",                                "RocksMore.png"         },
4015   { "next_ce_7.xpos",                           "6"                     },
4016   { "next_ce_7.ypos",                           "8"                     },
4017   { "next_ce_7.frames",                         "1"                     },
4018
4019   { "next_ce_8",                                "RocksMore.png"         },
4020   { "next_ce_8.xpos",                           "7"                     },
4021   { "next_ce_8.ypos",                           "8"                     },
4022   { "next_ce_8.frames",                         "1"                     },
4023
4024   { "self",                                     "RocksMore.png"         },
4025   { "self.xpos",                                "8"                     },
4026   { "self.ypos",                                "7"                     },
4027   { "self.frames",                              "1"                     },
4028
4029   { "any_element",                              "RocksMore.png"         },
4030   { "any_element.xpos",                         "9"                     },
4031   { "any_element.ypos",                         "7"                     },
4032   { "any_element.frames",                       "1"                     },
4033
4034   { "emc_key_5",                                "RocksEMC.png"          },
4035   { "emc_key_5.xpos",                           "0"                     },
4036   { "emc_key_5.ypos",                           "5"                     },
4037   { "emc_key_5.frames",                         "1"                     },
4038   { "emc_key_6",                                "RocksEMC.png"          },
4039   { "emc_key_6.xpos",                           "1"                     },
4040   { "emc_key_6.ypos",                           "5"                     },
4041   { "emc_key_6.frames",                         "1"                     },
4042   { "emc_key_7",                                "RocksEMC.png"          },
4043   { "emc_key_7.xpos",                           "2"                     },
4044   { "emc_key_7.ypos",                           "5"                     },
4045   { "emc_key_7.frames",                         "1"                     },
4046   { "emc_key_8",                                "RocksEMC.png"          },
4047   { "emc_key_8.xpos",                           "3"                     },
4048   { "emc_key_8.ypos",                           "5"                     },
4049   { "emc_key_8.frames",                         "1"                     },
4050
4051   { "emc_gate_5",                               "RocksEMC.png"          },
4052   { "emc_gate_5.xpos",                          "0"                     },
4053   { "emc_gate_5.ypos",                          "6"                     },
4054   { "emc_gate_5.frames",                        "1"                     },
4055   { "emc_gate_6",                               "RocksEMC.png"          },
4056   { "emc_gate_6.xpos",                          "1"                     },
4057   { "emc_gate_6.ypos",                          "6"                     },
4058   { "emc_gate_6.frames",                        "1"                     },
4059   { "emc_gate_7",                               "RocksEMC.png"          },
4060   { "emc_gate_7.xpos",                          "2"                     },
4061   { "emc_gate_7.ypos",                          "6"                     },
4062   { "emc_gate_7.frames",                        "1"                     },
4063   { "emc_gate_8",                               "RocksEMC.png"          },
4064   { "emc_gate_8.xpos",                          "3"                     },
4065   { "emc_gate_8.ypos",                          "6"                     },
4066   { "emc_gate_8.frames",                        "1"                     },
4067   { "emc_gate_5_gray",                          "RocksEMC.png"          },
4068   { "emc_gate_5_gray.xpos",                     "4"                     },
4069   { "emc_gate_5_gray.ypos",                     "7"                     },
4070   { "emc_gate_5_gray.frames",                   "1"                     },
4071   { "emc_gate_5_gray.EDITOR",                   "RocksEMC.png"          },
4072   { "emc_gate_5_gray.EDITOR.xpos",              "0"                     },
4073   { "emc_gate_5_gray.EDITOR.ypos",              "7"                     },
4074   { "emc_gate_5_gray.active",                   "RocksEMC.png"          },
4075   { "emc_gate_5_gray.active.xpos",              "0"                     },
4076   { "emc_gate_5_gray.active.ypos",              "6"                     },
4077   { "emc_gate_5_gray.active.frames",            "1"                     },
4078   { "emc_gate_6_gray",                          "RocksEMC.png"          },
4079   { "emc_gate_6_gray.xpos",                     "4"                     },
4080   { "emc_gate_6_gray.ypos",                     "7"                     },
4081   { "emc_gate_6_gray.frames",                   "1"                     },
4082   { "emc_gate_6_gray.EDITOR",                   "RocksEMC.png"          },
4083   { "emc_gate_6_gray.EDITOR.xpos",              "1"                     },
4084   { "emc_gate_6_gray.EDITOR.ypos",              "7"                     },
4085   { "emc_gate_6_gray.active",                   "RocksEMC.png"          },
4086   { "emc_gate_6_gray.active.xpos",              "1"                     },
4087   { "emc_gate_6_gray.active.ypos",              "6"                     },
4088   { "emc_gate_6_gray.active.frames",            "1"                     },
4089   { "emc_gate_7_gray",                          "RocksEMC.png"          },
4090   { "emc_gate_7_gray.xpos",                     "4"                     },
4091   { "emc_gate_7_gray.ypos",                     "7"                     },
4092   { "emc_gate_7_gray.frames",                   "1"                     },
4093   { "emc_gate_7_gray.EDITOR",                   "RocksEMC.png"          },
4094   { "emc_gate_7_gray.EDITOR.xpos",              "2"                     },
4095   { "emc_gate_7_gray.EDITOR.ypos",              "7"                     },
4096   { "emc_gate_7_gray.active",                   "RocksEMC.png"          },
4097   { "emc_gate_7_gray.active.xpos",              "2"                     },
4098   { "emc_gate_7_gray.active.ypos",              "6"                     },
4099   { "emc_gate_7_gray.active.frames",            "1"                     },
4100   { "emc_gate_8_gray",                          "RocksEMC.png"          },
4101   { "emc_gate_8_gray.xpos",                     "4"                     },
4102   { "emc_gate_8_gray.ypos",                     "7"                     },
4103   { "emc_gate_8_gray.frames",                   "1"                     },
4104   { "emc_gate_8_gray.EDITOR",                   "RocksEMC.png"          },
4105   { "emc_gate_8_gray.EDITOR.xpos",              "3"                     },
4106   { "emc_gate_8_gray.EDITOR.ypos",              "7"                     },
4107   { "emc_gate_8_gray.active",                   "RocksEMC.png"          },
4108   { "emc_gate_8_gray.active.xpos",              "3"                     },
4109   { "emc_gate_8_gray.active.ypos",              "6"                     },
4110   { "emc_gate_8_gray.active.frames",            "1"                     },
4111
4112   { "emc_android",                              "RocksEMC.png"          },
4113   { "emc_android.xpos",                         "0"                     },
4114   { "emc_android.ypos",                         "8"                     },
4115   { "emc_android.frames",                       "8"                     },
4116   { "emc_android.delay",                        "2"                     },
4117
4118   { "emc_android.shrinking.upleft",             "RocksEMC.png"          },
4119   { "emc_android.shrinking.upleft.xpos",        "1"                     },
4120   { "emc_android.shrinking.upleft.ypos",        "11"                    },
4121   { "emc_android.shrinking.upleft.frames",      "8"                     },
4122   { "emc_android.shrinking.upleft.anim_mode",   "linear"                },
4123
4124   { "emc_android.growing.downright",            "RocksEMC.png"          },
4125   { "emc_android.growing.downright.xpos",       "0"                     },
4126   { "emc_android.growing.downright.ypos",       "11"                    },
4127   { "emc_android.growing.downright.frames",     "8"                     },
4128   { "emc_android.growing.downright.anim_mode",  "linear,reverse"        },
4129
4130   { "emc_android.shrinking.downleft",           "RocksEMC.png"          },
4131   { "emc_android.shrinking.downleft.xpos",      "1"                     },
4132   { "emc_android.shrinking.downleft.ypos",      "12"                    },
4133   { "emc_android.shrinking.downleft.frames",    "8"                     },
4134   { "emc_android.shrinking.downleft.anim_mode", "linear"                },
4135
4136   { "emc_android.growing.upright",              "RocksEMC.png"          },
4137   { "emc_android.growing.upright.xpos",         "0"                     },
4138   { "emc_android.growing.upright.ypos",         "12"                    },
4139   { "emc_android.growing.upright.frames",       "8"                     },
4140   { "emc_android.growing.upright.anim_mode",    "linear,reverse"        },
4141
4142   { "emc_android.shrinking.upright",            "RocksEMC.png"          },
4143   { "emc_android.shrinking.upright.xpos",       "1"                     },
4144   { "emc_android.shrinking.upright.ypos",       "13"                    },
4145   { "emc_android.shrinking.upright.frames",     "8"                     },
4146   { "emc_android.shrinking.upright.anim_mode",  "linear"                },
4147
4148   { "emc_android.growing.downleft",             "RocksEMC.png"          },
4149   { "emc_android.growing.downleft.xpos",        "0"                     },
4150   { "emc_android.growing.downleft.ypos",        "13"                    },
4151   { "emc_android.growing.downleft.frames",      "8"                     },
4152   { "emc_android.growing.downleft.anim_mode",   "linear,reverse"        },
4153
4154   { "emc_android.shrinking.downright",          "RocksEMC.png"          },
4155   { "emc_android.shrinking.downright.xpos",     "1"                     },
4156   { "emc_android.shrinking.downright.ypos",     "14"                    },
4157   { "emc_android.shrinking.downright.frames",   "8"                     },
4158   { "emc_android.shrinking.downright.anim_mode","linear"                },
4159
4160   { "emc_android.growing.upleft",               "RocksEMC.png"          },
4161   { "emc_android.growing.upleft.xpos",          "0"                     },
4162   { "emc_android.growing.upleft.ypos",          "14"                    },
4163   { "emc_android.growing.upleft.frames",        "8"                     },
4164   { "emc_android.growing.upleft.anim_mode",     "linear,reverse"        },
4165
4166   { "emc_grass",                                "RocksEMC.png"          },
4167   { "emc_grass.xpos",                           "0"                     },
4168   { "emc_grass.ypos",                           "4"                     },
4169   { "emc_grass.frames",                         "1"                     },
4170   { "emc_grass.CRUMBLED",                       "RocksEMC.png"          },
4171   { "emc_grass.CRUMBLED.xpos",                  "1"                     },
4172   { "emc_grass.CRUMBLED.ypos",                  "4"                     },
4173   { "emc_grass.CRUMBLED.frames",                "1"                     },
4174   { "emc_grass.digging.left",                   "RocksEMC.png"          },
4175   { "emc_grass.digging.left.xpos",              "6"                     },
4176   { "emc_grass.digging.left.ypos",              "0"                     },
4177   { "emc_grass.digging.left.frames",            "3"                     },
4178   { "emc_grass.digging.left.delay",             "2"                     },
4179   { "emc_grass.digging.left.anim_mode",         "linear"                },
4180   { "emc_grass.digging.right",                  "RocksEMC.png"          },
4181   { "emc_grass.digging.right.xpos",             "9"                     },
4182   { "emc_grass.digging.right.ypos",             "0"                     },
4183   { "emc_grass.digging.right.frames",           "3"                     },
4184   { "emc_grass.digging.right.delay",            "2"                     },
4185   { "emc_grass.digging.right.anim_mode",        "linear"                },
4186   { "emc_grass.digging.up",                     "RocksEMC.png"          },
4187   { "emc_grass.digging.up.xpos",                "0"                     },
4188   { "emc_grass.digging.up.ypos",                "0"                     },
4189   { "emc_grass.digging.up.frames",              "3"                     },
4190   { "emc_grass.digging.up.delay",               "2"                     },
4191   { "emc_grass.digging.up.anim_mode",           "linear"                },
4192   { "emc_grass.digging.down",                   "RocksEMC.png"          },
4193   { "emc_grass.digging.down.xpos",              "3"                     },
4194   { "emc_grass.digging.down.ypos",              "0"                     },
4195   { "emc_grass.digging.down.frames",            "3"                     },
4196   { "emc_grass.digging.down.delay",             "2"                     },
4197   { "emc_grass.digging.down.anim_mode",         "linear"                },
4198   { "emc_grass.digging.left.CRUMBLED",          "RocksEMC.png"          },
4199   { "emc_grass.digging.left.CRUMBLED.xpos",     "6"                     },
4200   { "emc_grass.digging.left.CRUMBLED.ypos",     "1"                     },
4201   { "emc_grass.digging.left.CRUMBLED.frames",   "3"                     },
4202   { "emc_grass.digging.left.CRUMBLED.delay",    "2"                     },
4203   { "emc_grass.digging.left.CRUMBLED.anim_mode","linear"                },
4204   { "emc_grass.digging.right.CRUMBLED",         "RocksEMC.png"          },
4205   { "emc_grass.digging.right.CRUMBLED.xpos",    "9"                     },
4206   { "emc_grass.digging.right.CRUMBLED.ypos",    "1"                     },
4207   { "emc_grass.digging.right.CRUMBLED.frames",  "3"                     },
4208   { "emc_grass.digging.right.CRUMBLED.delay",   "2"                     },
4209   { "emc_grass.digging.right.CRUMBLED.anim_mode","linear"               },
4210   { "emc_grass.digging.up.CRUMBLED",            "RocksEMC.png"          },
4211   { "emc_grass.digging.up.CRUMBLED.xpos",       "0"                     },
4212   { "emc_grass.digging.up.CRUMBLED.ypos",       "1"                     },
4213   { "emc_grass.digging.up.CRUMBLED.frames",     "3"                     },
4214   { "emc_grass.digging.up.CRUMBLED.delay",      "2"                     },
4215   { "emc_grass.digging.up.CRUMBLED.anim_mode",  "linear"                },
4216   { "emc_grass.digging.down.CRUMBLED",          "RocksEMC.png"          },
4217   { "emc_grass.digging.down.CRUMBLED.xpos",     "3"                     },
4218   { "emc_grass.digging.down.CRUMBLED.ypos",     "1"                     },
4219   { "emc_grass.digging.down.CRUMBLED.frames",   "3"                     },
4220   { "emc_grass.digging.down.CRUMBLED.delay",    "2"                     },
4221   { "emc_grass.digging.down.CRUMBLED.anim_mode","linear"                },
4222
4223   { "emc_magic_ball",                           "RocksEMC.png"          },
4224   { "emc_magic_ball.xpos",                      "0"                     },
4225   { "emc_magic_ball.ypos",                      "9"                     },
4226   { "emc_magic_ball.frames",                    "1"                     },
4227   { "emc_magic_ball.active",                    "RocksEMC.png"          },
4228   { "emc_magic_ball.active.xpos",               "0"                     },
4229   { "emc_magic_ball.active.ypos",               "9"                     },
4230   { "emc_magic_ball.active.frames",             "16"                    },
4231   { "emc_magic_ball.active.frames_per_line",    "8"                     },
4232   { "emc_magic_ball.dropping",                  "RocksElements.png"     },
4233   { "emc_magic_ball.dropping.xpos",             "0"                     },
4234   { "emc_magic_ball.dropping.ypos",             "4"                     },
4235   { "emc_magic_ball.dropping.frames",           "8"                     },
4236   { "emc_magic_ball.dropping.anim_mode",        "linear"                },
4237
4238   { "emc_magic_ball_switch",                    "RocksEMC.png"          },
4239   { "emc_magic_ball_switch.xpos",               "8"                     },
4240   { "emc_magic_ball_switch.ypos",               "10"                    },
4241   { "emc_magic_ball_switch.frames",             "1"                     },
4242   { "emc_magic_ball_switch.active",             "RocksEMC.png"          },
4243   { "emc_magic_ball_switch.active.xpos",        "8"                     },
4244   { "emc_magic_ball_switch.active.ypos",        "9"                     },
4245   { "emc_magic_ball_switch.active.frames",      "1"                     },
4246
4247   { "emc_spring_bumper",                        "RocksEMC.png"          },
4248   { "emc_spring_bumper.xpos",                   "8"                     },
4249   { "emc_spring_bumper.ypos",                   "4"                     },
4250   { "emc_spring_bumper.frames",                 "1"                     },
4251
4252   { "emc_spring_bumper.active",                 "RocksEMC.png"          },
4253   { "emc_spring_bumper.active.xpos",            "8"                     },
4254   { "emc_spring_bumper.active.ypos",            "4"                     },
4255   { "emc_spring_bumper.active.frames",          "4"                     },
4256   { "emc_spring_bumper.active.anim_mode",       "pingpong2"             },
4257
4258   { "emc_plant",                                "RocksEMC.png"          },
4259   { "emc_plant.xpos",                           "4"                     },
4260   { "emc_plant.ypos",                           "4"                     },
4261   { "emc_plant.frames",                         "1"                     },
4262   { "emc_plant.CRUMBLED",                       "RocksEMC.png"          },
4263   { "emc_plant.CRUMBLED.xpos",                  "5"                     },
4264   { "emc_plant.CRUMBLED.ypos",                  "4"                     },
4265   { "emc_plant.CRUMBLED.frames",                "1"                     },
4266
4267   { "emc_lenses",                               "RocksEMC.png"          },
4268   { "emc_lenses.xpos",                          "6"                     },
4269   { "emc_lenses.ypos",                          "4"                     },
4270   { "emc_lenses.frames",                        "1"                     },
4271
4272   { "emc_magnifier",                            "RocksEMC.png"          },
4273   { "emc_magnifier.xpos",                       "7"                     },
4274   { "emc_magnifier.ypos",                       "4"                     },
4275   { "emc_magnifier.frames",                     "1"                     },
4276
4277   { "emc_wall_9",                               "RocksEMC.png"          },
4278   { "emc_wall_9.xpos",                          "10"                    },
4279   { "emc_wall_9.ypos",                          "5"                     },
4280   { "emc_wall_9.frames",                        "1"                     },
4281   { "emc_wall_10",                              "RocksEMC.png"          },
4282   { "emc_wall_10.xpos",                         "10"                    },
4283   { "emc_wall_10.ypos",                         "6"                     },
4284   { "emc_wall_10.frames",                       "1"                     },
4285   { "emc_wall_11",                              "RocksEMC.png"          },
4286   { "emc_wall_11.xpos",                         "11"                    },
4287   { "emc_wall_11.ypos",                         "5"                     },
4288   { "emc_wall_11.frames",                       "1"                     },
4289   { "emc_wall_12",                              "RocksEMC.png"          },
4290   { "emc_wall_12.xpos",                         "11"                    },
4291   { "emc_wall_12.ypos",                         "6"                     },
4292   { "emc_wall_12.frames",                       "1"                     },
4293   { "emc_wall_13",                              "RocksEMC.png"          },
4294   { "emc_wall_13.xpos",                         "10"                    },
4295   { "emc_wall_13.ypos",                         "7"                     },
4296   { "emc_wall_13.frames",                       "1"                     },
4297   { "emc_wall_14",                              "RocksEMC.png"          },
4298   { "emc_wall_14.xpos",                         "10"                    },
4299   { "emc_wall_14.ypos",                         "8"                     },
4300   { "emc_wall_14.frames",                       "1"                     },
4301   { "emc_wall_15",                              "RocksEMC.png"          },
4302   { "emc_wall_15.xpos",                         "10"                    },
4303   { "emc_wall_15.ypos",                         "9"                     },
4304   { "emc_wall_15.frames",                       "1"                     },
4305   { "emc_wall_16",                              "RocksEMC.png"          },
4306   { "emc_wall_16.xpos",                         "10"                    },
4307   { "emc_wall_16.ypos",                         "10"                    },
4308   { "emc_wall_16.frames",                       "1"                     },
4309
4310   { "emc_wall_slippery_1",                      "RocksEMC.png"          },
4311   { "emc_wall_slippery_1.xpos",                 "11"                    },
4312   { "emc_wall_slippery_1.ypos",                 "7"                     },
4313   { "emc_wall_slippery_1.frames",               "1"                     },
4314   { "emc_wall_slippery_2",                      "RocksEMC.png"          },
4315   { "emc_wall_slippery_2.xpos",                 "11"                    },
4316   { "emc_wall_slippery_2.ypos",                 "8"                     },
4317   { "emc_wall_slippery_2.frames",               "1"                     },
4318   { "emc_wall_slippery_3",                      "RocksEMC.png"          },
4319   { "emc_wall_slippery_3.xpos",                 "11"                    },
4320   { "emc_wall_slippery_3.ypos",                 "9"                     },
4321   { "emc_wall_slippery_3.frames",               "1"                     },
4322   { "emc_wall_slippery_4",                      "RocksEMC.png"          },
4323   { "emc_wall_slippery_4.xpos",                 "11"                    },
4324   { "emc_wall_slippery_4.ypos",                 "10"                    },
4325   { "emc_wall_slippery_4.frames",               "1"                     },
4326
4327   { "emc_fake_grass",                           "RocksEMC.png"          },
4328   { "emc_fake_grass.xpos",                      "0"                     },
4329   { "emc_fake_grass.ypos",                      "4"                     },
4330   { "emc_fake_grass.frames",                    "1"                     },
4331   { "emc_fake_grass.CRUMBLED",                  "RocksEMC.png"          },
4332   { "emc_fake_grass.CRUMBLED.xpos",             "1"                     },
4333   { "emc_fake_grass.CRUMBLED.ypos",             "4"                     },
4334   { "emc_fake_grass.CRUMBLED.frames",           "1"                     },
4335   { "emc_fake_grass.active",                    "RocksEMC.png"          },
4336   { "emc_fake_grass.active.xpos",               "2"                     },
4337   { "emc_fake_grass.active.ypos",               "4"                     },
4338   { "emc_fake_grass.active.frames",             "1"                     },
4339   { "emc_fake_grass.active.CRUMBLED",           "RocksEMC.png"          },
4340   { "emc_fake_grass.active.CRUMBLED.xpos",      "3"                     },
4341   { "emc_fake_grass.active.CRUMBLED.ypos",      "4"                     },
4342   { "emc_fake_grass.active.CRUMBLED.frames",    "1"                     },
4343   { "emc_fake_grass.EDITOR",                    "RocksEMC.png"          },
4344   { "emc_fake_grass.EDITOR.xpos",               "2"                     },
4345   { "emc_fake_grass.EDITOR.ypos",               "4"                     },
4346   { "emc_fake_grass.EDITOR.frames",             "1"                     },
4347
4348   { "emc_fake_acid",                            "RocksElements.png"     },
4349   { "emc_fake_acid.xpos",                       "12"                    },
4350   { "emc_fake_acid.ypos",                       "7"                     },
4351   { "emc_fake_acid.frames",                     "4"                     },
4352   { "emc_fake_acid.delay",                      "10"                    },
4353   { "emc_fake_acid.global_sync",                "true"                  },
4354
4355   { "emc_dripper",                              "RocksSP.png"           },
4356   { "emc_dripper.xpos",                         "0"                     },
4357   { "emc_dripper.ypos",                         "0"                     },
4358   { "emc_dripper.frames",                       "1"                     },
4359   { "emc_dripper.EDITOR",                       "RocksEMC.png"          },
4360   { "emc_dripper.EDITOR.xpos",                  "8"                     },
4361   { "emc_dripper.EDITOR.ypos",                  "8"                     },
4362   { "emc_dripper.active",                       "RocksEMC.png"          },
4363   { "emc_dripper.active.xpos",                  "8"                     },
4364   { "emc_dripper.active.ypos",                  "8"                     },
4365   { "emc_dripper.active.frames",                "1"                     },
4366
4367   { "mm_mcduffin",                              "RocksMM.png"           },
4368   { "mm_mcduffin.xpos",                         "4"                     },
4369   { "mm_mcduffin.ypos",                         "1"                     },
4370   { "mm_mcduffin.frames",                       "4"                     },
4371   { "mm_mcduffin.delay",                        "8"                     },
4372   { "mm_mcduffin.right",                        "RocksMM.png"           },
4373   { "mm_mcduffin.right.xpos",                   "4"                     },
4374   { "mm_mcduffin.right.ypos",                   "1"                     },
4375   { "mm_mcduffin.right.frames",                 "1"                     },
4376   { "mm_mcduffin.up",                           "RocksMM.png"           },
4377   { "mm_mcduffin.up.xpos",                      "5"                     },
4378   { "mm_mcduffin.up.ypos",                      "1"                     },
4379   { "mm_mcduffin.up.frames",                    "1"                     },
4380   { "mm_mcduffin.left",                         "RocksMM.png"           },
4381   { "mm_mcduffin.left.xpos",                    "6"                     },
4382   { "mm_mcduffin.left.ypos",                    "1"                     },
4383   { "mm_mcduffin.left.frames",                  "1"                     },
4384   { "mm_mcduffin.down",                         "RocksMM.png"           },
4385   { "mm_mcduffin.down.xpos",                    "7"                     },
4386   { "mm_mcduffin.down.ypos",                    "1"                     },
4387   { "mm_mcduffin.down.frames",                  "1"                     },
4388
4389   { "mm_exit_closed",                           "RocksMM.png"           },
4390   { "mm_exit_closed.xpos",                      "8"                     },
4391   { "mm_exit_closed.ypos",                      "1"                     },
4392   { "mm_exit_closed.frames",                    "1"                     },
4393   { "mm_exit.opening",                          "RocksMM.png"           },
4394   { "mm_exit.opening.xpos",                     "8"                     },
4395   { "mm_exit.opening.ypos",                     "1"                     },
4396   { "mm_exit.opening.frames",                   "4"                     },
4397   { "mm_exit.opening.delay",                    "6"                     },
4398   { "mm_exit.opening.anim_mode",                "linear"                },
4399   { "mm_exit_open",                             "RocksMM.png"           },
4400   { "mm_exit_open.xpos",                        "11"                    },
4401   { "mm_exit_open.ypos",                        "1"                     },
4402   { "mm_exit_open.frames",                      "1"                     },
4403   { "mm_exit.closing",                          "RocksMM.png"           },
4404   { "mm_exit.closing.xpos",                     "8"                     },
4405   { "mm_exit.closing.ypos",                     "1"                     },
4406   { "mm_exit.closing.frames",                   "4"                     },
4407   { "mm_exit.closing.delay",                    "6"                     },
4408   { "mm_exit.closing.anim_mode",                "linear,reverse"        },
4409
4410   { "mm_mirror_1",                              "RocksMM.png"           },
4411   { "mm_mirror_1.xpos",                         "0"                     },
4412   { "mm_mirror_1.ypos",                         "0"                     },
4413   { "mm_mirror_1.frames",                       "1"                     },
4414   { "mm_mirror_2",                              "RocksMM.png"           },
4415   { "mm_mirror_2.xpos",                         "1"                     },
4416   { "mm_mirror_2.ypos",                         "0"                     },
4417   { "mm_mirror_2.frames",                       "1"                     },
4418   { "mm_mirror_3",                              "RocksMM.png"           },
4419   { "mm_mirror_3.xpos",                         "2"                     },
4420   { "mm_mirror_3.ypos",                         "0"                     },
4421   { "mm_mirror_3.frames",                       "1"                     },
4422   { "mm_mirror_4",                              "RocksMM.png"           },
4423   { "mm_mirror_4.xpos",                         "3"                     },
4424   { "mm_mirror_4.ypos",                         "0"                     },
4425   { "mm_mirror_4.frames",                       "1"                     },
4426   { "mm_mirror_5",                              "RocksMM.png"           },
4427   { "mm_mirror_5.xpos",                         "4"                     },
4428   { "mm_mirror_5.ypos",                         "0"                     },
4429   { "mm_mirror_5.frames",                       "1"                     },
4430   { "mm_mirror_6",                              "RocksMM.png"           },
4431   { "mm_mirror_6.xpos",                         "5"                     },
4432   { "mm_mirror_6.ypos",                         "0"                     },
4433   { "mm_mirror_6.frames",                       "1"                     },
4434   { "mm_mirror_7",                              "RocksMM.png"           },
4435   { "mm_mirror_7.xpos",                         "6"                     },
4436   { "mm_mirror_7.ypos",                         "0"                     },
4437   { "mm_mirror_7.frames",                       "1"                     },
4438   { "mm_mirror_8",                              "RocksMM.png"           },
4439   { "mm_mirror_8.xpos",                         "7"                     },
4440   { "mm_mirror_8.ypos",                         "0"                     },
4441   { "mm_mirror_8.frames",                       "1"                     },
4442   { "mm_mirror_9",                              "RocksMM.png"           },
4443   { "mm_mirror_9.xpos",                         "8"                     },
4444   { "mm_mirror_9.ypos",                         "0"                     },
4445   { "mm_mirror_9.frames",                       "1"                     },
4446   { "mm_mirror_10",                             "RocksMM.png"           },
4447   { "mm_mirror_10.xpos",                        "9"                     },
4448   { "mm_mirror_10.ypos",                        "0"                     },
4449   { "mm_mirror_10.frames",                      "1"                     },
4450   { "mm_mirror_11",                             "RocksMM.png"           },
4451   { "mm_mirror_11.xpos",                        "10"                    },
4452   { "mm_mirror_11.ypos",                        "0"                     },
4453   { "mm_mirror_11.frames",                      "1"                     },
4454   { "mm_mirror_12",                             "RocksMM.png"           },
4455   { "mm_mirror_12.xpos",                        "11"                    },
4456   { "mm_mirror_12.ypos",                        "0"                     },
4457   { "mm_mirror_12.frames",                      "1"                     },
4458   { "mm_mirror_13",                             "RocksMM.png"           },
4459   { "mm_mirror_13.xpos",                        "12"                    },
4460   { "mm_mirror_13.ypos",                        "0"                     },
4461   { "mm_mirror_13.frames",                      "1"                     },
4462   { "mm_mirror_14",                             "RocksMM.png"           },
4463   { "mm_mirror_14.xpos",                        "13"                    },
4464   { "mm_mirror_14.ypos",                        "0"                     },
4465   { "mm_mirror_14.frames",                      "1"                     },
4466   { "mm_mirror_15",                             "RocksMM.png"           },
4467   { "mm_mirror_15.xpos",                        "14"                    },
4468   { "mm_mirror_15.ypos",                        "0"                     },
4469   { "mm_mirror_15.frames",                      "1"                     },
4470   { "mm_mirror_16",                             "RocksMM.png"           },
4471   { "mm_mirror_16.xpos",                        "15"                    },
4472   { "mm_mirror_16.ypos",                        "0"                     },
4473   { "mm_mirror_16.frames",                      "1"                     },
4474
4475   { "mm_mirror_fixed_1",                        "RocksMM.png"           },
4476   { "mm_mirror_fixed_1.xpos",                   "4"                     },
4477   { "mm_mirror_fixed_1.ypos",                   "6"                     },
4478   { "mm_mirror_fixed_1.frames",                 "1"                     },
4479   { "mm_mirror_fixed_2",                        "RocksMM.png"           },
4480   { "mm_mirror_fixed_2.xpos",                   "5"                     },
4481   { "mm_mirror_fixed_2.ypos",                   "6"                     },
4482   { "mm_mirror_fixed_2.frames",                 "1"                     },
4483   { "mm_mirror_fixed_3",                        "RocksMM.png"           },
4484   { "mm_mirror_fixed_3.xpos",                   "6"                     },
4485   { "mm_mirror_fixed_3.ypos",                   "6"                     },
4486   { "mm_mirror_fixed_3.frames",                 "1"                     },
4487   { "mm_mirror_fixed_4",                        "RocksMM.png"           },
4488   { "mm_mirror_fixed_4.xpos",                   "7"                     },
4489   { "mm_mirror_fixed_4.ypos",                   "6"                     },
4490   { "mm_mirror_fixed_4.frames",                 "1"                     },
4491
4492   { "mm_steel_grid_fixed_1",                    "RocksMM.png"           },
4493   { "mm_steel_grid_fixed_1.xpos",               "0"                     },
4494   { "mm_steel_grid_fixed_1.ypos",               "1"                     },
4495   { "mm_steel_grid_fixed_1.frames",             "1"                     },
4496   { "mm_steel_grid_fixed_2",                    "RocksMM.png"           },
4497   { "mm_steel_grid_fixed_2.xpos",               "1"                     },
4498   { "mm_steel_grid_fixed_2.ypos",               "1"                     },
4499   { "mm_steel_grid_fixed_2.frames",             "1"                     },
4500   { "mm_steel_grid_fixed_3",                    "RocksMM.png"           },
4501   { "mm_steel_grid_fixed_3.xpos",               "2"                     },
4502   { "mm_steel_grid_fixed_3.ypos",               "1"                     },
4503   { "mm_steel_grid_fixed_3.frames",             "1"                     },
4504   { "mm_steel_grid_fixed_4",                    "RocksMM.png"           },
4505   { "mm_steel_grid_fixed_4.xpos",               "3"                     },
4506   { "mm_steel_grid_fixed_4.ypos",               "1"                     },
4507   { "mm_steel_grid_fixed_4.frames",             "1"                     },
4508
4509   { "mm_wooden_grid_fixed_1",                   "RocksMM.png"           },
4510   { "mm_wooden_grid_fixed_1.xpos",              "12"                    },
4511   { "mm_wooden_grid_fixed_1.ypos",              "6"                     },
4512   { "mm_wooden_grid_fixed_1.frames",            "1"                     },
4513   { "mm_wooden_grid_fixed_2",                   "RocksMM.png"           },
4514   { "mm_wooden_grid_fixed_2.xpos",              "13"                    },
4515   { "mm_wooden_grid_fixed_2.ypos",              "6"                     },
4516   { "mm_wooden_grid_fixed_2.frames",            "1"                     },
4517   { "mm_wooden_grid_fixed_3",                   "RocksMM.png"           },
4518   { "mm_wooden_grid_fixed_3.xpos",              "14"                    },
4519   { "mm_wooden_grid_fixed_3.ypos",              "6"                     },
4520   { "mm_wooden_grid_fixed_3.frames",            "1"                     },
4521   { "mm_wooden_grid_fixed_4",                   "RocksMM.png"           },
4522   { "mm_wooden_grid_fixed_4.xpos",              "15"                    },
4523   { "mm_wooden_grid_fixed_4.ypos",              "6"                     },
4524   { "mm_wooden_grid_fixed_4.frames",            "1"                     },
4525
4526   { "mm_polarizer_1",                           "RocksMM.png"           },
4527   { "mm_polarizer_1.xpos",                      "0"                     },
4528   { "mm_polarizer_1.ypos",                      "5"                     },
4529   { "mm_polarizer_1.frames",                    "1"                     },
4530   { "mm_polarizer_2",                           "RocksMM.png"           },
4531   { "mm_polarizer_2.xpos",                      "1"                     },
4532   { "mm_polarizer_2.ypos",                      "5"                     },
4533   { "mm_polarizer_2.frames",                    "1"                     },
4534   { "mm_polarizer_3",                           "RocksMM.png"           },
4535   { "mm_polarizer_3.xpos",                      "2"                     },
4536   { "mm_polarizer_3.ypos",                      "5"                     },
4537   { "mm_polarizer_3.frames",                    "1"                     },
4538   { "mm_polarizer_4",                           "RocksMM.png"           },
4539   { "mm_polarizer_4.xpos",                      "3"                     },
4540   { "mm_polarizer_4.ypos",                      "5"                     },
4541   { "mm_polarizer_4.frames",                    "1"                     },
4542   { "mm_polarizer_5",                           "RocksMM.png"           },
4543   { "mm_polarizer_5.xpos",                      "4"                     },
4544   { "mm_polarizer_5.ypos",                      "5"                     },
4545   { "mm_polarizer_5.frames",                    "1"                     },
4546   { "mm_polarizer_6",                           "RocksMM.png"           },
4547   { "mm_polarizer_6.xpos",                      "5"                     },
4548   { "mm_polarizer_6.ypos",                      "5"                     },
4549   { "mm_polarizer_6.frames",                    "1"                     },
4550   { "mm_polarizer_7",                           "RocksMM.png"           },
4551   { "mm_polarizer_7.xpos",                      "6"                     },
4552   { "mm_polarizer_7.ypos",                      "5"                     },
4553   { "mm_polarizer_7.frames",                    "1"                     },
4554   { "mm_polarizer_8",                           "RocksMM.png"           },
4555   { "mm_polarizer_8.xpos",                      "7"                     },
4556   { "mm_polarizer_8.ypos",                      "5"                     },
4557   { "mm_polarizer_8.frames",                    "1"                     },
4558   { "mm_polarizer_9",                           "RocksMM.png"           },
4559   { "mm_polarizer_9.xpos",                      "8"                     },
4560   { "mm_polarizer_9.ypos",                      "5"                     },
4561   { "mm_polarizer_9.frames",                    "1"                     },
4562   { "mm_polarizer_10",                          "RocksMM.png"           },
4563   { "mm_polarizer_10.xpos",                     "9"                     },
4564   { "mm_polarizer_10.ypos",                     "5"                     },
4565   { "mm_polarizer_10.frames",                   "1"                     },
4566   { "mm_polarizer_11",                          "RocksMM.png"           },
4567   { "mm_polarizer_11.xpos",                     "10"                    },
4568   { "mm_polarizer_11.ypos",                     "5"                     },
4569   { "mm_polarizer_11.frames",                   "1"                     },
4570   { "mm_polarizer_12",                          "RocksMM.png"           },
4571   { "mm_polarizer_12.xpos",                     "11"                    },
4572   { "mm_polarizer_12.ypos",                     "5"                     },
4573   { "mm_polarizer_12.frames",                   "1"                     },
4574   { "mm_polarizer_13",                          "RocksMM.png"           },
4575   { "mm_polarizer_13.xpos",                     "12"                    },
4576   { "mm_polarizer_13.ypos",                     "5"                     },
4577   { "mm_polarizer_13.frames",                   "1"                     },
4578   { "mm_polarizer_14",                          "RocksMM.png"           },
4579   { "mm_polarizer_14.xpos",                     "13"                    },
4580   { "mm_polarizer_14.ypos",                     "5"                     },
4581   { "mm_polarizer_14.frames",                   "1"                     },
4582   { "mm_polarizer_15",                          "RocksMM.png"           },
4583   { "mm_polarizer_15.xpos",                     "14"                    },
4584   { "mm_polarizer_15.ypos",                     "5"                     },
4585   { "mm_polarizer_15.frames",                   "1"                     },
4586   { "mm_polarizer_16",                          "RocksMM.png"           },
4587   { "mm_polarizer_16.xpos",                     "15"                    },
4588   { "mm_polarizer_16.ypos",                     "5"                     },
4589   { "mm_polarizer_16.frames",                   "1"                     },
4590
4591   { "mm_polarizer_cross_1",                     "RocksMM.png"           },
4592   { "mm_polarizer_cross_1.xpos",                "0"                     },
4593   { "mm_polarizer_cross_1.ypos",                "6"                     },
4594   { "mm_polarizer_cross_1.frames",              "1"                     },
4595   { "mm_polarizer_cross_2",                     "RocksMM.png"           },
4596   { "mm_polarizer_cross_2.xpos",                "1"                     },
4597   { "mm_polarizer_cross_2.ypos",                "6"                     },
4598   { "mm_polarizer_cross_2.frames",              "1"                     },
4599   { "mm_polarizer_cross_3",                     "RocksMM.png"           },
4600   { "mm_polarizer_cross_3.xpos",                "2"                     },
4601   { "mm_polarizer_cross_3.ypos",                "6"                     },
4602   { "mm_polarizer_cross_3.frames",              "1"                     },
4603   { "mm_polarizer_cross_4",                     "RocksMM.png"           },
4604   { "mm_polarizer_cross_4.xpos",                "3"                     },
4605   { "mm_polarizer_cross_4.ypos",                "6"                     },
4606   { "mm_polarizer_cross_4.frames",              "1"                     },
4607
4608   { "mm_teleporter_1",                          "RocksMM.png"           },
4609   { "mm_teleporter_1.xpos",                     "0"                     },
4610   { "mm_teleporter_1.ypos",                     "3"                     },
4611   { "mm_teleporter_1.frames",                   "1"                     },
4612   { "mm_teleporter_2",                          "RocksMM.png"           },
4613   { "mm_teleporter_2.xpos",                     "1"                     },
4614   { "mm_teleporter_2.ypos",                     "3"                     },
4615   { "mm_teleporter_2.frames",                   "1"                     },
4616   { "mm_teleporter_3",                          "RocksMM.png"           },
4617   { "mm_teleporter_3.xpos",                     "2"                     },
4618   { "mm_teleporter_3.ypos",                     "3"                     },
4619   { "mm_teleporter_3.frames",                   "1"                     },
4620   { "mm_teleporter_4",                          "RocksMM.png"           },
4621   { "mm_teleporter_4.xpos",                     "3"                     },
4622   { "mm_teleporter_4.ypos",                     "3"                     },
4623   { "mm_teleporter_4.frames",                   "1"                     },
4624   { "mm_teleporter_5",                          "RocksMM.png"           },
4625   { "mm_teleporter_5.xpos",                     "4"                     },
4626   { "mm_teleporter_5.ypos",                     "3"                     },
4627   { "mm_teleporter_5.frames",                   "1"                     },
4628   { "mm_teleporter_6",                          "RocksMM.png"           },
4629   { "mm_teleporter_6.xpos",                     "5"                     },
4630   { "mm_teleporter_6.ypos",                     "3"                     },
4631   { "mm_teleporter_6.frames",                   "1"                     },
4632   { "mm_teleporter_7",                          "RocksMM.png"           },
4633   { "mm_teleporter_7.xpos",                     "6"                     },
4634   { "mm_teleporter_7.ypos",                     "3"                     },
4635   { "mm_teleporter_7.frames",                   "1"                     },
4636   { "mm_teleporter_8",                          "RocksMM.png"           },
4637   { "mm_teleporter_8.xpos",                     "7"                     },
4638   { "mm_teleporter_8.ypos",                     "3"                     },
4639   { "mm_teleporter_8.frames",                   "1"                     },
4640   { "mm_teleporter_9",                          "RocksMM.png"           },
4641   { "mm_teleporter_9.xpos",                     "8"                     },
4642   { "mm_teleporter_9.ypos",                     "3"                     },
4643   { "mm_teleporter_9.frames",                   "1"                     },
4644   { "mm_teleporter_10",                         "RocksMM.png"           },
4645   { "mm_teleporter_10.xpos",                    "9"                     },
4646   { "mm_teleporter_10.ypos",                    "3"                     },
4647   { "mm_teleporter_10.frames",                  "1"                     },
4648   { "mm_teleporter_11",                         "RocksMM.png"           },
4649   { "mm_teleporter_11.xpos",                    "10"                    },
4650   { "mm_teleporter_11.ypos",                    "3"                     },
4651   { "mm_teleporter_11.frames",                  "1"                     },
4652   { "mm_teleporter_12",                         "RocksMM.png"           },
4653   { "mm_teleporter_12.xpos",                    "11"                    },
4654   { "mm_teleporter_12.ypos",                    "3"                     },
4655   { "mm_teleporter_12.frames",                  "1"                     },
4656   { "mm_teleporter_13",                         "RocksMM.png"           },
4657   { "mm_teleporter_13.xpos",                    "12"                    },
4658   { "mm_teleporter_13.ypos",                    "3"                     },
4659   { "mm_teleporter_13.frames",                  "1"                     },
4660   { "mm_teleporter_14",                         "RocksMM.png"           },
4661   { "mm_teleporter_14.xpos",                    "13"                    },
4662   { "mm_teleporter_14.ypos",                    "3"                     },
4663   { "mm_teleporter_14.frames",                  "1"                     },
4664   { "mm_teleporter_15",                         "RocksMM.png"           },
4665   { "mm_teleporter_15.xpos",                    "14"                    },
4666   { "mm_teleporter_15.ypos",                    "3"                     },
4667   { "mm_teleporter_15.frames",                  "1"                     },
4668   { "mm_teleporter_16",                         "RocksMM.png"           },
4669   { "mm_teleporter_16.xpos",                    "15"                    },
4670   { "mm_teleporter_16.ypos",                    "3"                     },
4671   { "mm_teleporter_16.frames",                  "1"                     },
4672
4673   { "mm_teleporter_red_1",                      "RocksDF.png"           },
4674   { "mm_teleporter_red_1.xpos",                 "0"                     },
4675   { "mm_teleporter_red_1.ypos",                 "4"                     },
4676   { "mm_teleporter_red_1.frames",               "1"                     },
4677   { "mm_teleporter_red_2",                      "RocksDF.png"           },
4678   { "mm_teleporter_red_2.xpos",                 "1"                     },
4679   { "mm_teleporter_red_2.ypos",                 "4"                     },
4680   { "mm_teleporter_red_2.frames",               "1"                     },
4681   { "mm_teleporter_red_3",                      "RocksDF.png"           },
4682   { "mm_teleporter_red_3.xpos",                 "2"                     },
4683   { "mm_teleporter_red_3.ypos",                 "4"                     },
4684   { "mm_teleporter_red_3.frames",               "1"                     },
4685   { "mm_teleporter_red_4",                      "RocksDF.png"           },
4686   { "mm_teleporter_red_4.xpos",                 "3"                     },
4687   { "mm_teleporter_red_4.ypos",                 "4"                     },
4688   { "mm_teleporter_red_4.frames",               "1"                     },
4689   { "mm_teleporter_red_5",                      "RocksDF.png"           },
4690   { "mm_teleporter_red_5.xpos",                 "4"                     },
4691   { "mm_teleporter_red_5.ypos",                 "4"                     },
4692   { "mm_teleporter_red_5.frames",               "1"                     },
4693   { "mm_teleporter_red_6",                      "RocksDF.png"           },
4694   { "mm_teleporter_red_6.xpos",                 "5"                     },
4695   { "mm_teleporter_red_6.ypos",                 "4"                     },
4696   { "mm_teleporter_red_6.frames",               "1"                     },
4697   { "mm_teleporter_red_7",                      "RocksDF.png"           },
4698   { "mm_teleporter_red_7.xpos",                 "6"                     },
4699   { "mm_teleporter_red_7.ypos",                 "4"                     },
4700   { "mm_teleporter_red_7.frames",               "1"                     },
4701   { "mm_teleporter_red_8",                      "RocksDF.png"           },
4702   { "mm_teleporter_red_8.xpos",                 "7"                     },
4703   { "mm_teleporter_red_8.ypos",                 "4"                     },
4704   { "mm_teleporter_red_8.frames",               "1"                     },
4705   { "mm_teleporter_red_9",                      "RocksDF.png"           },
4706   { "mm_teleporter_red_9.xpos",                 "8"                     },
4707   { "mm_teleporter_red_9.ypos",                 "4"                     },
4708   { "mm_teleporter_red_9.frames",               "1"                     },
4709   { "mm_teleporter_red_10",                     "RocksDF.png"           },
4710   { "mm_teleporter_red_10.xpos",                "9"                     },
4711   { "mm_teleporter_red_10.ypos",                "4"                     },
4712   { "mm_teleporter_red_10.frames",              "1"                     },
4713   { "mm_teleporter_red_11",                     "RocksDF.png"           },
4714   { "mm_teleporter_red_11.xpos",                "10"                    },
4715   { "mm_teleporter_red_11.ypos",                "4"                     },
4716   { "mm_teleporter_red_11.frames",              "1"                     },
4717   { "mm_teleporter_red_12",                     "RocksDF.png"           },
4718   { "mm_teleporter_red_12.xpos",                "11"                    },
4719   { "mm_teleporter_red_12.ypos",                "4"                     },
4720   { "mm_teleporter_red_12.frames",              "1"                     },
4721   { "mm_teleporter_red_13",                     "RocksDF.png"           },
4722   { "mm_teleporter_red_13.xpos",                "12"                    },
4723   { "mm_teleporter_red_13.ypos",                "4"                     },
4724   { "mm_teleporter_red_13.frames",              "1"                     },
4725   { "mm_teleporter_red_14",                     "RocksDF.png"           },
4726   { "mm_teleporter_red_14.xpos",                "13"                    },
4727   { "mm_teleporter_red_14.ypos",                "4"                     },
4728   { "mm_teleporter_red_14.frames",              "1"                     },
4729   { "mm_teleporter_red_15",                     "RocksDF.png"           },
4730   { "mm_teleporter_red_15.xpos",                "14"                    },
4731   { "mm_teleporter_red_15.ypos",                "4"                     },
4732   { "mm_teleporter_red_15.frames",              "1"                     },
4733   { "mm_teleporter_red_16",                     "RocksDF.png"           },
4734   { "mm_teleporter_red_16.xpos",                "15"                    },
4735   { "mm_teleporter_red_16.ypos",                "4"                     },
4736   { "mm_teleporter_red_16.frames",              "1"                     },
4737
4738   { "mm_teleporter_yellow_1",                   "RocksDF.png"           },
4739   { "mm_teleporter_yellow_1.xpos",              "0"                     },
4740   { "mm_teleporter_yellow_1.ypos",              "5"                     },
4741   { "mm_teleporter_yellow_1.frames",            "1"                     },
4742   { "mm_teleporter_yellow_2",                   "RocksDF.png"           },
4743   { "mm_teleporter_yellow_2.xpos",              "1"                     },
4744   { "mm_teleporter_yellow_2.ypos",              "5"                     },
4745   { "mm_teleporter_yellow_2.frames",            "1"                     },
4746   { "mm_teleporter_yellow_3",                   "RocksDF.png"           },
4747   { "mm_teleporter_yellow_3.xpos",              "2"                     },
4748   { "mm_teleporter_yellow_3.ypos",              "5"                     },
4749   { "mm_teleporter_yellow_3.frames",            "1"                     },
4750   { "mm_teleporter_yellow_4",                   "RocksDF.png"           },
4751   { "mm_teleporter_yellow_4.xpos",              "3"                     },
4752   { "mm_teleporter_yellow_4.ypos",              "5"                     },
4753   { "mm_teleporter_yellow_4.frames",            "1"                     },
4754   { "mm_teleporter_yellow_5",                   "RocksDF.png"           },
4755   { "mm_teleporter_yellow_5.xpos",              "4"                     },
4756   { "mm_teleporter_yellow_5.ypos",              "5"                     },
4757   { "mm_teleporter_yellow_5.frames",            "1"                     },
4758   { "mm_teleporter_yellow_6",                   "RocksDF.png"           },
4759   { "mm_teleporter_yellow_6.xpos",              "5"                     },
4760   { "mm_teleporter_yellow_6.ypos",              "5"                     },
4761   { "mm_teleporter_yellow_6.frames",            "1"                     },
4762   { "mm_teleporter_yellow_7",                   "RocksDF.png"           },
4763   { "mm_teleporter_yellow_7.xpos",              "6"                     },
4764   { "mm_teleporter_yellow_7.ypos",              "5"                     },
4765   { "mm_teleporter_yellow_7.frames",            "1"                     },
4766   { "mm_teleporter_yellow_8",                   "RocksDF.png"           },
4767   { "mm_teleporter_yellow_8.xpos",              "7"                     },
4768   { "mm_teleporter_yellow_8.ypos",              "5"                     },
4769   { "mm_teleporter_yellow_8.frames",            "1"                     },
4770   { "mm_teleporter_yellow_9",                   "RocksDF.png"           },
4771   { "mm_teleporter_yellow_9.xpos",              "8"                     },
4772   { "mm_teleporter_yellow_9.ypos",              "5"                     },
4773   { "mm_teleporter_yellow_9.frames",            "1"                     },
4774   { "mm_teleporter_yellow_10",                  "RocksDF.png"           },
4775   { "mm_teleporter_yellow_10.xpos",             "9"                     },
4776   { "mm_teleporter_yellow_10.ypos",             "5"                     },
4777   { "mm_teleporter_yellow_10.frames",           "1"                     },
4778   { "mm_teleporter_yellow_11",                  "RocksDF.png"           },
4779   { "mm_teleporter_yellow_11.xpos",             "10"                    },
4780   { "mm_teleporter_yellow_11.ypos",             "5"                     },
4781   { "mm_teleporter_yellow_11.frames",           "1"                     },
4782   { "mm_teleporter_yellow_12",                  "RocksDF.png"           },
4783   { "mm_teleporter_yellow_12.xpos",             "11"                    },
4784   { "mm_teleporter_yellow_12.ypos",             "5"                     },
4785   { "mm_teleporter_yellow_12.frames",           "1"                     },
4786   { "mm_teleporter_yellow_13",                  "RocksDF.png"           },
4787   { "mm_teleporter_yellow_13.xpos",             "12"                    },
4788   { "mm_teleporter_yellow_13.ypos",             "5"                     },
4789   { "mm_teleporter_yellow_13.frames",           "1"                     },
4790   { "mm_teleporter_yellow_14",                  "RocksDF.png"           },
4791   { "mm_teleporter_yellow_14.xpos",             "13"                    },
4792   { "mm_teleporter_yellow_14.ypos",             "5"                     },
4793   { "mm_teleporter_yellow_14.frames",           "1"                     },
4794   { "mm_teleporter_yellow_15",                  "RocksDF.png"           },
4795   { "mm_teleporter_yellow_15.xpos",             "14"                    },
4796   { "mm_teleporter_yellow_15.ypos",             "5"                     },
4797   { "mm_teleporter_yellow_15.frames",           "1"                     },
4798   { "mm_teleporter_yellow_16",                  "RocksDF.png"           },
4799   { "mm_teleporter_yellow_16.xpos",             "15"                    },
4800   { "mm_teleporter_yellow_16.ypos",             "5"                     },
4801   { "mm_teleporter_yellow_16.frames",           "1"                     },
4802
4803   { "mm_teleporter_green_1",                    "RocksDF.png"           },
4804   { "mm_teleporter_green_1.xpos",               "0"                     },
4805   { "mm_teleporter_green_1.ypos",               "6"                     },
4806   { "mm_teleporter_green_1.frames",             "1"                     },
4807   { "mm_teleporter_green_2",                    "RocksDF.png"           },
4808   { "mm_teleporter_green_2.xpos",               "1"                     },
4809   { "mm_teleporter_green_2.ypos",               "6"                     },
4810   { "mm_teleporter_green_2.frames",             "1"                     },
4811   { "mm_teleporter_green_3",                    "RocksDF.png"           },
4812   { "mm_teleporter_green_3.xpos",               "2"                     },
4813   { "mm_teleporter_green_3.ypos",               "6"                     },
4814   { "mm_teleporter_green_3.frames",             "1"                     },
4815   { "mm_teleporter_green_4",                    "RocksDF.png"           },
4816   { "mm_teleporter_green_4.xpos",               "3"                     },
4817   { "mm_teleporter_green_4.ypos",               "6"                     },
4818   { "mm_teleporter_green_4.frames",             "1"                     },
4819   { "mm_teleporter_green_5",                    "RocksDF.png"           },
4820   { "mm_teleporter_green_5.xpos",               "4"                     },
4821   { "mm_teleporter_green_5.ypos",               "6"                     },
4822   { "mm_teleporter_green_5.frames",             "1"                     },
4823   { "mm_teleporter_green_6",                    "RocksDF.png"           },
4824   { "mm_teleporter_green_6.xpos",               "5"                     },
4825   { "mm_teleporter_green_6.ypos",               "6"                     },
4826   { "mm_teleporter_green_6.frames",             "1"                     },
4827   { "mm_teleporter_green_7",                    "RocksDF.png"           },
4828   { "mm_teleporter_green_7.xpos",               "6"                     },
4829   { "mm_teleporter_green_7.ypos",               "6"                     },
4830   { "mm_teleporter_green_7.frames",             "1"                     },
4831   { "mm_teleporter_green_8",                    "RocksDF.png"           },
4832   { "mm_teleporter_green_8.xpos",               "7"                     },
4833   { "mm_teleporter_green_8.ypos",               "6"                     },
4834   { "mm_teleporter_green_8.frames",             "1"                     },
4835   { "mm_teleporter_green_9",                    "RocksDF.png"           },
4836   { "mm_teleporter_green_9.xpos",               "8"                     },
4837   { "mm_teleporter_green_9.ypos",               "6"                     },
4838   { "mm_teleporter_green_9.frames",             "1"                     },
4839   { "mm_teleporter_green_10",                   "RocksDF.png"           },
4840   { "mm_teleporter_green_10.xpos",              "9"                     },
4841   { "mm_teleporter_green_10.ypos",              "6"                     },
4842   { "mm_teleporter_green_10.frames",            "1"                     },
4843   { "mm_teleporter_green_11",                   "RocksDF.png"           },
4844   { "mm_teleporter_green_11.xpos",              "10"                    },
4845   { "mm_teleporter_green_11.ypos",              "6"                     },
4846   { "mm_teleporter_green_11.frames",            "1"                     },
4847   { "mm_teleporter_green_12",                   "RocksDF.png"           },
4848   { "mm_teleporter_green_12.xpos",              "11"                    },
4849   { "mm_teleporter_green_12.ypos",              "6"                     },
4850   { "mm_teleporter_green_12.frames",            "1"                     },
4851   { "mm_teleporter_green_13",                   "RocksDF.png"           },
4852   { "mm_teleporter_green_13.xpos",              "12"                    },
4853   { "mm_teleporter_green_13.ypos",              "6"                     },
4854   { "mm_teleporter_green_13.frames",            "1"                     },
4855   { "mm_teleporter_green_14",                   "RocksDF.png"           },
4856   { "mm_teleporter_green_14.xpos",              "13"                    },
4857   { "mm_teleporter_green_14.ypos",              "6"                     },
4858   { "mm_teleporter_green_14.frames",            "1"                     },
4859   { "mm_teleporter_green_15",                   "RocksDF.png"           },
4860   { "mm_teleporter_green_15.xpos",              "14"                    },
4861   { "mm_teleporter_green_15.ypos",              "6"                     },
4862   { "mm_teleporter_green_15.frames",            "1"                     },
4863   { "mm_teleporter_green_16",                   "RocksDF.png"           },
4864   { "mm_teleporter_green_16.xpos",              "15"                    },
4865   { "mm_teleporter_green_16.ypos",              "6"                     },
4866   { "mm_teleporter_green_16.frames",            "1"                     },
4867
4868   { "mm_teleporter_blue_1",                     "RocksDF.png"           },
4869   { "mm_teleporter_blue_1.xpos",                "0"                     },
4870   { "mm_teleporter_blue_1.ypos",                "7"                     },
4871   { "mm_teleporter_blue_1.frames",              "1"                     },
4872   { "mm_teleporter_blue_2",                     "RocksDF.png"           },
4873   { "mm_teleporter_blue_2.xpos",                "1"                     },
4874   { "mm_teleporter_blue_2.ypos",                "7"                     },
4875   { "mm_teleporter_blue_2.frames",              "1"                     },
4876   { "mm_teleporter_blue_3",                     "RocksDF.png"           },
4877   { "mm_teleporter_blue_3.xpos",                "2"                     },
4878   { "mm_teleporter_blue_3.ypos",                "7"                     },
4879   { "mm_teleporter_blue_3.frames",              "1"                     },
4880   { "mm_teleporter_blue_4",                     "RocksDF.png"           },
4881   { "mm_teleporter_blue_4.xpos",                "3"                     },
4882   { "mm_teleporter_blue_4.ypos",                "7"                     },
4883   { "mm_teleporter_blue_4.frames",              "1"                     },
4884   { "mm_teleporter_blue_5",                     "RocksDF.png"           },
4885   { "mm_teleporter_blue_5.xpos",                "4"                     },
4886   { "mm_teleporter_blue_5.ypos",                "7"                     },
4887   { "mm_teleporter_blue_5.frames",              "1"                     },
4888   { "mm_teleporter_blue_6",                     "RocksDF.png"           },
4889   { "mm_teleporter_blue_6.xpos",                "5"                     },
4890   { "mm_teleporter_blue_6.ypos",                "7"                     },
4891   { "mm_teleporter_blue_6.frames",              "1"                     },
4892   { "mm_teleporter_blue_7",                     "RocksDF.png"           },
4893   { "mm_teleporter_blue_7.xpos",                "6"                     },
4894   { "mm_teleporter_blue_7.ypos",                "7"                     },
4895   { "mm_teleporter_blue_7.frames",              "1"                     },
4896   { "mm_teleporter_blue_8",                     "RocksDF.png"           },
4897   { "mm_teleporter_blue_8.xpos",                "7"                     },
4898   { "mm_teleporter_blue_8.ypos",                "7"                     },
4899   { "mm_teleporter_blue_8.frames",              "1"                     },
4900   { "mm_teleporter_blue_9",                     "RocksDF.png"           },
4901   { "mm_teleporter_blue_9.xpos",                "8"                     },
4902   { "mm_teleporter_blue_9.ypos",                "7"                     },
4903   { "mm_teleporter_blue_9.frames",              "1"                     },
4904   { "mm_teleporter_blue_10",                    "RocksDF.png"           },
4905   { "mm_teleporter_blue_10.xpos",               "9"                     },
4906   { "mm_teleporter_blue_10.ypos",               "7"                     },
4907   { "mm_teleporter_blue_10.frames",             "1"                     },
4908   { "mm_teleporter_blue_11",                    "RocksDF.png"           },
4909   { "mm_teleporter_blue_11.xpos",               "10"                    },
4910   { "mm_teleporter_blue_11.ypos",               "7"                     },
4911   { "mm_teleporter_blue_11.frames",             "1"                     },
4912   { "mm_teleporter_blue_12",                    "RocksDF.png"           },
4913   { "mm_teleporter_blue_12.xpos",               "11"                    },
4914   { "mm_teleporter_blue_12.ypos",               "7"                     },
4915   { "mm_teleporter_blue_12.frames",             "1"                     },
4916   { "mm_teleporter_blue_13",                    "RocksDF.png"           },
4917   { "mm_teleporter_blue_13.xpos",               "12"                    },
4918   { "mm_teleporter_blue_13.ypos",               "7"                     },
4919   { "mm_teleporter_blue_13.frames",             "1"                     },
4920   { "mm_teleporter_blue_14",                    "RocksDF.png"           },
4921   { "mm_teleporter_blue_14.xpos",               "13"                    },
4922   { "mm_teleporter_blue_14.ypos",               "7"                     },
4923   { "mm_teleporter_blue_14.frames",             "1"                     },
4924   { "mm_teleporter_blue_15",                    "RocksDF.png"           },
4925   { "mm_teleporter_blue_15.xpos",               "14"                    },
4926   { "mm_teleporter_blue_15.ypos",               "7"                     },
4927   { "mm_teleporter_blue_15.frames",             "1"                     },
4928   { "mm_teleporter_blue_16",                    "RocksDF.png"           },
4929   { "mm_teleporter_blue_16.xpos",               "15"                    },
4930   { "mm_teleporter_blue_16.ypos",               "7"                     },
4931   { "mm_teleporter_blue_16.frames",             "1"                     },
4932
4933   { "mm_kettle",                                "RocksMM.png"           },
4934   { "mm_kettle.xpos",                           "12"                    },
4935   { "mm_kettle.ypos",                           "1"                     },
4936   { "mm_kettle.frames",                         "1"                     },
4937   { "mm_kettle.exploding",                      "RocksMM.png"           },
4938   { "mm_kettle.exploding.xpos",                 "13"                    },
4939   { "mm_kettle.exploding.ypos",                 "1"                     },
4940   { "mm_kettle.exploding.frames",               "3"                     },
4941   { "mm_kettle.exploding.delay",                "4"                     },
4942   { "mm_kettle.exploding.anim_mode",            "linear"                },
4943
4944   { "mm_bomb",                                  "RocksMM.png"           },
4945   { "mm_bomb.xpos",                             "5"                     },
4946   { "mm_bomb.ypos",                             "2"                     },
4947   { "mm_bomb.frames",                           "1"                     },
4948
4949   { "mm_prism",                                 "RocksMM.png"           },
4950   { "mm_prism.xpos",                            "0"                     },
4951   { "mm_prism.ypos",                            "2"                     },
4952   { "mm_prism.frames",                          "1"                     },
4953
4954   { "mm_fuse",                                  "RocksMM.png"           },
4955   { "mm_fuse.xpos",                             "7"                     },
4956   { "mm_fuse.ypos",                             "2"                     },
4957   { "mm_fuse.frames",                           "1"                     },
4958   { "mm_fuse.active",                           "RocksMM.png"           },
4959   { "mm_fuse.active.xpos",                      "6"                     },
4960   { "mm_fuse.active.ypos",                      "2"                     },
4961   { "mm_fuse.active.frames",                    "1"                     },
4962
4963   { "mm_steel_lock",                            "RocksMM.png"           },
4964   { "mm_steel_lock.xpos",                       "8"                     },
4965   { "mm_steel_lock.ypos",                       "2"                     },
4966   { "mm_steel_lock.frames",                     "1"                     },
4967
4968   { "mm_wooden_lock",                           "RocksMM.png"           },
4969   { "mm_wooden_lock.xpos",                      "9"                     },
4970   { "mm_wooden_lock.ypos",                      "6"                     },
4971   { "mm_wooden_lock.frames",                    "1"                     },
4972
4973   { "mm_steel_block",                           "RocksMM.png"           },
4974   { "mm_steel_block.xpos",                      "8"                     },
4975   { "mm_steel_block.ypos",                      "6"                     },
4976   { "mm_steel_block.frames",                    "1"                     },
4977
4978   { "mm_wooden_block",                          "RocksMM.png"           },
4979   { "mm_wooden_block.xpos",                     "4"                     },
4980   { "mm_wooden_block.ypos",                     "2"                     },
4981   { "mm_wooden_block.frames",                   "1"                     },
4982
4983   { "mm_key",                                   "RocksMM.png"           },
4984   { "mm_key.xpos",                              "9"                     },
4985   { "mm_key.ypos",                              "2"                     },
4986   { "mm_key.frames",                            "1"                     },
4987
4988   { "mm_lightbulb",                             "RocksMM.png"           },
4989   { "mm_lightbulb.xpos",                        "10"                    },
4990   { "mm_lightbulb.ypos",                        "2"                     },
4991   { "mm_lightbulb.frames",                      "1"                     },
4992   { "mm_lightbulb.active",                      "RocksMM.png"           },
4993   { "mm_lightbulb.active.xpos",                 "11"                    },
4994   { "mm_lightbulb.active.ypos",                 "2"                     },
4995   { "mm_lightbulb.active.frames",               "1"                     },
4996
4997   { "mm_lightball",                             "RocksMM.png"           },
4998   { "mm_lightball.xpos",                        "12"                    },
4999   { "mm_lightball.ypos",                        "2"                     },
5000   { "mm_lightball.frames",                      "3"                     },
5001   { "mm_lightball.delay",                       "1000000"               },
5002   { "mm_lightball.anim_mode",                   "random"                },
5003   { "mm_lightball_red",                         "RocksMM.png"           },
5004   { "mm_lightball_red.xpos",                    "12"                    },
5005   { "mm_lightball_red.ypos",                    "2"                     },
5006   { "mm_lightball_red.frames",                  "1"                     },
5007   { "mm_lightball_blue",                        "RocksMM.png"           },
5008   { "mm_lightball_blue.xpos",                   "13"                    },
5009   { "mm_lightball_blue.ypos",                   "2"                     },
5010   { "mm_lightball_blue.frames",                 "1"                     },
5011   { "mm_lightball_yellow",                      "RocksMM.png"           },
5012   { "mm_lightball_yellow.xpos",                 "14"                    },
5013   { "mm_lightball_yellow.ypos",                 "2"                     },
5014   { "mm_lightball_yellow.frames",               "1"                     },
5015
5016   { "mm_gray_ball",                             "RocksMM.png"           },
5017   { "mm_gray_ball.xpos",                        "15"                    },
5018   { "mm_gray_ball.ypos",                        "2"                     },
5019   { "mm_gray_ball.frames",                      "1"                     },
5020
5021   { "mm_fuel_full",                             "RocksMM.png"           },
5022   { "mm_fuel_full.xpos",                        "10"                    },
5023   { "mm_fuel_full.ypos",                        "6"                     },
5024   { "mm_fuel_full.frames",                      "1"                     },
5025   { "mm_fuel_empty",                            "RocksMM.png"           },
5026   { "mm_fuel_empty.xpos",                       "11"                    },
5027   { "mm_fuel_empty.ypos",                       "6"                     },
5028   { "mm_fuel_empty.frames",                     "1"                     },
5029
5030   { "mm_steel_wall",                            "RocksMM.png"           },
5031   { "mm_steel_wall.xpos",                       "0"                     },
5032   { "mm_steel_wall.ypos",                       "7"                     },
5033   { "mm_steel_wall.frames",                     "1"                     },
5034
5035   { "mm_wooden_wall",                           "RocksMM.png"           },
5036   { "mm_wooden_wall.xpos",                      "1"                     },
5037   { "mm_wooden_wall.ypos",                      "7"                     },
5038   { "mm_wooden_wall.frames",                    "1"                     },
5039
5040   { "mm_ice_wall",                              "RocksMM.png"           },
5041   { "mm_ice_wall.xpos",                         "2"                     },
5042   { "mm_ice_wall.ypos",                         "7"                     },
5043   { "mm_ice_wall.frames",                       "1"                     },
5044   { "mm_ice_wall.shrinking",                    "RocksMM.png"           },
5045   { "mm_ice_wall.shrinking.xpos",               "2"                     },
5046   { "mm_ice_wall.shrinking.ypos",               "7"                     },
5047   { "mm_ice_wall.shrinking.frames",             "5"                     },
5048   { "mm_ice_wall.shrinking.delay",              "8"                     },
5049   { "mm_ice_wall.shrinking.anim_mode",          "linear"                },
5050
5051   { "mm_amoeba_wall",                           "RocksMM.png"           },
5052   { "mm_amoeba_wall.xpos",                      "8"                     },
5053   { "mm_amoeba_wall.ypos",                      "7"                     },
5054   { "mm_amoeba_wall.frames",                    "1"                     },
5055   { "mm_amoeba_wall.growing",                   "RocksMM.png"           },
5056   { "mm_amoeba_wall.growing.xpos",              "8"                     },
5057   { "mm_amoeba_wall.growing.ypos",              "7"                     },
5058   { "mm_amoeba_wall.growing.frames",            "5"                     },
5059   { "mm_amoeba_wall.growing.delay",             "8"                     },
5060   { "mm_amoeba_wall.growing.anim_mode",         "linear,reverse"        },
5061
5062   { "mm_pacman",                                "RocksMM.png"           },
5063   { "mm_pacman.xpos",                           "0"                     },
5064   { "mm_pacman.ypos",                           "4"                     },
5065   { "mm_pacman.frames",                         "1"                     },
5066   { "mm_pacman.right",                          "RocksMM.png"           },
5067   { "mm_pacman.right.xpos",                     "0"                     },
5068   { "mm_pacman.right.ypos",                     "4"                     },
5069   { "mm_pacman.right.frames",                   "1"                     },
5070   { "mm_pacman.up",                             "RocksMM.png"           },
5071   { "mm_pacman.up.xpos",                        "1"                     },
5072   { "mm_pacman.up.ypos",                        "4"                     },
5073   { "mm_pacman.up.frames",                      "1"                     },
5074   { "mm_pacman.left",                           "RocksMM.png"           },
5075   { "mm_pacman.left.xpos",                      "2"                     },
5076   { "mm_pacman.left.ypos",                      "4"                     },
5077   { "mm_pacman.left.frames",                    "1"                     },
5078   { "mm_pacman.down",                           "RocksMM.png"           },
5079   { "mm_pacman.down.xpos",                      "3"                     },
5080   { "mm_pacman.down.ypos",                      "4"                     },
5081   { "mm_pacman.down.frames",                    "1"                     },
5082   { "mm_pacman.eating.right",                   "RocksMM.png"           },
5083   { "mm_pacman.eating.right.xpos",              "4"                     },
5084   { "mm_pacman.eating.right.ypos",              "4"                     },
5085   { "mm_pacman.eating.right.frames",            "1"                     },
5086   { "mm_pacman.eating.up",                      "RocksMM.png"           },
5087   { "mm_pacman.eating.up.xpos",                 "5"                     },
5088   { "mm_pacman.eating.up.ypos",                 "4"                     },
5089   { "mm_pacman.eating.up.frames",               "1"                     },
5090   { "mm_pacman.eating.left",                    "RocksMM.png"           },
5091   { "mm_pacman.eating.left.xpos",               "6"                     },
5092   { "mm_pacman.eating.left.ypos",               "4"                     },
5093   { "mm_pacman.eating.left.frames",             "1"                     },
5094   { "mm_pacman.eating.down",                    "RocksMM.png"           },
5095   { "mm_pacman.eating.down.xpos",               "7"                     },
5096   { "mm_pacman.eating.down.ypos",               "4"                     },
5097   { "mm_pacman.eating.down.frames",             "1"                     },
5098
5099   { "mm_mask_mcduffin.right",                   "RocksMM.png"           },
5100   { "mm_mask_mcduffin.right.xpos",              "8"                     },
5101   { "mm_mask_mcduffin.right.ypos",              "8"                     },
5102   { "mm_mask_mcduffin.right.frames",            "1"                     },
5103   { "mm_mask_mcduffin.up",                      "RocksMM.png"           },
5104   { "mm_mask_mcduffin.up.xpos",                 "9"                     },
5105   { "mm_mask_mcduffin.up.ypos",                 "8"                     },
5106   { "mm_mask_mcduffin.up.frames",               "1"                     },
5107   { "mm_mask_mcduffin.left",                    "RocksMM.png"           },
5108   { "mm_mask_mcduffin.left.xpos",               "10"                    },
5109   { "mm_mask_mcduffin.left.ypos",               "8"                     },
5110   { "mm_mask_mcduffin.left.frames",             "1"                     },
5111   { "mm_mask_mcduffin.down",                    "RocksMM.png"           },
5112   { "mm_mask_mcduffin.down.xpos",               "11"                    },
5113   { "mm_mask_mcduffin.down.ypos",               "8"                     },
5114   { "mm_mask_mcduffin.down.frames",             "1"                     },
5115
5116   { "mm_mask_grid_1",                           "RocksMM.png"           },
5117   { "mm_mask_grid_1.xpos",                      "4"                     },
5118   { "mm_mask_grid_1.ypos",                      "8"                     },
5119   { "mm_mask_grid_1.frames",                    "1"                     },
5120   { "mm_mask_grid_2",                           "RocksMM.png"           },
5121   { "mm_mask_grid_2.xpos",                      "5"                     },
5122   { "mm_mask_grid_2.ypos",                      "8"                     },
5123   { "mm_mask_grid_2.frames",                    "1"                     },
5124   { "mm_mask_grid_3",                           "RocksMM.png"           },
5125   { "mm_mask_grid_3.xpos",                      "6"                     },
5126   { "mm_mask_grid_3.ypos",                      "8"                     },
5127   { "mm_mask_grid_3.frames",                    "1"                     },
5128   { "mm_mask_grid_4",                           "RocksMM.png"           },
5129   { "mm_mask_grid_4.xpos",                      "7"                     },
5130   { "mm_mask_grid_4.ypos",                      "8"                     },
5131   { "mm_mask_grid_4.frames",                    "1"                     },
5132
5133   { "mm_mask_rectangle",                        "RocksMM.png"           },
5134   { "mm_mask_rectangle.xpos",                   "1"                     },
5135   { "mm_mask_rectangle.ypos",                   "8"                     },
5136   { "mm_mask_rectangle.frames",                 "1"                     },
5137
5138   { "mm_mask_circle",                           "RocksMM.png"           },
5139   { "mm_mask_circle.xpos",                      "0"                     },
5140   { "mm_mask_circle.ypos",                      "8"                     },
5141   { "mm_mask_circle.frames",                    "1"                     },
5142
5143   { "[mm_default].exploding",                   "RocksMM.png"           },
5144   { "[mm_default].exploding.xpos",              "8"                     },
5145   { "[mm_default].exploding.ypos",              "4"                     },
5146   { "[mm_default].exploding.frames",            "8"                     },
5147   { "[mm_default].exploding.delay",             "2"                     },
5148   { "[mm_default].exploding.anim_mode",         "linear"                },
5149
5150   { "df_laser",                                 "RocksDF.png"           },
5151   { "df_laser.xpos",                            "0"                     },
5152   { "df_laser.ypos",                            "9"                     },
5153   { "df_laser.frames",                          "4"                     },
5154   { "df_laser.delay",                           "8"                     },
5155   { "df_laser.right",                           "RocksDF.png"           },
5156   { "df_laser.right.xpos",                      "0"                     },
5157   { "df_laser.right.ypos",                      "9"                     },
5158   { "df_laser.right.frames",                    "1"                     },
5159   { "df_laser.up",                              "RocksDF.png"           },
5160   { "df_laser.up.xpos",                         "1"                     },
5161   { "df_laser.up.ypos",                         "9"                     },
5162   { "df_laser.up.frames",                       "1"                     },
5163   { "df_laser.left",                            "RocksDF.png"           },
5164   { "df_laser.left.xpos",                       "2"                     },
5165   { "df_laser.left.ypos",                       "9"                     },
5166   { "df_laser.left.frames",                     "1"                     },
5167   { "df_laser.down",                            "RocksDF.png"           },
5168   { "df_laser.down.xpos",                       "3"                     },
5169   { "df_laser.down.ypos",                       "9"                     },
5170   { "df_laser.down.frames",                     "1"                     },
5171
5172   { "df_receiver",                              "RocksDF.png"           },
5173   { "df_receiver.xpos",                         "4"                     },
5174   { "df_receiver.ypos",                         "9"                     },
5175   { "df_receiver.frames",                       "4"                     },
5176   { "df_receiver.delay",                        "8"                     },
5177   { "df_receiver.right",                        "RocksDF.png"           },
5178   { "df_receiver.right.xpos",                   "4"                     },
5179   { "df_receiver.right.ypos",                   "9"                     },
5180   { "df_receiver.right.frames",                 "1"                     },
5181   { "df_receiver.up",                           "RocksDF.png"           },
5182   { "df_receiver.up.xpos",                      "5"                     },
5183   { "df_receiver.up.ypos",                      "9"                     },
5184   { "df_receiver.up.frames",                    "1"                     },
5185   { "df_receiver.left",                         "RocksDF.png"           },
5186   { "df_receiver.left.xpos",                    "6"                     },
5187   { "df_receiver.left.ypos",                    "9"                     },
5188   { "df_receiver.left.frames",                  "1"                     },
5189   { "df_receiver.down",                         "RocksDF.png"           },
5190   { "df_receiver.down.xpos",                    "7"                     },
5191   { "df_receiver.down.ypos",                    "9"                     },
5192   { "df_receiver.down.frames",                  "1"                     },
5193
5194   { "df_mirror_1",                              "RocksDF.png"           },
5195   { "df_mirror_1.xpos",                         "0"                     },
5196   { "df_mirror_1.ypos",                         "0"                     },
5197   { "df_mirror_1.frames",                       "1"                     },
5198   { "df_mirror_2",                              "RocksDF.png"           },
5199   { "df_mirror_2.xpos",                         "1"                     },
5200   { "df_mirror_2.ypos",                         "0"                     },
5201   { "df_mirror_2.frames",                       "1"                     },
5202   { "df_mirror_3",                              "RocksDF.png"           },
5203   { "df_mirror_3.xpos",                         "2"                     },
5204   { "df_mirror_3.ypos",                         "0"                     },
5205   { "df_mirror_3.frames",                       "1"                     },
5206   { "df_mirror_4",                              "RocksDF.png"           },
5207   { "df_mirror_4.xpos",                         "3"                     },
5208   { "df_mirror_4.ypos",                         "0"                     },
5209   { "df_mirror_4.frames",                       "1"                     },
5210   { "df_mirror_5",                              "RocksDF.png"           },
5211   { "df_mirror_5.xpos",                         "4"                     },
5212   { "df_mirror_5.ypos",                         "0"                     },
5213   { "df_mirror_5.frames",                       "1"                     },
5214   { "df_mirror_6",                              "RocksDF.png"           },
5215   { "df_mirror_6.xpos",                         "5"                     },
5216   { "df_mirror_6.ypos",                         "0"                     },
5217   { "df_mirror_6.frames",                       "1"                     },
5218   { "df_mirror_7",                              "RocksDF.png"           },
5219   { "df_mirror_7.xpos",                         "6"                     },
5220   { "df_mirror_7.ypos",                         "0"                     },
5221   { "df_mirror_7.frames",                       "1"                     },
5222   { "df_mirror_8",                              "RocksDF.png"           },
5223   { "df_mirror_8.xpos",                         "7"                     },
5224   { "df_mirror_8.ypos",                         "0"                     },
5225   { "df_mirror_8.frames",                       "1"                     },
5226   { "df_mirror_9",                              "RocksDF.png"           },
5227   { "df_mirror_9.xpos",                         "8"                     },
5228   { "df_mirror_9.ypos",                         "0"                     },
5229   { "df_mirror_9.frames",                       "1"                     },
5230   { "df_mirror_10",                             "RocksDF.png"           },
5231   { "df_mirror_10.xpos",                        "9"                     },
5232   { "df_mirror_10.ypos",                        "0"                     },
5233   { "df_mirror_10.frames",                      "1"                     },
5234   { "df_mirror_11",                             "RocksDF.png"           },
5235   { "df_mirror_11.xpos",                        "10"                    },
5236   { "df_mirror_11.ypos",                        "0"                     },
5237   { "df_mirror_11.frames",                      "1"                     },
5238   { "df_mirror_12",                             "RocksDF.png"           },
5239   { "df_mirror_12.xpos",                        "11"                    },
5240   { "df_mirror_12.ypos",                        "0"                     },
5241   { "df_mirror_12.frames",                      "1"                     },
5242   { "df_mirror_13",                             "RocksDF.png"           },
5243   { "df_mirror_13.xpos",                        "12"                    },
5244   { "df_mirror_13.ypos",                        "0"                     },
5245   { "df_mirror_13.frames",                      "1"                     },
5246   { "df_mirror_14",                             "RocksDF.png"           },
5247   { "df_mirror_14.xpos",                        "13"                    },
5248   { "df_mirror_14.ypos",                        "0"                     },
5249   { "df_mirror_14.frames",                      "1"                     },
5250   { "df_mirror_15",                             "RocksDF.png"           },
5251   { "df_mirror_15.xpos",                        "14"                    },
5252   { "df_mirror_15.ypos",                        "0"                     },
5253   { "df_mirror_15.frames",                      "1"                     },
5254   { "df_mirror_16",                             "RocksDF.png"           },
5255   { "df_mirror_16.xpos",                        "15"                    },
5256   { "df_mirror_16.ypos",                        "0"                     },
5257   { "df_mirror_16.frames",                      "1"                     },
5258
5259   { "df_mirror_rotating_1",                     "RocksDF.png"           },
5260   { "df_mirror_rotating_1.xpos",                "0"                     },
5261   { "df_mirror_rotating_1.ypos",                "0"                     },
5262   { "df_mirror_rotating_1.frames",              "1"                     },
5263   { "df_mirror_rotating_1.EDITOR",              "RocksDF.png"           },
5264   { "df_mirror_rotating_1.EDITOR.xpos",         "0"                     },
5265   { "df_mirror_rotating_1.EDITOR.ypos",         "1"                     },
5266   { "df_mirror_rotating_1.EDITOR.frames",       "1"                     },
5267   { "df_mirror_rotating_2",                     "RocksDF.png"           },
5268   { "df_mirror_rotating_2.xpos",                "1"                     },
5269   { "df_mirror_rotating_2.ypos",                "0"                     },
5270   { "df_mirror_rotating_2.frames",              "1"                     },
5271   { "df_mirror_rotating_2.EDITOR",              "RocksDF.png"           },
5272   { "df_mirror_rotating_2.EDITOR.xpos",         "1"                     },
5273   { "df_mirror_rotating_2.EDITOR.ypos",         "1"                     },
5274   { "df_mirror_rotating_2.EDITOR.frames",       "1"                     },
5275   { "df_mirror_rotating_3",                     "RocksDF.png"           },
5276   { "df_mirror_rotating_3.xpos",                "2"                     },
5277   { "df_mirror_rotating_3.ypos",                "0"                     },
5278   { "df_mirror_rotating_3.frames",              "1"                     },
5279   { "df_mirror_rotating_3.EDITOR",              "RocksDF.png"           },
5280   { "df_mirror_rotating_3.EDITOR.xpos",         "2"                     },
5281   { "df_mirror_rotating_3.EDITOR.ypos",         "1"                     },
5282   { "df_mirror_rotating_3.EDITOR.frames",       "1"                     },
5283   { "df_mirror_rotating_4",                     "RocksDF.png"           },
5284   { "df_mirror_rotating_4.xpos",                "3"                     },
5285   { "df_mirror_rotating_4.ypos",                "0"                     },
5286   { "df_mirror_rotating_4.frames",              "1"                     },
5287   { "df_mirror_rotating_4.EDITOR",              "RocksDF.png"           },
5288   { "df_mirror_rotating_4.EDITOR.xpos",         "3"                     },
5289   { "df_mirror_rotating_4.EDITOR.ypos",         "1"                     },
5290   { "df_mirror_rotating_4.EDITOR.frames",       "1"                     },
5291   { "df_mirror_rotating_5",                     "RocksDF.png"           },
5292   { "df_mirror_rotating_5.xpos",                "4"                     },
5293   { "df_mirror_rotating_5.ypos",                "0"                     },
5294   { "df_mirror_rotating_5.frames",              "1"                     },
5295   { "df_mirror_rotating_5.EDITOR",              "RocksDF.png"           },
5296   { "df_mirror_rotating_5.EDITOR.xpos",         "4"                     },
5297   { "df_mirror_rotating_5.EDITOR.ypos",         "1"                     },
5298   { "df_mirror_rotating_5.EDITOR.frames",       "1"                     },
5299   { "df_mirror_rotating_6",                     "RocksDF.png"           },
5300   { "df_mirror_rotating_6.xpos",                "5"                     },
5301   { "df_mirror_rotating_6.ypos",                "0"                     },
5302   { "df_mirror_rotating_6.frames",              "1"                     },
5303   { "df_mirror_rotating_6.EDITOR",              "RocksDF.png"           },
5304   { "df_mirror_rotating_6.EDITOR.xpos",         "5"                     },
5305   { "df_mirror_rotating_6.EDITOR.ypos",         "1"                     },
5306   { "df_mirror_rotating_6.EDITOR.frames",       "1"                     },
5307   { "df_mirror_rotating_7",                     "RocksDF.png"           },
5308   { "df_mirror_rotating_7.xpos",                "6"                     },
5309   { "df_mirror_rotating_7.ypos",                "0"                     },
5310   { "df_mirror_rotating_7.frames",              "1"                     },
5311   { "df_mirror_rotating_7.EDITOR",              "RocksDF.png"           },
5312   { "df_mirror_rotating_7.EDITOR.xpos",         "6"                     },
5313   { "df_mirror_rotating_7.EDITOR.ypos",         "1"                     },
5314   { "df_mirror_rotating_7.EDITOR.frames",       "1"                     },
5315   { "df_mirror_rotating_8",                     "RocksDF.png"           },
5316   { "df_mirror_rotating_8.xpos",                "7"                     },
5317   { "df_mirror_rotating_8.ypos",                "0"                     },
5318   { "df_mirror_rotating_8.frames",              "1"                     },
5319   { "df_mirror_rotating_8.EDITOR",              "RocksDF.png"           },
5320   { "df_mirror_rotating_8.EDITOR.xpos",         "7"                     },
5321   { "df_mirror_rotating_8.EDITOR.ypos",         "1"                     },
5322   { "df_mirror_rotating_8.EDITOR.frames",       "1"                     },
5323   { "df_mirror_rotating_9",                     "RocksDF.png"           },
5324   { "df_mirror_rotating_9.xpos",                "8"                     },
5325   { "df_mirror_rotating_9.ypos",                "0"                     },
5326   { "df_mirror_rotating_9.frames",              "1"                     },
5327   { "df_mirror_rotating_9.EDITOR",              "RocksDF.png"           },
5328   { "df_mirror_rotating_9.EDITOR.xpos",         "8"                     },
5329   { "df_mirror_rotating_9.EDITOR.ypos",         "1"                     },
5330   { "df_mirror_rotating_9.EDITOR.frames",       "1"                     },
5331   { "df_mirror_rotating_10",                    "RocksDF.png"           },
5332   { "df_mirror_rotating_10.xpos",               "9"                     },
5333   { "df_mirror_rotating_10.ypos",               "0"                     },
5334   { "df_mirror_rotating_10.frames",             "1"                     },
5335   { "df_mirror_rotating_10.EDITOR",             "RocksDF.png"           },
5336   { "df_mirror_rotating_10.EDITOR.xpos",        "9"                     },
5337   { "df_mirror_rotating_10.EDITOR.ypos",        "1"                     },
5338   { "df_mirror_rotating_10.EDITOR.frames",      "1"                     },
5339   { "df_mirror_rotating_11",                    "RocksDF.png"           },
5340   { "df_mirror_rotating_11.xpos",               "10"                    },
5341   { "df_mirror_rotating_11.ypos",               "0"                     },
5342   { "df_mirror_rotating_11.frames",             "1"                     },
5343   { "df_mirror_rotating_11.EDITOR",             "RocksDF.png"           },
5344   { "df_mirror_rotating_11.EDITOR.xpos",        "10"                    },
5345   { "df_mirror_rotating_11.EDITOR.ypos",        "1"                     },
5346   { "df_mirror_rotating_11.EDITOR.frames",      "1"                     },
5347   { "df_mirror_rotating_12",                    "RocksDF.png"           },
5348   { "df_mirror_rotating_12.xpos",               "11"                    },
5349   { "df_mirror_rotating_12.ypos",               "0"                     },
5350   { "df_mirror_rotating_12.frames",             "1"                     },
5351   { "df_mirror_rotating_12.EDITOR",             "RocksDF.png"           },
5352   { "df_mirror_rotating_12.EDITOR.xpos",        "11"                    },
5353   { "df_mirror_rotating_12.EDITOR.ypos",        "1"                     },
5354   { "df_mirror_rotating_12.EDITOR.frames",      "1"                     },
5355   { "df_mirror_rotating_13",                    "RocksDF.png"           },
5356   { "df_mirror_rotating_13.xpos",               "12"                    },
5357   { "df_mirror_rotating_13.ypos",               "0"                     },
5358   { "df_mirror_rotating_13.frames",             "1"                     },
5359   { "df_mirror_rotating_13.EDITOR",             "RocksDF.png"           },
5360   { "df_mirror_rotating_13.EDITOR.xpos",        "12"                    },
5361   { "df_mirror_rotating_13.EDITOR.ypos",        "1"                     },
5362   { "df_mirror_rotating_13.EDITOR.frames",      "1"                     },
5363   { "df_mirror_rotating_14",                    "RocksDF.png"           },
5364   { "df_mirror_rotating_14.xpos",               "13"                    },
5365   { "df_mirror_rotating_14.ypos",               "0"                     },
5366   { "df_mirror_rotating_14.frames",             "1"                     },
5367   { "df_mirror_rotating_14.EDITOR",             "RocksDF.png"           },
5368   { "df_mirror_rotating_14.EDITOR.xpos",        "13"                    },
5369   { "df_mirror_rotating_14.EDITOR.ypos",        "1"                     },
5370   { "df_mirror_rotating_14.EDITOR.frames",      "1"                     },
5371   { "df_mirror_rotating_15",                    "RocksDF.png"           },
5372   { "df_mirror_rotating_15.xpos",               "14"                    },
5373   { "df_mirror_rotating_15.ypos",               "0"                     },
5374   { "df_mirror_rotating_15.frames",             "1"                     },
5375   { "df_mirror_rotating_15.EDITOR",             "RocksDF.png"           },
5376   { "df_mirror_rotating_15.EDITOR.xpos",        "14"                    },
5377   { "df_mirror_rotating_15.EDITOR.ypos",        "1"                     },
5378   { "df_mirror_rotating_15.EDITOR.frames",      "1"                     },
5379   { "df_mirror_rotating_16",                    "RocksDF.png"           },
5380   { "df_mirror_rotating_16.xpos",               "15"                    },
5381   { "df_mirror_rotating_16.ypos",               "0"                     },
5382   { "df_mirror_rotating_16.frames",             "1"                     },
5383   { "df_mirror_rotating_16.EDITOR",             "RocksDF.png"           },
5384   { "df_mirror_rotating_16.EDITOR.xpos",        "15"                    },
5385   { "df_mirror_rotating_16.EDITOR.ypos",        "1"                     },
5386   { "df_mirror_rotating_16.EDITOR.frames",      "1"                     },
5387
5388   { "df_steel_grid_fixed_1",                    "RocksDF.png"           },
5389   { "df_steel_grid_fixed_1.xpos",               "0"                     },
5390   { "df_steel_grid_fixed_1.ypos",               "2"                     },
5391   { "df_steel_grid_fixed_1.frames",             "1"                     },
5392   { "df_steel_grid_fixed_2",                    "RocksDF.png"           },
5393   { "df_steel_grid_fixed_2.xpos",               "1"                     },
5394   { "df_steel_grid_fixed_2.ypos",               "2"                     },
5395   { "df_steel_grid_fixed_2.frames",             "1"                     },
5396   { "df_steel_grid_fixed_3",                    "RocksDF.png"           },
5397   { "df_steel_grid_fixed_3.xpos",               "2"                     },
5398   { "df_steel_grid_fixed_3.ypos",               "2"                     },
5399   { "df_steel_grid_fixed_3.frames",             "1"                     },
5400   { "df_steel_grid_fixed_4",                    "RocksDF.png"           },
5401   { "df_steel_grid_fixed_4.xpos",               "3"                     },
5402   { "df_steel_grid_fixed_4.ypos",               "2"                     },
5403   { "df_steel_grid_fixed_4.frames",             "1"                     },
5404   { "df_steel_grid_fixed_5",                    "RocksDF.png"           },
5405   { "df_steel_grid_fixed_5.xpos",               "4"                     },
5406   { "df_steel_grid_fixed_5.ypos",               "2"                     },
5407   { "df_steel_grid_fixed_5.frames",             "1"                     },
5408   { "df_steel_grid_fixed_6",                    "RocksDF.png"           },
5409   { "df_steel_grid_fixed_6.xpos",               "5"                     },
5410   { "df_steel_grid_fixed_6.ypos",               "2"                     },
5411   { "df_steel_grid_fixed_6.frames",             "1"                     },
5412   { "df_steel_grid_fixed_7",                    "RocksDF.png"           },
5413   { "df_steel_grid_fixed_7.xpos",               "6"                     },
5414   { "df_steel_grid_fixed_7.ypos",               "2"                     },
5415   { "df_steel_grid_fixed_7.frames",             "1"                     },
5416   { "df_steel_grid_fixed_8",                    "RocksDF.png"           },
5417   { "df_steel_grid_fixed_8.xpos",               "7"                     },
5418   { "df_steel_grid_fixed_8.ypos",               "2"                     },
5419   { "df_steel_grid_fixed_8.frames",             "1"                     },
5420
5421   { "df_wooden_grid_fixed_1",                   "RocksDF.png"           },
5422   { "df_wooden_grid_fixed_1.xpos",              "8"                     },
5423   { "df_wooden_grid_fixed_1.ypos",              "2"                     },
5424   { "df_wooden_grid_fixed_1.frames",            "1"                     },
5425   { "df_wooden_grid_fixed_2",                   "RocksDF.png"           },
5426   { "df_wooden_grid_fixed_2.xpos",              "9"                     },
5427   { "df_wooden_grid_fixed_2.ypos",              "2"                     },
5428   { "df_wooden_grid_fixed_2.frames",            "1"                     },
5429   { "df_wooden_grid_fixed_3",                   "RocksDF.png"           },
5430   { "df_wooden_grid_fixed_3.xpos",              "10"                    },
5431   { "df_wooden_grid_fixed_3.ypos",              "2"                     },
5432   { "df_wooden_grid_fixed_3.frames",            "1"                     },
5433   { "df_wooden_grid_fixed_4",                   "RocksDF.png"           },
5434   { "df_wooden_grid_fixed_4.xpos",              "11"                    },
5435   { "df_wooden_grid_fixed_4.ypos",              "2"                     },
5436   { "df_wooden_grid_fixed_4.frames",            "1"                     },
5437   { "df_wooden_grid_fixed_5",                   "RocksDF.png"           },
5438   { "df_wooden_grid_fixed_5.xpos",              "12"                    },
5439   { "df_wooden_grid_fixed_5.ypos",              "2"                     },
5440   { "df_wooden_grid_fixed_5.frames",            "1"                     },
5441   { "df_wooden_grid_fixed_6",                   "RocksDF.png"           },
5442   { "df_wooden_grid_fixed_6.xpos",              "13"                    },
5443   { "df_wooden_grid_fixed_6.ypos",              "2"                     },
5444   { "df_wooden_grid_fixed_6.frames",            "1"                     },
5445   { "df_wooden_grid_fixed_7",                   "RocksDF.png"           },
5446   { "df_wooden_grid_fixed_7.xpos",              "14"                    },
5447   { "df_wooden_grid_fixed_7.ypos",              "2"                     },
5448   { "df_wooden_grid_fixed_7.frames",            "1"                     },
5449   { "df_wooden_grid_fixed_8",                   "RocksDF.png"           },
5450   { "df_wooden_grid_fixed_8.xpos",              "15"                    },
5451   { "df_wooden_grid_fixed_8.ypos",              "2"                     },
5452   { "df_wooden_grid_fixed_8.frames",            "1"                     },
5453
5454   { "df_steel_grid_rotating_1",                 "RocksDF.png"           },
5455   { "df_steel_grid_rotating_1.xpos",            "0"                     },
5456   { "df_steel_grid_rotating_1.ypos",            "2"                     },
5457   { "df_steel_grid_rotating_1.frames",          "1"                     },
5458   { "df_steel_grid_rotating_1.EDITOR",          "RocksDF.png"           },
5459   { "df_steel_grid_rotating_1.EDITOR.xpos",     "0"                     },
5460   { "df_steel_grid_rotating_1.EDITOR.ypos",     "3"                     },
5461   { "df_steel_grid_rotating_1.EDITOR.frames",   "1"                     },
5462   { "df_steel_grid_rotating_2",                 "RocksDF.png"           },
5463   { "df_steel_grid_rotating_2.xpos",            "1"                     },
5464   { "df_steel_grid_rotating_2.ypos",            "2"                     },
5465   { "df_steel_grid_rotating_2.frames",          "1"                     },
5466   { "df_steel_grid_rotating_2.EDITOR",          "RocksDF.png"           },
5467   { "df_steel_grid_rotating_2.EDITOR.xpos",     "1"                     },
5468   { "df_steel_grid_rotating_2.EDITOR.ypos",     "3"                     },
5469   { "df_steel_grid_rotating_2.EDITOR.frames",   "1"                     },
5470   { "df_steel_grid_rotating_3",                 "RocksDF.png"           },
5471   { "df_steel_grid_rotating_3.xpos",            "2"                     },
5472   { "df_steel_grid_rotating_3.ypos",            "2"                     },
5473   { "df_steel_grid_rotating_3.frames",          "1"                     },
5474   { "df_steel_grid_rotating_3.EDITOR",          "RocksDF.png"           },
5475   { "df_steel_grid_rotating_3.EDITOR.xpos",     "2"                     },
5476   { "df_steel_grid_rotating_3.EDITOR.ypos",     "3"                     },
5477   { "df_steel_grid_rotating_3.EDITOR.frames",   "1"                     },
5478   { "df_steel_grid_rotating_4",                 "RocksDF.png"           },
5479   { "df_steel_grid_rotating_4.xpos",            "3"                     },
5480   { "df_steel_grid_rotating_4.ypos",            "2"                     },
5481   { "df_steel_grid_rotating_4.frames",          "1"                     },
5482   { "df_steel_grid_rotating_4.EDITOR",          "RocksDF.png"           },
5483   { "df_steel_grid_rotating_4.EDITOR.xpos",     "3"                     },
5484   { "df_steel_grid_rotating_4.EDITOR.ypos",     "3"                     },
5485   { "df_steel_grid_rotating_4.EDITOR.frames",   "1"                     },
5486   { "df_steel_grid_rotating_5",                 "RocksDF.png"           },
5487   { "df_steel_grid_rotating_5.xpos",            "4"                     },
5488   { "df_steel_grid_rotating_5.ypos",            "2"                     },
5489   { "df_steel_grid_rotating_5.frames",          "1"                     },
5490   { "df_steel_grid_rotating_5.EDITOR",          "RocksDF.png"           },
5491   { "df_steel_grid_rotating_5.EDITOR.xpos",     "4"                     },
5492   { "df_steel_grid_rotating_5.EDITOR.ypos",     "3"                     },
5493   { "df_steel_grid_rotating_5.EDITOR.frames",   "1"                     },
5494   { "df_steel_grid_rotating_6",                 "RocksDF.png"           },
5495   { "df_steel_grid_rotating_6.xpos",            "5"                     },
5496   { "df_steel_grid_rotating_6.ypos",            "2"                     },
5497   { "df_steel_grid_rotating_6.frames",          "1"                     },
5498   { "df_steel_grid_rotating_6.EDITOR",          "RocksDF.png"           },
5499   { "df_steel_grid_rotating_6.EDITOR.xpos",     "5"                     },
5500   { "df_steel_grid_rotating_6.EDITOR.ypos",     "3"                     },
5501   { "df_steel_grid_rotating_6.EDITOR.frames",   "1"                     },
5502   { "df_steel_grid_rotating_7",                 "RocksDF.png"           },
5503   { "df_steel_grid_rotating_7.xpos",            "6"                     },
5504   { "df_steel_grid_rotating_7.ypos",            "2"                     },
5505   { "df_steel_grid_rotating_7.frames",          "1"                     },
5506   { "df_steel_grid_rotating_7.EDITOR",          "RocksDF.png"           },
5507   { "df_steel_grid_rotating_7.EDITOR.xpos",     "6"                     },
5508   { "df_steel_grid_rotating_7.EDITOR.ypos",     "3"                     },
5509   { "df_steel_grid_rotating_7.EDITOR.frames",   "1"                     },
5510   { "df_steel_grid_rotating_8",                 "RocksDF.png"           },
5511   { "df_steel_grid_rotating_8.xpos",            "7"                     },
5512   { "df_steel_grid_rotating_8.ypos",            "2"                     },
5513   { "df_steel_grid_rotating_8.frames",          "1"                     },
5514   { "df_steel_grid_rotating_8.EDITOR",          "RocksDF.png"           },
5515   { "df_steel_grid_rotating_8.EDITOR.xpos",     "7"                     },
5516   { "df_steel_grid_rotating_8.EDITOR.ypos",     "3"                     },
5517   { "df_steel_grid_rotating_8.EDITOR.frames",   "1"                     },
5518
5519   { "df_wooden_grid_rotating_1",                "RocksDF.png"           },
5520   { "df_wooden_grid_rotating_1.xpos",           "8"                     },
5521   { "df_wooden_grid_rotating_1.ypos",           "2"                     },
5522   { "df_wooden_grid_rotating_1.frames",         "1"                     },
5523   { "df_wooden_grid_rotating_1.EDITOR",         "RocksDF.png"           },
5524   { "df_wooden_grid_rotating_1.EDITOR.xpos",    "8"                     },
5525   { "df_wooden_grid_rotating_1.EDITOR.ypos",    "3"                     },
5526   { "df_wooden_grid_rotating_1.EDITOR.frames",  "1"                     },
5527   { "df_wooden_grid_rotating_2",                "RocksDF.png"           },
5528   { "df_wooden_grid_rotating_2.xpos",           "9"                     },
5529   { "df_wooden_grid_rotating_2.ypos",           "2"                     },
5530   { "df_wooden_grid_rotating_2.frames",         "1"                     },
5531   { "df_wooden_grid_rotating_2.EDITOR",         "RocksDF.png"           },
5532   { "df_wooden_grid_rotating_2.EDITOR.xpos",    "9"                     },
5533   { "df_wooden_grid_rotating_2.EDITOR.ypos",    "3"                     },
5534   { "df_wooden_grid_rotating_2.EDITOR.frames",  "1"                     },
5535   { "df_wooden_grid_rotating_3",                "RocksDF.png"           },
5536   { "df_wooden_grid_rotating_3.xpos",           "10"                    },
5537   { "df_wooden_grid_rotating_3.ypos",           "2"                     },
5538   { "df_wooden_grid_rotating_3.frames",         "1"                     },
5539   { "df_wooden_grid_rotating_3.EDITOR",         "RocksDF.png"           },
5540   { "df_wooden_grid_rotating_3.EDITOR.xpos",    "10"                    },
5541   { "df_wooden_grid_rotating_3.EDITOR.ypos",    "3"                     },
5542   { "df_wooden_grid_rotating_3.EDITOR.frames",  "1"                     },
5543   { "df_wooden_grid_rotating_4",                "RocksDF.png"           },
5544   { "df_wooden_grid_rotating_4.xpos",           "11"                    },
5545   { "df_wooden_grid_rotating_4.ypos",           "2"                     },
5546   { "df_wooden_grid_rotating_4.frames",         "1"                     },
5547   { "df_wooden_grid_rotating_4.EDITOR",         "RocksDF.png"           },
5548   { "df_wooden_grid_rotating_4.EDITOR.xpos",    "11"                    },
5549   { "df_wooden_grid_rotating_4.EDITOR.ypos",    "3"                     },
5550   { "df_wooden_grid_rotating_4.EDITOR.frames",  "1"                     },
5551   { "df_wooden_grid_rotating_5",                "RocksDF.png"           },
5552   { "df_wooden_grid_rotating_5.xpos",           "12"                    },
5553   { "df_wooden_grid_rotating_5.ypos",           "2"                     },
5554   { "df_wooden_grid_rotating_5.frames",         "1"                     },
5555   { "df_wooden_grid_rotating_5.EDITOR",         "RocksDF.png"           },
5556   { "df_wooden_grid_rotating_5.EDITOR.xpos",    "12"                    },
5557   { "df_wooden_grid_rotating_5.EDITOR.ypos",    "3"                     },
5558   { "df_wooden_grid_rotating_5.EDITOR.frames",  "1"                     },
5559   { "df_wooden_grid_rotating_6",                "RocksDF.png"           },
5560   { "df_wooden_grid_rotating_6.xpos",           "13"                    },
5561   { "df_wooden_grid_rotating_6.ypos",           "2"                     },
5562   { "df_wooden_grid_rotating_6.frames",         "1"                     },
5563   { "df_wooden_grid_rotating_6.EDITOR",         "RocksDF.png"           },
5564   { "df_wooden_grid_rotating_6.EDITOR.xpos",    "13"                    },
5565   { "df_wooden_grid_rotating_6.EDITOR.ypos",    "3"                     },
5566   { "df_wooden_grid_rotating_6.EDITOR.frames",  "1"                     },
5567   { "df_wooden_grid_rotating_7",                "RocksDF.png"           },
5568   { "df_wooden_grid_rotating_7.xpos",           "14"                    },
5569   { "df_wooden_grid_rotating_7.ypos",           "2"                     },
5570   { "df_wooden_grid_rotating_7.frames",         "1"                     },
5571   { "df_wooden_grid_rotating_7.EDITOR",         "RocksDF.png"           },
5572   { "df_wooden_grid_rotating_7.EDITOR.xpos",    "14"                    },
5573   { "df_wooden_grid_rotating_7.EDITOR.ypos",    "3"                     },
5574   { "df_wooden_grid_rotating_7.EDITOR.frames",  "1"                     },
5575   { "df_wooden_grid_rotating_8",                "RocksDF.png"           },
5576   { "df_wooden_grid_rotating_8.xpos",           "15"                    },
5577   { "df_wooden_grid_rotating_8.ypos",           "2"                     },
5578   { "df_wooden_grid_rotating_8.frames",         "1"                     },
5579   { "df_wooden_grid_rotating_8.EDITOR",         "RocksDF.png"           },
5580   { "df_wooden_grid_rotating_8.EDITOR.xpos",    "15"                    },
5581   { "df_wooden_grid_rotating_8.EDITOR.ypos",    "3"                     },
5582   { "df_wooden_grid_rotating_8.EDITOR.frames",  "1"                     },
5583
5584   { "df_fibre_optic_red_1",                     "RocksDF.png"           },
5585   { "df_fibre_optic_red_1.xpos",                "8"                     },
5586   { "df_fibre_optic_red_1.ypos",                "8"                     },
5587   { "df_fibre_optic_red_1.frames",              "1"                     },
5588   { "df_fibre_optic_red_1.EDITOR",              "RocksDF.png"           },
5589   { "df_fibre_optic_red_1.EDITOR.xpos",         "8"                     },
5590   { "df_fibre_optic_red_1.EDITOR.ypos",         "9"                     },
5591   { "df_fibre_optic_red_1.EDITOR.frames",       "1"                     },
5592   { "df_fibre_optic_red_2",                     "RocksDF.png"           },
5593   { "df_fibre_optic_red_2.xpos",                "9"                     },
5594   { "df_fibre_optic_red_2.ypos",                "8"                     },
5595   { "df_fibre_optic_red_2.frames",              "1"                     },
5596   { "df_fibre_optic_red_2.EDITOR",              "RocksDF.png"           },
5597   { "df_fibre_optic_red_2.EDITOR.xpos",         "9"                     },
5598   { "df_fibre_optic_red_2.EDITOR.ypos",         "9"                     },
5599   { "df_fibre_optic_red_2.EDITOR.frames",       "1"                     },
5600   { "df_fibre_optic_yellow_1",                  "RocksDF.png"           },
5601   { "df_fibre_optic_yellow_1.xpos",             "10"                    },
5602   { "df_fibre_optic_yellow_1.ypos",             "8"                     },
5603   { "df_fibre_optic_yellow_1.frames",           "1"                     },
5604   { "df_fibre_optic_yellow_1.EDITOR",           "RocksDF.png"           },
5605   { "df_fibre_optic_yellow_1.EDITOR.xpos",      "10"                    },
5606   { "df_fibre_optic_yellow_1.EDITOR.ypos",      "9"                     },
5607   { "df_fibre_optic_yellow_1.EDITOR.frames",    "1"                     },
5608   { "df_fibre_optic_yellow_2",                  "RocksDF.png"           },
5609   { "df_fibre_optic_yellow_2.xpos",             "11"                    },
5610   { "df_fibre_optic_yellow_2.ypos",             "8"                     },
5611   { "df_fibre_optic_yellow_2.frames",           "1"                     },
5612   { "df_fibre_optic_yellow_2.EDITOR",           "RocksDF.png"           },
5613   { "df_fibre_optic_yellow_2.EDITOR.xpos",      "11"                    },
5614   { "df_fibre_optic_yellow_2.EDITOR.ypos",      "9"                     },
5615   { "df_fibre_optic_yellow_2.EDITOR.frames",    "1"                     },
5616   { "df_fibre_optic_green_1",                   "RocksDF.png"           },
5617   { "df_fibre_optic_green_1.xpos",              "12"                    },
5618   { "df_fibre_optic_green_1.ypos",              "8"                     },
5619   { "df_fibre_optic_green_1.frames",            "1"                     },
5620   { "df_fibre_optic_green_1.EDITOR",            "RocksDF.png"           },
5621   { "df_fibre_optic_green_1.EDITOR.xpos",       "12"                    },
5622   { "df_fibre_optic_green_1.EDITOR.ypos",       "9"                     },
5623   { "df_fibre_optic_green_1.EDITOR.frames",     "1"                     },
5624   { "df_fibre_optic_green_2",                   "RocksDF.png"           },
5625   { "df_fibre_optic_green_2.xpos",              "13"                    },
5626   { "df_fibre_optic_green_2.ypos",              "8"                     },
5627   { "df_fibre_optic_green_2.frames",            "1"                     },
5628   { "df_fibre_optic_green_2.EDITOR",            "RocksDF.png"           },
5629   { "df_fibre_optic_green_2.EDITOR.xpos",       "13"                    },
5630   { "df_fibre_optic_green_2.EDITOR.ypos",       "9"                     },
5631   { "df_fibre_optic_green_2.EDITOR.frames",     "1"                     },
5632   { "df_fibre_optic_blue_1",                    "RocksDF.png"           },
5633   { "df_fibre_optic_blue_1.xpos",               "14"                    },
5634   { "df_fibre_optic_blue_1.ypos",               "8"                     },
5635   { "df_fibre_optic_blue_1.frames",             "1"                     },
5636   { "df_fibre_optic_blue_1.EDITOR",             "RocksDF.png"           },
5637   { "df_fibre_optic_blue_1.EDITOR.xpos",        "14"                    },
5638   { "df_fibre_optic_blue_1.EDITOR.ypos",        "9"                     },
5639   { "df_fibre_optic_blue_1.EDITOR.frames",      "1"                     },
5640   { "df_fibre_optic_blue_2",                    "RocksDF.png"           },
5641   { "df_fibre_optic_blue_2.xpos",               "15"                    },
5642   { "df_fibre_optic_blue_2.ypos",               "8"                     },
5643   { "df_fibre_optic_blue_2.frames",             "1"                     },
5644   { "df_fibre_optic_blue_2.EDITOR",             "RocksDF.png"           },
5645   { "df_fibre_optic_blue_2.EDITOR.xpos",        "15"                    },
5646   { "df_fibre_optic_blue_2.EDITOR.ypos",        "9"                     },
5647   { "df_fibre_optic_blue_2.EDITOR.frames",      "1"                     },
5648
5649   { "df_steel_wall",                            "RocksDF.png"           },
5650   { "df_steel_wall.xpos",                       "6"                     },
5651   { "df_steel_wall.ypos",                       "8"                     },
5652   { "df_steel_wall.frames",                     "1"                     },
5653
5654   { "df_wooden_wall",                           "RocksDF.png"           },
5655   { "df_wooden_wall.xpos",                      "7"                     },
5656   { "df_wooden_wall.ypos",                      "8"                     },
5657   { "df_wooden_wall.frames",                    "1"                     },
5658
5659   { "df_refractor",                             "RocksDF.png"           },
5660   { "df_refractor.xpos",                        "1"                     },
5661   { "df_refractor.ypos",                        "8"                     },
5662   { "df_refractor.frames",                      "1"                     },
5663
5664   { "df_cell",                                  "RocksDF.png"           },
5665   { "df_cell.xpos",                             "2"                     },
5666   { "df_cell.ypos",                             "8"                     },
5667   { "df_cell.frames",                           "1"                     },
5668
5669   { "df_mine",                                  "RocksDF.png"           },
5670   { "df_mine.xpos",                             "4"                     },
5671   { "df_mine.ypos",                             "8"                     },
5672   { "df_mine.frames",                           "1"                     },
5673
5674   // (these are only defined as elements to support ".PANEL" definitions)
5675   { "graphic_1",                                UNDEFINED_FILENAME      },
5676   { "graphic_2",                                UNDEFINED_FILENAME      },
5677   { "graphic_3",                                UNDEFINED_FILENAME      },
5678   { "graphic_4",                                UNDEFINED_FILENAME      },
5679   { "graphic_5",                                UNDEFINED_FILENAME      },
5680   { "graphic_6",                                UNDEFINED_FILENAME      },
5681   { "graphic_7",                                UNDEFINED_FILENAME      },
5682   { "graphic_8",                                UNDEFINED_FILENAME      },
5683
5684 #include "conf_chr.c"   // include auto-generated data structure definitions
5685 #include "conf_cus.c"   // include auto-generated data structure definitions
5686 #include "conf_grp.c"   // include auto-generated data structure definitions
5687
5688
5689   // ==========================================================================
5690   // image definitions not associated with game elements (menu screens etc.)
5691   // ==========================================================================
5692
5693   // keyword to stop parser: "NO_MORE_ELEMENT_IMAGES" <-- do not change!
5694
5695 #if 1
5696   // !!! TEMPORARILY STORED HERE -- PROBABLY TO BE CHANGED !!!
5697
5698   // (for testing, change filename back to "emc_objects dot png")
5699   { "emc_object",                               "RocksEMC.png"          },
5700 #if 0
5701   { "emc_object.scale_up_factor",               "2"                     },
5702 #endif
5703
5704   // (for testing, change filename back to "emc_players dot png")
5705   { "emc_sprite",                               "RocksEMC.png"          },
5706 #if 0
5707   { "emc_sprite.scale_up_factor",               "2"                     },
5708 #endif
5709 #endif
5710
5711   { "sp_frame_horizontal",                      "RocksSP.png"           },
5712   { "sp_frame_horizontal.xpos",                 "7"                     },
5713   { "sp_frame_horizontal.ypos",                 "14"                    },
5714   { "sp_frame_vertical",                        "RocksSP.png"           },
5715   { "sp_frame_vertical.xpos",                   "6"                     },
5716   { "sp_frame_vertical.ypos",                   "14"                    },
5717   { "sp_frame_corner",                          "RocksSP.png"           },
5718   { "sp_frame_corner.xpos",                     "5"                     },
5719   { "sp_frame_corner.ypos",                     "14"                    },
5720
5721   { "toon_1",                                   "RocksToons.png"        },
5722   { "toon_1.x",                                 "2"                     },
5723   { "toon_1.y",                                 "72"                    },
5724   { "toon_1.width",                             "40"                    },
5725   { "toon_1.height",                            "48"                    },
5726   { "toon_1.frames",                            "8"                     },
5727   { "toon_1.delay",                             "1"                     },
5728   { "toon_1.step_offset",                       "4"                     },
5729   { "toon_1.step_delay",                        "5"                     },
5730   { "toon_1.direction",                         "right"                 },
5731   { "toon_1.position",                          "bottom"                },
5732
5733   { "toon_2",                                   "RocksToons.png"        },
5734   { "toon_2.x",                                 "2"                     },
5735   { "toon_2.y",                                 "186"                   },
5736   { "toon_2.width",                             "40"                    },
5737   { "toon_2.height",                            "48"                    },
5738   { "toon_2.frames",                            "8"                     },
5739   { "toon_2.delay",                             "1"                     },
5740   { "toon_2.step_offset",                       "4"                     },
5741   { "toon_2.step_delay",                        "5"                     },
5742   { "toon_2.direction",                         "left"                  },
5743   { "toon_2.position",                          "bottom"                },
5744
5745   { "toon_3",                                   "RocksToons.png"        },
5746   { "toon_3.x",                                 "2"                     },
5747   { "toon_3.y",                                 "125"                   },
5748   { "toon_3.width",                             "48"                    },
5749   { "toon_3.height",                            "56"                    },
5750   { "toon_3.frames",                            "8"                     },
5751   { "toon_3.delay",                             "1"                     },
5752   { "toon_3.step_offset",                       "4"                     },
5753   { "toon_3.step_delay",                        "5"                     },
5754   { "toon_3.direction",                         "right"                 },
5755   { "toon_3.position",                          "bottom"                },
5756
5757   { "toon_4",                                   "RocksToons.png"        },
5758   { "toon_4.x",                                 "327"                   },
5759   { "toon_4.y",                                 "10"                    },
5760   { "toon_4.width",                             "80"                    },
5761   { "toon_4.height",                            "110"                   },
5762   { "toon_4.frames",                            "1"                     },
5763   { "toon_4.delay",                             "1"                     },
5764   { "toon_4.step_offset",                       "1"                     },
5765   { "toon_4.step_delay",                        "1"                     },
5766   { "toon_4.direction",                         "up"                    },
5767   { "toon_4.position",                          "any"                   },
5768
5769   { "toon_5",                                   "RocksToons.png"        },
5770   { "toon_5.x",                                 "2"                     },
5771   { "toon_5.y",                                 "2"                     },
5772   { "toon_5.width",                             "32"                    },
5773   { "toon_5.height",                            "30"                    },
5774   { "toon_5.frames",                            "8"                     },
5775   { "toon_5.delay",                             "2"                     },
5776   { "toon_5.anim_mode",                         "pingpong2"             },
5777   { "toon_5.step_offset",                       "2"                     },
5778   { "toon_5.step_delay",                        "1"                     },
5779   { "toon_5.direction",                         "right"                 },
5780   { "toon_5.position",                          "upper"                 },
5781
5782   { "toon_6",                                   "RocksToons.png"        },
5783   { "toon_6.x",                                 "2"                     },
5784   { "toon_6.y",                                 "37"                    },
5785   { "toon_6.width",                             "32"                    },
5786   { "toon_6.height",                            "30"                    },
5787   { "toon_6.frames",                            "8"                     },
5788   { "toon_6.delay",                             "2"                     },
5789   { "toon_6.anim_mode",                         "pingpong2"             },
5790   { "toon_6.step_offset",                       "2"                     },
5791   { "toon_6.step_delay",                        "1"                     },
5792   { "toon_6.direction",                         "left"                  },
5793   { "toon_6.position",                          "upper"                 },
5794
5795   { "toon_7",                                   "RocksMore.png"         },
5796   { "toon_7.xpos",                              "0"                     },
5797   { "toon_7.ypos",                              "6"                     },
5798   { "toon_7.frames",                            "16"                    },
5799   { "toon_7.delay",                             "2"                     },
5800   { "toon_7.direction",                         "down"                  },
5801   { "toon_7.position",                          "any"                   },
5802
5803   { "toon_8",                                   "RocksHeroes.png"       },
5804   { "toon_8.xpos",                              "4"                     },
5805   { "toon_8.ypos",                              "1"                     },
5806   { "toon_8.frames",                            "4"                     },
5807   { "toon_8.delay",                             "4"                     },
5808   { "toon_8.direction",                         "right"                 },
5809   { "toon_8.position",                          "bottom"                },
5810
5811   { "toon_9",                                   "RocksHeroes.png"       },
5812   { "toon_9.xpos",                              "8"                     },
5813   { "toon_9.ypos",                              "7"                     },
5814   { "toon_9.frames",                            "4"                     },
5815   { "toon_9.delay",                             "2"                     },
5816   { "toon_9.direction",                         "left"                  },
5817   { "toon_9.position",                          "bottom"                },
5818
5819   { "toon_10",                                  "RocksHeroes.png"       },
5820   { "toon_10.xpos",                             "12"                    },
5821   { "toon_10.ypos",                             "7"                     },
5822   { "toon_10.frames",                           "4"                     },
5823   { "toon_10.delay",                            "2"                     },
5824   { "toon_10.direction",                        "right"                 },
5825   { "toon_10.position",                         "bottom"                },
5826
5827   { "toon_11",                                  "RocksHeroes.png"       },
5828   { "toon_11.xpos",                             "8"                     },
5829   { "toon_11.ypos",                             "5"                     },
5830   { "toon_11.frames",                           "4"                     },
5831   { "toon_11.delay",                            "2"                     },
5832   { "toon_11.direction",                        "left"                  },
5833   { "toon_11.position",                         "bottom"                },
5834
5835   { "toon_12",                                  "RocksHeroes.png"       },
5836   { "toon_12.xpos",                             "12"                    },
5837   { "toon_12.ypos",                             "5"                     },
5838   { "toon_12.frames",                           "4"                     },
5839   { "toon_12.delay",                            "2"                     },
5840   { "toon_12.direction",                        "right"                 },
5841   { "toon_12.position",                         "bottom"                },
5842
5843   { "toon_13",                                  "RocksHeroes.png"       },
5844   { "toon_13.xpos",                             "8"                     },
5845   { "toon_13.ypos",                             "1"                     },
5846   { "toon_13.frames",                           "4"                     },
5847   { "toon_13.delay",                            "2"                     },
5848   { "toon_13.direction",                        "left"                  },
5849   { "toon_13.position",                         "bottom"                },
5850
5851   { "toon_14",                                  "RocksHeroes.png"       },
5852   { "toon_14.xpos",                             "12"                    },
5853   { "toon_14.ypos",                             "1"                     },
5854   { "toon_14.frames",                           "4"                     },
5855   { "toon_14.delay",                            "2"                     },
5856   { "toon_14.direction",                        "right"                 },
5857   { "toon_14.position",                         "bottom"                },
5858
5859   { "toon_15",                                  "RocksHeroes.png"       },
5860   { "toon_15.xpos",                             "8"                     },
5861   { "toon_15.ypos",                             "3"                     },
5862   { "toon_15.frames",                           "4"                     },
5863   { "toon_15.delay",                            "2"                     },
5864   { "toon_15.direction",                        "left"                  },
5865   { "toon_15.position",                         "bottom"                },
5866
5867   { "toon_16",                                  "RocksHeroes.png"       },
5868   { "toon_16.xpos",                             "12"                    },
5869   { "toon_16.ypos",                             "3"                     },
5870   { "toon_16.frames",                           "4"                     },
5871   { "toon_16.delay",                            "2"                     },
5872   { "toon_16.direction",                        "right"                 },
5873   { "toon_16.position",                         "bottom"                },
5874
5875   { "toon_17",                                  "RocksHeroes.png"       },
5876   { "toon_17.xpos",                             "8"                     },
5877   { "toon_17.ypos",                             "9"                     },
5878   { "toon_17.frames",                           "8"                     },
5879   { "toon_17.delay",                            "2"                     },
5880   { "toon_17.direction",                        "left"                  },
5881   { "toon_17.position",                         "any"                   },
5882
5883   { "toon_18",                                  "RocksHeroes.png"       },
5884   { "toon_18.xpos",                             "8"                     },
5885   { "toon_18.ypos",                             "9"                     },
5886   { "toon_18.frames",                           "8"                     },
5887   { "toon_18.delay",                            "2"                     },
5888   { "toon_18.direction",                        "right"                 },
5889   { "toon_18.position",                         "any"                   },
5890
5891   { "toon_19",                                  "RocksElements.png"     },
5892   { "toon_19.xpos",                             "8"                     },
5893   { "toon_19.ypos",                             "0"                     },
5894   { "toon_19.frames",                           "2"                     },
5895   { "toon_19.delay",                            "4"                     },
5896   { "toon_19.direction",                        "down"                  },
5897   { "toon_19.position",                         "any"                   },
5898
5899   { "toon_20",                                  "RocksElements.png"     },
5900   { "toon_20.xpos",                             "10"                    },
5901   { "toon_20.ypos",                             "0"                     },
5902   { "toon_20.frames",                           "2"                     },
5903   { "toon_20.delay",                            "4"                     },
5904   { "toon_20.direction",                        "down"                  },
5905   { "toon_20.position",                         "any"                   },
5906
5907   { "gfx.global.anim_1",                        UNDEFINED_FILENAME      },
5908   { "gfx.global.anim_2",                        UNDEFINED_FILENAME      },
5909   { "gfx.global.anim_3",                        UNDEFINED_FILENAME      },
5910   { "gfx.global.anim_4",                        UNDEFINED_FILENAME      },
5911   { "gfx.global.anim_5",                        UNDEFINED_FILENAME      },
5912   { "gfx.global.anim_6",                        UNDEFINED_FILENAME      },
5913   { "gfx.global.anim_7",                        UNDEFINED_FILENAME      },
5914   { "gfx.global.anim_8",                        UNDEFINED_FILENAME      },
5915   { "gfx.global.anim_9",                        UNDEFINED_FILENAME      },
5916   { "gfx.global.anim_10",                       UNDEFINED_FILENAME      },
5917   { "gfx.global.anim_11",                       UNDEFINED_FILENAME      },
5918   { "gfx.global.anim_12",                       UNDEFINED_FILENAME      },
5919   { "gfx.global.anim_13",                       UNDEFINED_FILENAME      },
5920   { "gfx.global.anim_14",                       UNDEFINED_FILENAME      },
5921   { "gfx.global.anim_15",                       UNDEFINED_FILENAME      },
5922   { "gfx.global.anim_16",                       UNDEFINED_FILENAME      },
5923   { "gfx.global.anim_17",                       UNDEFINED_FILENAME      },
5924   { "gfx.global.anim_18",                       UNDEFINED_FILENAME      },
5925   { "gfx.global.anim_19",                       UNDEFINED_FILENAME      },
5926   { "gfx.global.anim_20",                       UNDEFINED_FILENAME      },
5927   { "gfx.global.anim_21",                       UNDEFINED_FILENAME      },
5928   { "gfx.global.anim_22",                       UNDEFINED_FILENAME      },
5929   { "gfx.global.anim_23",                       UNDEFINED_FILENAME      },
5930   { "gfx.global.anim_24",                       UNDEFINED_FILENAME      },
5931   { "gfx.global.anim_25",                       UNDEFINED_FILENAME      },
5932   { "gfx.global.anim_26",                       UNDEFINED_FILENAME      },
5933   { "gfx.global.anim_27",                       UNDEFINED_FILENAME      },
5934   { "gfx.global.anim_28",                       UNDEFINED_FILENAME      },
5935   { "gfx.global.anim_29",                       UNDEFINED_FILENAME      },
5936   { "gfx.global.anim_30",                       UNDEFINED_FILENAME      },
5937   { "gfx.global.anim_31",                       UNDEFINED_FILENAME      },
5938   { "gfx.global.anim_32",                       UNDEFINED_FILENAME      },
5939
5940   { "global.anim_1",                            UNDEFINED_FILENAME      },
5941   { "global.anim_2",                            UNDEFINED_FILENAME      },
5942   { "global.anim_3",                            UNDEFINED_FILENAME      },
5943   { "global.anim_4",                            UNDEFINED_FILENAME      },
5944   { "global.anim_5",                            UNDEFINED_FILENAME      },
5945   { "global.anim_6",                            UNDEFINED_FILENAME      },
5946   { "global.anim_7",                            UNDEFINED_FILENAME      },
5947   { "global.anim_8",                            UNDEFINED_FILENAME      },
5948   { "global.anim_9",                            UNDEFINED_FILENAME      },
5949   { "global.anim_10",                           UNDEFINED_FILENAME      },
5950   { "global.anim_11",                           UNDEFINED_FILENAME      },
5951   { "global.anim_12",                           UNDEFINED_FILENAME      },
5952   { "global.anim_13",                           UNDEFINED_FILENAME      },
5953   { "global.anim_14",                           UNDEFINED_FILENAME      },
5954   { "global.anim_15",                           UNDEFINED_FILENAME      },
5955   { "global.anim_16",                           UNDEFINED_FILENAME      },
5956   { "global.anim_17",                           UNDEFINED_FILENAME      },
5957   { "global.anim_18",                           UNDEFINED_FILENAME      },
5958   { "global.anim_19",                           UNDEFINED_FILENAME      },
5959   { "global.anim_20",                           UNDEFINED_FILENAME      },
5960   { "global.anim_21",                           UNDEFINED_FILENAME      },
5961   { "global.anim_22",                           UNDEFINED_FILENAME      },
5962   { "global.anim_23",                           UNDEFINED_FILENAME      },
5963   { "global.anim_24",                           UNDEFINED_FILENAME      },
5964   { "global.anim_25",                           UNDEFINED_FILENAME      },
5965   { "global.anim_26",                           UNDEFINED_FILENAME      },
5966   { "global.anim_27",                           UNDEFINED_FILENAME      },
5967   { "global.anim_28",                           UNDEFINED_FILENAME      },
5968   { "global.anim_29",                           UNDEFINED_FILENAME      },
5969   { "global.anim_30",                           UNDEFINED_FILENAME      },
5970   { "global.anim_31",                           UNDEFINED_FILENAME      },
5971   { "global.anim_32",                           UNDEFINED_FILENAME      },
5972
5973   { "internal.global.toon_default",             UNDEFINED_FILENAME      },
5974   { "internal.global.toon_default.anim_mode",   "random"                },
5975
5976   { "internal.global.anim_default",             UNDEFINED_FILENAME      },
5977
5978   { "menu.calibrate_red",                       "RocksElements.png"     },
5979   { "menu.calibrate_red.xpos",                  "12"                    },
5980   { "menu.calibrate_red.ypos",                  "8"                     },
5981   { "menu.calibrate_red.frames",                "1"                     },
5982   { "menu.calibrate_blue",                      "RocksElements.png"     },
5983   { "menu.calibrate_blue.xpos",                 "13"                    },
5984   { "menu.calibrate_blue.ypos",                 "8"                     },
5985   { "menu.calibrate_blue.frames",               "1"                     },
5986   { "menu.calibrate_yellow",                    "RocksElements.png"     },
5987   { "menu.calibrate_yellow.xpos",               "14"                    },
5988   { "menu.calibrate_yellow.ypos",               "8"                     },
5989   { "menu.calibrate_yellow.frames",             "1"                     },
5990
5991   { "menu.button",                              "RocksElements.png"     },
5992   { "menu.button.xpos",                         "13"                    },
5993   { "menu.button.ypos",                         "8"                     },
5994   { "menu.button.frames",                       "1"                     },
5995   { "menu.button.active",                       "RocksElements.png"     },
5996   { "menu.button.active.xpos",                  "12"                    },
5997   { "menu.button.active.ypos",                  "8"                     },
5998   { "menu.button.active.frames",                "1"                     },
5999
6000   { "menu.button_left",                         "RocksDC.png"           },
6001   { "menu.button_left.xpos",                    "8"                     },
6002   { "menu.button_left.ypos",                    "8"                     },
6003   { "menu.button_left.frames",                  "1"                     },
6004   { "menu.button_left.active",                  "RocksDC.png"           },
6005   { "menu.button_left.active.xpos",             "8"                     },
6006   { "menu.button_left.active.ypos",             "9"                     },
6007   { "menu.button_left.active.frames",           "1"                     },
6008   { "menu.button_right",                        "RocksDC.png"           },
6009   { "menu.button_right.xpos",                   "9"                     },
6010   { "menu.button_right.ypos",                   "8"                     },
6011   { "menu.button_right.frames",                 "1"                     },
6012   { "menu.button_right.active",                 "RocksDC.png"           },
6013   { "menu.button_right.active.xpos",            "9"                     },
6014   { "menu.button_right.active.ypos",            "9"                     },
6015   { "menu.button_right.active.frames",          "1"                     },
6016   { "menu.button_up",                           "RocksDC.png"           },
6017   { "menu.button_up.xpos",                      "10"                    },
6018   { "menu.button_up.ypos",                      "8"                     },
6019   { "menu.button_up.frames",                    "1"                     },
6020   { "menu.button_up.active",                    "RocksDC.png"           },
6021   { "menu.button_up.active.xpos",               "10"                    },
6022   { "menu.button_up.active.ypos",               "9"                     },
6023   { "menu.button_up.active.frames",             "1"                     },
6024   { "menu.button_down",                         "RocksDC.png"           },
6025   { "menu.button_down.xpos",                    "11"                    },
6026   { "menu.button_down.ypos",                    "8"                     },
6027   { "menu.button_down.frames",                  "1"                     },
6028   { "menu.button_down.active",                  "RocksDC.png"           },
6029   { "menu.button_down.active.xpos",             "11"                    },
6030   { "menu.button_down.active.ypos",             "9"                     },
6031   { "menu.button_down.active.frames",           "1"                     },
6032
6033   { "menu.button_enter_menu",                   UNDEFINED_FILENAME      },
6034   { "menu.button_enter_menu.clone_from",        "menu.button_right"     },
6035   { "menu.button_enter_menu.active",            UNDEFINED_FILENAME      },
6036   { "menu.button_enter_menu.active.clone_from", "menu.button_right.active" },
6037   { "menu.button_leave_menu",                   UNDEFINED_FILENAME      },
6038   { "menu.button_leave_menu.clone_from",        "menu.button_left"      },
6039   { "menu.button_leave_menu.active",            UNDEFINED_FILENAME      },
6040   { "menu.button_leave_menu.active.clone_from", "menu.button_left.active" },
6041
6042   { "menu.button_next_level",                   UNDEFINED_FILENAME      },
6043   { "menu.button_next_level.clone_from",        "menu.button_right"     },
6044   { "menu.button_next_level.active",            UNDEFINED_FILENAME      },
6045   { "menu.button_next_level.active.clone_from", "menu.button_right.active" },
6046   { "menu.button_prev_level",                   UNDEFINED_FILENAME      },
6047   { "menu.button_prev_level.clone_from",        "menu.button_left"      },
6048   { "menu.button_prev_level.active",            UNDEFINED_FILENAME      },
6049   { "menu.button_prev_level.active.clone_from", "menu.button_left.active" },
6050
6051   { "menu.button_name",                         UNDEFINED_FILENAME      },
6052   { "menu.button_name.clone_from",              "menu.button"           },
6053   { "menu.button_name.active",                  UNDEFINED_FILENAME      },
6054   { "menu.button_name.active.clone_from",       "menu.button.active"    },
6055   { "menu.button_levels",                       UNDEFINED_FILENAME      },
6056   { "menu.button_levels.clone_from",            "menu.button_right"     },
6057   { "menu.button_levels.active",                UNDEFINED_FILENAME      },
6058   { "menu.button_levels.active.clone_from",     "menu.button_right.active" },
6059   { "menu.button_scores",                       UNDEFINED_FILENAME      },
6060   { "menu.button_scores.clone_from",            "menu.button"           },
6061   { "menu.button_scores.active",                UNDEFINED_FILENAME      },
6062   { "menu.button_scores.active.clone_from",     "menu.button.active"    },
6063   { "menu.button_editor",                       UNDEFINED_FILENAME      },
6064   { "menu.button_editor.clone_from",            "menu.button"           },
6065   { "menu.button_editor.active",                UNDEFINED_FILENAME      },
6066   { "menu.button_editor.active.clone_from",     "menu.button.active"    },
6067   { "menu.button_info",                         UNDEFINED_FILENAME      },
6068   { "menu.button_info.clone_from",              "menu.button_right"     },
6069   { "menu.button_info.active",                  UNDEFINED_FILENAME      },
6070   { "menu.button_info.active.clone_from",       "menu.button_right.active" },
6071   { "menu.button_game",                         UNDEFINED_FILENAME      },
6072   { "menu.button_game.clone_from",              "menu.button"           },
6073   { "menu.button_game.active",                  UNDEFINED_FILENAME      },
6074   { "menu.button_game.active.clone_from",       "menu.button.active"    },
6075   { "menu.button_setup",                        UNDEFINED_FILENAME      },
6076   { "menu.button_setup.clone_from",             "menu.button_right"     },
6077   { "menu.button_setup.active",                 UNDEFINED_FILENAME      },
6078   { "menu.button_setup.active.clone_from",      "menu.button_right.active" },
6079   { "menu.button_quit",                         UNDEFINED_FILENAME      },
6080   { "menu.button_quit.clone_from",              "menu.button"           },
6081   { "menu.button_quit.active",                  UNDEFINED_FILENAME      },
6082   { "menu.button_quit.active.clone_from",       "menu.button.active"    },
6083
6084   { "menu.button_first_level",                  UNDEFINED_FILENAME      },
6085   { "menu.button_first_level.active",           UNDEFINED_FILENAME      },
6086   { "menu.button_last_level",                   UNDEFINED_FILENAME      },
6087   { "menu.button_last_level.active",            UNDEFINED_FILENAME      },
6088   { "menu.button_level_number",                 UNDEFINED_FILENAME      },
6089   { "menu.button_level_number.active",          UNDEFINED_FILENAME      },
6090
6091   { "menu.button_insert_solution",              UNDEFINED_FILENAME      },
6092   { "menu.button_insert_solution.active",       UNDEFINED_FILENAME      },
6093   { "menu.button_play_solution",                UNDEFINED_FILENAME      },
6094   { "menu.button_play_solution.active",         UNDEFINED_FILENAME      },
6095
6096   { "menu.scrollbar",                           "RocksDC.png"           },
6097   { "menu.scrollbar.xpos",                      "8"                     },
6098   { "menu.scrollbar.ypos",                      "10"                    },
6099   { "menu.scrollbar.frames",                    "1"                     },
6100   { "menu.scrollbar.active",                    "RocksDC.png"           },
6101   { "menu.scrollbar.active.xpos",               "9"                     },
6102   { "menu.scrollbar.active.ypos",               "10"                    },
6103   { "menu.scrollbar.active.frames",             "1"                     },
6104
6105   { "gfx.game.panel.time_anim",                 "RocksDoorMM.png"       },
6106   { "gfx.game.panel.time_anim.x",               "5"                     },
6107   { "gfx.game.panel.time_anim.y",               "0"                     },
6108   { "gfx.game.panel.time_anim.width",           "90"                    },
6109   { "gfx.game.panel.time_anim.height",          "35"                    },
6110   { "gfx.game.panel.time_anim.frames",          "1"                     },
6111   { "gfx.game.panel.time_anim.active",          "RocksDoorMM.png"       },
6112   { "gfx.game.panel.time_anim.active.x",        "105"                   },
6113   { "gfx.game.panel.time_anim.active.y",        "0"                     },
6114   { "gfx.game.panel.time_anim.active.width",    "90"                    },
6115   { "gfx.game.panel.time_anim.active.height",   "35"                    },
6116   { "gfx.game.panel.time_anim.active.frames",   "1"                     },
6117
6118   { "gfx.game.panel.health_anim",               "RocksDoorMM.png"       },
6119   { "gfx.game.panel.health_anim.x",             "5"                     },
6120   { "gfx.game.panel.health_anim.y",             "35"                    },
6121   { "gfx.game.panel.health_anim.width",         "90"                    },
6122   { "gfx.game.panel.health_anim.height",        "35"                    },
6123   { "gfx.game.panel.health_anim.frames",        "1"                     },
6124   { "gfx.game.panel.health_anim.active",        "RocksDoorMM.png"       },
6125   { "gfx.game.panel.health_anim.active.x",      "105"                   },
6126   { "gfx.game.panel.health_anim.active.y",      "35"                    },
6127   { "gfx.game.panel.health_anim.active.width",  "90"                    },
6128   { "gfx.game.panel.health_anim.active.height", "35"                    },
6129   { "gfx.game.panel.health_anim.active.frames", "1"                     },
6130
6131   { "gfx.game.button.stop",                     "RocksDoor.png"         },
6132   { "gfx.game.button.stop.x",                   "305"                   },
6133   { "gfx.game.button.stop.y",                   "185"                   },
6134   { "gfx.game.button.stop.width",               "30"                    },
6135   { "gfx.game.button.stop.height",              "30"                    },
6136   { "gfx.game.button.stop.pressed_xoffset",     "-100"                  },
6137   { "gfx.game.button.pause",                    "RocksDoor.png"         },
6138   { "gfx.game.button.pause.x",                  "335"                   },
6139   { "gfx.game.button.pause.y",                  "185"                   },
6140   { "gfx.game.button.pause.width",              "30"                    },
6141   { "gfx.game.button.pause.height",             "30"                    },
6142   { "gfx.game.button.pause.pressed_xoffset",    "-100"                  },
6143   { "gfx.game.button.play",                     "RocksDoor.png"         },
6144   { "gfx.game.button.play.x",                   "365"                   },
6145   { "gfx.game.button.play.y",                   "185"                   },
6146   { "gfx.game.button.play.width",               "30"                    },
6147   { "gfx.game.button.play.height",              "30"                    },
6148   { "gfx.game.button.play.pressed_xoffset",     "-100"                  },
6149
6150   { "gfx.game.button.undo",                     "RocksDoor2.png"        },
6151   { "gfx.game.button.undo.x",                   "105"                   },
6152   { "gfx.game.button.undo.y",                   "20"                    },
6153   { "gfx.game.button.undo.width",               "30"                    },
6154   { "gfx.game.button.undo.height",              "30"                    },
6155   { "gfx.game.button.undo.pressed_xoffset",     "-100"                  },
6156   { "gfx.game.button.redo",                     "RocksDoor2.png"        },
6157   { "gfx.game.button.redo.x",                   "165"                   },
6158   { "gfx.game.button.redo.y",                   "20"                    },
6159   { "gfx.game.button.redo.width",               "30"                    },
6160   { "gfx.game.button.redo.height",              "30"                    },
6161   { "gfx.game.button.redo.pressed_xoffset",     "-100"                  },
6162
6163   { "gfx.game.button.save",                     "RocksDoor2.png"        },
6164   { "gfx.game.button.save.x",                   "105"                   },
6165   { "gfx.game.button.save.y",                   "50"                    },
6166   { "gfx.game.button.save.width",               "30"                    },
6167   { "gfx.game.button.save.height",              "30"                    },
6168   { "gfx.game.button.save.pressed_xoffset",     "-100"                  },
6169   { "gfx.game.button.pause2",                   "RocksDoor2.png"        },
6170   { "gfx.game.button.pause2.x",                 "135"                   },
6171   { "gfx.game.button.pause2.y",                 "50"                    },
6172   { "gfx.game.button.pause2.width",             "30"                    },
6173   { "gfx.game.button.pause2.height",            "30"                    },
6174   { "gfx.game.button.pause2.pressed_xoffset",   "-100"                  },
6175   { "gfx.game.button.pause2.active_yoffset",    "-30"                   },
6176   { "gfx.game.button.load",                     "RocksDoor2.png"        },
6177   { "gfx.game.button.load.x",                   "165"                   },
6178   { "gfx.game.button.load.y",                   "50"                    },
6179   { "gfx.game.button.load.width",               "30"                    },
6180   { "gfx.game.button.load.height",              "30"                    },
6181   { "gfx.game.button.load.pressed_xoffset",     "-100"                  },
6182
6183   { "gfx.game.button.sound_music",              "RocksDoor.png"         },
6184   { "gfx.game.button.sound_music.x",            "305"                   },
6185   { "gfx.game.button.sound_music.y",            "245"                   },
6186   { "gfx.game.button.sound_music.width",        "30"                    },
6187   { "gfx.game.button.sound_music.height",       "30"                    },
6188   { "gfx.game.button.sound_music.pressed_xoffset", "-100"               },
6189   { "gfx.game.button.sound_music.active_yoffset", "-30"                 },
6190   { "gfx.game.button.sound_loops",              "RocksDoor.png"         },
6191   { "gfx.game.button.sound_loops.x",            "335"                   },
6192   { "gfx.game.button.sound_loops.y",            "245"                   },
6193   { "gfx.game.button.sound_loops.width",        "30"                    },
6194   { "gfx.game.button.sound_loops.height",       "30"                    },
6195   { "gfx.game.button.sound_loops.pressed_xoffset", "-100"               },
6196   { "gfx.game.button.sound_loops.active_yoffset", "-30"                 },
6197   { "gfx.game.button.sound_simple",             "RocksDoor.png"         },
6198   { "gfx.game.button.sound_simple.x",           "365"                   },
6199   { "gfx.game.button.sound_simple.y",           "245"                   },
6200   { "gfx.game.button.sound_simple.width",       "30"                    },
6201   { "gfx.game.button.sound_simple.height",      "30"                    },
6202   { "gfx.game.button.sound_simple.pressed_xoffset", "-100"              },
6203   { "gfx.game.button.sound_simple.active_yoffset", "-30"                },
6204
6205   { "gfx.game.button.panel_stop",               UNDEFINED_FILENAME      },
6206   { "gfx.game.button.panel_pause",              UNDEFINED_FILENAME      },
6207   { "gfx.game.button.panel_play",               UNDEFINED_FILENAME      },
6208
6209   { "gfx.game.button.panel_sound_music",        UNDEFINED_FILENAME      },
6210   { "gfx.game.button.panel_sound_loops",        UNDEFINED_FILENAME      },
6211   { "gfx.game.button.panel_sound_simple",       UNDEFINED_FILENAME      },
6212
6213   { "gfx.tape.button.eject",                    "RocksDoor.png"         },
6214   { "gfx.tape.button.eject.x",                  "305"                   },
6215   { "gfx.tape.button.eject.y",                  "357"                   },
6216   { "gfx.tape.button.eject.width",              "18"                    },
6217   { "gfx.tape.button.eject.height",             "18"                    },
6218   { "gfx.tape.button.eject.pressed_xoffset",    "-100"                  },
6219   { "gfx.tape.button.extra",                    "RocksDoor.png"         },
6220   { "gfx.tape.button.extra.x",                  "505"                   },
6221   { "gfx.tape.button.extra.y",                  "357"                   },
6222   { "gfx.tape.button.extra.width",              "18"                    },
6223   { "gfx.tape.button.extra.height",             "18"                    },
6224   { "gfx.tape.button.extra.pressed_xoffset",    "-100"                  },
6225   { "gfx.tape.button.stop",                     "RocksDoor.png"         },
6226   { "gfx.tape.button.stop.x",                   "323"                   },
6227   { "gfx.tape.button.stop.y",                   "357"                   },
6228   { "gfx.tape.button.stop.width",               "18"                    },
6229   { "gfx.tape.button.stop.height",              "18"                    },
6230   { "gfx.tape.button.stop.pressed_xoffset",     "-100"                  },
6231   { "gfx.tape.button.pause",                    "RocksDoor.png"         },
6232   { "gfx.tape.button.pause.x",                  "341"                   },
6233   { "gfx.tape.button.pause.y",                  "357"                   },
6234   { "gfx.tape.button.pause.width",              "18"                    },
6235   { "gfx.tape.button.pause.height",             "18"                    },
6236   { "gfx.tape.button.pause.pressed_xoffset",    "-100"                  },
6237   { "gfx.tape.button.record",                   "RocksDoor.png"         },
6238   { "gfx.tape.button.record.x",                 "359"                   },
6239   { "gfx.tape.button.record.y",                 "357"                   },
6240   { "gfx.tape.button.record.width",             "18"                    },
6241   { "gfx.tape.button.record.height",            "18"                    },
6242   { "gfx.tape.button.record.pressed_xoffset",   "-100"                  },
6243   { "gfx.tape.button.play",                     "RocksDoor.png"         },
6244   { "gfx.tape.button.play.x",                   "377"                   },
6245   { "gfx.tape.button.play.y",                   "357"                   },
6246   { "gfx.tape.button.play.width",               "18"                    },
6247   { "gfx.tape.button.play.height",              "18"                    },
6248   { "gfx.tape.button.play.pressed_xoffset",     "-100"                  },
6249
6250   { "gfx.tape.button.insert_solution",          UNDEFINED_FILENAME      },
6251   { "gfx.tape.button.play_solution",            UNDEFINED_FILENAME      },
6252
6253   { "gfx.tape.symbol.eject",                    UNDEFINED_FILENAME      },
6254   { "gfx.tape.symbol.stop",                     UNDEFINED_FILENAME      },
6255   { "gfx.tape.symbol.pause",                    "RocksDoor.png"         },
6256   { "gfx.tape.symbol.pause.x",                  "340"                   },
6257   { "gfx.tape.symbol.pause.y",                  "321"                   },
6258   { "gfx.tape.symbol.pause.width",              "17"                    },
6259   { "gfx.tape.symbol.pause.height",             "13"                    },
6260   { "gfx.tape.symbol.record",                   "RocksDoor.png"         },
6261   { "gfx.tape.symbol.record.x",                 "325"                   },
6262   { "gfx.tape.symbol.record.y",                 "321"                   },
6263   { "gfx.tape.symbol.record.width",             "16"                    },
6264   { "gfx.tape.symbol.record.height",            "16"                    },
6265   { "gfx.tape.symbol.play",                     "RocksDoor.png"         },
6266   { "gfx.tape.symbol.play.x",                   "357"                   },
6267   { "gfx.tape.symbol.play.y",                   "321"                   },
6268   { "gfx.tape.symbol.play.width",               "11"                    },
6269   { "gfx.tape.symbol.play.height",              "13"                    },
6270   { "gfx.tape.symbol.fast_forward",             "RocksDoor.png"         },
6271   { "gfx.tape.symbol.fast_forward.x",           "539"                   },
6272   { "gfx.tape.symbol.fast_forward.y",           "193"                   },
6273   { "gfx.tape.symbol.fast_forward.width",       "27"                    },
6274   { "gfx.tape.symbol.fast_forward.height",      "13"                    },
6275   { "gfx.tape.symbol.warp_forward",             "RocksDoor.png"         },
6276   { "gfx.tape.symbol.warp_forward.x",           "539"                   },
6277   { "gfx.tape.symbol.warp_forward.y",           "152"                   },
6278   { "gfx.tape.symbol.warp_forward.width",       "27"                    },
6279   { "gfx.tape.symbol.warp_forward.height",      "13"                    },
6280   { "gfx.tape.symbol.warp_forward_blind",       "RocksDoor.png"         },
6281   { "gfx.tape.symbol.warp_forward_blind.x",     "539"                   },
6282   { "gfx.tape.symbol.warp_forward_blind.y",     "165"                   },
6283   { "gfx.tape.symbol.warp_forward_blind.width", "27"                    },
6284   { "gfx.tape.symbol.warp_forward_blind.height","13"                    },
6285   { "gfx.tape.symbol.pause_before_end",         "RocksDoor.png"         },
6286   { "gfx.tape.symbol.pause_before_end.x",       "539"                   },
6287   { "gfx.tape.symbol.pause_before_end.y",       "221"                   },
6288   { "gfx.tape.symbol.pause_before_end.width",   "27"                    },
6289   { "gfx.tape.symbol.pause_before_end.height",  "13"                    },
6290   { "gfx.tape.symbol.single_step",              UNDEFINED_FILENAME      },
6291
6292   { "gfx.tape.label.eject",                     UNDEFINED_FILENAME      },
6293   { "gfx.tape.label.stop",                      UNDEFINED_FILENAME      },
6294   { "gfx.tape.label.pause",                     "RocksDoor.png"         },
6295   { "gfx.tape.label.pause.x",                   "305"                   },
6296   { "gfx.tape.label.pause.y",                   "341"                   },
6297   { "gfx.tape.label.pause.width",               "35"                    },
6298   { "gfx.tape.label.pause.height",              "8"                     },
6299   { "gfx.tape.label.record",                    "RocksDoor.png"         },
6300   { "gfx.tape.label.record.x",                  "305"                   },
6301   { "gfx.tape.label.record.y",                  "321"                   },
6302   { "gfx.tape.label.record.width",              "20"                    },
6303   { "gfx.tape.label.record.height",             "12"                    },
6304   { "gfx.tape.label.play",                      "RocksDoor.png"         },
6305   { "gfx.tape.label.play.x",                    "370"                   },
6306   { "gfx.tape.label.play.y",                    "321"                   },
6307   { "gfx.tape.label.play.width",                "22"                    },
6308   { "gfx.tape.label.play.height",               "12"                    },
6309   { "gfx.tape.label.fast_forward",              "RocksDoor.png"         },
6310   { "gfx.tape.label.fast_forward.x",            "505"                   },
6311   { "gfx.tape.label.fast_forward.y",            "193"                   },
6312   { "gfx.tape.label.fast_forward.width",        "40"                    },
6313   { "gfx.tape.label.fast_forward.height",       "28"                    },
6314   { "gfx.tape.label.warp_forward",              "RocksDoor.png"         },
6315   { "gfx.tape.label.warp_forward.x",            "505"                   },
6316   { "gfx.tape.label.warp_forward.y",            "165"                   },
6317   { "gfx.tape.label.warp_forward.width",        "40"                    },
6318   { "gfx.tape.label.warp_forward.height",       "28"                    },
6319   { "gfx.tape.label.warp_forward_blind",        "RocksDoor.png"         },
6320   { "gfx.tape.label.warp_forward_blind.x",      "505"                   },
6321   { "gfx.tape.label.warp_forward_blind.y",      "165"                   },
6322   { "gfx.tape.label.warp_forward_blind.width",  "40"                    },
6323   { "gfx.tape.label.warp_forward_blind.height", "28"                    },
6324   { "gfx.tape.label.pause_before_end",          "RocksDoor.png"         },
6325   { "gfx.tape.label.pause_before_end.x",        "505"                   },
6326   { "gfx.tape.label.pause_before_end.y",        "221"                   },
6327   { "gfx.tape.label.pause_before_end.width",    "40"                    },
6328   { "gfx.tape.label.pause_before_end.height",   "28"                    },
6329   { "gfx.tape.label.single_step",               "RocksDoor.png"         },
6330   { "gfx.tape.label.single_step.x",             "557"                   },
6331   { "gfx.tape.label.single_step.y",             "139"                   },
6332   { "gfx.tape.label.single_step.width",         "38"                    },
6333   { "gfx.tape.label.single_step.height",        "13"                    },
6334
6335   { "gfx.tape.label.date",                      "RocksDoor.png"         },
6336   { "gfx.tape.label.date.x",                    "305"                   },
6337   { "gfx.tape.label.date.y",                    "285"                   },
6338   { "gfx.tape.label.date.width",                "90"                    },
6339   { "gfx.tape.label.date.height",               "31"                    },
6340   { "gfx.tape.label.time",                      "RocksDoor.png"         },
6341   { "gfx.tape.label.time.x",                    "346"                   },
6342   { "gfx.tape.label.time.y",                    "335"                   },
6343   { "gfx.tape.label.time.width",                "45"                    },
6344   { "gfx.tape.label.time.height",               "13"                    },
6345
6346   { "gfx.request.button.yes",                   "RocksDoor.png"         },
6347   { "gfx.request.button.yes.x",                 "302"                   },
6348   { "gfx.request.button.yes.y",                 "0"                     },
6349   { "gfx.request.button.yes.width",             "46"                    },
6350   { "gfx.request.button.yes.height",            "28"                    },
6351   { "gfx.request.button.yes.pressed_xoffset",   "-100"                  },
6352   { "gfx.request.button.no",                    "RocksDoor.png"         },
6353   { "gfx.request.button.no.x",                  "352"                   },
6354   { "gfx.request.button.no.y",                  "0"                     },
6355   { "gfx.request.button.no.width",              "46"                    },
6356   { "gfx.request.button.no.height",             "28"                    },
6357   { "gfx.request.button.no.pressed_xoffset",    "-100"                  },
6358   { "gfx.request.button.confirm",               "RocksDoor.png"         },
6359   { "gfx.request.button.confirm.x",             "302"                   },
6360   { "gfx.request.button.confirm.y",             "30"                    },
6361   { "gfx.request.button.confirm.width",         "96"                    },
6362   { "gfx.request.button.confirm.height",        "28"                    },
6363   { "gfx.request.button.confirm.pressed_xoffset", "-100"                },
6364   { "gfx.request.button.player_1",              "RocksDoor.png"         },
6365   { "gfx.request.button.player_1.x",            "305"                   },
6366   { "gfx.request.button.player_1.y",            "185"                   },
6367   { "gfx.request.button.player_1.width",        "30"                    },
6368   { "gfx.request.button.player_1.height",       "30"                    },
6369   { "gfx.request.button.player_1.pressed_xoffset", "-100"               },
6370   { "gfx.request.button.player_2",              UNDEFINED_FILENAME      },
6371   { "gfx.request.button.player_2.clone_from",   "gfx.request.button.player_1" },
6372   { "gfx.request.button.player_3",              UNDEFINED_FILENAME      },
6373   { "gfx.request.button.player_3.clone_from",   "gfx.request.button.player_1" },
6374   { "gfx.request.button.player_4",              UNDEFINED_FILENAME      },
6375   { "gfx.request.button.player_4.clone_from",   "gfx.request.button.player_1" },
6376
6377   { "font.initial_1",                           "RocksFontSmall.png"    },
6378   { "font.initial_1.x",                         "0"                     },
6379   { "font.initial_1.y",                         "0"                     },
6380   { "font.initial_1.width",                     "14"                    },
6381   { "font.initial_1.height",                    "14"                    },
6382   { "font.initial_2",                           "RocksFontSmall.png"    },
6383   { "font.initial_2.x",                         "0"                     },
6384   { "font.initial_2.y",                         "70"                    },
6385   { "font.initial_2.width",                     "14"                    },
6386   { "font.initial_2.height",                    "14"                    },
6387   { "font.initial_3",                           "RocksFontSmall.png"    },
6388   { "font.initial_3.x",                         "0"                     },
6389   { "font.initial_3.y",                         "140"                   },
6390   { "font.initial_3.width",                     "14"                    },
6391   { "font.initial_3.height",                    "14"                    },
6392   { "font.initial_4",                           "RocksFontSmall.png"    },
6393   { "font.initial_4.x",                         "0"                     },
6394   { "font.initial_4.y",                         "210"                   },
6395   { "font.initial_4.width",                     "14"                    },
6396   { "font.initial_4.height",                    "14"                    },
6397
6398   { "font.title_1",                             "RocksFontBig.png"      },
6399   { "font.title_1.x",                           "0"                     },
6400   { "font.title_1.y",                           "480"                   },
6401   { "font.title_1.width",                       "32"                    },
6402   { "font.title_1.height",                      "32"                    },
6403   { "font.title_2",                             "RocksFontSmall.png"    },
6404   { "font.title_2.x",                           "0"                     },
6405   { "font.title_2.y",                           "0"                     },
6406   { "font.title_2.width",                       "14"                    },
6407   { "font.title_2.height",                      "14"                    },
6408   { "font.title_2.SETUP",                       UNDEFINED_FILENAME      },
6409   { "font.title_2.SETUP.clone_from",            "font.text_2"           },
6410
6411   { "font.menu_1",                              "RocksFontBig.png"      },
6412   { "font.menu_1.x",                            "0"                     },
6413   { "font.menu_1.y",                            "320"                   },
6414   { "font.menu_1.width",                        "32"                    },
6415   { "font.menu_1.height",                       "32"                    },
6416   { "font.menu_1.active",                       "RocksFontBig.png"      },
6417   { "font.menu_1.active.x",                     "0"                     },
6418   { "font.menu_1.active.y",                     "480"                   },
6419   { "font.menu_1.active.width",                 "32"                    },
6420   { "font.menu_1.active.height",                "32"                    },
6421   { "font.menu_2",                              "RocksFontMedium.png"   },
6422   { "font.menu_2.x",                            "0"                     },
6423   { "font.menu_2.y",                            "320"                   },
6424   { "font.menu_2.width",                        "16"                    },
6425   { "font.menu_2.height",                       "32"                    },
6426   { "font.menu_2.active",                       "RocksFontMedium.png"   },
6427   { "font.menu_2.active.x",                     "0"                     },
6428   { "font.menu_2.active.y",                     "480"                   },
6429   { "font.menu_2.active.width",                 "16"                    },
6430   { "font.menu_2.active.height",                "32"                    },
6431
6432   { "font.text_1",                              "RocksFontSmall.png"    },
6433   { "font.text_1.x",                            "0"                     },
6434   { "font.text_1.y",                            "140"                   },
6435   { "font.text_1.width",                        "14"                    },
6436   { "font.text_1.height",                       "14"                    },
6437   { "font.text_1.MAIN",                         UNDEFINED_FILENAME      },
6438   { "font.text_1.MAIN.clone_from",              "font.text_1.PREVIEW"   },
6439   { "font.text_1.LEVELS",                       "RocksFontMedium.png"   },
6440   { "font.text_1.LEVELS.x",                     "0"                     },
6441   { "font.text_1.LEVELS.y",                     "0"                     },
6442   { "font.text_1.LEVELS.width",                 "16"                    },
6443   { "font.text_1.LEVELS.height",                "32"                    },
6444   { "font.text_1.LEVELNR",                      UNDEFINED_FILENAME      },
6445   { "font.text_1.LEVELNR.clone_from",           "font.text_1.LEVELS"    },
6446   { "font.text_1.SETUP",                        UNDEFINED_FILENAME      },
6447   { "font.text_1.SETUP.clone_from",             "font.text_1.LEVELS"    },
6448   { "font.text_1.PREVIEW",                      "RocksFontEM.png"       },
6449   { "font.text_1.PREVIEW.x",                    "0"                     },
6450   { "font.text_1.PREVIEW.y",                    "160"                   },
6451   { "font.text_1.PREVIEW.width",                "16"                    },
6452   { "font.text_1.PREVIEW.height",               "16"                    },
6453   { "font.text_1.SCORES",                       "RocksFontMedium.png"   },
6454   { "font.text_1.SCORES.x",                     "0"                     },
6455   { "font.text_1.SCORES.y",                     "480"                   },
6456   { "font.text_1.SCORES.width",                 "16"                    },
6457   { "font.text_1.SCORES.height",                "32"                    },
6458   { "font.text_1.active.SCORES",                "RocksFontMedium.png"   },
6459   { "font.text_1.active.SCORES.x",              "0"                     },
6460   { "font.text_1.active.SCORES.y",              "0"                     },
6461   { "font.text_1.active.SCORES.width",          "16"                    },
6462   { "font.text_1.active.SCORES.height",         "32"                    },
6463   { "font.text_1.PANEL",                        UNDEFINED_FILENAME      },
6464   { "font.text_1.PANEL.clone_from",             "font.level_number"     },
6465   { "font.text_1.DOOR",                         UNDEFINED_FILENAME      },
6466   { "font.text_1.DOOR.clone_from",              "font.level_number"     },
6467   { "font.text_2",                              "RocksFontSmall.png"    },
6468   { "font.text_2.x",                            "0"                     },
6469   { "font.text_2.y",                            "210"                   },
6470   { "font.text_2.width",                        "14"                    },
6471   { "font.text_2.height",                       "14"                    },
6472   { "font.text_2.MAIN",                         UNDEFINED_FILENAME      },
6473   { "font.text_2.MAIN.clone_from",              "font.text_2.PREVIEW"   },
6474   { "font.text_2.LEVELS",                       "RocksFontMedium.png"   },
6475   { "font.text_2.LEVELS.x",                     "0"                     },
6476   { "font.text_2.LEVELS.y",                     "160"                   },
6477   { "font.text_2.LEVELS.width",                 "16"                    },
6478   { "font.text_2.LEVELS.height",                "32"                    },
6479   { "font.text_2.LEVELNR",                      UNDEFINED_FILENAME      },
6480   { "font.text_2.LEVELNR.clone_from",           "font.text_2.LEVELS"    },
6481   { "font.text_2.SETUP",                        UNDEFINED_FILENAME      },
6482   { "font.text_2.SETUP.clone_from",             "font.text_2.LEVELS"    },
6483   { "font.text_2.PREVIEW",                      "RocksFontEM.png"       },
6484   { "font.text_2.PREVIEW.x",                    "0"                     },
6485   { "font.text_2.PREVIEW.y",                    "160"                   },
6486   { "font.text_2.PREVIEW.width",                "16"                    },
6487   { "font.text_2.PREVIEW.height",               "16"                    },
6488   { "font.text_2.SCORES",                       "RocksFontBig.png"      },
6489   { "font.text_2.SCORES.x",                     "0"                     },
6490   { "font.text_2.SCORES.y",                     "320"                   },
6491   { "font.text_2.SCORES.width",                 "32"                    },
6492   { "font.text_2.SCORES.height",                "32"                    },
6493   { "font.text_2.active.SCORES",                "RocksFontBig.png"      },
6494   { "font.text_2.active.SCORES.x",              "0"                     },
6495   { "font.text_2.active.SCORES.y",              "0"                     },
6496   { "font.text_2.active.SCORES.width",          "32"                    },
6497   { "font.text_2.active.SCORES.height",         "32"                    },
6498   { "font.text_3",                              "RocksFontSmall.png"    },
6499   { "font.text_3.x",                            "0"                     },
6500   { "font.text_3.y",                            "0"                     },
6501   { "font.text_3.width",                        "14"                    },
6502   { "font.text_3.height",                       "14"                    },
6503   { "font.text_3.LEVELS",                       "RocksFontMedium.png"   },
6504   { "font.text_3.LEVELS.x",                     "0"                     },
6505   { "font.text_3.LEVELS.y",                     "320"                   },
6506   { "font.text_3.LEVELS.width",                 "16"                    },
6507   { "font.text_3.LEVELS.height",                "32"                    },
6508   { "font.text_3.LEVELNR",                      UNDEFINED_FILENAME      },
6509   { "font.text_3.LEVELNR.clone_from",           "font.text_3.LEVELS"    },
6510   { "font.text_3.SETUP",                        UNDEFINED_FILENAME      },
6511   { "font.text_3.SETUP.clone_from",             "font.text_3.LEVELS"    },
6512   { "font.text_3.PREVIEW",                      "RocksFontEM.png"       },
6513   { "font.text_3.PREVIEW.x",                    "0"                     },
6514   { "font.text_3.PREVIEW.y",                    "160"                   },
6515   { "font.text_3.PREVIEW.width",                "16"                    },
6516   { "font.text_3.PREVIEW.height",               "16"                    },
6517   { "font.text_3.SCORES",                       "RocksFontMedium.png"   },
6518   { "font.text_3.SCORES.x",                     "0"                     },
6519   { "font.text_3.SCORES.y",                     "480"                   },
6520   { "font.text_3.SCORES.width",                 "16"                    },
6521   { "font.text_3.SCORES.height",                "32"                    },
6522   { "font.text_3.active.SCORES",                "RocksFontMedium.png"   },
6523   { "font.text_3.active.SCORES.x",              "0"                     },
6524   { "font.text_3.active.SCORES.y",              "0"                     },
6525   { "font.text_3.active.SCORES.width",          "16"                    },
6526   { "font.text_3.active.SCORES.height",         "32"                    },
6527   { "font.text_4",                              "RocksFontSmall.png"    },
6528   { "font.text_4.x",                            "0"                     },
6529   { "font.text_4.y",                            "70"                    },
6530   { "font.text_4.width",                        "14"                    },
6531   { "font.text_4.height",                       "14"                    },
6532   { "font.text_4.MAIN",                         UNDEFINED_FILENAME      },
6533   { "font.text_4.MAIN.clone_from",              "font.text_3.PREVIEW"   },
6534   { "font.text_4.LEVELS",                       "RocksFontMedium.png"   },
6535   { "font.text_4.LEVELS.x",                     "0"                     },
6536   { "font.text_4.LEVELS.y",                     "480"                   },
6537   { "font.text_4.LEVELS.width",                 "16"                    },
6538   { "font.text_4.LEVELS.height",                "32"                    },
6539   { "font.text_4.LEVELNR",                      UNDEFINED_FILENAME      },
6540   { "font.text_4.LEVELNR.clone_from",           "font.text_4.LEVELS"    },
6541   { "font.text_4.SETUP",                        UNDEFINED_FILENAME      },
6542   { "font.text_4.SETUP.clone_from",             "font.text_4.LEVELS"    },
6543   { "font.text_4.SCORES",                       "RocksFontMedium.png"   },
6544   { "font.text_4.SCORES.x",                     "0"                     },
6545   { "font.text_4.SCORES.y",                     "480"                   },
6546   { "font.text_4.SCORES.width",                 "16"                    },
6547   { "font.text_4.SCORES.height",                "32"                    },
6548   { "font.text_4.active.SCORES",                "RocksFontMedium.png"   },
6549   { "font.text_4.active.SCORES.x",              "0"                     },
6550   { "font.text_4.active.SCORES.y",              "0"                     },
6551   { "font.text_4.active.SCORES.width",          "16"                    },
6552   { "font.text_4.active.SCORES.height",         "32"                    },
6553
6554   { "font.envelope_1",                          "RocksFontEM.png"       },
6555   { "font.envelope_1.x",                        "0"                     },
6556   { "font.envelope_1.y",                        "160"                   },
6557   { "font.envelope_1.width",                    "16"                    },
6558   { "font.envelope_1.height",                   "16"                    },
6559   { "font.envelope_2",                          "RocksFontEM.png"       },
6560   { "font.envelope_2.x",                        "0"                     },
6561   { "font.envelope_2.y",                        "160"                   },
6562   { "font.envelope_2.width",                    "16"                    },
6563   { "font.envelope_2.height",                   "16"                    },
6564   { "font.envelope_3",                          "RocksFontEM.png"       },
6565   { "font.envelope_3.x",                        "0"                     },
6566   { "font.envelope_3.y",                        "160"                   },
6567   { "font.envelope_3.width",                    "16"                    },
6568   { "font.envelope_3.height",                   "16"                    },
6569   { "font.envelope_4",                          "RocksFontEM.png"       },
6570   { "font.envelope_4.x",                        "0"                     },
6571   { "font.envelope_4.y",                        "160"                   },
6572   { "font.envelope_4.width",                    "16"                    },
6573   { "font.envelope_4.height",                   "16"                    },
6574
6575   { "font.request",                             "RocksFontSmall.png"    },
6576   { "font.request.x",                           "0"                     },
6577   { "font.request.y",                           "210"                   },
6578   { "font.request.width",                       "14"                    },
6579   { "font.request.height",                      "14"                    },
6580
6581   { "font.input_1",                             "RocksFontSmall.png"    },
6582   { "font.input_1.x",                           "0"                     },
6583   { "font.input_1.y",                           "210"                   },
6584   { "font.input_1.width",                       "14"                    },
6585   { "font.input_1.height",                      "14"                    },
6586   { "font.input_1.MAIN",                        "RocksFontBig.png"      },
6587   { "font.input_1.MAIN.x",                      "0"                     },
6588   { "font.input_1.MAIN.y",                      "0"                     },
6589   { "font.input_1.MAIN.width",                  "32"                    },
6590   { "font.input_1.MAIN.height",                 "32"                    },
6591   { "font.input_1.active",                      "RocksFontSmall.png"    },
6592   { "font.input_1.active.x",                    "0"                     },
6593   { "font.input_1.active.y",                    "210"                   },
6594   { "font.input_1.active.width",                "14"                    },
6595   { "font.input_1.active.height",               "14"                    },
6596   { "font.input_1.active.MAIN",                 "RocksFontBig.png"      },
6597   { "font.input_1.active.MAIN.x",               "0"                     },
6598   { "font.input_1.active.MAIN.y",               "480"                   },
6599   { "font.input_1.active.MAIN.width",           "32"                    },
6600   { "font.input_1.active.MAIN.height",          "32"                    },
6601   { "font.input_1.active.SETUP",                "RocksFontBig.png"      },
6602   { "font.input_1.active.SETUP.x",              "0"                     },
6603   { "font.input_1.active.SETUP.y",              "0"                     },
6604   { "font.input_1.active.SETUP.width",          "32"                    },
6605   { "font.input_1.active.SETUP.height",         "32"                    },
6606   { "font.input_2",                             "RocksFontSmall.png"    },
6607   { "font.input_2.x",                           "0"                     },
6608   { "font.input_2.y",                           "210"                   },
6609   { "font.input_2.width",                       "14"                    },
6610   { "font.input_2.height",                      "14"                    },
6611   { "font.input_2.active",                      "RocksFontSmall.png"    },
6612   { "font.input_2.active.x",                    "0"                     },
6613   { "font.input_2.active.y",                    "210"                   },
6614   { "font.input_2.active.width",                "14"                    },
6615   { "font.input_2.active.height",               "14"                    },
6616
6617   { "font.option_off",                          "RocksFontBig.png"      },
6618   { "font.option_off.x",                        "0"                     },
6619   { "font.option_off.y",                        "160"                   },
6620   { "font.option_off.width",                    "32"                    },
6621   { "font.option_off.height",                   "32"                    },
6622   { "font.option_off_narrow",                   UNDEFINED_FILENAME      },
6623   { "font.option_off_narrow.clone_from",        "font.text_2.LEVELS"    },
6624   { "font.option_on",                           "RocksFontBig.png"      },
6625   { "font.option_on.x",                         "0"                     },
6626   { "font.option_on.y",                         "480"                   },
6627   { "font.option_on.width",                     "32"                    },
6628   { "font.option_on.height",                    "32"                    },
6629   { "font.option_on_narrow",                    UNDEFINED_FILENAME      },
6630   { "font.option_on_narrow.clone_from",         "font.text_4.LEVELS"    },
6631
6632   { "font.value_1",                             "RocksFontBig.png"      },
6633   { "font.value_1.x",                           "0"                     },
6634   { "font.value_1.y",                           "480"                   },
6635   { "font.value_1.width",                       "32"                    },
6636   { "font.value_1.height",                      "32"                    },
6637   { "font.value_2",                             "RocksFontMedium.png"   },
6638   { "font.value_2.x",                           "0"                     },
6639   { "font.value_2.y",                           "480"                   },
6640   { "font.value_2.width",                       "16"                    },
6641   { "font.value_2.height",                      "32"                    },
6642   { "font.value_old",                           "RocksFontBig.png"      },
6643   { "font.value_old.x",                         "0"                     },
6644   { "font.value_old.y",                         "160"                   },
6645   { "font.value_old.width",                     "32"                    },
6646   { "font.value_old.height",                    "32"                    },
6647   { "font.value_old_narrow",                    UNDEFINED_FILENAME      },
6648   { "font.value_old_narrow.clone_from",         "font.text_2.LEVELS"    },
6649   { "font.value_narrow",                        UNDEFINED_FILENAME      },
6650   { "font.value_narrow.clone_from",             "font.text_4.LEVELS"    },
6651
6652   { "font.level_number",                        "RocksFontSmall.png"    },
6653   { "font.level_number.x",                      "0"                     },
6654   { "font.level_number.y",                      "350"                   },
6655   { "font.level_number.width",                  "10"                    },
6656   { "font.level_number.height",                 "14"                    },
6657   { "font.level_number.active",                 UNDEFINED_FILENAME      },
6658   { "font.level_number.active.clone_from",      "font.level_number"     },
6659
6660   { "font.tape_recorder",                       "RocksFontSmall.png"    },
6661   { "font.tape_recorder.x",                     "0"                     },
6662   { "font.tape_recorder.y",                     "280"                   },
6663   { "font.tape_recorder.width",                 "11"                    },
6664   { "font.tape_recorder.height",                "14"                    },
6665
6666   { "font.game_info",                           "RocksFontEM.png"       },
6667   { "font.game_info.xpos",                      "0"                     },
6668   { "font.game_info.ypos",                      "0"                     },
6669   { "font.game_info.delay",                     "10"                    },
6670
6671   { "font.info.elements",                       UNDEFINED_FILENAME      },
6672   { "font.info.elements.clone_from",            "font.level_number"     },
6673
6674   { "font.info.levelset",                       UNDEFINED_FILENAME      },
6675   { "font.info.levelset.clone_from",            "font.level_number"     },
6676
6677   { "font.main.network_players",                UNDEFINED_FILENAME      },
6678   { "font.main.network_players.clone_from",     "font.level_number"     },
6679
6680   { "editor.element_border",                    "RocksMore.png"         },
6681   { "editor.element_border.xpos",               "0"                     },
6682   { "editor.element_border.ypos",               "2"                     },
6683   { "editor.element_border.border_size",        "8"                     },
6684
6685   { "editor.element_border_input",              "RocksMore.png"         },
6686   { "editor.element_border_input.xpos",         "10"                    },
6687   { "editor.element_border_input.ypos",         "7"                     },
6688   { "editor.element_border_input.border_size",  "4"                     },
6689
6690   { "editor.counter.down",                      "RocksDoor.png"         },
6691   { "editor.counter.down.x",                    "302"                   },
6692   { "editor.counter.down.y",                    "60"                    },
6693   { "editor.counter.down.width",                "20"                    },
6694   { "editor.counter.down.height",               "20"                    },
6695   { "editor.counter.down.pressed_xoffset",      "-100"                  },
6696
6697   { "editor.counter.up",                        "RocksDoor.png"         },
6698   { "editor.counter.up.x",                      "378"                   },
6699   { "editor.counter.up.y",                      "60"                    },
6700   { "editor.counter.up.width",                  "20"                    },
6701   { "editor.counter.up.height",                 "20"                    },
6702   { "editor.counter.up.pressed_xoffset",        "-100"                  },
6703
6704   { "editor.counter.input",                     "RocksDoor.png"         },
6705   { "editor.counter.input.x",                   "324"                   },
6706   { "editor.counter.input.y",                   "60"                    },
6707   { "editor.counter.input.width",               "52"                    },
6708   { "editor.counter.input.height",              "20"                    },
6709   { "editor.counter.input.active_xoffset",      "-100"                  },
6710   { "editor.counter.input.border_size",         "3"                     },
6711
6712   { "editor.selectbox.input",                   "RocksDoor.png"         },
6713   { "editor.selectbox.input.x",                 "324"                   },
6714   { "editor.selectbox.input.y",                 "82"                    },
6715   { "editor.selectbox.input.width",             "52"                    },
6716   { "editor.selectbox.input.height",            "20"                    },
6717   { "editor.selectbox.input.active_xoffset",    "-100"                  },
6718   { "editor.selectbox.input.border_size",       "3"                     },
6719
6720   { "editor.selectbox.button",                  UNDEFINED_FILENAME      },
6721   { "editor.selectbox.button.width",            "14"                    },
6722
6723   { "editor.checkbox",                          "RocksDoor.png"         },
6724   { "editor.checkbox.x",                        "302"                   },
6725   { "editor.checkbox.y",                        "82"                    },
6726   { "editor.checkbox.width",                    "20"                    },
6727   { "editor.checkbox.height",                   "20"                    },
6728   { "editor.checkbox.pressed_xoffset",          "-100"                  },
6729   { "editor.checkbox.active_xoffset",           "76"                    },
6730
6731   { "editor.radiobutton",                       "RocksDoor.png"         },
6732   { "editor.radiobutton.x",                     "302"                   },
6733   { "editor.radiobutton.y",                     "104"                   },
6734   { "editor.radiobutton.width",                 "20"                    },
6735   { "editor.radiobutton.height",                "20"                    },
6736   { "editor.radiobutton.pressed_xoffset",       "-100"                  },
6737   { "editor.radiobutton.active_xoffset",        "76"                    },
6738
6739   { "editor.stickybutton",                      "RocksDoor.png"         },
6740   { "editor.stickybutton.x",                    "302"                   },
6741   { "editor.stickybutton.y",                    "126"                   },
6742   { "editor.stickybutton.width",                "20"                    },
6743   { "editor.stickybutton.height",               "20"                    },
6744   { "editor.stickybutton.pressed_xoffset",      "-100"                  },
6745   { "editor.stickybutton.active_xoffset",       "76"                    },
6746
6747   { "editor.tabbutton",                         "RocksDoor.png"         },
6748   { "editor.tabbutton.x",                       "324"                   },
6749   { "editor.tabbutton.y",                       "104"                   },
6750   { "editor.tabbutton.width",                   "52"                    },
6751   { "editor.tabbutton.height",                  "20"                    },
6752   { "editor.tabbutton.pressed_xoffset",         "-100"                  },
6753   { "editor.tabbutton.active_yoffset",          "22"                    },
6754   { "editor.tabbutton.border_size",             "3"                     },
6755   { "editor.tabbutton.draw_xoffset",            "2"                     },
6756
6757   { "editor.textbutton",                        "RocksDoor.png"         },
6758   { "editor.textbutton.x",                      "324"                   },
6759   { "editor.textbutton.y",                      "148"                   },
6760   { "editor.textbutton.width",                  "52"                    },
6761   { "editor.textbutton.height",                 "20"                    },
6762   { "editor.textbutton.pressed_xoffset",        "-100"                  },
6763   { "editor.textbutton.border_size",            "3"                     },
6764   { "editor.textbutton.draw_xoffset",           "2"                     },
6765
6766   { "editor.input.text",                        "RocksDoor.png"         },
6767   { "editor.input.text.x",                      "324"                   },
6768   { "editor.input.text.y",                      "60"                    },
6769   { "editor.input.text.width",                  "52"                    },
6770   { "editor.input.text.height",                 "20"                    },
6771   { "editor.input.text.active_xoffset",         "-100"                  },
6772   { "editor.input.text.border_size",            "3"                     },
6773
6774   { "editor.input.textarea",                    "RocksDoor.png"         },
6775   { "editor.input.textarea.x",                  "324"                   },
6776   { "editor.input.textarea.y",                  "60"                    },
6777   { "editor.input.textarea.width",              "52"                    },
6778   { "editor.input.textarea.height",             "20"                    },
6779   { "editor.input.textarea.active_xoffset",     "-100"                  },
6780   { "editor.input.textarea.border_size",        "3"                     },
6781
6782   { "editor.cascade_list",                      "RocksMore.png"         },
6783   { "editor.cascade_list.xpos",                 "9"                     },
6784   { "editor.cascade_list.ypos",                 "8"                     },
6785   { "editor.cascade_list.frames",               "1"                     },
6786   { "editor.cascade_list.active",               "RocksMore.png"         },
6787   { "editor.cascade_list.active.xpos",          "10"                    },
6788   { "editor.cascade_list.active.ypos",          "8"                     },
6789   { "editor.cascade_list.active.frames",        "1"                     },
6790
6791   { "editor.palette.button",                    "RocksDoor.png"         },
6792   { "editor.palette.button.x",                  "525"                   },
6793   { "editor.palette.button.y",                  "30"                    },
6794   { "editor.palette.button.width",              "20"                    },
6795   { "editor.palette.button.height",             "20"                    },
6796   { "editor.palette.button.pressed_xoffset",    "-20"                   },
6797
6798   { "editor.palette.scroll_up",                 "RocksDoor.png"         },
6799   { "editor.palette.scroll_up.x",               "750"                   },
6800   { "editor.palette.scroll_up.y",               "0"                     },
6801   { "editor.palette.scroll_up.width",           "10"                    },
6802   { "editor.palette.scroll_up.height",          "10"                    },
6803   { "editor.palette.scroll_up.pressed_xoffset", "-10"                   },
6804
6805   { "editor.palette.scroll_down",               "RocksDoor.png"         },
6806   { "editor.palette.scroll_down.x",             "750"                   },
6807   { "editor.palette.scroll_down.y",             "10"                    },
6808   { "editor.palette.scroll_down.width",         "10"                    },
6809   { "editor.palette.scroll_down.height",        "10"                    },
6810   { "editor.palette.scroll_down.pressed_xoffset", "-10"                 },
6811
6812   { "editor.palette.scrollbar",                 "RocksDoor.png"         },
6813   { "editor.palette.scrollbar.x",               "750"                   },
6814   { "editor.palette.scrollbar.y",               "20"                    },
6815   { "editor.palette.scrollbar.width",           "10"                    },
6816   { "editor.palette.scrollbar.height",          "10"                    },
6817   { "editor.palette.scrollbar.pressed_xoffset", "-10"                   },
6818   { "editor.palette.scrollbar.border_size",     "3"                     },
6819
6820   { "editor.playfield.scroll_up",               "RocksDoor.png"         },
6821   { "editor.playfield.scroll_up.x",             "724"                   },
6822   { "editor.playfield.scroll_up.y",             "0"                     },
6823   { "editor.playfield.scroll_up.width",         "16"                    },
6824   { "editor.playfield.scroll_up.height",        "16"                    },
6825   { "editor.playfield.scroll_up.pressed_xoffset", "-16"                 },
6826
6827   { "editor.playfield.scroll_down",             "RocksDoor.png"         },
6828   { "editor.playfield.scroll_down.x",           "724"                   },
6829   { "editor.playfield.scroll_down.y",           "16"                    },
6830   { "editor.playfield.scroll_down.width",       "16"                    },
6831   { "editor.playfield.scroll_down.height",      "16"                    },
6832   { "editor.playfield.scroll_down.pressed_xoffset", "-16"               },
6833
6834   { "editor.playfield.scroll_left",             "RocksDoor.png"         },
6835   { "editor.playfield.scroll_left.x",           "724"                   },
6836   { "editor.playfield.scroll_left.y",           "32"                    },
6837   { "editor.playfield.scroll_left.width",       "16"                    },
6838   { "editor.playfield.scroll_left.height",      "16"                    },
6839   { "editor.playfield.scroll_left.pressed_xoffset", "-16"               },
6840
6841   { "editor.playfield.scroll_right",            "RocksDoor.png"         },
6842   { "editor.playfield.scroll_right.x",          "724"                   },
6843   { "editor.playfield.scroll_right.y",          "48"                    },
6844   { "editor.playfield.scroll_right.width",      "16"                    },
6845   { "editor.playfield.scroll_right.height",     "16"                    },
6846   { "editor.playfield.scroll_right.pressed_xoffset", "-16"              },
6847
6848   { "editor.playfield.scrollbar",               "RocksDoor.png"         },
6849   { "editor.playfield.scrollbar.x",             "724"                   },
6850   { "editor.playfield.scrollbar.y",             "64"                    },
6851   { "editor.playfield.scrollbar.width",         "16"                    },
6852   { "editor.playfield.scrollbar.height",        "16"                    },
6853   { "editor.playfield.scrollbar.pressed_xoffset", "-16"                 },
6854   { "editor.playfield.scrollbar.border_size",   "3"                     },
6855
6856   { "gfx.editor.button.prev_level",             "RocksDoor.png"         },
6857   { "gfx.editor.button.prev_level.x",           "724"                   },
6858   { "gfx.editor.button.prev_level.y",           "32"                    },
6859   { "gfx.editor.button.prev_level.width",       "16"                    },
6860   { "gfx.editor.button.prev_level.height",      "16"                    },
6861   { "gfx.editor.button.prev_level.pressed_xoffset", "-16"               },
6862
6863   { "gfx.editor.button.next_level",             "RocksDoor.png"         },
6864   { "gfx.editor.button.next_level.x",           "724"                   },
6865   { "gfx.editor.button.next_level.y",           "48"                    },
6866   { "gfx.editor.button.next_level.width",       "16"                    },
6867   { "gfx.editor.button.next_level.height",      "16"                    },
6868   { "gfx.editor.button.next_level.pressed_xoffset", "-16"               },
6869
6870   { "gfx.editor.button.properties",             "RocksDoor2.png"        },
6871   { "gfx.editor.button.properties.x",           "105"                   },
6872   { "gfx.editor.button.properties.y",           "0"                     },
6873   { "gfx.editor.button.properties.width",       "90"                    },
6874   { "gfx.editor.button.properties.height",      "20"                    },
6875   { "gfx.editor.button.properties.pressed_xoffset", "-100"              },
6876
6877   { "gfx.editor.button.element_left",           "RocksDoor2.png"        },
6878   { "gfx.editor.button.element_left.x",         "368"                   },
6879   { "gfx.editor.button.element_left.y",         "48"                    },
6880   { "gfx.editor.button.element_left.width",     "16"                    },
6881   { "gfx.editor.button.element_left.height",    "16"                    },
6882   { "gfx.editor.button.element_left.pressed_xoffset", "0"               },
6883
6884   { "gfx.editor.button.element_middle",         "RocksDoor2.png"        },
6885   { "gfx.editor.button.element_middle.x",       "368"                   },
6886   { "gfx.editor.button.element_middle.y",       "48"                    },
6887   { "gfx.editor.button.element_middle.width",   "16"                    },
6888   { "gfx.editor.button.element_middle.height",  "16"                    },
6889   { "gfx.editor.button.element_middle.pressed_xoffset", "0"             },
6890
6891   { "gfx.editor.button.element_right",          "RocksDoor2.png"        },
6892   { "gfx.editor.button.element_right.x",        "368"                   },
6893   { "gfx.editor.button.element_right.y",        "48"                    },
6894   { "gfx.editor.button.element_right.width",    "16"                    },
6895   { "gfx.editor.button.element_right.height",   "16"                    },
6896   { "gfx.editor.button.element_right.pressed_xoffset", "0"              },
6897
6898   { "gfx.editor.button.palette",                UNDEFINED_FILENAME      },
6899
6900   { "editor.no_toolbox_button",                 "RocksDoor.png"         },
6901   { "editor.no_toolbox_button.x",               "506"                   },
6902   { "editor.no_toolbox_button.y",               "286"                   },
6903   { "editor.no_toolbox_button.width",           "22"                    },
6904   { "editor.no_toolbox_button.height",          "22"                    },
6905
6906   { "gfx.editor.button.draw_single",            "RocksDoor.png"         },
6907   { "gfx.editor.button.draw_single.x",          "706"                   },
6908   { "gfx.editor.button.draw_single.y",          "242"                   },
6909   { "gfx.editor.button.draw_single.width",      "22"                    },
6910   { "gfx.editor.button.draw_single.height",     "22"                    },
6911   { "gfx.editor.button.draw_single.pressed_xoffset", "-100"             },
6912   { "gfx.editor.button.draw_single.active_yoffset",  "-94"              },
6913
6914   { "gfx.editor.button.draw_connected",         "RocksDoor.png"         },
6915   { "gfx.editor.button.draw_connected.x",       "728"                   },
6916   { "gfx.editor.button.draw_connected.y",       "242"                   },
6917   { "gfx.editor.button.draw_connected.width",   "22"                    },
6918   { "gfx.editor.button.draw_connected.height",  "22"                    },
6919   { "gfx.editor.button.draw_connected.pressed_xoffset", "-100"          },
6920   { "gfx.editor.button.draw_connected.active_yoffset",  "-94"           },
6921
6922   { "gfx.editor.button.draw_line",              "RocksDoor.png"         },
6923   { "gfx.editor.button.draw_line.x",            "750"                   },
6924   { "gfx.editor.button.draw_line.y",            "242"                   },
6925   { "gfx.editor.button.draw_line.width",        "22"                    },
6926   { "gfx.editor.button.draw_line.height",       "22"                    },
6927   { "gfx.editor.button.draw_line.pressed_xoffset", "-100"               },
6928   { "gfx.editor.button.draw_line.active_yoffset",  "-94"                },
6929
6930   { "gfx.editor.button.draw_arc",               "RocksDoor.png"         },
6931   { "gfx.editor.button.draw_arc.x",             "772"                   },
6932   { "gfx.editor.button.draw_arc.y",             "242"                   },
6933   { "gfx.editor.button.draw_arc.width",         "22"                    },
6934   { "gfx.editor.button.draw_arc.height",        "22"                    },
6935   { "gfx.editor.button.draw_arc.pressed_xoffset", "-100"                },
6936   { "gfx.editor.button.draw_arc.active_yoffset",  "-94"                 },
6937
6938   { "gfx.editor.button.draw_rectangle",         "RocksDoor.png"         },
6939   { "gfx.editor.button.draw_rectangle.x",       "706"                   },
6940   { "gfx.editor.button.draw_rectangle.y",       "264"                   },
6941   { "gfx.editor.button.draw_rectangle.width",   "22"                    },
6942   { "gfx.editor.button.draw_rectangle.height",  "22"                    },
6943   { "gfx.editor.button.draw_rectangle.pressed_xoffset", "-100"          },
6944   { "gfx.editor.button.draw_rectangle.active_yoffset",  "-94"           },
6945
6946   { "gfx.editor.button.draw_filled_box",        "RocksDoor.png"         },
6947   { "gfx.editor.button.draw_filled_box.x",      "728"                   },
6948   { "gfx.editor.button.draw_filled_box.y",      "264"                   },
6949   { "gfx.editor.button.draw_filled_box.width",  "22"                    },
6950   { "gfx.editor.button.draw_filled_box.height", "22"                    },
6951   { "gfx.editor.button.draw_filled_box.pressed_xoffset", "-100"         },
6952   { "gfx.editor.button.draw_filled_box.active_yoffset",  "-94"          },
6953
6954   { "gfx.editor.button.rotate_up",              "RocksDoor.png"         },
6955   { "gfx.editor.button.rotate_up.x",            "750"                   },
6956   { "gfx.editor.button.rotate_up.y",            "264"                   },
6957   { "gfx.editor.button.rotate_up.width",        "22"                    },
6958   { "gfx.editor.button.rotate_up.height",       "22"                    },
6959   { "gfx.editor.button.rotate_up.pressed_xoffset", "-100"               },
6960   { "gfx.editor.button.rotate_up.active_yoffset",  "-94"                },
6961
6962   { "gfx.editor.button.draw_text",              "RocksDoor.png"         },
6963   { "gfx.editor.button.draw_text.x",            "772"                   },
6964   { "gfx.editor.button.draw_text.y",            "264"                   },
6965   { "gfx.editor.button.draw_text.width",        "22"                    },
6966   { "gfx.editor.button.draw_text.height",       "22"                    },
6967   { "gfx.editor.button.draw_text.pressed_xoffset", "-100"               },
6968   { "gfx.editor.button.draw_text.active_yoffset",  "-94"                },
6969
6970   { "gfx.editor.button.flood_fill",             "RocksDoor.png"         },
6971   { "gfx.editor.button.flood_fill.x",           "706"                   },
6972   { "gfx.editor.button.flood_fill.y",           "286"                   },
6973   { "gfx.editor.button.flood_fill.width",       "22"                    },
6974   { "gfx.editor.button.flood_fill.height",      "22"                    },
6975   { "gfx.editor.button.flood_fill.pressed_xoffset", "-100"              },
6976   { "gfx.editor.button.flood_fill.active_yoffset",  "-94"               },
6977
6978   { "gfx.editor.button.rotate_left",            "RocksDoor.png"         },
6979   { "gfx.editor.button.rotate_left.x",          "728"                   },
6980   { "gfx.editor.button.rotate_left.y",          "286"                   },
6981   { "gfx.editor.button.rotate_left.width",      "22"                    },
6982   { "gfx.editor.button.rotate_left.height",     "22"                    },
6983   { "gfx.editor.button.rotate_left.pressed_xoffset", "-100"             },
6984   { "gfx.editor.button.rotate_left.active_yoffset",  "-94"              },
6985
6986   { "gfx.editor.button.zoom_level",             "RocksDoor2.png"        },
6987   { "gfx.editor.button.zoom_level.x",           "350"                   },
6988   { "gfx.editor.button.zoom_level.y",           "22"                    },
6989   { "gfx.editor.button.zoom_level.width",       "22"                    },
6990   { "gfx.editor.button.zoom_level.height",      "22"                    },
6991   { "gfx.editor.button.zoom_level.pressed_xoffset", "-100"              },
6992   { "gfx.editor.button.zoom_level.active_yoffset",  "-22"               },
6993
6994   { "gfx.editor.button.rotate_right",           "RocksDoor.png"         },
6995   { "gfx.editor.button.rotate_right.x",         "772"                   },
6996   { "gfx.editor.button.rotate_right.y",         "286"                   },
6997   { "gfx.editor.button.rotate_right.width",     "22"                    },
6998   { "gfx.editor.button.rotate_right.height",    "22"                    },
6999   { "gfx.editor.button.rotate_right.pressed_xoffset", "-100"            },
7000   { "gfx.editor.button.rotate_right.active_yoffset",  "-94"             },
7001
7002   { "gfx.editor.button.draw_random",            "RocksDoor.png"         },
7003   { "gfx.editor.button.draw_random.x",          "706"                   },
7004   { "gfx.editor.button.draw_random.y",          "308"                   },
7005   { "gfx.editor.button.draw_random.width",      "22"                    },
7006   { "gfx.editor.button.draw_random.height",     "22"                    },
7007   { "gfx.editor.button.draw_random.pressed_xoffset", "-100"             },
7008   { "gfx.editor.button.draw_random.active_yoffset",  "-94"              },
7009
7010   { "gfx.editor.button.grab_brush",             "RocksDoor.png"         },
7011   { "gfx.editor.button.grab_brush.x",           "728"                   },
7012   { "gfx.editor.button.grab_brush.y",           "308"                   },
7013   { "gfx.editor.button.grab_brush.width",       "22"                    },
7014   { "gfx.editor.button.grab_brush.height",      "22"                    },
7015   { "gfx.editor.button.grab_brush.pressed_xoffset", "-100"              },
7016   { "gfx.editor.button.grab_brush.active_yoffset",  "-94"               },
7017
7018   { "gfx.editor.button.rotate_down",            "RocksDoor.png"         },
7019   { "gfx.editor.button.rotate_down.x",          "750"                   },
7020   { "gfx.editor.button.rotate_down.y",          "308"                   },
7021   { "gfx.editor.button.rotate_down.width",      "22"                    },
7022   { "gfx.editor.button.rotate_down.height",     "22"                    },
7023   { "gfx.editor.button.rotate_down.pressed_xoffset", "-100"             },
7024   { "gfx.editor.button.rotate_down.active_yoffset",  "-94"              },
7025
7026   { "gfx.editor.button.pick_element",           "RocksDoor.png"         },
7027   { "gfx.editor.button.pick_element.x",         "772"                   },
7028   { "gfx.editor.button.pick_element.y",         "308"                   },
7029   { "gfx.editor.button.pick_element.width",     "22"                    },
7030   { "gfx.editor.button.pick_element.height",    "22"                    },
7031   { "gfx.editor.button.pick_element.pressed_xoffset", "-100"            },
7032   { "gfx.editor.button.pick_element.active_yoffset",  "-94"             },
7033
7034   { "gfx.editor.button.ce_copy_from",           "RocksDoor.png"         },
7035   { "gfx.editor.button.ce_copy_from.x",         "528"                   },
7036   { "gfx.editor.button.ce_copy_from.y",         "330"                   },
7037   { "gfx.editor.button.ce_copy_from.width",     "22"                    },
7038   { "gfx.editor.button.ce_copy_from.height",    "22"                    },
7039   { "gfx.editor.button.ce_copy_from.pressed_xoffset", "-100"            },
7040   { "gfx.editor.button.ce_copy_from.active_yoffset",  "-22"             },
7041
7042   { "gfx.editor.button.ce_copy_to",             "RocksDoor.png"         },
7043   { "gfx.editor.button.ce_copy_to.x",           "550"                   },
7044   { "gfx.editor.button.ce_copy_to.y",           "330"                   },
7045   { "gfx.editor.button.ce_copy_to.width",       "22"                    },
7046   { "gfx.editor.button.ce_copy_to.height",      "22"                    },
7047   { "gfx.editor.button.ce_copy_to.pressed_xoffset", "-100"              },
7048   { "gfx.editor.button.ce_copy_to.active_yoffset",  "-22"               },
7049
7050   { "gfx.editor.button.ce_swap",                "RocksDoor.png"         },
7051   { "gfx.editor.button.ce_swap.x",              "572"                   },
7052   { "gfx.editor.button.ce_swap.y",              "330"                   },
7053   { "gfx.editor.button.ce_swap.width",          "22"                    },
7054   { "gfx.editor.button.ce_swap.height",         "22"                    },
7055   { "gfx.editor.button.ce_swap.pressed_xoffset", "-100"                 },
7056   { "gfx.editor.button.ce_swap.active_yoffset",  "-22"                  },
7057
7058   { "gfx.editor.button.ce_copy",                "RocksDoor.png"         },
7059   { "gfx.editor.button.ce_copy.x",              "550"                   },
7060   { "gfx.editor.button.ce_copy.y",              "286"                   },
7061   { "gfx.editor.button.ce_copy.width",          "22"                    },
7062   { "gfx.editor.button.ce_copy.height",         "22"                    },
7063   { "gfx.editor.button.ce_copy.pressed_xoffset", "-100"                 },
7064
7065   { "gfx.editor.button.ce_paste",               "RocksDoor.png"         },
7066   { "gfx.editor.button.ce_paste.x",             "572"                   },
7067   { "gfx.editor.button.ce_paste.y",             "286"                   },
7068   { "gfx.editor.button.ce_paste.width",         "22"                    },
7069   { "gfx.editor.button.ce_paste.height",        "22"                    },
7070   { "gfx.editor.button.ce_paste.pressed_xoffset", "-100"                },
7071
7072   { "gfx.editor.button.cp_copy",                "RocksDoor.png"         },
7073   { "gfx.editor.button.cp_copy.x",              "525"                   },
7074   { "gfx.editor.button.cp_copy.y",              "50"                    },
7075   { "gfx.editor.button.cp_copy.width",          "20"                    },
7076   { "gfx.editor.button.cp_copy.height",         "20"                    },
7077   { "gfx.editor.button.cp_copy.pressed_xoffset", "-20"                  },
7078
7079   { "gfx.editor.button.cp_paste",               "RocksDoor.png"         },
7080   { "gfx.editor.button.cp_paste.x",             "525"                   },
7081   { "gfx.editor.button.cp_paste.y",             "70"                    },
7082   { "gfx.editor.button.cp_paste.width",         "20"                    },
7083   { "gfx.editor.button.cp_paste.height",        "20"                    },
7084   { "gfx.editor.button.cp_paste.pressed_xoffset", "-20"                 },
7085
7086   { "gfx.editor.button.undo",                   "RocksDoor.png"         },
7087   { "gfx.editor.button.undo.x",                 "705"                   },
7088   { "gfx.editor.button.undo.y",                 "335"                   },
7089   { "gfx.editor.button.undo.width",             "30"                    },
7090   { "gfx.editor.button.undo.height",            "20"                    },
7091   { "gfx.editor.button.undo.pressed_xoffset",   "-100"                  },
7092
7093   { "gfx.editor.button.conf",                   "RocksDoor.png"         },
7094   { "gfx.editor.button.conf.x",                 "735"                   },
7095   { "gfx.editor.button.conf.y",                 "335"                   },
7096   { "gfx.editor.button.conf.width",             "30"                    },
7097   { "gfx.editor.button.conf.height",            "20"                    },
7098   { "gfx.editor.button.conf.pressed_xoffset",   "-100"                  },
7099
7100   { "gfx.editor.button.save",                   "RocksDoor.png"         },
7101   { "gfx.editor.button.save.x",                 "765"                   },
7102   { "gfx.editor.button.save.y",                 "335"                   },
7103   { "gfx.editor.button.save.width",             "30"                    },
7104   { "gfx.editor.button.save.height",            "20"                    },
7105   { "gfx.editor.button.save.pressed_xoffset",   "-100"                  },
7106
7107   { "gfx.editor.button.clear",                  "RocksDoor.png"         },
7108   { "gfx.editor.button.clear.x",                "705"                   },
7109   { "gfx.editor.button.clear.y",                "355"                   },
7110   { "gfx.editor.button.clear.width",            "30"                    },
7111   { "gfx.editor.button.clear.height",           "20"                    },
7112   { "gfx.editor.button.clear.pressed_xoffset",  "-100"                  },
7113
7114   { "gfx.editor.button.test",                   "RocksDoor.png"         },
7115   { "gfx.editor.button.test.x",                 "735"                   },
7116   { "gfx.editor.button.test.y",                 "355"                   },
7117   { "gfx.editor.button.test.width",             "30"                    },
7118   { "gfx.editor.button.test.height",            "20"                    },
7119   { "gfx.editor.button.test.pressed_xoffset",   "-100"                  },
7120
7121   { "gfx.editor.button.exit",                   "RocksDoor.png"         },
7122   { "gfx.editor.button.exit.x",                 "765"                   },
7123   { "gfx.editor.button.exit.y",                 "355"                   },
7124   { "gfx.editor.button.exit.width",             "30"                    },
7125   { "gfx.editor.button.exit.height",            "20"                    },
7126   { "gfx.editor.button.exit.pressed_xoffset",   "-100"                  },
7127
7128   { "gfx.editor.input.level_number",            "RocksDoor.png"         },
7129   { "gfx.editor.input.level_number.x",          "529"                   },
7130   { "gfx.editor.input.level_number.y",          "5"                     },
7131   { "gfx.editor.input.level_number.width",      "42"                    },
7132   { "gfx.editor.input.level_number.height",     "16"                    },
7133   { "gfx.editor.input.level_number.border_size","1"                     },
7134
7135   { "setup.input.text",                         "RocksSP.png"           },
7136   { "setup.input.text.x",                       "0"                     },
7137   { "setup.input.text.y",                       "0"                     },
7138   { "setup.input.text.width",                   "32"                    },
7139   { "setup.input.text.height",                  "32"                    },
7140   { "setup.input.text.active_xoffset",          "0"                     },
7141   { "setup.input.text.border_size",             "0"                     },
7142
7143   { "global.border",                            "RocksScreen.png"       },
7144   { "global.border.MAIN",                       UNDEFINED_FILENAME      },
7145   { "global.border.SCORES",                     UNDEFINED_FILENAME      },
7146   { "global.border.EDITOR",                     UNDEFINED_FILENAME      },
7147   { "global.border.PLAYING",                    UNDEFINED_FILENAME      },
7148
7149   { "global.door",                              "RocksDoor.png"         },
7150
7151   { "global.busy",                              "RocksBusy.png"         },
7152   { "global.busy.x",                            "0"                     },
7153   { "global.busy.y",                            "0"                     },
7154   { "global.busy.width",                        "32"                    },
7155   { "global.busy.height",                       "32"                    },
7156   { "global.busy.frames",                       "28"                    },
7157   { "global.busy.frames_per_line",              "7"                     },
7158   { "global.busy.delay",                        "2"                     },
7159
7160   { "global.tile_cursor",                       "RocksMore.png"         },
7161   { "global.tile_cursor.xpos",                  "10"                    },
7162   { "global.tile_cursor.ypos",                  "7"                     },
7163   { "global.tile_cursor.frames",                "1"                     },
7164
7165   { "background",                               UNDEFINED_FILENAME      },
7166   { "background.TITLE_INITIAL",                 UNDEFINED_FILENAME      },
7167   { "background.TITLE",                         UNDEFINED_FILENAME      },
7168   { "background.MAIN",                          UNDEFINED_FILENAME      },
7169   { "background.LEVELS",                        UNDEFINED_FILENAME      },
7170   { "background.LEVELNR",                       UNDEFINED_FILENAME      },
7171   { "background.SCORES",                        UNDEFINED_FILENAME      },
7172   { "background.EDITOR",                        UNDEFINED_FILENAME      },
7173   { "background.INFO",                          UNDEFINED_FILENAME      },
7174   { "background.INFO[ELEMENTS]",                UNDEFINED_FILENAME      },
7175   { "background.INFO[MUSIC]",                   UNDEFINED_FILENAME      },
7176   { "background.INFO[CREDITS]",                 UNDEFINED_FILENAME      },
7177   { "background.INFO[PROGRAM]",                 UNDEFINED_FILENAME      },
7178   { "background.INFO[VERSION]",                 UNDEFINED_FILENAME      },
7179   { "background.INFO[LEVELSET]",                UNDEFINED_FILENAME      },
7180   { "background.SETUP",                         UNDEFINED_FILENAME      },
7181   { "background.PLAYING",                       UNDEFINED_FILENAME      },
7182   { "background.DOOR",                          UNDEFINED_FILENAME      },
7183   { "background.TAPE",                          "RocksDoor.png"         },
7184   { "background.TAPE.x",                        "200"                   },
7185   { "background.TAPE.y",                        "280"                   },
7186   { "background.TAPE.width",                    "100"                   },
7187   { "background.TAPE.height",                   "100"                   },
7188   { "background.PANEL",                         "RocksDoor.png"         },
7189   { "background.PANEL.x",                       "400"                   },
7190   { "background.PANEL.y",                       "0"                     },
7191   { "background.PANEL.width",                   "100"                   },
7192   { "background.PANEL.height",                  "280"                   },
7193   { "background.PALETTE",                       "RocksDoor.png"         },
7194   { "background.PALETTE.x",                     "500"                   },
7195   { "background.PALETTE.y",                     "0"                     },
7196   { "background.PALETTE.width",                 "100"                   },
7197   { "background.PALETTE.height",                "280"                   },
7198   { "background.TOOLBOX",                       "RocksDoor.png"         },
7199   { "background.TOOLBOX.x",                     "700"                   },
7200   { "background.TOOLBOX.y",                     "236"                   },
7201   { "background.TOOLBOX.width",                 "100"                   },
7202   { "background.TOOLBOX.height",                "144"                   },
7203
7204   { "background.titlescreen_initial_1",         UNDEFINED_FILENAME      },
7205   { "background.titlescreen_initial_2",         UNDEFINED_FILENAME      },
7206   { "background.titlescreen_initial_3",         UNDEFINED_FILENAME      },
7207   { "background.titlescreen_initial_4",         UNDEFINED_FILENAME      },
7208   { "background.titlescreen_initial_5",         UNDEFINED_FILENAME      },
7209   { "background.titlescreen_1",                 UNDEFINED_FILENAME      },
7210   { "background.titlescreen_2",                 UNDEFINED_FILENAME      },
7211   { "background.titlescreen_3",                 UNDEFINED_FILENAME      },
7212   { "background.titlescreen_4",                 UNDEFINED_FILENAME      },
7213   { "background.titlescreen_5",                 UNDEFINED_FILENAME      },
7214   { "background.titlemessage_initial_1",        UNDEFINED_FILENAME      },
7215   { "background.titlemessage_initial_2",        UNDEFINED_FILENAME      },
7216   { "background.titlemessage_initial_3",        UNDEFINED_FILENAME      },
7217   { "background.titlemessage_initial_4",        UNDEFINED_FILENAME      },
7218   { "background.titlemessage_initial_5",        UNDEFINED_FILENAME      },
7219   { "background.titlemessage_1",                UNDEFINED_FILENAME      },
7220   { "background.titlemessage_2",                UNDEFINED_FILENAME      },
7221   { "background.titlemessage_3",                UNDEFINED_FILENAME      },
7222   { "background.titlemessage_4",                UNDEFINED_FILENAME      },
7223   { "background.titlemessage_5",                UNDEFINED_FILENAME      },
7224
7225   { "background.envelope_1",                    "RocksScreen.png"       },
7226   { "background.envelope_1.x",                  "0"                     },
7227   { "background.envelope_1.y",                  "0"                     },
7228   { "background.envelope_1.width",              "560"                   },
7229   { "background.envelope_1.height",             "560"                   },
7230   { "background.envelope_1.anim_mode",          "default"               },
7231   { "background.envelope_1.draw_masked",        "false"                 },
7232   { "background.envelope_2",                    "RocksScreen.png"       },
7233   { "background.envelope_2.x",                  "0"                     },
7234   { "background.envelope_2.y",                  "0"                     },
7235   { "background.envelope_2.width",              "560"                   },
7236   { "background.envelope_2.height",             "560"                   },
7237   { "background.envelope_2.anim_mode",          "default"               },
7238   { "background.envelope_2.draw_masked",        "false"                 },
7239   { "background.envelope_3",                    "RocksScreen.png"       },
7240   { "background.envelope_3.x",                  "0"                     },
7241   { "background.envelope_3.y",                  "0"                     },
7242   { "background.envelope_3.width",              "560"                   },
7243   { "background.envelope_3.height",             "560"                   },
7244   { "background.envelope_3.anim_mode",          "default"               },
7245   { "background.envelope_3.draw_masked",        "false"                 },
7246   { "background.envelope_4",                    "RocksScreen.png"       },
7247   { "background.envelope_4.x",                  "0"                     },
7248   { "background.envelope_4.y",                  "0"                     },
7249   { "background.envelope_4.width",              "560"                   },
7250   { "background.envelope_4.height",             "560"                   },
7251   { "background.envelope_4.anim_mode",          "default"               },
7252   { "background.envelope_4.draw_masked",        "false"                 },
7253
7254   { "background.request",                       "RocksScreen.png"       },
7255   { "background.request.x",                     "562"                   },
7256   { "background.request.y",                     "56"                    },
7257   { "background.request.width",                 "108"                   },
7258   { "background.request.height",                "288"                   },
7259   { "background.request.anim_mode",             "default"               },
7260   { "background.request.draw_masked",           "false"                 },
7261
7262   { "titlescreen_initial_1",                    UNDEFINED_FILENAME      },
7263   { "titlescreen_initial_2",                    UNDEFINED_FILENAME      },
7264   { "titlescreen_initial_3",                    UNDEFINED_FILENAME      },
7265   { "titlescreen_initial_4",                    UNDEFINED_FILENAME      },
7266   { "titlescreen_initial_5",                    UNDEFINED_FILENAME      },
7267   { "titlescreen_1",                            UNDEFINED_FILENAME      },
7268   { "titlescreen_2",                            UNDEFINED_FILENAME      },
7269   { "titlescreen_3",                            UNDEFINED_FILENAME      },
7270   { "titlescreen_4",                            UNDEFINED_FILENAME      },
7271   { "titlescreen_5",                            UNDEFINED_FILENAME      },
7272
7273   { "gfx.door_1.part_1",                        "RocksDoor.png"         },
7274   { "gfx.door_1.part_1.x",                      "0"                     },
7275   { "gfx.door_1.part_1.y",                      "0"                     },
7276   { "gfx.door_1.part_1.width",                  "100"                   },
7277   { "gfx.door_1.part_1.height",                 "77"                    },
7278   { "gfx.door_1.part_1.frames",                 "1"                     },
7279   { "gfx.door_1.part_2",                        "RocksDoor.png"         },
7280   { "gfx.door_1.part_2.x",                      "0"                     },
7281   { "gfx.door_1.part_2.y",                      "77"                    },
7282   { "gfx.door_1.part_2.width",                  "100"                   },
7283   { "gfx.door_1.part_2.height",                 "63"                    },
7284   { "gfx.door_1.part_2.frames",                 "1"                     },
7285   { "gfx.door_1.part_3",                        "RocksDoor.png"         },
7286   { "gfx.door_1.part_3.x",                      "0"                     },
7287   { "gfx.door_1.part_3.y",                      "140"                   },
7288   { "gfx.door_1.part_3.width",                  "100"                   },
7289   { "gfx.door_1.part_3.height",                 "63"                    },
7290   { "gfx.door_1.part_3.frames",                 "1"                     },
7291   { "gfx.door_1.part_4",                        "RocksDoor.png"         },
7292   { "gfx.door_1.part_4.x",                      "0"                     },
7293   { "gfx.door_1.part_4.y",                      "203"                   },
7294   { "gfx.door_1.part_4.width",                  "100"                   },
7295   { "gfx.door_1.part_4.height",                 "77"                    },
7296   { "gfx.door_1.part_4.frames",                 "1"                     },
7297   { "gfx.door_1.part_5",                        "RocksDoor.png"         },
7298   { "gfx.door_1.part_5.x",                      "100"                   },
7299   { "gfx.door_1.part_5.y",                      "0"                     },
7300   { "gfx.door_1.part_5.width",                  "100"                   },
7301   { "gfx.door_1.part_5.height",                 "77"                    },
7302   { "gfx.door_1.part_5.frames",                 "1"                     },
7303   { "gfx.door_1.part_6",                        "RocksDoor.png"         },
7304   { "gfx.door_1.part_6.x",                      "100"                   },
7305   { "gfx.door_1.part_6.y",                      "77"                    },
7306   { "gfx.door_1.part_6.width",                  "100"                   },
7307   { "gfx.door_1.part_6.height",                 "63"                    },
7308   { "gfx.door_1.part_6.frames",                 "1"                     },
7309   { "gfx.door_1.part_7",                        "RocksDoor.png"         },
7310   { "gfx.door_1.part_7.x",                      "100"                   },
7311   { "gfx.door_1.part_7.y",                      "140"                   },
7312   { "gfx.door_1.part_7.width",                  "100"                   },
7313   { "gfx.door_1.part_7.height",                 "63"                    },
7314   { "gfx.door_1.part_7.frames",                 "1"                     },
7315   { "gfx.door_1.part_8",                        "RocksDoor.png"         },
7316   { "gfx.door_1.part_8.x",                      "100"                   },
7317   { "gfx.door_1.part_8.y",                      "203"                   },
7318   { "gfx.door_1.part_8.width",                  "100"                   },
7319   { "gfx.door_1.part_8.height",                 "77"                    },
7320   { "gfx.door_1.part_8.frames",                 "1"                     },
7321
7322   { "gfx.door_2.part_1",                        "RocksDoor.png"         },
7323   { "gfx.door_2.part_1.x",                      "0"                     },
7324   { "gfx.door_2.part_1.y",                      "280"                   },
7325   { "gfx.door_2.part_1.width",                  "100"                   },
7326   { "gfx.door_2.part_1.height",                 "50"                    },
7327   { "gfx.door_2.part_1.frames",                 "1"                     },
7328   { "gfx.door_2.part_2",                        "RocksDoor.png"         },
7329   { "gfx.door_2.part_2.x",                      "0"                     },
7330   { "gfx.door_2.part_2.y",                      "330"                   },
7331   { "gfx.door_2.part_2.width",                  "100"                   },
7332   { "gfx.door_2.part_2.height",                 "50"                    },
7333   { "gfx.door_2.part_2.frames",                 "1"                     },
7334   { "gfx.door_2.part_3",                        "RocksDoor.png"         },
7335   { "gfx.door_2.part_3.x",                      "100"                   },
7336   { "gfx.door_2.part_3.y",                      "280"                   },
7337   { "gfx.door_2.part_3.width",                  "100"                   },
7338   { "gfx.door_2.part_3.height",                 "50"                    },
7339   { "gfx.door_2.part_3.frames",                 "1"                     },
7340   { "gfx.door_2.part_4",                        "RocksDoor.png"         },
7341   { "gfx.door_2.part_4.x",                      "100"                   },
7342   { "gfx.door_2.part_4.y",                      "330"                   },
7343   { "gfx.door_2.part_4.width",                  "100"                   },
7344   { "gfx.door_2.part_4.height",                 "50"                    },
7345   { "gfx.door_2.part_4.frames",                 "1"                     },
7346   { "gfx.door_2.part_5",                        UNDEFINED_FILENAME      },
7347   { "gfx.door_2.part_6",                        UNDEFINED_FILENAME      },
7348   { "gfx.door_2.part_7",                        UNDEFINED_FILENAME      },
7349   { "gfx.door_2.part_8",                        UNDEFINED_FILENAME      },
7350
7351   { "door_2.top_border_correction",             "RocksDoor.png"         },
7352   { "door_2.top_border_correction.x",           "600"                   },
7353   { "door_2.top_border_correction.y",           "0"                     },
7354   { "door_2.top_border_correction.width",       "108"                   },
7355   { "door_2.top_border_correction.height",      "8"                     },
7356
7357   // the last image entry apparently gets overwritten by very last entry
7358   // of "image_config[]"; so far this bug could not be found and fixed
7359   { "last_image_entry_bug",                     UNDEFINED_FILENAME      },
7360
7361
7362   // ==========================================================================
7363   // non-image definitions
7364   // ==========================================================================
7365
7366   // the following directives are not associated with an image, but
7367   // probably make sense to be defined in "graphicsinfo.conf", too
7368
7369   // keyword to start parser: "CONFIG_VARS_START" <-- do not change!
7370
7371   { "[title_initial].fade_mode",                "fade"                  },
7372   { "[title_initial].fade_delay",               "500"                   },
7373   { "[title_initial].post_delay",               "250"                   },
7374   { "[title_initial].auto_delay",               "-1"                    },
7375   { "[title].fade_mode",                        "fade"                  },
7376   { "[title].fade_delay",                       "500"                   },
7377   { "[title].post_delay",                       "250"                   },
7378   { "[title].auto_delay",                       "-1"                    },
7379
7380   { "[titlescreen_initial].sort_priority",      "0"                     },
7381   { "[titlescreen_initial].fade_mode",          ARG_DEFAULT             },
7382   { "[titlescreen_initial].fade_delay",         ARG_DEFAULT             },
7383   { "[titlescreen_initial].post_delay",         ARG_DEFAULT             },
7384   { "[titlescreen_initial].auto_delay",         ARG_DEFAULT             },
7385   { "[titlescreen].sort_priority",              "0"                     },
7386   { "[titlescreen].fade_mode",                  ARG_DEFAULT             },
7387   { "[titlescreen].fade_delay",                 ARG_DEFAULT             },
7388   { "[titlescreen].post_delay",                 ARG_DEFAULT             },
7389   { "[titlescreen].auto_delay",                 ARG_DEFAULT             },
7390
7391   { "titlescreen_initial_1.sort_priority",      ARG_DEFAULT             },
7392   { "titlescreen_initial_1.fade_mode",          ARG_DEFAULT             },
7393   { "titlescreen_initial_1.fade_delay",         ARG_DEFAULT             },
7394   { "titlescreen_initial_1.post_delay",         ARG_DEFAULT             },
7395   { "titlescreen_initial_1.auto_delay",         ARG_DEFAULT             },
7396   { "titlescreen_initial_2.sort_priority",      ARG_DEFAULT             },
7397   { "titlescreen_initial_2.fade_mode",          ARG_DEFAULT             },
7398   { "titlescreen_initial_2.fade_delay",         ARG_DEFAULT             },
7399   { "titlescreen_initial_2.post_delay",         ARG_DEFAULT             },
7400   { "titlescreen_initial_2.auto_delay",         ARG_DEFAULT             },
7401   { "titlescreen_initial_3.sort_priority",      ARG_DEFAULT             },
7402   { "titlescreen_initial_3.fade_mode",          ARG_DEFAULT             },
7403   { "titlescreen_initial_3.fade_delay",         ARG_DEFAULT             },
7404   { "titlescreen_initial_3.post_delay",         ARG_DEFAULT             },
7405   { "titlescreen_initial_3.auto_delay",         ARG_DEFAULT             },
7406   { "titlescreen_initial_4.sort_priority",      ARG_DEFAULT             },
7407   { "titlescreen_initial_4.fade_mode",          ARG_DEFAULT             },
7408   { "titlescreen_initial_4.fade_delay",         ARG_DEFAULT             },
7409   { "titlescreen_initial_4.post_delay",         ARG_DEFAULT             },
7410   { "titlescreen_initial_4.auto_delay",         ARG_DEFAULT             },
7411   { "titlescreen_initial_5.sort_priority",      ARG_DEFAULT             },
7412   { "titlescreen_initial_5.fade_mode",          ARG_DEFAULT             },
7413   { "titlescreen_initial_5.fade_delay",         ARG_DEFAULT             },
7414   { "titlescreen_initial_5.post_delay",         ARG_DEFAULT             },
7415   { "titlescreen_initial_5.auto_delay",         ARG_DEFAULT             },
7416   { "titlescreen_1.sort_priority",              ARG_DEFAULT             },
7417   { "titlescreen_1.fade_mode",                  ARG_DEFAULT             },
7418   { "titlescreen_1.fade_delay",                 ARG_DEFAULT             },
7419   { "titlescreen_1.post_delay",                 ARG_DEFAULT             },
7420   { "titlescreen_1.auto_delay",                 ARG_DEFAULT             },
7421   { "titlescreen_2.sort_priority",              ARG_DEFAULT             },
7422   { "titlescreen_2.fade_mode",                  ARG_DEFAULT             },
7423   { "titlescreen_2.fade_delay",                 ARG_DEFAULT             },
7424   { "titlescreen_2.post_delay",                 ARG_DEFAULT             },
7425   { "titlescreen_2.auto_delay",                 ARG_DEFAULT             },
7426   { "titlescreen_3.sort_priority",              ARG_DEFAULT             },
7427   { "titlescreen_3.fade_mode",                  ARG_DEFAULT             },
7428   { "titlescreen_3.fade_delay",                 ARG_DEFAULT             },
7429   { "titlescreen_3.post_delay",                 ARG_DEFAULT             },
7430   { "titlescreen_3.auto_delay",                 ARG_DEFAULT             },
7431   { "titlescreen_4.sort_priority",              ARG_DEFAULT             },
7432   { "titlescreen_4.fade_mode",                  ARG_DEFAULT             },
7433   { "titlescreen_4.fade_delay",                 ARG_DEFAULT             },
7434   { "titlescreen_4.post_delay",                 ARG_DEFAULT             },
7435   { "titlescreen_4.auto_delay",                 ARG_DEFAULT             },
7436   { "titlescreen_5.sort_priority",              ARG_DEFAULT             },
7437   { "titlescreen_5.fade_mode",                  ARG_DEFAULT             },
7438   { "titlescreen_5.fade_delay",                 ARG_DEFAULT             },
7439   { "titlescreen_5.post_delay",                 ARG_DEFAULT             },
7440   { "titlescreen_5.auto_delay",                 ARG_DEFAULT             },
7441
7442   { "[titlemessage_initial].x",                 "-1"                    },
7443   { "[titlemessage_initial].y",                 "-1"                    },
7444   { "[titlemessage_initial].width",             "-1"                    },
7445   { "[titlemessage_initial].height",            "-1"                    },
7446   { "[titlemessage_initial].chars",             "-1"                    },
7447   { "[titlemessage_initial].lines",             "-1"                    },
7448   { "[titlemessage_initial].align",             "center"                },
7449   { "[titlemessage_initial].valign",            "middle"                },
7450   { "[titlemessage_initial].font",              "font.text_1"           },
7451   { "[titlemessage_initial].autowrap",          "false"                 },
7452   { "[titlemessage_initial].centered",          "false"                 },
7453   { "[titlemessage_initial].parse_comments",    "false"                 },
7454   { "[titlemessage_initial].sort_priority",     "0"                     },
7455   { "[titlemessage_initial].fade_mode",         ARG_DEFAULT             },
7456   { "[titlemessage_initial].fade_delay",        ARG_DEFAULT             },
7457   { "[titlemessage_initial].post_delay",        ARG_DEFAULT             },
7458   { "[titlemessage_initial].auto_delay",        ARG_DEFAULT             },
7459   { "[titlemessage].x",                         "-1"                    },
7460   { "[titlemessage].y",                         "-1"                    },
7461   { "[titlemessage].width",                     "-1"                    },
7462   { "[titlemessage].height",                    "-1"                    },
7463   { "[titlemessage].chars",                     "-1"                    },
7464   { "[titlemessage].lines",                     "-1"                    },
7465   { "[titlemessage].align",                     "center"                },
7466   { "[titlemessage].valign",                    "middle"                },
7467   { "[titlemessage].font",                      "font.text_1"           },
7468   { "[titlemessage].autowrap",                  "false"                 },
7469   { "[titlemessage].centered",                  "false"                 },
7470   { "[titlemessage].parse_comments",            "false"                 },
7471   { "[titlemessage].sort_priority",             "0"                     },
7472   { "[titlemessage].fade_mode",                 ARG_DEFAULT             },
7473   { "[titlemessage].fade_delay",                ARG_DEFAULT             },
7474   { "[titlemessage].post_delay",                ARG_DEFAULT             },
7475   { "[titlemessage].auto_delay",                ARG_DEFAULT             },
7476
7477   { "titlemessage_initial_1.x",                 ARG_DEFAULT             },
7478   { "titlemessage_initial_1.y",                 ARG_DEFAULT             },
7479   { "titlemessage_initial_1.width",             ARG_DEFAULT             },
7480   { "titlemessage_initial_1.height",            ARG_DEFAULT             },
7481   { "titlemessage_initial_1.chars",             ARG_DEFAULT             },
7482   { "titlemessage_initial_1.lines",             ARG_DEFAULT             },
7483   { "titlemessage_initial_1.align",             ARG_DEFAULT             },
7484   { "titlemessage_initial_1.valign",            ARG_DEFAULT             },
7485   { "titlemessage_initial_1.font",              ARG_DEFAULT             },
7486   { "titlemessage_initial_1.autowrap",          ARG_DEFAULT             },
7487   { "titlemessage_initial_1.centered",          ARG_DEFAULT             },
7488   { "titlemessage_initial_1.parse_comments",    ARG_DEFAULT             },
7489   { "titlemessage_initial_1.sort_priority",     ARG_DEFAULT             },
7490   { "titlemessage_initial_1.fade_mode",         ARG_DEFAULT             },
7491   { "titlemessage_initial_1.fade_delay",        ARG_DEFAULT             },
7492   { "titlemessage_initial_1.post_delay",        ARG_DEFAULT             },
7493   { "titlemessage_initial_1.auto_delay",        ARG_DEFAULT             },
7494   { "titlemessage_initial_2.x",                 ARG_DEFAULT             },
7495   { "titlemessage_initial_2.y",                 ARG_DEFAULT             },
7496   { "titlemessage_initial_2.width",             ARG_DEFAULT             },
7497   { "titlemessage_initial_2.height",            ARG_DEFAULT             },
7498   { "titlemessage_initial_2.chars",             ARG_DEFAULT             },
7499   { "titlemessage_initial_2.lines",             ARG_DEFAULT             },
7500   { "titlemessage_initial_2.align",             ARG_DEFAULT             },
7501   { "titlemessage_initial_2.valign",            ARG_DEFAULT             },
7502   { "titlemessage_initial_2.font",              ARG_DEFAULT             },
7503   { "titlemessage_initial_2.autowrap",          ARG_DEFAULT             },
7504   { "titlemessage_initial_2.centered",          ARG_DEFAULT             },
7505   { "titlemessage_initial_2.parse_comments",    ARG_DEFAULT             },
7506   { "titlemessage_initial_2.sort_priority",     ARG_DEFAULT             },
7507   { "titlemessage_initial_2.fade_mode",         ARG_DEFAULT             },
7508   { "titlemessage_initial_2.fade_delay",        ARG_DEFAULT             },
7509   { "titlemessage_initial_2.post_delay",        ARG_DEFAULT             },
7510   { "titlemessage_initial_2.auto_delay",        ARG_DEFAULT             },
7511   { "titlemessage_initial_3.x",                 ARG_DEFAULT             },
7512   { "titlemessage_initial_3.y",                 ARG_DEFAULT             },
7513   { "titlemessage_initial_3.width",             ARG_DEFAULT             },
7514   { "titlemessage_initial_3.height",            ARG_DEFAULT             },
7515   { "titlemessage_initial_3.chars",             ARG_DEFAULT             },
7516   { "titlemessage_initial_3.lines",             ARG_DEFAULT             },
7517   { "titlemessage_initial_3.align",             ARG_DEFAULT             },
7518   { "titlemessage_initial_3.valign",            ARG_DEFAULT             },
7519   { "titlemessage_initial_3.font",              ARG_DEFAULT             },
7520   { "titlemessage_initial_3.autowrap",          ARG_DEFAULT             },
7521   { "titlemessage_initial_3.centered",          ARG_DEFAULT             },
7522   { "titlemessage_initial_3.parse_comments",    ARG_DEFAULT             },
7523   { "titlemessage_initial_3.sort_priority",     ARG_DEFAULT             },
7524   { "titlemessage_initial_3.fade_mode",         ARG_DEFAULT             },
7525   { "titlemessage_initial_3.fade_delay",        ARG_DEFAULT             },
7526   { "titlemessage_initial_3.post_delay",        ARG_DEFAULT             },
7527   { "titlemessage_initial_3.auto_delay",        ARG_DEFAULT             },
7528   { "titlemessage_initial_4.x",                 ARG_DEFAULT             },
7529   { "titlemessage_initial_4.y",                 ARG_DEFAULT             },
7530   { "titlemessage_initial_4.width",             ARG_DEFAULT             },
7531   { "titlemessage_initial_4.height",            ARG_DEFAULT             },
7532   { "titlemessage_initial_4.chars",             ARG_DEFAULT             },
7533   { "titlemessage_initial_4.lines",             ARG_DEFAULT             },
7534   { "titlemessage_initial_4.align",             ARG_DEFAULT             },
7535   { "titlemessage_initial_4.valign",            ARG_DEFAULT             },
7536   { "titlemessage_initial_4.font",              ARG_DEFAULT             },
7537   { "titlemessage_initial_4.autowrap",          ARG_DEFAULT             },
7538   { "titlemessage_initial_4.centered",          ARG_DEFAULT             },
7539   { "titlemessage_initial_4.parse_comments",    ARG_DEFAULT             },
7540   { "titlemessage_initial_4.sort_priority",     ARG_DEFAULT             },
7541   { "titlemessage_initial_4.fade_mode",         ARG_DEFAULT             },
7542   { "titlemessage_initial_4.fade_delay",        ARG_DEFAULT             },
7543   { "titlemessage_initial_4.post_delay",        ARG_DEFAULT             },
7544   { "titlemessage_initial_4.auto_delay",        ARG_DEFAULT             },
7545   { "titlemessage_initial_5.x",                 ARG_DEFAULT             },
7546   { "titlemessage_initial_5.y",                 ARG_DEFAULT             },
7547   { "titlemessage_initial_5.width",             ARG_DEFAULT             },
7548   { "titlemessage_initial_5.height",            ARG_DEFAULT             },
7549   { "titlemessage_initial_5.chars",             ARG_DEFAULT             },
7550   { "titlemessage_initial_5.lines",             ARG_DEFAULT             },
7551   { "titlemessage_initial_5.align",             ARG_DEFAULT             },
7552   { "titlemessage_initial_5.valign",            ARG_DEFAULT             },
7553   { "titlemessage_initial_5.font",              ARG_DEFAULT             },
7554   { "titlemessage_initial_5.autowrap",          ARG_DEFAULT             },
7555   { "titlemessage_initial_5.centered",          ARG_DEFAULT             },
7556   { "titlemessage_initial_5.parse_comments",    ARG_DEFAULT             },
7557   { "titlemessage_initial_5.sort_priority",     ARG_DEFAULT             },
7558   { "titlemessage_initial_5.fade_mode",         ARG_DEFAULT             },
7559   { "titlemessage_initial_5.fade_delay",        ARG_DEFAULT             },
7560   { "titlemessage_initial_5.post_delay",        ARG_DEFAULT             },
7561   { "titlemessage_initial_5.auto_delay",        ARG_DEFAULT             },
7562   { "titlemessage_1.x",                         ARG_DEFAULT             },
7563   { "titlemessage_1.y",                         ARG_DEFAULT             },
7564   { "titlemessage_1.width",                     ARG_DEFAULT             },
7565   { "titlemessage_1.height",                    ARG_DEFAULT             },
7566   { "titlemessage_1.chars",                     ARG_DEFAULT             },
7567   { "titlemessage_1.lines",                     ARG_DEFAULT             },
7568   { "titlemessage_1.align",                     ARG_DEFAULT             },
7569   { "titlemessage_1.valign",                    ARG_DEFAULT             },
7570   { "titlemessage_1.font",                      ARG_DEFAULT             },
7571   { "titlemessage_1.autowrap",                  ARG_DEFAULT             },
7572   { "titlemessage_1.centered",                  ARG_DEFAULT             },
7573   { "titlemessage_1.parse_comments",            ARG_DEFAULT             },
7574   { "titlemessage_1.sort_priority",             ARG_DEFAULT             },
7575   { "titlemessage_1.fade_mode",                 ARG_DEFAULT             },
7576   { "titlemessage_1.fade_delay",                ARG_DEFAULT             },
7577   { "titlemessage_1.post_delay",                ARG_DEFAULT             },
7578   { "titlemessage_1.auto_delay",                ARG_DEFAULT             },
7579   { "titlemessage_2.x",                         ARG_DEFAULT             },
7580   { "titlemessage_2.y",                         ARG_DEFAULT             },
7581   { "titlemessage_2.width",                     ARG_DEFAULT             },
7582   { "titlemessage_2.height",                    ARG_DEFAULT             },
7583   { "titlemessage_2.chars",                     ARG_DEFAULT             },
7584   { "titlemessage_2.lines",                     ARG_DEFAULT             },
7585   { "titlemessage_2.align",                     ARG_DEFAULT             },
7586   { "titlemessage_2.valign",                    ARG_DEFAULT             },
7587   { "titlemessage_2.font",                      ARG_DEFAULT             },
7588   { "titlemessage_2.autowrap",                  ARG_DEFAULT             },
7589   { "titlemessage_2.centered",                  ARG_DEFAULT             },
7590   { "titlemessage_2.parse_comments",            ARG_DEFAULT             },
7591   { "titlemessage_2.sort_priority",             ARG_DEFAULT             },
7592   { "titlemessage_2.fade_mode",                 ARG_DEFAULT             },
7593   { "titlemessage_2.fade_delay",                ARG_DEFAULT             },
7594   { "titlemessage_2.post_delay",                ARG_DEFAULT             },
7595   { "titlemessage_2.auto_delay",                ARG_DEFAULT             },
7596   { "titlemessage_3.x",                         ARG_DEFAULT             },
7597   { "titlemessage_3.y",                         ARG_DEFAULT             },
7598   { "titlemessage_3.width",                     ARG_DEFAULT             },
7599   { "titlemessage_3.height",                    ARG_DEFAULT             },
7600   { "titlemessage_3.chars",                     ARG_DEFAULT             },
7601   { "titlemessage_3.lines",                     ARG_DEFAULT             },
7602   { "titlemessage_3.align",                     ARG_DEFAULT             },
7603   { "titlemessage_3.valign",                    ARG_DEFAULT             },
7604   { "titlemessage_3.font",                      ARG_DEFAULT             },
7605   { "titlemessage_3.autowrap",                  ARG_DEFAULT             },
7606   { "titlemessage_3.centered",                  ARG_DEFAULT             },
7607   { "titlemessage_3.parse_comments",            ARG_DEFAULT             },
7608   { "titlemessage_3.sort_priority",             ARG_DEFAULT             },
7609   { "titlemessage_3.fade_mode",                 ARG_DEFAULT             },
7610   { "titlemessage_3.fade_delay",                ARG_DEFAULT             },
7611   { "titlemessage_3.post_delay",                ARG_DEFAULT             },
7612   { "titlemessage_3.auto_delay",                ARG_DEFAULT             },
7613   { "titlemessage_4.x",                         ARG_DEFAULT             },
7614   { "titlemessage_4.y",                         ARG_DEFAULT             },
7615   { "titlemessage_4.width",                     ARG_DEFAULT             },
7616   { "titlemessage_4.height",                    ARG_DEFAULT             },
7617   { "titlemessage_4.chars",                     ARG_DEFAULT             },
7618   { "titlemessage_4.lines",                     ARG_DEFAULT             },
7619   { "titlemessage_4.align",                     ARG_DEFAULT             },
7620   { "titlemessage_4.valign",                    ARG_DEFAULT             },
7621   { "titlemessage_4.font",                      ARG_DEFAULT             },
7622   { "titlemessage_4.autowrap",                  ARG_DEFAULT             },
7623   { "titlemessage_4.centered",                  ARG_DEFAULT             },
7624   { "titlemessage_4.parse_comments",            ARG_DEFAULT             },
7625   { "titlemessage_4.sort_priority",             ARG_DEFAULT             },
7626   { "titlemessage_4.fade_mode",                 ARG_DEFAULT             },
7627   { "titlemessage_4.fade_delay",                ARG_DEFAULT             },
7628   { "titlemessage_4.post_delay",                ARG_DEFAULT             },
7629   { "titlemessage_4.auto_delay",                ARG_DEFAULT             },
7630   { "titlemessage_5.x",                         ARG_DEFAULT             },
7631   { "titlemessage_5.y",                         ARG_DEFAULT             },
7632   { "titlemessage_5.width",                     ARG_DEFAULT             },
7633   { "titlemessage_5.height",                    ARG_DEFAULT             },
7634   { "titlemessage_5.chars",                     ARG_DEFAULT             },
7635   { "titlemessage_5.lines",                     ARG_DEFAULT             },
7636   { "titlemessage_5.align",                     ARG_DEFAULT             },
7637   { "titlemessage_5.valign",                    ARG_DEFAULT             },
7638   { "titlemessage_5.font",                      ARG_DEFAULT             },
7639   { "titlemessage_5.autowrap",                  ARG_DEFAULT             },
7640   { "titlemessage_5.centered",                  ARG_DEFAULT             },
7641   { "titlemessage_5.parse_comments",            ARG_DEFAULT             },
7642   { "titlemessage_5.sort_priority",             ARG_DEFAULT             },
7643   { "titlemessage_5.fade_mode",                 ARG_DEFAULT             },
7644   { "titlemessage_5.fade_delay",                ARG_DEFAULT             },
7645   { "titlemessage_5.post_delay",                ARG_DEFAULT             },
7646   { "titlemessage_5.auto_delay",                ARG_DEFAULT             },
7647
7648   { "readme.x",                                 "-1"                    },
7649   { "readme.y",                                 "-1"                    },
7650   { "readme.width",                             "-1"                    },
7651   { "readme.height",                            "-1"                    },
7652   { "readme.chars",                             "-1"                    },
7653   { "readme.lines",                             "-1"                    },
7654   { "readme.align",                             "center"                },
7655   { "readme.valign",                            "top"                   },
7656   { "readme.font",                              "font.info.levelset"    },
7657   { "readme.autowrap",                          "true"                  },
7658   { "readme.centered",                          "false"                 },
7659   { "readme.parse_comments",                    "true"                  },
7660   { "readme.sort_priority",                     "0"                     },
7661
7662   { "global.num_toons",                         "20"                    },
7663
7664   { "border.draw_masked.TITLE",                 "false"                 },
7665   { "border.draw_masked.MAIN",                  "false"                 },
7666   { "border.draw_masked.LEVELS",                "false"                 },
7667   { "border.draw_masked.LEVELNR",               "false"                 },
7668   { "border.draw_masked.SCORES",                "false"                 },
7669   { "border.draw_masked.EDITOR",                "false"                 },
7670   { "border.draw_masked.INFO",                  "false"                 },
7671   { "border.draw_masked.SETUP",                 "false"                 },
7672   { "border.draw_masked.PLAYING",               "false"                 },
7673   { "border.draw_masked.DOOR",                  "false"                 },
7674
7675   { "border.draw_masked_when_fading",           "true"                  },
7676
7677   { "init.busy.x",                              "-1"                    },
7678   { "init.busy.y",                              "-1"                    },
7679   { "init.busy.align",                          "center"                },
7680   { "init.busy.valign",                         "middle"                },
7681
7682   { "menu.enter_menu.fade_mode",                "none"                  },
7683   { "menu.enter_menu.fade_delay",               "250"                   },
7684   { "menu.enter_menu.post_delay",               "125"                   },
7685   { "menu.leave_menu.fade_mode",                "none"                  },
7686   { "menu.leave_menu.fade_delay",               "250"                   },
7687   { "menu.leave_menu.post_delay",               "125"                   },
7688   { "menu.enter_screen.fade_mode",              "fade"                  },
7689   { "menu.enter_screen.fade_delay",             "250"                   },
7690   { "menu.enter_screen.post_delay",             "125"                   },
7691   { "menu.leave_screen.fade_mode",              "fade"                  },
7692   { "menu.leave_screen.fade_delay",             "250"                   },
7693   { "menu.leave_screen.post_delay",             "125"                   },
7694   { "menu.next_screen.fade_mode",               "crossfade"             },
7695   { "menu.next_screen.fade_delay",              "250"                   },
7696   { "menu.next_screen.post_delay",              "125"                   },
7697   { "menu.enter_screen.TITLE.fade_mode",        "fade"                  },
7698   { "menu.enter_screen.TITLE.fade_delay",       "500"                   },
7699   { "menu.enter_screen.TITLE.post_delay",       "250"                   },
7700   { "menu.enter_screen.TITLE.auto_delay",       "-1"                    },
7701   { "menu.enter_screen.SCORES.fade_mode",       ARG_DEFAULT             },
7702   { "menu.enter_screen.SCORES.fade_delay",      ARG_DEFAULT             },
7703   { "menu.enter_screen.SCORES.post_delay",      ARG_DEFAULT             },
7704   { "menu.enter_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
7705   { "menu.enter_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
7706   { "menu.enter_screen.EDITOR.post_delay",      ARG_DEFAULT             },
7707   { "menu.enter_screen.INFO.fade_mode",         ARG_DEFAULT             },
7708   { "menu.enter_screen.INFO.fade_delay",        ARG_DEFAULT             },
7709   { "menu.enter_screen.INFO.post_delay",        ARG_DEFAULT             },
7710   { "menu.enter_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
7711   { "menu.enter_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
7712   { "menu.enter_screen.PLAYING.post_delay",     ARG_DEFAULT             },
7713   { "menu.leave_screen.TITLE.fade_mode",        "fade"                  },
7714   { "menu.leave_screen.TITLE.fade_delay",       "500"                   },
7715   { "menu.leave_screen.TITLE.post_delay",       "250"                   },
7716   { "menu.leave_screen.TITLE.auto_delay",       "-1"                    },
7717   { "menu.leave_screen.SCORES.fade_mode",       ARG_DEFAULT             },
7718   { "menu.leave_screen.SCORES.fade_delay",      ARG_DEFAULT             },
7719   { "menu.leave_screen.SCORES.post_delay",      ARG_DEFAULT             },
7720   { "menu.leave_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
7721   { "menu.leave_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
7722   { "menu.leave_screen.EDITOR.post_delay",      ARG_DEFAULT             },
7723   { "menu.leave_screen.INFO.fade_mode",         ARG_DEFAULT             },
7724   { "menu.leave_screen.INFO.fade_delay",        ARG_DEFAULT             },
7725   { "menu.leave_screen.INFO.post_delay",        ARG_DEFAULT             },
7726   { "menu.leave_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
7727   { "menu.leave_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
7728   { "menu.leave_screen.PLAYING.post_delay",     ARG_DEFAULT             },
7729   { "menu.next_screen.TITLE.fade_mode",         "fade"                  },
7730   { "menu.next_screen.TITLE.fade_delay",        "500"                   },
7731   { "menu.next_screen.TITLE.post_delay",        "250"                   },
7732   { "menu.next_screen.TITLE.auto_delay",        "-1"                    },
7733   { "menu.next_screen.INFO.fade_mode",          ARG_DEFAULT             },
7734   { "menu.next_screen.INFO.fade_delay",         ARG_DEFAULT             },
7735   { "menu.next_screen.INFO.post_delay",         ARG_DEFAULT             },
7736
7737   { "menu.draw_xoffset",                        "0"                     },
7738   { "menu.draw_yoffset",                        "0"                     },
7739   { "menu.draw_xoffset.MAIN",                   "0"                     },
7740   { "menu.draw_yoffset.MAIN",                   "0"                     },
7741   { "menu.draw_xoffset.LEVELS",                 "0"                     },
7742   { "menu.draw_yoffset.LEVELS",                 "0"                     },
7743   { "menu.draw_xoffset.LEVELNR",                "0"                     },
7744   { "menu.draw_yoffset.LEVELNR",                "0"                     },
7745   { "menu.draw_xoffset.SCORES",                 "0"                     },
7746   { "menu.draw_yoffset.SCORES",                 "0"                     },
7747   { "menu.draw_xoffset.EDITOR",                 "0"                     },
7748   { "menu.draw_yoffset.EDITOR",                 "0"                     },
7749   { "menu.draw_xoffset.INFO",                   "0"                     },
7750   { "menu.draw_yoffset.INFO",                   "0"                     },
7751   { "menu.draw_xoffset.INFO[TITLE]",            "0"                     },
7752   { "menu.draw_yoffset.INFO[TITLE]",            "0"                     },
7753   { "menu.draw_xoffset.INFO[ELEMENTS]",         "0"                     },
7754   { "menu.draw_yoffset.INFO[ELEMENTS]",         "0"                     },
7755   { "menu.draw_xoffset.INFO[MUSIC]",            "0"                     },
7756   { "menu.draw_yoffset.INFO[MUSIC]",            "0"                     },
7757   { "menu.draw_xoffset.INFO[CREDITS]",          "0"                     },
7758   { "menu.draw_yoffset.INFO[CREDITS]",          "0"                     },
7759   { "menu.draw_xoffset.INFO[PROGRAM]",          "0"                     },
7760   { "menu.draw_yoffset.INFO[PROGRAM]",          "0"                     },
7761   { "menu.draw_xoffset.INFO[VERSION]",          "0"                     },
7762   { "menu.draw_yoffset.INFO[VERSION]",          "0"                     },
7763   { "menu.draw_xoffset.INFO[LEVELSET]",         "0"                     },
7764   { "menu.draw_yoffset.INFO[LEVELSET]",         "0"                     },
7765   { "menu.draw_xoffset.SETUP",                  "0"                     },
7766   { "menu.draw_yoffset.SETUP",                  "0"                     },
7767   { "menu.draw_xoffset.SETUP[GAME]",            "0"                     },
7768   { "menu.draw_yoffset.SETUP[GAME]",            "0"                     },
7769   { "menu.draw_xoffset.SETUP[EDITOR]",          "0"                     },
7770   { "menu.draw_yoffset.SETUP[EDITOR]",          "0"                     },
7771   { "menu.draw_xoffset.SETUP[GRAPHICS]",        "0"                     },
7772   { "menu.draw_yoffset.SETUP[GRAPHICS]",        "0"                     },
7773   { "menu.draw_xoffset.SETUP[SOUND]",           "0"                     },
7774   { "menu.draw_yoffset.SETUP[SOUND]",           "0"                     },
7775   { "menu.draw_xoffset.SETUP[ARTWORK]",         "0"                     },
7776   { "menu.draw_yoffset.SETUP[ARTWORK]",         "0"                     },
7777   { "menu.draw_xoffset.SETUP[INPUT]",           "0"                     },
7778   { "menu.draw_yoffset.SETUP[INPUT]",           "0"                     },
7779   { "menu.draw_xoffset.SETUP[TOUCH]",           "0"                     },
7780   { "menu.draw_yoffset.SETUP[TOUCH]",           "0"                     },
7781   { "menu.draw_xoffset.SETUP[SHORTCUTS]",       "0"                     },
7782   { "menu.draw_yoffset.SETUP[SHORTCUTS]",       "0"                     },
7783   { "menu.draw_xoffset.SETUP[SHORTCUTS_1]",     "0"                     },
7784   { "menu.draw_yoffset.SETUP[SHORTCUTS_1]",     "0"                     },
7785   { "menu.draw_xoffset.SETUP[SHORTCUTS_2]",     "0"                     },
7786   { "menu.draw_yoffset.SETUP[SHORTCUTS_2]",     "0"                     },
7787   { "menu.draw_xoffset.SETUP[SHORTCUTS_3]",     "0"                     },
7788   { "menu.draw_yoffset.SETUP[SHORTCUTS_3]",     "0"                     },
7789   { "menu.draw_xoffset.SETUP[SHORTCUTS_4]",     "0"                     },
7790   { "menu.draw_yoffset.SETUP[SHORTCUTS_4]",     "0"                     },
7791   { "menu.draw_xoffset.SETUP[SHORTCUTS_5]",     "0"                     },
7792   { "menu.draw_yoffset.SETUP[SHORTCUTS_5]",     "0"                     },
7793   { "menu.draw_xoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
7794   { "menu.draw_yoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
7795   { "menu.draw_xoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
7796   { "menu.draw_yoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
7797
7798   { "menu.scrollbar_xoffset",                   "0"                     },
7799
7800   { "menu.list_size",                           "-1"                    },
7801   { "menu.list_size.LEVELS",                    "-1"                    },
7802   { "menu.list_size.LEVELNR",                   "-1"                    },
7803   { "menu.list_size.SCORES",                    "-1"                    },
7804   { "menu.list_size.INFO",                      "-1"                    },
7805   { "menu.list_size.INFO[ELEMENTS]",            "-1"                    },
7806   { "menu.list_size.SETUP",                     "-1"                    },
7807
7808   { "menu.left_spacing.INFO",                   "16"                    },
7809   { "menu.left_spacing.INFO[TITLE]",            "16"                    },
7810   { "menu.left_spacing.INFO[ELEMENTS]",         "16"                    },
7811   { "menu.left_spacing.INFO[MUSIC]",            "16"                    },
7812   { "menu.left_spacing.INFO[CREDITS]",          "16"                    },
7813   { "menu.left_spacing.INFO[PROGRAM]",          "16"                    },
7814   { "menu.left_spacing.INFO[VERSION]",          "16"                    },
7815   { "menu.left_spacing.INFO[LEVELSET]",         "16"                    },
7816   { "menu.left_spacing.SETUP[INPUT]",           "16"                    },
7817
7818   { "menu.right_spacing.INFO",                  "16"                    },
7819   { "menu.right_spacing.INFO[TITLE]",           "16"                    },
7820   { "menu.right_spacing.INFO[ELEMENTS]",        "16"                    },
7821   { "menu.right_spacing.INFO[MUSIC]",           "16"                    },
7822   { "menu.right_spacing.INFO[CREDITS]",         "16"                    },
7823   { "menu.right_spacing.INFO[PROGRAM]",         "16"                    },
7824   { "menu.right_spacing.INFO[VERSION]",         "16"                    },
7825   { "menu.right_spacing.INFO[LEVELSET]",        "16"                    },
7826   { "menu.right_spacing.SETUP[INPUT]",          "16"                    },
7827
7828   { "menu.top_spacing.INFO",                    "100"                   },
7829   { "menu.top_spacing.INFO[TITLE]",             "100"                   },
7830   { "menu.top_spacing.INFO[ELEMENTS]",          "100"                   },
7831   { "menu.top_spacing.INFO[MUSIC]",             "100"                   },
7832   { "menu.top_spacing.INFO[CREDITS]",           "100"                   },
7833   { "menu.top_spacing.INFO[PROGRAM]",           "100"                   },
7834   { "menu.top_spacing.INFO[VERSION]",           "100"                   },
7835   { "menu.top_spacing.INFO[LEVELSET]",          "100"                   },
7836   { "menu.top_spacing.SETUP[INPUT]",            "100"                   },
7837
7838   { "menu.bottom_spacing.INFO",                 "20"                    },
7839   { "menu.bottom_spacing.INFO[TITLE]",          "20"                    },
7840   { "menu.bottom_spacing.INFO[ELEMENTS]",       "20"                    },
7841   { "menu.bottom_spacing.INFO[MUSIC]",          "20"                    },
7842   { "menu.bottom_spacing.INFO[CREDITS]",        "20"                    },
7843   { "menu.bottom_spacing.INFO[PROGRAM]",        "20"                    },
7844   { "menu.bottom_spacing.INFO[VERSION]",        "20"                    },
7845   { "menu.bottom_spacing.INFO[LEVELSET]",       "20"                    },
7846   { "menu.bottom_spacing.SETUP[INPUT]",         "20"                    },
7847
7848   { "menu.paragraph_spacing.INFO",              "-3"                    },
7849   { "menu.paragraph_spacing.INFO[TITLE]",       "-3"                    },
7850   { "menu.paragraph_spacing.INFO[ELEMENTS]",    "-3"                    },
7851   { "menu.paragraph_spacing.INFO[MUSIC]",       "-3"                    },
7852   { "menu.paragraph_spacing.INFO[CREDITS]",     "-3"                    },
7853   { "menu.paragraph_spacing.INFO[PROGRAM]",     "-3"                    },
7854   { "menu.paragraph_spacing.INFO[VERSION]",     "-3"                    },
7855   { "menu.paragraph_spacing.INFO[LEVELSET]",    "-3"                    },
7856   { "menu.paragraph_spacing.SETUP[INPUT]",      "-1"                    },
7857
7858   { "menu.headline1_spacing.INFO",              "-2"                    },
7859   { "menu.headline1_spacing.INFO[TITLE]",       "-2"                    },
7860   { "menu.headline1_spacing.INFO[ELEMENTS]",    "-2"                    },
7861   { "menu.headline1_spacing.INFO[MUSIC]",       "-2"                    },
7862   { "menu.headline1_spacing.INFO[CREDITS]",     "-2"                    },
7863   { "menu.headline1_spacing.INFO[PROGRAM]",     "-2"                    },
7864   { "menu.headline1_spacing.INFO[VERSION]",     "-2"                    },
7865   { "menu.headline1_spacing.INFO[LEVELSET]",    "-2"                    },
7866   { "menu.headline1_spacing.SETUP[INPUT]",      "-2"                    },
7867
7868   { "menu.headline2_spacing.INFO",              "-1"                    },
7869   { "menu.headline2_spacing.INFO[TITLE]",       "-1"                    },
7870   { "menu.headline2_spacing.INFO[ELEMENTS]",    "-1"                    },
7871   { "menu.headline2_spacing.INFO[MUSIC]",       "-1"                    },
7872   { "menu.headline2_spacing.INFO[CREDITS]",     "-1"                    },
7873   { "menu.headline2_spacing.INFO[PROGRAM]",     "-1"                    },
7874   { "menu.headline2_spacing.INFO[VERSION]",     "-1"                    },
7875   { "menu.headline2_spacing.INFO[LEVELSET]",    "-1"                    },
7876   { "menu.headline2_spacing.SETUP[INPUT]",      "-1"                    },
7877
7878   { "menu.line_spacing.INFO",                   "0"                     },
7879   { "menu.line_spacing.INFO[TITLE]",            "0"                     },
7880   { "menu.line_spacing.INFO[ELEMENTS]",         "0"                     },
7881   { "menu.line_spacing.INFO[MUSIC]",            "0"                     },
7882   { "menu.line_spacing.INFO[CREDITS]",          "0"                     },
7883   { "menu.line_spacing.INFO[PROGRAM]",          "0"                     },
7884   { "menu.line_spacing.INFO[VERSION]",          "0"                     },
7885   { "menu.line_spacing.INFO[LEVELSET]",         "0"                     },
7886   { "menu.line_spacing.SETUP[INPUT]",           "0"                     },
7887
7888   { "menu.extra_spacing.INFO",                  "2"                     },
7889   { "menu.extra_spacing.INFO[TITLE]",           "2"                     },
7890   { "menu.extra_spacing.INFO[ELEMENTS]",        "2"                     },
7891   { "menu.extra_spacing.INFO[MUSIC]",           "2"                     },
7892   { "menu.extra_spacing.INFO[CREDITS]",         "2"                     },
7893   { "menu.extra_spacing.INFO[PROGRAM]",         "2"                     },
7894   { "menu.extra_spacing.INFO[VERSION]",         "2"                     },
7895   { "menu.extra_spacing.INFO[LEVELSET]",        "2"                     },
7896   { "menu.extra_spacing.SETUP[INPUT]",          "2"                     },
7897
7898   { "main.button.name.x",                       "0"                     },
7899   { "main.button.name.y",                       "64"                    },
7900   { "main.button.levels.x",                     "0"                     },
7901   { "main.button.levels.y",                     "96"                    },
7902   { "main.button.scores.x",                     "0"                     },
7903   { "main.button.scores.y",                     "128"                   },
7904   { "main.button.editor.x",                     "0"                     },
7905   { "main.button.editor.y",                     "160"                   },
7906   { "main.button.info.x",                       "0"                     },
7907   { "main.button.info.y",                       "192"                   },
7908   { "main.button.game.x",                       "0"                     },
7909   { "main.button.game.y",                       "224"                   },
7910   { "main.button.setup.x",                      "0"                     },
7911   { "main.button.setup.y",                      "256"                   },
7912   { "main.button.quit.x",                       "0"                     },
7913   { "main.button.quit.y",                       "288"                   },
7914
7915   { "main.button.first_level.x",                "-1"                    },
7916   { "main.button.first_level.y",                "-1"                    },
7917   { "main.button.last_level.x",                 "-1"                    },
7918   { "main.button.last_level.y",                 "-1"                    },
7919   { "main.button.level_number.x",               "-1"                    },
7920   { "main.button.level_number.y",               "-1"                    },
7921
7922   { "main.button.prev_level.x",                 "320"                   },
7923   { "main.button.prev_level.y",                 "96"                    },
7924   { "main.button.next_level.x",                 "448"                   },
7925   { "main.button.next_level.y",                 "96"                    },
7926
7927   { "main.button.insert_solution.x",            "-1"                    },
7928   { "main.button.insert_solution.y",            "-1"                    },
7929   { "main.button.play_solution.x",              "-1"                    },
7930   { "main.button.play_solution.y",              "-1"                    },
7931
7932   { "main.text.name.x",                         "-1"                    },
7933   { "main.text.name.y",                         "-1"                    },
7934   { "main.text.name.width",                     "-1"                    },
7935   { "main.text.name.height",                    "-1"                    },
7936   { "main.text.name.align",                     "left"                  },
7937   { "main.text.name.valign",                    "top"                   },
7938   { "main.text.name.font",                      "font.menu_1"           },
7939   { "main.text.levels.x",                       "-1"                    },
7940   { "main.text.levels.y",                       "-1"                    },
7941   { "main.text.levels.width",                   "-1"                    },
7942   { "main.text.levels.height",                  "-1"                    },
7943   { "main.text.levels.align",                   "left"                  },
7944   { "main.text.levels.valign",                  "top"                   },
7945   { "main.text.levels.font",                    "font.menu_1"           },
7946   { "main.text.scores.x",                       "-1"                    },
7947   { "main.text.scores.y",                       "-1"                    },
7948   { "main.text.scores.width",                   "-1"                    },
7949   { "main.text.scores.height",                  "-1"                    },
7950   { "main.text.scores.align",                   "left"                  },
7951   { "main.text.scores.valign",                  "top"                   },
7952   { "main.text.scores.font",                    "font.menu_1"           },
7953   { "main.text.editor.x",                       "-1"                    },
7954   { "main.text.editor.y",                       "-1"                    },
7955   { "main.text.editor.width",                   "-1"                    },
7956   { "main.text.editor.height",                  "-1"                    },
7957   { "main.text.editor.align",                   "left"                  },
7958   { "main.text.editor.valign",                  "top"                   },
7959   { "main.text.editor.font",                    "font.menu_1"           },
7960   { "main.text.info.x",                         "-1"                    },
7961   { "main.text.info.y",                         "-1"                    },
7962   { "main.text.info.width",                     "-1"                    },
7963   { "main.text.info.height",                    "-1"                    },
7964   { "main.text.info.align",                     "left"                  },
7965   { "main.text.info.valign",                    "top"                   },
7966   { "main.text.info.font",                      "font.menu_1"           },
7967   { "main.text.game.x",                         "-1"                    },
7968   { "main.text.game.y",                         "-1"                    },
7969   { "main.text.game.width",                     "-1"                    },
7970   { "main.text.game.height",                    "-1"                    },
7971   { "main.text.game.align",                     "left"                  },
7972   { "main.text.game.valign",                    "top"                   },
7973   { "main.text.game.font",                      "font.menu_1"           },
7974   { "main.text.setup.x",                        "-1"                    },
7975   { "main.text.setup.y",                        "-1"                    },
7976   { "main.text.setup.width",                    "-1"                    },
7977   { "main.text.setup.height",                   "-1"                    },
7978   { "main.text.setup.align",                    "left"                  },
7979   { "main.text.setup.valign",                   "top"                   },
7980   { "main.text.setup.font",                     "font.menu_1"           },
7981   { "main.text.quit.x",                         "-1"                    },
7982   { "main.text.quit.y",                         "-1"                    },
7983   { "main.text.quit.width",                     "-1"                    },
7984   { "main.text.quit.height",                    "-1"                    },
7985   { "main.text.quit.align",                     "left"                  },
7986   { "main.text.quit.valign",                    "top"                   },
7987   { "main.text.quit.font",                      "font.menu_1"           },
7988
7989   { "main.text.first_level.x",                  "488"                   },
7990   { "main.text.first_level.y",                  "98"                    },
7991   { "main.text.first_level.align",              "left"                  },
7992   { "main.text.first_level.valign",             "top"                   },
7993   { "main.text.first_level.digits",             "3"                     },
7994   { "main.text.first_level.font",               "font.text_3"           },
7995   { "main.text.last_level.x",                   "488"                   },
7996   { "main.text.last_level.y",                   "112"                   },
7997   { "main.text.last_level.align",               "left"                  },
7998   { "main.text.last_level.valign",              "top"                   },
7999   { "main.text.last_level.digits",              "3"                     },
8000   { "main.text.last_level.font",                "font.text_3"           },
8001   { "main.text.level_number.x",                 "352"                   },
8002   { "main.text.level_number.y",                 "96"                    },
8003   { "main.text.level_number.align",             "left"                  },
8004   { "main.text.level_number.valign",            "top"                   },
8005   { "main.text.level_number.digits",            "3"                     },
8006   { "main.text.level_number.font",              "font.value_1"          },
8007   { "main.text.level_info_1.x",                 "272"                   },
8008   { "main.text.level_info_1.y",                 "352"                   },
8009   { "main.text.level_info_1.align",             "center"                },
8010   { "main.text.level_info_1.valign",            "top"                   },
8011   { "main.text.level_info_1.chars",             "-1"                    },
8012   { "main.text.level_info_1.font",              "font.text_1"           },
8013   { "main.text.level_info_2.x",                 "272"                   },
8014   { "main.text.level_info_2.y",                 "523"                   },
8015   { "main.text.level_info_2.align",             "center"                },
8016   { "main.text.level_info_2.valign",            "top"                   },
8017   { "main.text.level_info_2.chars",             "-1"                    },
8018   { "main.text.level_info_2.font",              "font.text_2"           },
8019   { "main.text.level_info_2.font_header",       "font.text_4"           },
8020   { "main.text.level_name.x",                   "-1"                    },
8021   { "main.text.level_name.y",                   "-1"                    },
8022   { "main.text.level_name.align",               "left"                  },
8023   { "main.text.level_name.valign",              "top"                   },
8024   { "main.text.level_name.chars",               "-1"                    },
8025   { "main.text.level_name.font",                "font.text_2"           },
8026   { "main.text.level_author.x",                 "-1"                    },
8027   { "main.text.level_author.y",                 "-1"                    },
8028   { "main.text.level_author.align",             "left"                  },
8029   { "main.text.level_author.valign",            "top"                   },
8030   { "main.text.level_author.chars",             "-1"                    },
8031   { "main.text.level_author.font",              "font.text_2"           },
8032   { "main.text.level_year.x",                   "-1"                    },
8033   { "main.text.level_year.y",                   "-1"                    },
8034   { "main.text.level_year.align",               "left"                  },
8035   { "main.text.level_year.valign",              "top"                   },
8036   { "main.text.level_year.digits",              "-1"                    },
8037   { "main.text.level_year.font",                "font.text_2"           },
8038   { "main.text.level_imported_from.x",          "-1"                    },
8039   { "main.text.level_imported_from.y",          "-1"                    },
8040   { "main.text.level_imported_from.align",      "left"                  },
8041   { "main.text.level_imported_from.valign",     "top"                   },
8042   { "main.text.level_imported_from.chars",      "-1"                    },
8043   { "main.text.level_imported_from.font",       "font.text_2"           },
8044   { "main.text.level_imported_by.x",            "-1"                    },
8045   { "main.text.level_imported_by.y",            "-1"                    },
8046   { "main.text.level_imported_by.align",        "left"                  },
8047   { "main.text.level_imported_by.valign",       "top"                   },
8048   { "main.text.level_imported_by.chars",        "-1"                    },
8049   { "main.text.level_imported_by.font",         "font.text_2"           },
8050   { "main.text.level_tested_by.x",              "-1"                    },
8051   { "main.text.level_tested_by.y",              "-1"                    },
8052   { "main.text.level_tested_by.align",          "left"                  },
8053   { "main.text.level_tested_by.valign",         "top"                   },
8054   { "main.text.level_tested_by.chars",          "-1"                    },
8055   { "main.text.level_tested_by.font",           "font.text_2"           },
8056   { "main.text.title_1.x",                      "272"                   },
8057   { "main.text.title_1.y",                      "8"                     },
8058   { "main.text.title_1.align",                  "center"                },
8059   { "main.text.title_1.valign",                 "top"                   },
8060   { "main.text.title_1.font",                   "font.title_1"          },
8061   { "main.text.title_2.x",                      "272"                   },
8062   { "main.text.title_2.y",                      "46"                    },
8063   { "main.text.title_2.align",                  "center"                },
8064   { "main.text.title_2.valign",                 "top"                   },
8065   { "main.text.title_2.font",                   "font.title_2"          },
8066   { "main.text.title_3.x",                      "272"                   },
8067   { "main.text.title_3.y",                      "326"                   },
8068   { "main.text.title_3.align",                  "center"                },
8069   { "main.text.title_3.valign",                 "top"                   },
8070   { "main.text.title_3.font",                   "font.title_2"          },
8071
8072   { "main.input.name.x",                        "-1"                    },
8073   { "main.input.name.y",                        "-1"                    },
8074   { "main.input.name.align",                    "left"                  },
8075   { "main.input.name.valign",                   "top"                   },
8076   { "main.input.name.font",                     "font.input_1"          },
8077
8078   { "main.network_players.x",                   "68"                    },
8079   { "main.network_players.y",                   "448"                   },
8080   { "main.network_players.align",               "center"                },
8081   { "main.network_players.valign",              "middle"                },
8082   { "main.network_players.font",                "font.main.network_players" },
8083   { "main.network_players.tile_size",           "16"                    },
8084   { "main.network_players.border_size",         "2"                     },
8085
8086   { "main.preview_players.x",                   "474"                   },
8087   { "main.preview_players.y",                   "448"                   },
8088   { "main.preview_players.align",               "center"                },
8089   { "main.preview_players.valign",              "middle"                },
8090   { "main.preview_players.tile_size",           "32"                    },
8091   { "main.preview_players.border_size",         "2"                     },
8092   { "main.preview_players.vertical",            "false"                 },
8093   { "main.preview_players.xoffset",             "-1"                    },
8094   { "main.preview_players.yoffset",             "-1"                    },
8095
8096   { "preview.x",                                "272"                   },
8097   { "preview.y",                                "380"                   },
8098   { "preview.align",                            "center"                },
8099   { "preview.valign",                           "top"                   },
8100   { "preview.xsize",                            "66"                    },
8101   { "preview.ysize",                            "34"                    },
8102   { "preview.xoffset",                          "0"                     },
8103   { "preview.yoffset",                          "0"                     },
8104   { "preview.tile_size",                        "4"                     },
8105   { "preview.step_offset",                      "1"                     },
8106   { "preview.step_delay",                       "50"                    },
8107   { "preview.anim_mode",                        "default"               },
8108
8109   { "door_1.part_1.x",                          "0"                     },
8110   { "door_1.part_1.y",                          "0"                     },
8111   { "door_1.part_1.step_xoffset",               "3"                     },
8112   { "door_1.part_1.step_yoffset",               "1"                     },
8113   { "door_1.part_1.step_delay",                 "10"                    },
8114   { "door_1.part_1.start_step",                 "0"                     },
8115   { "door_1.part_1.start_step_opening",         "0"                     },
8116   { "door_1.part_1.start_step_closing",         "0"                     },
8117   { "door_1.part_1.draw_masked",                "true"                  },
8118   { "door_1.part_1.draw_order",                 "3"                     },
8119   { "door_1.part_2.x",                          "0"                     },
8120   { "door_1.part_2.y",                          "77"                    },
8121   { "door_1.part_2.step_xoffset",               "3"                     },
8122   { "door_1.part_2.step_yoffset",               "1"                     },
8123   { "door_1.part_2.step_delay",                 "10"                    },
8124   { "door_1.part_2.start_step",                 "0"                     },
8125   { "door_1.part_2.start_step_opening",         "0"                     },
8126   { "door_1.part_2.start_step_closing",         "0"                     },
8127   { "door_1.part_2.draw_masked",                "true"                  },
8128   { "door_1.part_2.draw_order",                 "5"                     },
8129   { "door_1.part_3.x",                          "0"                     },
8130   { "door_1.part_3.y",                          "140"                   },
8131   { "door_1.part_3.step_xoffset",               "3"                     },
8132   { "door_1.part_3.step_yoffset",               "1"                     },
8133   { "door_1.part_3.step_delay",                 "10"                    },
8134   { "door_1.part_3.start_step",                 "0"                     },
8135   { "door_1.part_3.start_step_opening",         "0"                     },
8136   { "door_1.part_3.start_step_closing",         "0"                     },
8137   { "door_1.part_3.draw_masked",                "true"                  },
8138   { "door_1.part_3.draw_order",                 "4"                     },
8139   { "door_1.part_4.x",                          "0"                     },
8140   { "door_1.part_4.y",                          "203"                   },
8141   { "door_1.part_4.step_xoffset",               "3"                     },
8142   { "door_1.part_4.step_yoffset",               "1"                     },
8143   { "door_1.part_4.step_delay",                 "10"                    },
8144   { "door_1.part_4.start_step",                 "0"                     },
8145   { "door_1.part_4.start_step_opening",         "0"                     },
8146   { "door_1.part_4.start_step_closing",         "0"                     },
8147   { "door_1.part_4.draw_masked",                "true"                  },
8148   { "door_1.part_4.draw_order",                 "6"                     },
8149   { "door_1.part_5.x",                          "0"                     },
8150   { "door_1.part_5.y",                          "0"                     },
8151   { "door_1.part_5.step_xoffset",               "-3"                    },
8152   { "door_1.part_5.step_yoffset",               "-1"                    },
8153   { "door_1.part_5.step_delay",                 "10"                    },
8154   { "door_1.part_5.start_step",                 "0"                     },
8155   { "door_1.part_5.start_step_opening",         "0"                     },
8156   { "door_1.part_5.start_step_closing",         "0"                     },
8157   { "door_1.part_5.draw_masked",                "true"                  },
8158   { "door_1.part_5.draw_order",                 "1"                     },
8159   { "door_1.part_6.x",                          "0"                     },
8160   { "door_1.part_6.y",                          "77"                    },
8161   { "door_1.part_6.step_xoffset",               "-3"                    },
8162   { "door_1.part_6.step_yoffset",               "-1"                    },
8163   { "door_1.part_6.step_delay",                 "10"                    },
8164   { "door_1.part_6.start_step",                 "0"                     },
8165   { "door_1.part_6.start_step_opening",         "0"                     },
8166   { "door_1.part_6.start_step_closing",         "0"                     },
8167   { "door_1.part_6.draw_masked",                "true"                  },
8168   { "door_1.part_6.draw_order",                 "7"                     },
8169   { "door_1.part_7.x",                          "0"                     },
8170   { "door_1.part_7.y",                          "140"                   },
8171   { "door_1.part_7.step_xoffset",               "-3"                    },
8172   { "door_1.part_7.step_yoffset",               "-1"                    },
8173   { "door_1.part_7.step_delay",                 "10"                    },
8174   { "door_1.part_7.start_step",                 "0"                     },
8175   { "door_1.part_7.start_step_opening",         "0"                     },
8176   { "door_1.part_7.start_step_closing",         "0"                     },
8177   { "door_1.part_7.draw_masked",                "true"                  },
8178   { "door_1.part_7.draw_order",                 "2"                     },
8179   { "door_1.part_8.x",                          "0"                     },
8180   { "door_1.part_8.y",                          "203"                   },
8181   { "door_1.part_8.step_xoffset",               "-3"                    },
8182   { "door_1.part_8.step_yoffset",               "-1"                    },
8183   { "door_1.part_8.step_delay",                 "10"                    },
8184   { "door_1.part_8.start_step",                 "0"                     },
8185   { "door_1.part_8.start_step_opening",         "0"                     },
8186   { "door_1.part_8.start_step_closing",         "0"                     },
8187   { "door_1.part_8.draw_masked",                "true"                  },
8188   { "door_1.part_8.draw_order",                 "8"                     },
8189
8190   { "door_2.part_1.x",                          "0"                     },
8191   { "door_2.part_1.y",                          "0"                     },
8192   { "door_2.part_1.step_xoffset",               "3"                     },
8193   { "door_2.part_1.step_yoffset",               "1"                     },
8194   { "door_2.part_1.step_delay",                 "10"                    },
8195   { "door_2.part_1.start_step",                 "0"                     },
8196   { "door_2.part_1.start_step_opening",         "0"                     },
8197   { "door_2.part_1.start_step_closing",         "0"                     },
8198   { "door_2.part_1.draw_masked",                "true"                  },
8199   { "door_2.part_1.draw_order",                 "2"                     },
8200   { "door_2.part_2.x",                          "0"                     },
8201   { "door_2.part_2.y",                          "50"                    },
8202   { "door_2.part_2.step_xoffset",               "3"                     },
8203   { "door_2.part_2.step_yoffset",               "1"                     },
8204   { "door_2.part_2.step_delay",                 "10"                    },
8205   { "door_2.part_2.start_step",                 "0"                     },
8206   { "door_2.part_2.start_step_opening",         "0"                     },
8207   { "door_2.part_2.start_step_closing",         "0"                     },
8208   { "door_2.part_2.draw_masked",                "true"                  },
8209   { "door_2.part_2.draw_order",                 "3"                     },
8210   { "door_2.part_3.x",                          "0"                     },
8211   { "door_2.part_3.y",                          "0"                     },
8212   { "door_2.part_3.step_xoffset",               "-3"                    },
8213   { "door_2.part_3.step_yoffset",               "-1"                    },
8214   { "door_2.part_3.step_delay",                 "10"                    },
8215   { "door_2.part_3.start_step",                 "0"                     },
8216   { "door_2.part_3.start_step_opening",         "0"                     },
8217   { "door_2.part_3.start_step_closing",         "0"                     },
8218   { "door_2.part_3.draw_masked",                "true"                  },
8219   { "door_2.part_3.draw_order",                 "1"                     },
8220   { "door_2.part_4.x",                          "0"                     },
8221   { "door_2.part_4.y",                          "50"                    },
8222   { "door_2.part_4.step_xoffset",               "-3"                    },
8223   { "door_2.part_4.step_yoffset",               "-1"                    },
8224   { "door_2.part_4.step_delay",                 "10"                    },
8225   { "door_2.part_4.start_step",                 "0"                     },
8226   { "door_2.part_4.start_step_opening",         "0"                     },
8227   { "door_2.part_4.start_step_closing",         "0"                     },
8228   { "door_2.part_4.draw_masked",                "true"                  },
8229   { "door_2.part_4.draw_order",                 "4"                     },
8230   { "door_2.part_5.x",                          "-1"                    },
8231   { "door_2.part_5.y",                          "-1"                    },
8232   { "door_2.part_5.step_xoffset",               "0"                     },
8233   { "door_2.part_5.step_yoffset",               "0"                     },
8234   { "door_2.part_5.step_delay",                 "0"                     },
8235   { "door_2.part_5.start_step",                 "0"                     },
8236   { "door_2.part_5.start_step_opening",         "0"                     },
8237   { "door_2.part_5.start_step_closing",         "0"                     },
8238   { "door_2.part_5.draw_masked",                "true"                  },
8239   { "door_2.part_5.draw_order",                 "0"                     },
8240   { "door_2.part_6.x",                          "-1"                    },
8241   { "door_2.part_6.y",                          "-1"                    },
8242   { "door_2.part_6.step_xoffset",               "0"                     },
8243   { "door_2.part_6.step_yoffset",               "0"                     },
8244   { "door_2.part_6.step_delay",                 "0"                     },
8245   { "door_2.part_6.start_step",                 "0"                     },
8246   { "door_2.part_6.start_step_opening",         "0"                     },
8247   { "door_2.part_6.start_step_closing",         "0"                     },
8248   { "door_2.part_6.draw_masked",                "true"                  },
8249   { "door_2.part_6.draw_order",                 "0"                     },
8250   { "door_2.part_7.x",                          "-1"                    },
8251   { "door_2.part_7.y",                          "-1"                    },
8252   { "door_2.part_7.step_xoffset",               "0"                     },
8253   { "door_2.part_7.step_yoffset",               "0"                     },
8254   { "door_2.part_7.step_delay",                 "0"                     },
8255   { "door_2.part_7.start_step",                 "0"                     },
8256   { "door_2.part_7.start_step_opening",         "0"                     },
8257   { "door_2.part_7.start_step_closing",         "0"                     },
8258   { "door_2.part_7.draw_masked",                "true"                  },
8259   { "door_2.part_7.draw_order",                 "0"                     },
8260   { "door_2.part_8.x",                          "-1"                    },
8261   { "door_2.part_8.y",                          "-1"                    },
8262   { "door_2.part_8.step_xoffset",               "0"                     },
8263   { "door_2.part_8.step_yoffset",               "0"                     },
8264   { "door_2.part_8.step_delay",                 "0"                     },
8265   { "door_2.part_8.start_step",                 "0"                     },
8266   { "door_2.part_8.start_step_opening",         "0"                     },
8267   { "door_2.part_8.start_step_closing",         "0"                     },
8268   { "door_2.part_8.draw_masked",                "true"                  },
8269   { "door_2.part_8.draw_order",                 "0"                     },
8270
8271   { "door_1.panel.x",                           "0"                     },
8272   { "door_1.panel.y",                           "0"                     },
8273   { "door_1.panel.step_xoffset",                "0"                     },
8274   { "door_1.panel.step_yoffset",                "1"                     },
8275   { "door_1.panel.step_delay",                  "10"                    },
8276   { "door_1.panel.start_step",                  "246"                   },
8277   { "door_1.panel.start_step_opening",          "0"                     },
8278   { "door_1.panel.start_step_closing",          "0"                     },
8279   { "door_1.panel.draw_masked",                 "false"                 },
8280   { "door_1.panel.draw_order",                  "0"                     },
8281
8282   { "door_2.panel.x",                           "0"                     },
8283   { "door_2.panel.y",                           "0"                     },
8284   { "door_2.panel.step_xoffset",                "0"                     },
8285   { "door_2.panel.step_yoffset",                "1"                     },
8286   { "door_2.panel.step_delay",                  "10"                    },
8287   { "door_2.panel.start_step",                  "66"                    },
8288   { "door_2.panel.start_step_opening",          "0"                     },
8289   { "door_2.panel.start_step_closing",          "0"                     },
8290   { "door_2.panel.draw_masked",                 "false"                 },
8291   { "door_2.panel.draw_order",                  "0"                     },
8292
8293   { "door_1.width",                             "-1"                    },
8294   { "door_1.height",                            "-1"                    },
8295   { "door_1.step_offset",                       "2"                     },
8296   { "door_1.step_delay",                        "10"                    },
8297   { "door_1.post_delay",                        "100"                   },
8298   { "door_1.anim_mode",                         "default"               },
8299
8300   { "door_2.width",                             "-1"                    },
8301   { "door_2.height",                            "-1"                    },
8302   { "door_2.step_offset",                       "2"                     },
8303   { "door_2.step_delay",                        "10"                    },
8304   { "door_2.post_delay",                        "100"                   },
8305   { "door_2.anim_mode",                         "default"               },
8306
8307   { "game.panel.level_number.x",                "51"                    },
8308   { "game.panel.level_number.y",                "20"                    },
8309   { "game.panel.level_number.align",            "center"                },
8310   { "game.panel.level_number.valign",           "top"                   },
8311   { "game.panel.level_number.digits",           "-1"                    },
8312   { "game.panel.level_number.font",             "font.text_2"           },
8313   { "game.panel.level_number.font_narrow",      "font.text_1"           },
8314   { "game.panel.level_number.draw_masked",      "true"                  },
8315   { "game.panel.level_number.draw_order",       "0"                     },
8316
8317   { "game.panel.gems.x",                        "50"                    },
8318   { "game.panel.gems.y",                        "54"                    },
8319   { "game.panel.gems.align",                    "center"                },
8320   { "game.panel.gems.valign",                   "top"                   },
8321   { "game.panel.gems.digits",                   "3"                     },
8322   { "game.panel.gems.font",                     "font.text_2"           },
8323   { "game.panel.gems.draw_masked",              "true"                  },
8324   { "game.panel.gems.draw_order",               "0"                     },
8325
8326   { "game.panel.inventory_count.x",             "50"                    },
8327   { "game.panel.inventory_count.y",             "89"                    },
8328   { "game.panel.inventory_count.align",         "center"                },
8329   { "game.panel.inventory_count.valign",        "top"                   },
8330   { "game.panel.inventory_count.digits",        "3"                     },
8331   { "game.panel.inventory_count.font",          "font.text_2"           },
8332   { "game.panel.inventory_count.draw_masked",   "true"                  },
8333   { "game.panel.inventory_count.draw_order",    "0"                     },
8334
8335   { "game.panel.inventory_first_1.x",           "-1"                    },
8336   { "game.panel.inventory_first_1.y",           "-1"                    },
8337   { "game.panel.inventory_first_1.tile_size",   "16"                    },
8338   { "game.panel.inventory_first_1.draw_masked", "false"                 },
8339   { "game.panel.inventory_first_1.draw_order",  "0"                     },
8340   { "game.panel.inventory_first_2.x",           "-1"                    },
8341   { "game.panel.inventory_first_2.y",           "-1"                    },
8342   { "game.panel.inventory_first_2.tile_size",   "16"                    },
8343   { "game.panel.inventory_first_2.draw_masked", "false"                 },
8344   { "game.panel.inventory_first_2.draw_order",  "0"                     },
8345   { "game.panel.inventory_first_3.x",           "-1"                    },
8346   { "game.panel.inventory_first_3.y",           "-1"                    },
8347   { "game.panel.inventory_first_3.tile_size",   "16"                    },
8348   { "game.panel.inventory_first_3.draw_masked", "false"                 },
8349   { "game.panel.inventory_first_3.draw_order",  "0"                     },
8350   { "game.panel.inventory_first_4.x",           "-1"                    },
8351   { "game.panel.inventory_first_4.y",           "-1"                    },
8352   { "game.panel.inventory_first_4.tile_size",   "16"                    },
8353   { "game.panel.inventory_first_4.draw_masked", "false"                 },
8354   { "game.panel.inventory_first_4.draw_order",  "0"                     },
8355   { "game.panel.inventory_first_5.x",           "-1"                    },
8356   { "game.panel.inventory_first_5.y",           "-1"                    },
8357   { "game.panel.inventory_first_5.tile_size",   "16"                    },
8358   { "game.panel.inventory_first_5.draw_masked", "false"                 },
8359   { "game.panel.inventory_first_5.draw_order",  "0"                     },
8360   { "game.panel.inventory_first_6.x",           "-1"                    },
8361   { "game.panel.inventory_first_6.y",           "-1"                    },
8362   { "game.panel.inventory_first_6.tile_size",   "16"                    },
8363   { "game.panel.inventory_first_6.draw_masked", "false"                 },
8364   { "game.panel.inventory_first_6.draw_order",  "0"                     },
8365   { "game.panel.inventory_first_7.x",           "-1"                    },
8366   { "game.panel.inventory_first_7.y",           "-1"                    },
8367   { "game.panel.inventory_first_7.tile_size",   "16"                    },
8368   { "game.panel.inventory_first_7.draw_masked", "false"                 },
8369   { "game.panel.inventory_first_7.draw_order",  "0"                     },
8370   { "game.panel.inventory_first_8.x",           "-1"                    },
8371   { "game.panel.inventory_first_8.y",           "-1"                    },
8372   { "game.panel.inventory_first_8.tile_size",   "16"                    },
8373   { "game.panel.inventory_first_8.draw_masked", "false"                 },
8374   { "game.panel.inventory_first_8.draw_order",  "0"                     },
8375
8376   { "game.panel.inventory_last_1.x",            "-1"                    },
8377   { "game.panel.inventory_last_1.y",            "-1"                    },
8378   { "game.panel.inventory_last_1.tile_size",    "16"                    },
8379   { "game.panel.inventory_last_1.draw_masked",  "false"                 },
8380   { "game.panel.inventory_last_1.draw_order",   "0"                     },
8381   { "game.panel.inventory_last_2.x",            "-1"                    },
8382   { "game.panel.inventory_last_2.y",            "-1"                    },
8383   { "game.panel.inventory_last_2.tile_size",    "16"                    },
8384   { "game.panel.inventory_last_2.draw_masked",  "false"                 },
8385   { "game.panel.inventory_last_2.draw_order",   "0"                     },
8386   { "game.panel.inventory_last_3.x",            "-1"                    },
8387   { "game.panel.inventory_last_3.y",            "-1"                    },
8388   { "game.panel.inventory_last_3.tile_size",    "16"                    },
8389   { "game.panel.inventory_last_3.draw_masked",  "false"                 },
8390   { "game.panel.inventory_last_3.draw_order",   "0"                     },
8391   { "game.panel.inventory_last_4.x",            "-1"                    },
8392   { "game.panel.inventory_last_4.y",            "-1"                    },
8393   { "game.panel.inventory_last_4.tile_size",    "16"                    },
8394   { "game.panel.inventory_last_4.draw_masked",  "false"                 },
8395   { "game.panel.inventory_last_4.draw_order",   "0"                     },
8396   { "game.panel.inventory_last_5.x",            "-1"                    },
8397   { "game.panel.inventory_last_5.y",            "-1"                    },
8398   { "game.panel.inventory_last_5.tile_size",    "16"                    },
8399   { "game.panel.inventory_last_5.draw_masked",  "false"                 },
8400   { "game.panel.inventory_last_5.draw_order",   "0"                     },
8401   { "game.panel.inventory_last_6.x",            "-1"                    },
8402   { "game.panel.inventory_last_6.y",            "-1"                    },
8403   { "game.panel.inventory_last_6.tile_size",    "16"                    },
8404   { "game.panel.inventory_last_6.draw_masked",  "false"                 },
8405   { "game.panel.inventory_last_6.draw_order",   "0"                     },
8406   { "game.panel.inventory_last_7.x",            "-1"                    },
8407   { "game.panel.inventory_last_7.y",            "-1"                    },
8408   { "game.panel.inventory_last_7.tile_size",    "16"                    },
8409   { "game.panel.inventory_last_7.draw_masked",  "false"                 },
8410   { "game.panel.inventory_last_7.draw_order",   "0"                     },
8411   { "game.panel.inventory_last_8.x",            "-1"                    },
8412   { "game.panel.inventory_last_8.y",            "-1"                    },
8413   { "game.panel.inventory_last_8.tile_size",    "16"                    },
8414   { "game.panel.inventory_last_8.draw_masked",  "false"                 },
8415   { "game.panel.inventory_last_8.draw_order",   "0"                     },
8416
8417   { "game.panel.key_1.x",                       "18"                    },
8418   { "game.panel.key_1.y",                       "123"                   },
8419   { "game.panel.key_1.tile_size",               "16"                    },
8420   { "game.panel.key_1.draw_masked",             "false"                 },
8421   { "game.panel.key_1.draw_order",              "0"                     },
8422   { "game.panel.key_2.x",                       "34"                    },
8423   { "game.panel.key_2.y",                       "123"                   },
8424   { "game.panel.key_2.tile_size",               "16"                    },
8425   { "game.panel.key_2.draw_masked",             "false"                 },
8426   { "game.panel.key_2.draw_order",              "0"                     },
8427   { "game.panel.key_3.x",                       "50"                    },
8428   { "game.panel.key_3.y",                       "123"                   },
8429   { "game.panel.key_3.tile_size",               "16"                    },
8430   { "game.panel.key_3.draw_masked",             "false"                 },
8431   { "game.panel.key_3.draw_order",              "0"                     },
8432   { "game.panel.key_4.x",                       "66"                    },
8433   { "game.panel.key_4.y",                       "123"                   },
8434   { "game.panel.key_4.tile_size",               "16"                    },
8435   { "game.panel.key_4.draw_masked",             "false"                 },
8436   { "game.panel.key_4.draw_order",              "0"                     },
8437   { "game.panel.key_5.x",                       "-1"                    },
8438   { "game.panel.key_5.y",                       "-1"                    },
8439   { "game.panel.key_5.tile_size",               "16"                    },
8440   { "game.panel.key_5.draw_masked",             "false"                 },
8441   { "game.panel.key_5.draw_order",              "0"                     },
8442   { "game.panel.key_6.x",                       "-1"                    },
8443   { "game.panel.key_6.y",                       "-1"                    },
8444   { "game.panel.key_6.tile_size",               "16"                    },
8445   { "game.panel.key_6.draw_masked",             "false"                 },
8446   { "game.panel.key_6.draw_order",              "0"                     },
8447   { "game.panel.key_7.x",                       "-1"                    },
8448   { "game.panel.key_7.y",                       "-1"                    },
8449   { "game.panel.key_7.tile_size",               "16"                    },
8450   { "game.panel.key_7.draw_masked",             "false"                 },
8451   { "game.panel.key_7.draw_order",              "0"                     },
8452   { "game.panel.key_8.x",                       "-1"                    },
8453   { "game.panel.key_8.y",                       "-1"                    },
8454   { "game.panel.key_8.tile_size",               "16"                    },
8455   { "game.panel.key_8.draw_masked",             "false"                 },
8456   { "game.panel.key_8.draw_order",              "0"                     },
8457   { "game.panel.key_white.x",                   "-1"                    },
8458   { "game.panel.key_white.y",                   "-1"                    },
8459   { "game.panel.key_white.tile_size",           "16"                    },
8460   { "game.panel.key_white.draw_masked",         "false"                 },
8461   { "game.panel.key_white.draw_order",          "0"                     },
8462   { "game.panel.key_white_count.x",             "-1"                    },
8463   { "game.panel.key_white_count.y",             "-1"                    },
8464   { "game.panel.key_white_count.align",         "left"                  },
8465   { "game.panel.key_white_count.valign",        "top"                   },
8466   { "game.panel.key_white_count.digits",        "-1"                    },
8467   { "game.panel.key_white_count.font",          "font.text_2"           },
8468   { "game.panel.key_white_count.draw_masked",   "true"                  },
8469   { "game.panel.key_white_count.draw_order",    "0"                     },
8470
8471   { "game.panel.score.x",                       "50"                    },
8472   { "game.panel.score.y",                       "159"                   },
8473   { "game.panel.score.align",                   "center"                },
8474   { "game.panel.score.valign",                  "top"                   },
8475   { "game.panel.score.digits",                  "5"                     },
8476   { "game.panel.score.font",                    "font.text_2"           },
8477   { "game.panel.score.draw_masked",             "true"                  },
8478   { "game.panel.score.draw_order",              "0"                     },
8479
8480   { "game.panel.highscore.x",                   "-1"                    },
8481   { "game.panel.highscore.y",                   "-1"                    },
8482   { "game.panel.highscore.align",               "left"                  },
8483   { "game.panel.highscore.valign",              "top"                   },
8484   { "game.panel.highscore.digits",              "5"                     },
8485   { "game.panel.highscore.font",                "font.text_2"           },
8486   { "game.panel.highscore.draw_masked",         "true"                  },
8487   { "game.panel.highscore.draw_order",          "0"                     },
8488
8489   { "game.panel.time.x",                        "50"                    },
8490   { "game.panel.time.y",                        "194"                   },
8491   { "game.panel.time.align",                    "center"                },
8492   { "game.panel.time.valign",                   "top"                   },
8493   { "game.panel.time.digits",                   "-1"                    },
8494   { "game.panel.time.font",                     "font.text_2"           },
8495   { "game.panel.time.font_narrow",              "font.text_1"           },
8496   { "game.panel.time.draw_masked",              "true"                  },
8497   { "game.panel.time.draw_order",               "0"                     },
8498
8499   { "game.panel.time_hh.x",                     "-1"                    },
8500   { "game.panel.time_hh.y",                     "-1"                    },
8501   { "game.panel.time_hh.align",                 "left"                  },
8502   { "game.panel.time_hh.valign",                "top"                   },
8503   { "game.panel.time_hh.digits",                "2"                     },
8504   { "game.panel.time_hh.font",                  "font.text_2"           },
8505   { "game.panel.time_hh.draw_masked",           "true"                  },
8506   { "game.panel.time_hh.draw_order",            "0"                     },
8507   { "game.panel.time_mm.x",                     "-1"                    },
8508   { "game.panel.time_mm.y",                     "-1"                    },
8509   { "game.panel.time_mm.align",                 "left"                  },
8510   { "game.panel.time_mm.valign",                "top"                   },
8511   { "game.panel.time_mm.digits",                "2"                     },
8512   { "game.panel.time_mm.font",                  "font.text_2"           },
8513   { "game.panel.time_mm.draw_masked",           "true"                  },
8514   { "game.panel.time_mm.draw_order",            "0"                     },
8515   { "game.panel.time_ss.x",                     "-1"                    },
8516   { "game.panel.time_ss.y",                     "-1"                    },
8517   { "game.panel.time_ss.align",                 "left"                  },
8518   { "game.panel.time_ss.valign",                "top"                   },
8519   { "game.panel.time_ss.digits",                "2"                     },
8520   { "game.panel.time_ss.font",                  "font.text_2"           },
8521   { "game.panel.time_ss.draw_masked",           "true"                  },
8522   { "game.panel.time_ss.draw_order",            "0"                     },
8523
8524   { "game.panel.time_anim.x",                   "5"                     },
8525   { "game.panel.time_anim.y",                   "72"                    },
8526   { "game.panel.time_anim.direction",           "right"                 },
8527   { "game.panel.time_anim.class",               "mm_engine_only"        },
8528
8529   { "game.panel.health.x",                      "-1"                    },
8530   { "game.panel.health.y",                      "-1"                    },
8531   { "game.panel.health.align",                  "center"                },
8532   { "game.panel.health.valign",                 "top"                   },
8533   { "game.panel.health.digits",                 "-1"                    },
8534   { "game.panel.health.font",                   "font.text_2"           },
8535   { "game.panel.health.font_narrow",            "font.text_1"           },
8536   { "game.panel.health.draw_masked",            "true"                  },
8537   { "game.panel.health.draw_order",             "0"                     },
8538
8539   { "game.panel.health_anim.x",                 "5"                     },
8540   { "game.panel.health_anim.y",                 "107"                   },
8541   { "game.panel.health_anim.direction",         "right"                 },
8542   { "game.panel.health_anim.class",             "mm_engine_only"        },
8543   { "game.panel.health_anim.style",             "reverse"               },
8544
8545   { "game.panel.frame.x",                       "-1"                    },
8546   { "game.panel.frame.y",                       "-1"                    },
8547   { "game.panel.frame.align",                   "left"                  },
8548   { "game.panel.frame.valign",                  "top"                   },
8549   { "game.panel.frame.digits",                  "-1"                    },
8550   { "game.panel.frame.font",                    "font.text_2"           },
8551   { "game.panel.frame.draw_masked",             "true"                  },
8552   { "game.panel.frame.draw_order",              "0"                     },
8553
8554   { "game.panel.shield_normal.x",               "-1"                    },
8555   { "game.panel.shield_normal.y",               "-1"                    },
8556   { "game.panel.shield_normal.tile_size",       "16"                    },
8557   { "game.panel.shield_normal.draw_masked",     "false"                 },
8558   { "game.panel.shield_normal.draw_order",      "0"                     },
8559   { "game.panel.shield_normal_time.x",          "-1"                    },
8560   { "game.panel.shield_normal_time.y",          "-1"                    },
8561   { "game.panel.shield_normal_time.align",      "left"                  },
8562   { "game.panel.shield_normal_time.valign",     "top"                   },
8563   { "game.panel.shield_normal_time.digits",     "-1"                    },
8564   { "game.panel.shield_normal_time.font",       "font.text_2"           },
8565   { "game.panel.shield_normal_time.draw_masked", "true"                 },
8566   { "game.panel.shield_normal_time.draw_order", "0"                     },
8567   { "game.panel.shield_deadly.x",               "-1"                    },
8568   { "game.panel.shield_deadly.y",               "-1"                    },
8569   { "game.panel.shield_deadly.tile_size",       "16"                    },
8570   { "game.panel.shield_deadly.draw_masked",     "false"                 },
8571   { "game.panel.shield_deadly.draw_order",      "0"                     },
8572   { "game.panel.shield_deadly_time.x",          "-1"                    },
8573   { "game.panel.shield_deadly_time.y",          "-1"                    },
8574   { "game.panel.shield_deadly_time.align",      "left"                  },
8575   { "game.panel.shield_deadly_time.valign",     "top"                   },
8576   { "game.panel.shield_deadly_time.digits",     "-1"                    },
8577   { "game.panel.shield_deadly_time.font",       "font.text_2"           },
8578   { "game.panel.shield_deadly_time.draw_masked","true"                  },
8579   { "game.panel.shield_deadly_time.draw_order", "0"                     },
8580
8581   { "game.panel.exit.x",                        "-1"                    },
8582   { "game.panel.exit.y",                        "-1"                    },
8583   { "game.panel.exit.tile_size",                "16"                    },
8584   { "game.panel.exit.draw_masked",              "false"                 },
8585   { "game.panel.exit.draw_order",               "0"                     },
8586
8587   { "game.panel.emc_magic_ball.x",              "-1"                    },
8588   { "game.panel.emc_magic_ball.y",              "-1"                    },
8589   { "game.panel.emc_magic_ball.tile_size",      "16"                    },
8590   { "game.panel.emc_magic_ball.draw_masked",    "false"                 },
8591   { "game.panel.emc_magic_ball.draw_order",     "0"                     },
8592   { "game.panel.emc_magic_ball_switch.x",       "-1"                    },
8593   { "game.panel.emc_magic_ball_switch.y",       "-1"                    },
8594   { "game.panel.emc_magic_ball_switch.tile_size", "16"                  },
8595   { "game.panel.emc_magic_ball_switch.draw_masked", "true"              },
8596   { "game.panel.emc_magic_ball_switch.draw_order", "0"                  },
8597
8598   { "game.panel.light_switch.x",                "-1"                    },
8599   { "game.panel.light_switch.y",                "-1"                    },
8600   { "game.panel.light_switch.tile_size",        "16"                    },
8601   { "game.panel.light_switch.draw_masked",      "false"                 },
8602   { "game.panel.light_switch.draw_order",       "0"                     },
8603   { "game.panel.light_switch_time.x",           "-1"                    },
8604   { "game.panel.light_switch_time.y",           "-1"                    },
8605   { "game.panel.light_switch_time.align",       "left"                  },
8606   { "game.panel.light_switch_time.valign",      "top"                   },
8607   { "game.panel.light_switch_time.digits",      "-1"                    },
8608   { "game.panel.light_switch_time.font",        "font.text_2"           },
8609   { "game.panel.light_switch_time.draw_masked", "true"                  },
8610   { "game.panel.light_switch_time.draw_order",  "0"                     },
8611
8612   { "game.panel.timegate_switch.x",             "-1"                    },
8613   { "game.panel.timegate_switch.y",             "-1"                    },
8614   { "game.panel.timegate_switch.tile_size",     "16"                    },
8615   { "game.panel.timegate_switch.draw_masked",   "false"                 },
8616   { "game.panel.timegate_switch.draw_order",    "0"                     },
8617   { "game.panel.timegate_switch_time.x",        "-1"                    },
8618   { "game.panel.timegate_switch_time.y",        "-1"                    },
8619   { "game.panel.timegate_switch_time.align",    "left"                  },
8620   { "game.panel.timegate_switch_time.valign",   "top"                   },
8621   { "game.panel.timegate_switch_time.digits",   "-1"                    },
8622   { "game.panel.timegate_switch_time.font",     "font.text_2"           },
8623   { "game.panel.timegate_switch_time.draw_masked", "true"               },
8624   { "game.panel.timegate_switch_time.draw_order", "0"                   },
8625
8626   { "game.panel.switchgate_switch.x",           "-1"                    },
8627   { "game.panel.switchgate_switch.y",           "-1"                    },
8628   { "game.panel.switchgate_switch.tile_size",   "16"                    },
8629   { "game.panel.switchgate_switch.draw_masked", "false"                 },
8630   { "game.panel.switchgate_switch.draw_order",  "0"                     },
8631
8632   { "game.panel.emc_lenses.x",                  "-1"                    },
8633   { "game.panel.emc_lenses.y",                  "-1"                    },
8634   { "game.panel.emc_lenses.tile_size",          "16"                    },
8635   { "game.panel.emc_lenses.draw_masked",        "false"                 },
8636   { "game.panel.emc_lenses.draw_order",         "0"                     },
8637   { "game.panel.emc_lenses_time.x",             "-1"                    },
8638   { "game.panel.emc_lenses_time.y",             "-1"                    },
8639   { "game.panel.emc_lenses_time.align",         "left"                  },
8640   { "game.panel.emc_lenses_time.valign",        "top"                   },
8641   { "game.panel.emc_lenses_time.digits",        "-1"                    },
8642   { "game.panel.emc_lenses_time.font",          "font.text_2"           },
8643   { "game.panel.emc_lenses_time.draw_masked",   "true"                  },
8644   { "game.panel.emc_lenses_time.draw_order",    "0"                     },
8645
8646   { "game.panel.emc_magnifier.x",               "-1"                    },
8647   { "game.panel.emc_magnifier.y",               "-1"                    },
8648   { "game.panel.emc_magnifier.tile_size",       "16"                    },
8649   { "game.panel.emc_magnifier.draw_masked",     "false"                 },
8650   { "game.panel.emc_magnifier.draw_order",      "0"                     },
8651   { "game.panel.emc_magnifier_time.x",          "-1"                    },
8652   { "game.panel.emc_magnifier_time.y",          "-1"                    },
8653   { "game.panel.emc_magnifier_time.align",      "left"                  },
8654   { "game.panel.emc_magnifier_time.valign",     "top"                   },
8655   { "game.panel.emc_magnifier_time.digits",     "-1"                    },
8656   { "game.panel.emc_magnifier_time.font",       "font.text_2"           },
8657   { "game.panel.emc_magnifier_time.draw_masked","true"                  },
8658   { "game.panel.emc_magnifier_time.draw_order", "0"                     },
8659
8660   { "game.panel.balloon_switch.x",              "-1"                    },
8661   { "game.panel.balloon_switch.y",              "-1"                    },
8662   { "game.panel.balloon_switch.tile_size",      "16"                    },
8663   { "game.panel.balloon_switch.draw_masked",    "false"                 },
8664   { "game.panel.balloon_switch.draw_order",     "0"                     },
8665
8666   { "game.panel.dynabomb_number.x",             "-1"                    },
8667   { "game.panel.dynabomb_number.y",             "-1"                    },
8668   { "game.panel.dynabomb_number.align",         "left"                  },
8669   { "game.panel.dynabomb_number.valign",        "top"                   },
8670   { "game.panel.dynabomb_number.digits",        "-1"                    },
8671   { "game.panel.dynabomb_number.font",          "font.text_2"           },
8672   { "game.panel.dynabomb_number.draw_masked",   "true"                  },
8673   { "game.panel.dynabomb_number.draw_order",    "0"                     },
8674   { "game.panel.dynabomb_size.x",               "-1"                    },
8675   { "game.panel.dynabomb_size.y",               "-1"                    },
8676   { "game.panel.dynabomb_size.align",           "left"                  },
8677   { "game.panel.dynabomb_size.valign",          "top"                   },
8678   { "game.panel.dynabomb_size.digits",          "-1"                    },
8679   { "game.panel.dynabomb_size.font",            "font.text_2"           },
8680   { "game.panel.dynabomb_size.draw_masked",     "true"                  },
8681   { "game.panel.dynabomb_size.draw_order",      "0"                     },
8682   { "game.panel.dynabomb_power.x",              "-1"                    },
8683   { "game.panel.dynabomb_power.y",              "-1"                    },
8684   { "game.panel.dynabomb_power.tile_size",      "16"                    },
8685   { "game.panel.dynabomb_power.draw_masked",    "false"                 },
8686   { "game.panel.dynabomb_power.draw_order",     "0"                     },
8687
8688   { "game.panel.penguins.x",                    "-1"                    },
8689   { "game.panel.penguins.y",                    "-1"                    },
8690   { "game.panel.penguins.align",                "left"                  },
8691   { "game.panel.penguins.valign",               "top"                   },
8692   { "game.panel.penguins.digits",               "-1"                    },
8693   { "game.panel.penguins.font",                 "font.text_2"           },
8694   { "game.panel.penguins.draw_masked",          "true"                  },
8695   { "game.panel.penguins.draw_order",           "0"                     },
8696
8697   { "game.panel.sokoban_objects.x",             "-1"                    },
8698   { "game.panel.sokoban_objects.y",             "-1"                    },
8699   { "game.panel.sokoban_objects.align",         "left"                  },
8700   { "game.panel.sokoban_objects.valign",        "top"                   },
8701   { "game.panel.sokoban_objects.digits",        "-1"                    },
8702   { "game.panel.sokoban_objects.font",          "font.text_2"           },
8703   { "game.panel.sokoban_objects.draw_masked",   "true"                  },
8704   { "game.panel.sokoban_objects.draw_order",    "0"                     },
8705   { "game.panel.sokoban_fields.x",              "-1"                    },
8706   { "game.panel.sokoban_fields.y",              "-1"                    },
8707   { "game.panel.sokoban_fields.align",          "left"                  },
8708   { "game.panel.sokoban_fields.valign",         "top"                   },
8709   { "game.panel.sokoban_fields.digits",         "-1"                    },
8710   { "game.panel.sokoban_fields.font",           "font.text_2"           },
8711   { "game.panel.sokoban_fields.draw_masked",    "true"                  },
8712   { "game.panel.sokoban_fields.draw_order",     "0"                     },
8713
8714   { "game.panel.robot_wheel.x",                 "-1"                    },
8715   { "game.panel.robot_wheel.y",                 "-1"                    },
8716   { "game.panel.robot_wheel.tile_size",         "16"                    },
8717   { "game.panel.robot_wheel.draw_masked",       "false"                 },
8718   { "game.panel.robot_wheel.draw_order",        "0"                     },
8719
8720   { "game.panel.conveyor_belt_1.x",             "-1"                    },
8721   { "game.panel.conveyor_belt_1.y",             "-1"                    },
8722   { "game.panel.conveyor_belt_1.tile_size",     "16"                    },
8723   { "game.panel.conveyor_belt_1.draw_masked",   "false"                 },
8724   { "game.panel.conveyor_belt_1.draw_order",    "0"                     },
8725   { "game.panel.conveyor_belt_1_switch.x",      "-1"                    },
8726   { "game.panel.conveyor_belt_1_switch.y",      "-1"                    },
8727   { "game.panel.conveyor_belt_1_switch.tile_size", "16"                 },
8728   { "game.panel.conveyor_belt_1_switch.draw_masked", "false"            },
8729   { "game.panel.conveyor_belt_1_switch.draw_order", "0"                 },
8730   { "game.panel.conveyor_belt_2.x",             "-1"                    },
8731   { "game.panel.conveyor_belt_2.y",             "-1"                    },
8732   { "game.panel.conveyor_belt_2.tile_size",     "16"                    },
8733   { "game.panel.conveyor_belt_2.draw_masked",   "false"                 },
8734   { "game.panel.conveyor_belt_2.draw_order",    "0"                     },
8735   { "game.panel.conveyor_belt_2_switch.x",      "-1"                    },
8736   { "game.panel.conveyor_belt_2_switch.y",      "-1"                    },
8737   { "game.panel.conveyor_belt_2_switch.tile_size", "16"                 },
8738   { "game.panel.conveyor_belt_2_switch.draw_masked", "false"            },
8739   { "game.panel.conveyor_belt_2_switch.draw_order", "0"                 },
8740   { "game.panel.conveyor_belt_3.x",             "-1"                    },
8741   { "game.panel.conveyor_belt_3.y",             "-1"                    },
8742   { "game.panel.conveyor_belt_3.tile_size",     "16"                    },
8743   { "game.panel.conveyor_belt_3.draw_masked",   "false"                 },
8744   { "game.panel.conveyor_belt_3.draw_order",    "0"                     },
8745   { "game.panel.conveyor_belt_3_switch.x",      "-1"                    },
8746   { "game.panel.conveyor_belt_3_switch.y",      "-1"                    },
8747   { "game.panel.conveyor_belt_3_switch.tile_size", "16"                 },
8748   { "game.panel.conveyor_belt_3_switch.draw_masked", "false"            },
8749   { "game.panel.conveyor_belt_3_switch.draw_order", "0"                 },
8750   { "game.panel.conveyor_belt_4.x",             "-1"                    },
8751   { "game.panel.conveyor_belt_4.y",             "-1"                    },
8752   { "game.panel.conveyor_belt_4.tile_size",     "16"                    },
8753   { "game.panel.conveyor_belt_4.draw_masked",   "false"                 },
8754   { "game.panel.conveyor_belt_4.draw_order",    "0"                     },
8755   { "game.panel.conveyor_belt_4_switch.x",      "-1"                    },
8756   { "game.panel.conveyor_belt_4_switch.y",      "-1"                    },
8757   { "game.panel.conveyor_belt_4_switch.tile_size", "16"                 },
8758   { "game.panel.conveyor_belt_4_switch.draw_masked", "false"            },
8759   { "game.panel.conveyor_belt_4_switch.draw_order", "0"                 },
8760
8761   { "game.panel.magic_wall.x",                  "-1"                    },
8762   { "game.panel.magic_wall.y",                  "-1"                    },
8763   { "game.panel.magic_wall.tile_size",          "16"                    },
8764   { "game.panel.magic_wall.draw_masked",        "false"                 },
8765   { "game.panel.magic_wall.draw_order",         "0"                     },
8766   { "game.panel.magic_wall_time.x",             "-1"                    },
8767   { "game.panel.magic_wall_time.y",             "-1"                    },
8768   { "game.panel.magic_wall_time.align",         "left"                  },
8769   { "game.panel.magic_wall_time.valign",        "top"                   },
8770   { "game.panel.magic_wall_time.digits",        "-1"                    },
8771   { "game.panel.magic_wall_time.font",          "font.text_2"           },
8772   { "game.panel.magic_wall_time.draw_masked",   "true"                  },
8773   { "game.panel.magic_wall_time.draw_order",    "0"                     },
8774
8775   { "game.panel.gravity_state.x",               "-1"                    },
8776   { "game.panel.gravity_state.y",               "-1"                    },
8777   { "game.panel.gravity_state.align",           "left"                  },
8778   { "game.panel.gravity_state.valign",          "top"                   },
8779   { "game.panel.gravity_state.chars",           "-1"                    },
8780   { "game.panel.gravity_state.font",            "font.text_1"           },
8781   { "game.panel.gravity_state.font_active",     "font.text_2"           },
8782   { "game.panel.gravity_state.draw_masked",     "true"                  },
8783   { "game.panel.gravity_state.draw_order",      "0"                     },
8784
8785   { "game.panel.graphic_1.x",                   "-1"                    },
8786   { "game.panel.graphic_1.y",                   "-1"                    },
8787   { "game.panel.graphic_1.draw_masked",         "true"                  },
8788   { "game.panel.graphic_1.draw_order",          "0"                     },
8789   { "game.panel.graphic_2.x",                   "-1"                    },
8790   { "game.panel.graphic_2.y",                   "-1"                    },
8791   { "game.panel.graphic_2.draw_masked",         "true"                  },
8792   { "game.panel.graphic_2.draw_order",          "0"                     },
8793   { "game.panel.graphic_3.x",                   "-1"                    },
8794   { "game.panel.graphic_3.y",                   "-1"                    },
8795   { "game.panel.graphic_3.draw_masked",         "true"                  },
8796   { "game.panel.graphic_3.draw_order",          "0"                     },
8797   { "game.panel.graphic_4.x",                   "-1"                    },
8798   { "game.panel.graphic_4.y",                   "-1"                    },
8799   { "game.panel.graphic_4.draw_masked",         "true"                  },
8800   { "game.panel.graphic_4.draw_order",          "0"                     },
8801   { "game.panel.graphic_5.x",                   "-1"                    },
8802   { "game.panel.graphic_5.y",                   "-1"                    },
8803   { "game.panel.graphic_5.draw_masked",         "true"                  },
8804   { "game.panel.graphic_5.draw_order",          "0"                     },
8805   { "game.panel.graphic_6.x",                   "-1"                    },
8806   { "game.panel.graphic_6.y",                   "-1"                    },
8807   { "game.panel.graphic_6.draw_masked",         "true"                  },
8808   { "game.panel.graphic_6.draw_order",          "0"                     },
8809   { "game.panel.graphic_7.x",                   "-1"                    },
8810   { "game.panel.graphic_7.y",                   "-1"                    },
8811   { "game.panel.graphic_7.draw_masked",         "true"                  },
8812   { "game.panel.graphic_7.draw_order",          "0"                     },
8813   { "game.panel.graphic_8.x",                   "-1"                    },
8814   { "game.panel.graphic_8.y",                   "-1"                    },
8815   { "game.panel.graphic_8.draw_masked",         "true"                  },
8816   { "game.panel.graphic_8.draw_order",          "0"                     },
8817
8818   { "game.panel.element_1.x",                   "-1"                    },
8819   { "game.panel.element_1.y",                   "-1"                    },
8820   { "game.panel.element_1.tile_size",           "16"                    },
8821   { "game.panel.element_1.element",             "empty_space"           },
8822   { "game.panel.element_1.draw_masked",         "false"                 },
8823   { "game.panel.element_1.draw_order",          "0"                     },
8824   { "game.panel.element_1_count.x",             "-1"                    },
8825   { "game.panel.element_1_count.y",             "-1"                    },
8826   { "game.panel.element_1_count.align",         "left"                  },
8827   { "game.panel.element_1_count.valign",        "top"                   },
8828   { "game.panel.element_1_count.digits",        "-1"                    },
8829   { "game.panel.element_1_count.font",          "font.text_2"           },
8830   { "game.panel.element_1_count.element",       "empty_space"           },
8831   { "game.panel.element_1_count.draw_masked",   "true"                  },
8832   { "game.panel.element_1_count.draw_order",    "0"                     },
8833   { "game.panel.element_2.x",                   "-1"                    },
8834   { "game.panel.element_2.y",                   "-1"                    },
8835   { "game.panel.element_2.tile_size",           "16"                    },
8836   { "game.panel.element_2.element",             "empty_space"           },
8837   { "game.panel.element_2.draw_masked",         "false"                 },
8838   { "game.panel.element_2.draw_order",          "0"                     },
8839   { "game.panel.element_2_count.x",             "-1"                    },
8840   { "game.panel.element_2_count.y",             "-1"                    },
8841   { "game.panel.element_2_count.align",         "left"                  },
8842   { "game.panel.element_2_count.valign",        "top"                   },
8843   { "game.panel.element_2_count.digits",        "-1"                    },
8844   { "game.panel.element_2_count.font",          "font.text_2"           },
8845   { "game.panel.element_2_count.element",       "empty_space"           },
8846   { "game.panel.element_2_count.draw_masked",   "true"                  },
8847   { "game.panel.element_2_count.draw_order",    "0"                     },
8848   { "game.panel.element_3.x",                   "-1"                    },
8849   { "game.panel.element_3.y",                   "-1"                    },
8850   { "game.panel.element_3.tile_size",           "16"                    },
8851   { "game.panel.element_3.element",             "empty_space"           },
8852   { "game.panel.element_3.draw_masked",         "false"                 },
8853   { "game.panel.element_3.draw_order",          "0"                     },
8854   { "game.panel.element_3_count.x",             "-1"                    },
8855   { "game.panel.element_3_count.y",             "-1"                    },
8856   { "game.panel.element_3_count.align",         "left"                  },
8857   { "game.panel.element_3_count.valign",        "top"                   },
8858   { "game.panel.element_3_count.digits",        "-1"                    },
8859   { "game.panel.element_3_count.font",          "font.text_2"           },
8860   { "game.panel.element_3_count.element",       "empty_space"           },
8861   { "game.panel.element_3_count.draw_masked",   "true"                  },
8862   { "game.panel.element_3_count.draw_order",    "0"                     },
8863   { "game.panel.element_4.x",                   "-1"                    },
8864   { "game.panel.element_4.y",                   "-1"                    },
8865   { "game.panel.element_4.tile_size",           "16"                    },
8866   { "game.panel.element_4.element",             "empty_space"           },
8867   { "game.panel.element_4.draw_masked",         "false"                 },
8868   { "game.panel.element_4.draw_order",          "0"                     },
8869   { "game.panel.element_4_count.x",             "-1"                    },
8870   { "game.panel.element_4_count.y",             "-1"                    },
8871   { "game.panel.element_4_count.align",         "left"                  },
8872   { "game.panel.element_4_count.valign",        "top"                   },
8873   { "game.panel.element_4_count.digits",        "-1"                    },
8874   { "game.panel.element_4_count.font",          "font.text_2"           },
8875   { "game.panel.element_4_count.element",       "empty_space"           },
8876   { "game.panel.element_4_count.draw_masked",   "true"                  },
8877   { "game.panel.element_4_count.draw_order",    "0"                     },
8878   { "game.panel.element_5.x",                   "-1"                    },
8879   { "game.panel.element_5.y",                   "-1"                    },
8880   { "game.panel.element_5.tile_size",           "16"                    },
8881   { "game.panel.element_5.element",             "empty_space"           },
8882   { "game.panel.element_5.draw_masked",         "false"                 },
8883   { "game.panel.element_5.draw_order",          "0"                     },
8884   { "game.panel.element_5_count.x",             "-1"                    },
8885   { "game.panel.element_5_count.y",             "-1"                    },
8886   { "game.panel.element_5_count.align",         "left"                  },
8887   { "game.panel.element_5_count.valign",        "top"                   },
8888   { "game.panel.element_5_count.digits",        "-1"                    },
8889   { "game.panel.element_5_count.font",          "font.text_2"           },
8890   { "game.panel.element_5_count.element",       "empty_space"           },
8891   { "game.panel.element_5_count.draw_masked",   "true"                  },
8892   { "game.panel.element_5_count.draw_order",    "0"                     },
8893   { "game.panel.element_6.x",                   "-1"                    },
8894   { "game.panel.element_6.y",                   "-1"                    },
8895   { "game.panel.element_6.tile_size",           "16"                    },
8896   { "game.panel.element_6.element",             "empty_space"           },
8897   { "game.panel.element_6.draw_masked",         "false"                 },
8898   { "game.panel.element_6.draw_order",          "0"                     },
8899   { "game.panel.element_6_count.x",             "-1"                    },
8900   { "game.panel.element_6_count.y",             "-1"                    },
8901   { "game.panel.element_6_count.align",         "left"                  },
8902   { "game.panel.element_6_count.valign",        "top"                   },
8903   { "game.panel.element_6_count.digits",        "-1"                    },
8904   { "game.panel.element_6_count.font",          "font.text_2"           },
8905   { "game.panel.element_6_count.element",       "empty_space"           },
8906   { "game.panel.element_6_count.draw_masked",   "true"                  },
8907   { "game.panel.element_6_count.draw_order",    "0"                     },
8908   { "game.panel.element_7.x",                   "-1"                    },
8909   { "game.panel.element_7.y",                   "-1"                    },
8910   { "game.panel.element_7.tile_size",           "16"                    },
8911   { "game.panel.element_7.element",             "empty_space"           },
8912   { "game.panel.element_7.draw_masked",         "false"                 },
8913   { "game.panel.element_7.draw_order",          "0"                     },
8914   { "game.panel.element_7_count.x",             "-1"                    },
8915   { "game.panel.element_7_count.y",             "-1"                    },
8916   { "game.panel.element_7_count.align",         "left"                  },
8917   { "game.panel.element_7_count.valign",        "top"                   },
8918   { "game.panel.element_7_count.digits",        "-1"                    },
8919   { "game.panel.element_7_count.font",          "font.text_2"           },
8920   { "game.panel.element_7_count.element",       "empty_space"           },
8921   { "game.panel.element_7_count.draw_masked",   "true"                  },
8922   { "game.panel.element_7_count.draw_order",    "0"                     },
8923   { "game.panel.element_8.x",                   "-1"                    },
8924   { "game.panel.element_8.y",                   "-1"                    },
8925   { "game.panel.element_8.tile_size",           "16"                    },
8926   { "game.panel.element_8.element",             "empty_space"           },
8927   { "game.panel.element_8.draw_masked",         "false"                 },
8928   { "game.panel.element_8.draw_order",          "0"                     },
8929   { "game.panel.element_8_count.x",             "-1"                    },
8930   { "game.panel.element_8_count.y",             "-1"                    },
8931   { "game.panel.element_8_count.align",         "left"                  },
8932   { "game.panel.element_8_count.valign",        "top"                   },
8933   { "game.panel.element_8_count.digits",        "-1"                    },
8934   { "game.panel.element_8_count.font",          "font.text_2"           },
8935   { "game.panel.element_8_count.element",       "empty_space"           },
8936   { "game.panel.element_8_count.draw_masked",   "true"                  },
8937   { "game.panel.element_8_count.draw_order",    "0"                     },
8938
8939   { "game.panel.ce_score_1.x",                  "-1"                    },
8940   { "game.panel.ce_score_1.y",                  "-1"                    },
8941   { "game.panel.ce_score_1.align",              "left"                  },
8942   { "game.panel.ce_score_1.valign",             "top"                   },
8943   { "game.panel.ce_score_1.digits",             "-1"                    },
8944   { "game.panel.ce_score_1.font",               "font.text_2"           },
8945   { "game.panel.ce_score_1.element",            "empty_space"           },
8946   { "game.panel.ce_score_1.draw_masked",        "true"                  },
8947   { "game.panel.ce_score_1.draw_order",         "0"                     },
8948   { "game.panel.ce_score_1_element.x",          "-1"                    },
8949   { "game.panel.ce_score_1_element.y",          "-1"                    },
8950   { "game.panel.ce_score_1_element.tile_size",  "16"                    },
8951   { "game.panel.ce_score_1_element.element",    "empty_space"           },
8952   { "game.panel.ce_score_1_element.draw_masked","false"                 },
8953   { "game.panel.ce_score_1_element.draw_order", "0"                     },
8954   { "game.panel.ce_score_2.x",                  "-1"                    },
8955   { "game.panel.ce_score_2.y",                  "-1"                    },
8956   { "game.panel.ce_score_2.align",              "left"                  },
8957   { "game.panel.ce_score_2.valign",             "top"                   },
8958   { "game.panel.ce_score_2.digits",             "-1"                    },
8959   { "game.panel.ce_score_2.font",               "font.text_2"           },
8960   { "game.panel.ce_score_2.element",            "empty_space"           },
8961   { "game.panel.ce_score_2.draw_masked",        "true"                  },
8962   { "game.panel.ce_score_2.draw_order",         "0"                     },
8963   { "game.panel.ce_score_2_element.x",          "-1"                    },
8964   { "game.panel.ce_score_2_element.y",          "-1"                    },
8965   { "game.panel.ce_score_2_element.tile_size",  "16"                    },
8966   { "game.panel.ce_score_2_element.element",    "empty_space"           },
8967   { "game.panel.ce_score_2_element.draw_masked","false"                 },
8968   { "game.panel.ce_score_2_element.draw_order", "0"                     },
8969   { "game.panel.ce_score_3.x",                  "-1"                    },
8970   { "game.panel.ce_score_3.y",                  "-1"                    },
8971   { "game.panel.ce_score_3.align",              "left"                  },
8972   { "game.panel.ce_score_3.valign",             "top"                   },
8973   { "game.panel.ce_score_3.digits",             "-1"                    },
8974   { "game.panel.ce_score_3.font",               "font.text_2"           },
8975   { "game.panel.ce_score_3.element",            "empty_space"           },
8976   { "game.panel.ce_score_3.draw_masked",        "true"                  },
8977   { "game.panel.ce_score_3.draw_order",         "0"                     },
8978   { "game.panel.ce_score_3_element.x",          "-1"                    },
8979   { "game.panel.ce_score_3_element.y",          "-1"                    },
8980   { "game.panel.ce_score_3_element.tile_size",  "16"                    },
8981   { "game.panel.ce_score_3_element.element",    "empty_space"           },
8982   { "game.panel.ce_score_3_element.draw_masked","false"                 },
8983   { "game.panel.ce_score_3_element.draw_order", "0"                     },
8984   { "game.panel.ce_score_4.x",                  "-1"                    },
8985   { "game.panel.ce_score_4.y",                  "-1"                    },
8986   { "game.panel.ce_score_4.align",              "left"                  },
8987   { "game.panel.ce_score_4.valign",             "top"                   },
8988   { "game.panel.ce_score_4.digits",             "-1"                    },
8989   { "game.panel.ce_score_4.font",               "font.text_2"           },
8990   { "game.panel.ce_score_4.element",            "empty_space"           },
8991   { "game.panel.ce_score_4.draw_masked",        "true"                  },
8992   { "game.panel.ce_score_4.draw_order",         "0"                     },
8993   { "game.panel.ce_score_4_element.x",          "-1"                    },
8994   { "game.panel.ce_score_4_element.y",          "-1"                    },
8995   { "game.panel.ce_score_4_element.tile_size",  "16"                    },
8996   { "game.panel.ce_score_4_element.element",    "empty_space"           },
8997   { "game.panel.ce_score_4_element.draw_masked","false"                 },
8998   { "game.panel.ce_score_4_element.draw_order", "0"                     },
8999   { "game.panel.ce_score_5.x",                  "-1"                    },
9000   { "game.panel.ce_score_5.y",                  "-1"                    },
9001   { "game.panel.ce_score_5.align",              "left"                  },
9002   { "game.panel.ce_score_5.valign",             "top"                   },
9003   { "game.panel.ce_score_5.digits",             "-1"                    },
9004   { "game.panel.ce_score_5.font",               "font.text_2"           },
9005   { "game.panel.ce_score_5.element",            "empty_space"           },
9006   { "game.panel.ce_score_5.draw_masked",        "true"                  },
9007   { "game.panel.ce_score_5.draw_order",         "0"                     },
9008   { "game.panel.ce_score_5_element.x",          "-1"                    },
9009   { "game.panel.ce_score_5_element.y",          "-1"                    },
9010   { "game.panel.ce_score_5_element.tile_size",  "16"                    },
9011   { "game.panel.ce_score_5_element.element",    "empty_space"           },
9012   { "game.panel.ce_score_5_element.draw_masked","false"                 },
9013   { "game.panel.ce_score_5_element.draw_order", "0"                     },
9014   { "game.panel.ce_score_6.x",                  "-1"                    },
9015   { "game.panel.ce_score_6.y",                  "-1"                    },
9016   { "game.panel.ce_score_6.align",              "left"                  },
9017   { "game.panel.ce_score_6.valign",             "top"                   },
9018   { "game.panel.ce_score_6.digits",             "-1"                    },
9019   { "game.panel.ce_score_6.font",               "font.text_2"           },
9020   { "game.panel.ce_score_6.element",            "empty_space"           },
9021   { "game.panel.ce_score_6.draw_masked",        "true"                  },
9022   { "game.panel.ce_score_6.draw_order",         "0"                     },
9023   { "game.panel.ce_score_6_element.x",          "-1"                    },
9024   { "game.panel.ce_score_6_element.y",          "-1"                    },
9025   { "game.panel.ce_score_6_element.tile_size",  "16"                    },
9026   { "game.panel.ce_score_6_element.element",    "empty_space"           },
9027   { "game.panel.ce_score_6_element.draw_masked","false"                 },
9028   { "game.panel.ce_score_6_element.draw_order", "0"                     },
9029   { "game.panel.ce_score_7.x",                  "-1"                    },
9030   { "game.panel.ce_score_7.y",                  "-1"                    },
9031   { "game.panel.ce_score_7.align",              "left"                  },
9032   { "game.panel.ce_score_7.valign",             "top"                   },
9033   { "game.panel.ce_score_7.digits",             "-1"                    },
9034   { "game.panel.ce_score_7.font",               "font.text_2"           },
9035   { "game.panel.ce_score_7.element",            "empty_space"           },
9036   { "game.panel.ce_score_7.draw_masked",        "true"                  },
9037   { "game.panel.ce_score_7.draw_order",         "0"                     },
9038   { "game.panel.ce_score_7_element.x",          "-1"                    },
9039   { "game.panel.ce_score_7_element.y",          "-1"                    },
9040   { "game.panel.ce_score_7_element.tile_size",  "16"                    },
9041   { "game.panel.ce_score_7_element.element",    "empty_space"           },
9042   { "game.panel.ce_score_7_element.draw_masked","false"                 },
9043   { "game.panel.ce_score_7_element.draw_order", "0"                     },
9044   { "game.panel.ce_score_8.x",                  "-1"                    },
9045   { "game.panel.ce_score_8.y",                  "-1"                    },
9046   { "game.panel.ce_score_8.align",              "left"                  },
9047   { "game.panel.ce_score_8.valign",             "top"                   },
9048   { "game.panel.ce_score_8.digits",             "-1"                    },
9049   { "game.panel.ce_score_8.font",               "font.text_2"           },
9050   { "game.panel.ce_score_8.element",            "empty_space"           },
9051   { "game.panel.ce_score_8.draw_masked",        "true"                  },
9052   { "game.panel.ce_score_8.draw_order",         "0"                     },
9053   { "game.panel.ce_score_8_element.x",          "-1"                    },
9054   { "game.panel.ce_score_8_element.y",          "-1"                    },
9055   { "game.panel.ce_score_8_element.tile_size",  "16"                    },
9056   { "game.panel.ce_score_8_element.element",    "empty_space"           },
9057   { "game.panel.ce_score_8_element.draw_masked","false"                 },
9058   { "game.panel.ce_score_8_element.draw_order", "0"                     },
9059
9060   { "game.panel.player_name.x",                 "-1"                    },
9061   { "game.panel.player_name.y",                 "-1"                    },
9062   { "game.panel.player_name.align",             "left"                  },
9063   { "game.panel.player_name.valign",            "top"                   },
9064   { "game.panel.player_name.chars",             "-1"                    },
9065   { "game.panel.player_name.font",              "font.text_2"           },
9066   { "game.panel.player_name.draw_masked",       "true"                  },
9067   { "game.panel.player_name.draw_order",        "0"                     },
9068
9069   { "game.panel.level_name.x",                  "-1"                    },
9070   { "game.panel.level_name.y",                  "-1"                    },
9071   { "game.panel.level_name.align",              "left"                  },
9072   { "game.panel.level_name.valign",             "top"                   },
9073   { "game.panel.level_name.chars",              "-1"                    },
9074   { "game.panel.level_name.font",               "font.text_2"           },
9075   { "game.panel.level_name.draw_masked",        "true"                  },
9076   { "game.panel.level_name.draw_order",         "0"                     },
9077   { "game.panel.level_author.x",                "-1"                    },
9078   { "game.panel.level_author.y",                "-1"                    },
9079   { "game.panel.level_author.align",            "left"                  },
9080   { "game.panel.level_author.valign",           "top"                   },
9081   { "game.panel.level_author.chars",            "-1"                    },
9082   { "game.panel.level_author.font",             "font.text_2"           },
9083   { "game.panel.level_author.draw_masked",      "true"                  },
9084   { "game.panel.level_author.draw_order",       "0"                     },
9085
9086   { "game.button.stop.x",                       "5"                     },
9087   { "game.button.stop.y",                       "215"                   },
9088   { "game.button.pause.x",                      "35"                    },
9089   { "game.button.pause.y",                      "215"                   },
9090   { "game.button.play.x",                       "65"                    },
9091   { "game.button.play.y",                       "215"                   },
9092   { "game.button.undo.x",                       "-1"                    },
9093   { "game.button.undo.y",                       "-1"                    },
9094   { "game.button.redo.x",                       "-1"                    },
9095   { "game.button.redo.y",                       "-1"                    },
9096   { "game.button.save.x",                       "-1"                    },
9097   { "game.button.save.y",                       "-1"                    },
9098   { "game.button.pause2.x",                     "-1"                    },
9099   { "game.button.pause2.y",                     "-1"                    },
9100   { "game.button.load.x",                       "-1"                    },
9101   { "game.button.load.y",                       "-1"                    },
9102   { "game.button.sound_music.x",                "5"                     },
9103   { "game.button.sound_music.y",                "245"                   },
9104   { "game.button.sound_loops.x",                "35"                    },
9105   { "game.button.sound_loops.y",                "245"                   },
9106   { "game.button.sound_simple.x",               "65"                    },
9107   { "game.button.sound_simple.y",               "245"                   },
9108
9109   { "game.button.panel_stop.x",                 "-1"                    },
9110   { "game.button.panel_stop.y",                 "-1"                    },
9111   { "game.button.panel_pause.x",                "-1"                    },
9112   { "game.button.panel_pause.y",                "-1"                    },
9113   { "game.button.panel_play.x",                 "-1"                    },
9114   { "game.button.panel_play.y",                 "-1"                    },
9115   { "game.button.panel_sound_music.x",          "-1"                    },
9116   { "game.button.panel_sound_music.y",          "-1"                    },
9117   { "game.button.panel_sound_loops.x",          "-1"                    },
9118   { "game.button.panel_sound_loops.y",          "-1"                    },
9119   { "game.button.panel_sound_simple.x",         "-1"                    },
9120   { "game.button.panel_sound_simple.y",         "-1"                    },
9121
9122   { "tape.button.eject.x",                      "5"                     },
9123   { "tape.button.eject.y",                      "77"                    },
9124   { "tape.button.stop.x",                       "23"                    },
9125   { "tape.button.stop.y",                       "77"                    },
9126   { "tape.button.pause.x",                      "41"                    },
9127   { "tape.button.pause.y",                      "77"                    },
9128   { "tape.button.record.x",                     "59"                    },
9129   { "tape.button.record.y",                     "77"                    },
9130   { "tape.button.play.x",                       "77"                    },
9131   { "tape.button.play.y",                       "77"                    },
9132
9133   { "tape.button.insert_solution.x",            "-1"                    },
9134   { "tape.button.insert_solution.y",            "-1"                    },
9135   { "tape.button.play_solution.x",              "-1"                    },
9136   { "tape.button.play_solution.y",              "-1"                    },
9137
9138   { "tape.symbol.eject.x",                      "-1"                    },
9139   { "tape.symbol.eject.y",                      "-1"                    },
9140   { "tape.symbol.stop.x",                       "-1"                    },
9141   { "tape.symbol.stop.y",                       "-1"                    },
9142   { "tape.symbol.pause.x",                      "40"                    },
9143   { "tape.symbol.pause.y",                      "41"                    },
9144   { "tape.symbol.record.x",                     "25"                    },
9145   { "tape.symbol.record.y",                     "41"                    },
9146   { "tape.symbol.play.x",                       "57"                    },
9147   { "tape.symbol.play.y",                       "41"                    },
9148   { "tape.symbol.fast_forward.x",               "39"                    },
9149   { "tape.symbol.fast_forward.y",               "42"                    },
9150   { "tape.symbol.warp_forward.x",               "39"                    },
9151   { "tape.symbol.warp_forward.y",               "42"                    },
9152   { "tape.symbol.warp_forward_blind.x",         "39"                    },
9153   { "tape.symbol.warp_forward_blind.y",         "42"                    },
9154   { "tape.symbol.pause_before_end.x",           "-1"                    },
9155   { "tape.symbol.pause_before_end.y",           "-1"                    },
9156   { "tape.symbol.single_step.x",                "-1"                    },
9157   { "tape.symbol.single_step.y",                "-1"                    },
9158
9159   { "tape.label.eject.x",                       "-1"                    },
9160   { "tape.label.eject.y",                       "-1"                    },
9161   { "tape.label.stop.x",                        "-1"                    },
9162   { "tape.label.stop.y",                        "-1"                    },
9163   { "tape.label.pause.x",                       "5"                     },
9164   { "tape.label.pause.y",                       "61"                    },
9165   { "tape.label.record.x",                      "5"                     },
9166   { "tape.label.record.y",                      "41"                    },
9167   { "tape.label.play.x",                        "70"                    },
9168   { "tape.label.play.y",                        "41"                    },
9169   { "tape.label.fast_forward.x",                "5"                     },
9170   { "tape.label.fast_forward.y",                "42"                    },
9171   { "tape.label.warp_forward.x",                "5"                     },
9172   { "tape.label.warp_forward.y",                "42"                    },
9173   { "tape.label.warp_forward_blind.x",          "5"                     },
9174   { "tape.label.warp_forward_blind.y",          "42"                    },
9175   { "tape.label.pause_before_end.x",            "5"                     },
9176   { "tape.label.pause_before_end.y",            "42"                    },
9177   { "tape.label.single_step.x",                 "57"                    },
9178   { "tape.label.single_step.y",                 "42"                    },
9179
9180   { "tape.label.date.x",                        "5"                     },
9181   { "tape.label.date.y",                        "5"                     },
9182   { "tape.label.time.x",                        "46"                    },
9183   { "tape.label.time.y",                        "55"                    },
9184
9185   { "tape.text.date.x",                         "7"                     },
9186   { "tape.text.date.y",                         "19"                    },
9187   { "tape.text.date.align",                     "left"                  },
9188   { "tape.text.date.valign",                    "top"                   },
9189   { "tape.text.date.digits",                    "-1"                    },
9190   { "tape.text.date.xoffset",                   "27"                    },
9191   { "tape.text.date.2nd_xoffset",               "64"                    },
9192   { "tape.text.date.font",                      "font.tape_recorder"    },
9193   { "tape.text.date.draw_masked",               "false"                 },
9194
9195   { "tape.text.date_yyyy.x",                    "-1"                    },
9196   { "tape.text.date_yyyy.y",                    "-1"                    },
9197   { "tape.text.date_yyyy.align",                "left"                  },
9198   { "tape.text.date_yyyy.valign",               "top"                   },
9199   { "tape.text.date_yyyy.digits",               "4"                     },
9200   { "tape.text.date_yyyy.font",                 "font.tape_recorder"    },
9201   { "tape.text.date_yyyy.draw_masked",          "false"                 },
9202   { "tape.text.date_yy.x",                      "-1"                    },
9203   { "tape.text.date_yy.y",                      "-1"                    },
9204   { "tape.text.date_yy.align",                  "left"                  },
9205   { "tape.text.date_yy.valign",                 "top"                   },
9206   { "tape.text.date_yy.digits",                 "2"                     },
9207   { "tape.text.date_yy.font",                   "font.tape_recorder"    },
9208   { "tape.text.date_yy.draw_masked",            "false"                 },
9209   { "tape.text.date_mon.x",                     "-1"                    },
9210   { "tape.text.date_mon.y",                     "-1"                    },
9211   { "tape.text.date_mon.align",                 "left"                  },
9212   { "tape.text.date_mon.valign",                "top"                   },
9213   { "tape.text.date_mon.chars",                 "3"                     },
9214   { "tape.text.date_mon.font",                  "font.tape_recorder"    },
9215   { "tape.text.date_mon.draw_masked",           "false"                 },
9216   { "tape.text.date_mm.x",                      "-1"                    },
9217   { "tape.text.date_mm.y",                      "-1"                    },
9218   { "tape.text.date_mm.align",                  "left"                  },
9219   { "tape.text.date_mm.valign",                 "top"                   },
9220   { "tape.text.date_mm.digits",                 "2"                     },
9221   { "tape.text.date_mm.font",                   "font.tape_recorder"    },
9222   { "tape.text.date_mm.draw_masked",            "false"                 },
9223   { "tape.text.date_dd.x",                      "-1"                    },
9224   { "tape.text.date_dd.y",                      "-1"                    },
9225   { "tape.text.date_dd.align",                  "left"                  },
9226   { "tape.text.date_dd.valign",                 "top"                   },
9227   { "tape.text.date_dd.digits",                 "2"                     },
9228   { "tape.text.date_dd.font",                   "font.tape_recorder"    },
9229   { "tape.text.date_dd.draw_masked",            "false"                 },
9230
9231   { "tape.text.time.x",                         "44"                    },
9232   { "tape.text.time.y",                         "55"                    },
9233   { "tape.text.time.align",                     "left"                  },
9234   { "tape.text.time.valign",                    "top"                   },
9235   { "tape.text.time.digits",                    "-1"                    },
9236   { "tape.text.time.xoffset",                   "27"                    },
9237   { "tape.text.time.font",                      "font.tape_recorder"    },
9238   { "tape.text.time.draw_masked",               "false"                 },
9239
9240   { "tape.text.time_hh.x",                      "-1"                    },
9241   { "tape.text.time_hh.y",                      "-1"                    },
9242   { "tape.text.time_hh.align",                  "left"                  },
9243   { "tape.text.time_hh.valign",                 "top"                   },
9244   { "tape.text.time_hh.digits",                 "2"                     },
9245   { "tape.text.time_hh.font",                   "font.tape_recorder"    },
9246   { "tape.text.time_hh.draw_masked",            "false"                 },
9247   { "tape.text.time_mm.x",                      "-1"                    },
9248   { "tape.text.time_mm.y",                      "-1"                    },
9249   { "tape.text.time_mm.align",                  "left"                  },
9250   { "tape.text.time_mm.valign",                 "top"                   },
9251   { "tape.text.time_mm.digits",                 "2"                     },
9252   { "tape.text.time_mm.font",                   "font.tape_recorder"    },
9253   { "tape.text.time_mm.draw_masked",            "false"                 },
9254   { "tape.text.time_ss.x",                      "-1"                    },
9255   { "tape.text.time_ss.y",                      "-1"                    },
9256   { "tape.text.time_ss.align",                  "left"                  },
9257   { "tape.text.time_ss.valign",                 "top"                   },
9258   { "tape.text.time_ss.digits",                 "2"                     },
9259   { "tape.text.time_ss.font",                   "font.tape_recorder"    },
9260   { "tape.text.time_ss.draw_masked",            "false"                 },
9261
9262   { "tape.text.frame.x",                        "-1"                    },
9263   { "tape.text.frame.y",                        "-1"                    },
9264   { "tape.text.frame.align",                    "left"                  },
9265   { "tape.text.frame.valign",                   "top"                   },
9266   { "tape.text.frame.digits",                   "-1"                    },
9267   { "tape.text.frame.font",                     "font.tape_recorder"    },
9268   { "tape.text.frame.draw_masked",              "false"                 },
9269
9270   { "tape.show_game_buttons",                   "false"                 },
9271
9272   { "editor.button.prev_level.x",               "5"                     },
9273   { "editor.button.prev_level.y",               "5"                     },
9274   { "editor.button.next_level.x",               "79"                    },
9275   { "editor.button.next_level.y",               "5"                     },
9276
9277   { "editor.button.properties.x",               "5"                     },
9278   { "editor.button.properties.y",               "230"                   },
9279
9280   { "editor.button.element_left.x",             "-1"                    },
9281   { "editor.button.element_left.y",             "-1"                    },
9282   { "editor.button.element_left.tile_size",     "-1"                    },
9283   { "editor.button.element_middle.x",           "-1"                    },
9284   { "editor.button.element_middle.y",           "-1"                    },
9285   { "editor.button.element_middle.tile_size",   "-1"                    },
9286   { "editor.button.element_right.x",            "-1"                    },
9287   { "editor.button.element_right.y",            "-1"                    },
9288   { "editor.button.element_right.tile_size",    "-1"                    },
9289
9290   { "editor.button.palette.x",                  "-1"                    },
9291   { "editor.button.palette.y",                  "-1"                    },
9292
9293   { "editor.button.draw_single.x",              "6"                     },
9294   { "editor.button.draw_single.y",              "6"                     },
9295   { "editor.button.draw_connected.x",           "28"                    },
9296   { "editor.button.draw_connected.y",           "6"                     },
9297   { "editor.button.draw_line.x",                "50"                    },
9298   { "editor.button.draw_line.y",                "6"                     },
9299   { "editor.button.draw_arc.x",                 "72"                    },
9300   { "editor.button.draw_arc.y",                 "6"                     },
9301   { "editor.button.draw_rectangle.x",           "6"                     },
9302   { "editor.button.draw_rectangle.y",           "28"                    },
9303   { "editor.button.draw_filled_box.x",          "28"                    },
9304   { "editor.button.draw_filled_box.y",          "28"                    },
9305   { "editor.button.rotate_up.x",                "50"                    },
9306   { "editor.button.rotate_up.y",                "28"                    },
9307   { "editor.button.draw_text.x",                "72"                    },
9308   { "editor.button.draw_text.y",                "28"                    },
9309   { "editor.button.flood_fill.x",               "6"                     },
9310   { "editor.button.flood_fill.y",               "50"                    },
9311   { "editor.button.rotate_left.x",              "28"                    },
9312   { "editor.button.rotate_left.y",              "50"                    },
9313   { "editor.button.zoom_level.x",               "50"                    },
9314   { "editor.button.zoom_level.y",               "50"                    },
9315   { "editor.button.rotate_right.x",             "72"                    },
9316   { "editor.button.rotate_right.y",             "50"                    },
9317   { "editor.button.draw_random.x",              "6"                     },
9318   { "editor.button.draw_random.y",              "72"                    },
9319   { "editor.button.grab_brush.x",               "28"                    },
9320   { "editor.button.grab_brush.y",               "72"                    },
9321   { "editor.button.rotate_down.x",              "50"                    },
9322   { "editor.button.rotate_down.y",              "72"                    },
9323   { "editor.button.pick_element.x",             "72"                    },
9324   { "editor.button.pick_element.y",             "72"                    },
9325
9326   { "editor.button.ce_copy_from.x",             "28"                    },
9327   { "editor.button.ce_copy_from.y",             "6"                     },
9328   { "editor.button.ce_copy_to.x",               "50"                    },
9329   { "editor.button.ce_copy_to.y",               "6"                     },
9330   { "editor.button.ce_swap.x",                  "72"                    },
9331   { "editor.button.ce_swap.y",                  "6"                     },
9332   { "editor.button.ce_copy.x",                  "6"                     },
9333   { "editor.button.ce_copy.y",                  "72"                    },
9334   { "editor.button.ce_paste.x",                 "28"                    },
9335   { "editor.button.ce_paste.y",                 "72"                    },
9336
9337   { "editor.button.undo.x",                     "5"                     },
9338   { "editor.button.undo.y",                     "99"                    },
9339   { "editor.button.conf.x",                     "35"                    },
9340   { "editor.button.conf.y",                     "99"                    },
9341   { "editor.button.save.x",                     "65"                    },
9342   { "editor.button.save.y",                     "99"                    },
9343   { "editor.button.clear.x",                    "5"                     },
9344   { "editor.button.clear.y",                    "119"                   },
9345   { "editor.button.test.x",                     "35"                    },
9346   { "editor.button.test.y",                     "119"                   },
9347   { "editor.button.exit.x",                     "65"                    },
9348   { "editor.button.exit.y",                     "119"                   },
9349
9350   { "editor.input.level_number.x",              "29"                    },
9351   { "editor.input.level_number.y",              "5"                     },
9352
9353   { "editor.palette.x",                         "5"                     },
9354   { "editor.palette.y",                         "30"                    },
9355   { "editor.palette.cols",                      "4"                     },
9356   { "editor.palette.rows",                      "10"                    },
9357   { "editor.palette.tile_size",                 "16"                    },
9358   { "editor.palette.show_as_separate_screen",   "false"                 },
9359   { "editor.palette.show_on_element_buttons",   "false"                 },
9360
9361   { "editor.palette.element_left.x",            "6"                     },
9362   { "editor.palette.element_left.y",            "258"                   },
9363   { "editor.palette.element_left.tile_size",    "16"                    },
9364   { "editor.palette.element_middle.x",          "42"                    },
9365   { "editor.palette.element_middle.y",          "258"                   },
9366   { "editor.palette.element_middle.tile_size",  "16"                    },
9367   { "editor.palette.element_right.x",           "78"                    },
9368   { "editor.palette.element_right.y",           "258"                   },
9369   { "editor.palette.element_right.tile_size",   "16"                    },
9370
9371   { "editor.drawingarea.tile_size",             "16"                    },
9372
9373   { "editor.settings.headline.x",               "272"                   },
9374   { "editor.settings.headline.y",               "16"                    },
9375   { "editor.settings.headline.align",           "center"                },
9376   { "editor.settings.element_graphic.x",        "24"                    },
9377   { "editor.settings.element_graphic.y",        "64"                    },
9378   { "editor.settings.element_name.x",           "-1"                    },
9379   { "editor.settings.element_name.y",           "-1"                    },
9380   { "editor.settings.tabs.x",                   "24"                    },
9381   { "editor.settings.tabs.y",                   "64"                    },
9382   { "editor.settings.tabs.2nd_yoffset",         "64"                    },
9383   { "editor.settings.tabs.draw_xoffset",        "0"                     },
9384   { "editor.settings.tabs.draw_yoffset",        "8"                     },
9385   { "editor.settings.tooltip.x",                "-1"                    },
9386   { "editor.settings.tooltip.y",                "-1"                    },
9387
9388   { "editor.gadget.normal_spacing",             "4"                     },
9389   { "editor.gadget.small_spacing",              "2"                     },
9390   { "editor.gadget.tiny_spacing",               "1"                     },
9391   { "editor.gadget.line_spacing",               "4"                     },
9392   { "editor.gadget.text_spacing",               "4"                     },
9393   { "editor.gadget.separator_line.height",      "2"                     },
9394
9395   { "request.button.yes.x",                     "2"                     },
9396   { "request.button.yes.y",                     "250"                   },
9397   { "request.button.no.x",                      "52"                    },
9398   { "request.button.no.y",                      "250"                   },
9399   { "request.button.confirm.x",                 "2"                     },
9400   { "request.button.confirm.y",                 "250"                   },
9401   { "request.button.player_1.x",                "35"                    },
9402   { "request.button.player_1.y",                "185"                   },
9403   { "request.button.player_1.draw_player",      "true"                  },
9404   { "request.button.player_1.tile_size",        "16"                    },
9405   { "request.button.player_2.x",                "65"                    },
9406   { "request.button.player_2.y",                "215"                   },
9407   { "request.button.player_2.draw_player",      "true"                  },
9408   { "request.button.player_2.tile_size",        "16"                    },
9409   { "request.button.player_3.x",                "35"                    },
9410   { "request.button.player_3.y",                "245"                   },
9411   { "request.button.player_3.draw_player",      "true"                  },
9412   { "request.button.player_3.tile_size",        "16"                    },
9413   { "request.button.player_4.x",                "5"                     },
9414   { "request.button.player_4.y",                "215"                   },
9415   { "request.button.player_4.draw_player",      "true"                  },
9416   { "request.button.player_4.tile_size",        "16"                    },
9417
9418   { "request.x",                                "-1"                    },
9419   { "request.y",                                "-1"                    },
9420   { "request.width",                            "120"                   },
9421   { "request.height",                           "300"                   },
9422   { "request.border_size",                      "10"                    },
9423   { "request.line_spacing",                     "2"                     },
9424   { "request.step_offset",                      "10"                    },
9425   { "request.step_delay",                       "20"                    },
9426   { "request.anim_mode",                        "default"               },
9427   { "request.align",                            "center"                },
9428   { "request.valign",                           "middle"                },
9429   { "request.autowrap",                         "false"                 },
9430   { "request.centered",                         "true"                  },
9431   { "request.wrap_single_words",                "true"                  },
9432
9433   { "global.use_envelope_request",              "false"                 },
9434
9435   { "game.graphics_engine_version",             "-1"                    },
9436   { "game.forced_scroll_delay_value",           "-1"                    },
9437   { "game.use_native_emc_graphics_engine",      "false"                 },
9438   { "game.use_native_sp_graphics_engine",       "true"                  },
9439   { "game.use_masked_pushing",                  "false"                 },
9440   { "game.tile_size",                           "32"                    },
9441
9442   { "[player].boring_delay_fixed",              "1000"                  },
9443   { "[player].boring_delay_random",             "1000"                  },
9444   { "[player].sleeping_delay_fixed",            "2000"                  },
9445   { "[player].sleeping_delay_random",           "2000"                  },
9446
9447   { "viewport.window.width",                    "672"                   },
9448   { "viewport.window.height",                   "560"                   },
9449   { "viewport.window.min_width",                "-1"                    },
9450   { "viewport.window.min_height",               "-1"                    },
9451   { "viewport.window.max_width",                "-1"                    },
9452   { "viewport.window.max_height",               "-1"                    },
9453   { "viewport.window.TITLE.width",              ARG_DEFAULT             },
9454   { "viewport.window.TITLE.height",             ARG_DEFAULT             },
9455
9456   { "viewport.playfield.x",                     "6"                     },
9457   { "viewport.playfield.y",                     "6"                     },
9458   { "viewport.playfield.width",                 "548"                   },
9459   { "viewport.playfield.height",                "548"                   },
9460   { "viewport.playfield.min_width",             "-1"                    },
9461   { "viewport.playfield.min_height",            "-1"                    },
9462   { "viewport.playfield.max_width",             "-1"                    },
9463   { "viewport.playfield.max_height",            "-1"                    },
9464   { "viewport.playfield.margin_left",           "0"                     },
9465   { "viewport.playfield.margin_right",          "0"                     },
9466   { "viewport.playfield.margin_top",            "0"                     },
9467   { "viewport.playfield.margin_bottom",         "0"                     },
9468   { "viewport.playfield.border_left",           "-1"                    },
9469   { "viewport.playfield.border_right",          "-1"                    },
9470   { "viewport.playfield.border_top",            "-1"                    },
9471   { "viewport.playfield.border_bottom",         "-1"                    },
9472   { "viewport.playfield.border_size",           "2"                     },
9473   { "viewport.playfield.align_size",            "16"                    },
9474   { "viewport.playfield.align",                 "left"                  },
9475   { "viewport.playfield.valign",                "top"                   },
9476   { "viewport.playfield.MAIN.x",                ARG_DEFAULT             },
9477   { "viewport.playfield.MAIN.y",                ARG_DEFAULT             },
9478   { "viewport.playfield.MAIN.width",            ARG_DEFAULT             },
9479   { "viewport.playfield.MAIN.height",           ARG_DEFAULT             },
9480   { "viewport.playfield.MAIN.min_width",        ARG_DEFAULT             },
9481   { "viewport.playfield.MAIN.min_height",       ARG_DEFAULT             },
9482   { "viewport.playfield.MAIN.max_width",        ARG_DEFAULT             },
9483   { "viewport.playfield.MAIN.max_height",       ARG_DEFAULT             },
9484   { "viewport.playfield.MAIN.margin_left",      ARG_DEFAULT             },
9485   { "viewport.playfield.MAIN.margin_right",     ARG_DEFAULT             },
9486   { "viewport.playfield.MAIN.margin_top",       ARG_DEFAULT             },
9487   { "viewport.playfield.MAIN.margin_bottom",    ARG_DEFAULT             },
9488   { "viewport.playfield.MAIN.border_left",      ARG_DEFAULT             },
9489   { "viewport.playfield.MAIN.border_right",     ARG_DEFAULT             },
9490   { "viewport.playfield.MAIN.border_top",       ARG_DEFAULT             },
9491   { "viewport.playfield.MAIN.border_bottom",    ARG_DEFAULT             },
9492   { "viewport.playfield.MAIN.border_size",      ARG_DEFAULT             },
9493   { "viewport.playfield.MAIN.align_size",       ARG_DEFAULT             },
9494   { "viewport.playfield.MAIN.align",            ARG_DEFAULT             },
9495   { "viewport.playfield.MAIN.valign",           ARG_DEFAULT             },
9496   { "viewport.playfield.SCORES.x",              ARG_DEFAULT             },
9497   { "viewport.playfield.SCORES.y",              ARG_DEFAULT             },
9498   { "viewport.playfield.SCORES.width",          ARG_DEFAULT             },
9499   { "viewport.playfield.SCORES.height",         ARG_DEFAULT             },
9500   { "viewport.playfield.SCORES.min_width",      ARG_DEFAULT             },
9501   { "viewport.playfield.SCORES.min_height",     ARG_DEFAULT             },
9502   { "viewport.playfield.SCORES.max_width",      ARG_DEFAULT             },
9503   { "viewport.playfield.SCORES.max_height",     ARG_DEFAULT             },
9504   { "viewport.playfield.SCORES.margin_left",    ARG_DEFAULT             },
9505   { "viewport.playfield.SCORES.margin_right",   ARG_DEFAULT             },
9506   { "viewport.playfield.SCORES.margin_top",     ARG_DEFAULT             },
9507   { "viewport.playfield.SCORES.margin_bottom",  ARG_DEFAULT             },
9508   { "viewport.playfield.SCORES.border_left",    ARG_DEFAULT             },
9509   { "viewport.playfield.SCORES.border_right",   ARG_DEFAULT             },
9510   { "viewport.playfield.SCORES.border_top",     ARG_DEFAULT             },
9511   { "viewport.playfield.SCORES.border_bottom",  ARG_DEFAULT             },
9512   { "viewport.playfield.SCORES.border_size",    ARG_DEFAULT             },
9513   { "viewport.playfield.SCORES.align_size",     ARG_DEFAULT             },
9514   { "viewport.playfield.SCORES.align",          ARG_DEFAULT             },
9515   { "viewport.playfield.SCORES.valign",         ARG_DEFAULT             },
9516   { "viewport.playfield.EDITOR.x",              ARG_DEFAULT             },
9517   { "viewport.playfield.EDITOR.y",              ARG_DEFAULT             },
9518   { "viewport.playfield.EDITOR.width",          ARG_DEFAULT             },
9519   { "viewport.playfield.EDITOR.height",         ARG_DEFAULT             },
9520   { "viewport.playfield.EDITOR.min_width",      ARG_DEFAULT             },
9521   { "viewport.playfield.EDITOR.min_height",     ARG_DEFAULT             },
9522   { "viewport.playfield.EDITOR.max_width",      ARG_DEFAULT             },
9523   { "viewport.playfield.EDITOR.max_height",     ARG_DEFAULT             },
9524   { "viewport.playfield.EDITOR.margin_left",    ARG_DEFAULT             },
9525   { "viewport.playfield.EDITOR.margin_right",   ARG_DEFAULT             },
9526   { "viewport.playfield.EDITOR.margin_top",     ARG_DEFAULT             },
9527   { "viewport.playfield.EDITOR.margin_bottom",  ARG_DEFAULT             },
9528   { "viewport.playfield.EDITOR.border_left",    ARG_DEFAULT             },
9529   { "viewport.playfield.EDITOR.border_right",   ARG_DEFAULT             },
9530   { "viewport.playfield.EDITOR.border_top",     ARG_DEFAULT             },
9531   { "viewport.playfield.EDITOR.border_bottom",  ARG_DEFAULT             },
9532   { "viewport.playfield.EDITOR.border_size",    ARG_DEFAULT             },
9533   { "viewport.playfield.EDITOR.align_size",     ARG_DEFAULT             },
9534   { "viewport.playfield.EDITOR.align",          ARG_DEFAULT             },
9535   { "viewport.playfield.EDITOR.valign",         ARG_DEFAULT             },
9536   { "viewport.playfield.PLAYING.x",             ARG_DEFAULT             },
9537   { "viewport.playfield.PLAYING.y",             ARG_DEFAULT             },
9538   { "viewport.playfield.PLAYING.width",         ARG_DEFAULT             },
9539   { "viewport.playfield.PLAYING.height",        ARG_DEFAULT             },
9540   { "viewport.playfield.PLAYING.min_width",     ARG_DEFAULT             },
9541   { "viewport.playfield.PLAYING.min_height",    ARG_DEFAULT             },
9542   { "viewport.playfield.PLAYING.max_width",     ARG_DEFAULT             },
9543   { "viewport.playfield.PLAYING.max_height",    ARG_DEFAULT             },
9544   { "viewport.playfield.PLAYING.margin_left",   ARG_DEFAULT             },
9545   { "viewport.playfield.PLAYING.margin_right",  ARG_DEFAULT             },
9546   { "viewport.playfield.PLAYING.margin_top",    ARG_DEFAULT             },
9547   { "viewport.playfield.PLAYING.margin_bottom", ARG_DEFAULT             },
9548   { "viewport.playfield.PLAYING.border_left",   ARG_DEFAULT             },
9549   { "viewport.playfield.PLAYING.border_right",  ARG_DEFAULT             },
9550   { "viewport.playfield.PLAYING.border_top",    ARG_DEFAULT             },
9551   { "viewport.playfield.PLAYING.border_bottom", ARG_DEFAULT             },
9552   { "viewport.playfield.PLAYING.border_size",   ARG_DEFAULT             },
9553   { "viewport.playfield.PLAYING.align_size",    ARG_DEFAULT             },
9554   { "viewport.playfield.PLAYING.align",         ARG_DEFAULT             },
9555   { "viewport.playfield.PLAYING.valign",        ARG_DEFAULT             },
9556
9557   { "viewport.door_1.x",                        "566"                   },
9558   { "viewport.door_1.y",                        "60"                    },
9559   { "viewport.door_1.width",                    "100"                   },
9560   { "viewport.door_1.height",                   "280"                   },
9561   { "viewport.door_1.border_size",              "4"                     },
9562   { "viewport.door_1.align",                    "left"                  },
9563   { "viewport.door_1.valign",                   "top"                   },
9564   { "viewport.door_1.MAIN.x",                   ARG_DEFAULT             },
9565   { "viewport.door_1.MAIN.y",                   ARG_DEFAULT             },
9566   { "viewport.door_1.MAIN.width",               ARG_DEFAULT             },
9567   { "viewport.door_1.MAIN.height",              ARG_DEFAULT             },
9568   { "viewport.door_1.MAIN.border_size",         ARG_DEFAULT             },
9569   { "viewport.door_1.MAIN.align",               ARG_DEFAULT             },
9570   { "viewport.door_1.MAIN.valign",              ARG_DEFAULT             },
9571   { "viewport.door_1.SCORES.x",                 ARG_DEFAULT             },
9572   { "viewport.door_1.SCORES.y",                 ARG_DEFAULT             },
9573   { "viewport.door_1.SCORES.width",             ARG_DEFAULT             },
9574   { "viewport.door_1.SCORES.height",            ARG_DEFAULT             },
9575   { "viewport.door_1.SCORES.border_size",       ARG_DEFAULT             },
9576   { "viewport.door_1.SCORES.align",             ARG_DEFAULT             },
9577   { "viewport.door_1.SCORES.valign",            ARG_DEFAULT             },
9578   { "viewport.door_1.EDITOR.x",                 ARG_DEFAULT             },
9579   { "viewport.door_1.EDITOR.y",                 ARG_DEFAULT             },
9580   { "viewport.door_1.EDITOR.width",             ARG_DEFAULT             },
9581   { "viewport.door_1.EDITOR.height",            ARG_DEFAULT             },
9582   { "viewport.door_1.EDITOR.border_size",       ARG_DEFAULT             },
9583   { "viewport.door_1.EDITOR.align",             ARG_DEFAULT             },
9584   { "viewport.door_1.EDITOR.valign",            ARG_DEFAULT             },
9585   { "viewport.door_1.PLAYING.x",                ARG_DEFAULT             },
9586   { "viewport.door_1.PLAYING.y",                ARG_DEFAULT             },
9587   { "viewport.door_1.PLAYING.width",            ARG_DEFAULT             },
9588   { "viewport.door_1.PLAYING.height",           ARG_DEFAULT             },
9589   { "viewport.door_1.PLAYING.border_size",      ARG_DEFAULT             },
9590   { "viewport.door_1.PLAYING.align",            ARG_DEFAULT             },
9591   { "viewport.door_1.PLAYING.valign",           ARG_DEFAULT             },
9592
9593   { "viewport.door_2.x",                        "566"                   },
9594   { "viewport.door_2.y",                        "400"                   },
9595   { "viewport.door_2.width",                    "100"                   },
9596   { "viewport.door_2.height",                   "100"                   },
9597   { "viewport.door_2.border_size",              "4"                     },
9598   { "viewport.door_2.align",                    "left"                  },
9599   { "viewport.door_2.valign",                   "top"                   },
9600   { "viewport.door_2.MAIN.x",                   ARG_DEFAULT             },
9601   { "viewport.door_2.MAIN.y",                   ARG_DEFAULT             },
9602   { "viewport.door_2.MAIN.width",               ARG_DEFAULT             },
9603   { "viewport.door_2.MAIN.height",              ARG_DEFAULT             },
9604   { "viewport.door_2.MAIN.border_size",         ARG_DEFAULT             },
9605   { "viewport.door_2.MAIN.align",               ARG_DEFAULT             },
9606   { "viewport.door_2.MAIN.valign",              ARG_DEFAULT             },
9607   { "viewport.door_2.SCORES.x",                 ARG_DEFAULT             },
9608   { "viewport.door_2.SCORES.y",                 ARG_DEFAULT             },
9609   { "viewport.door_2.SCORES.width",             ARG_DEFAULT             },
9610   { "viewport.door_2.SCORES.height",            ARG_DEFAULT             },
9611   { "viewport.door_2.SCORES.border_size",       ARG_DEFAULT             },
9612   { "viewport.door_2.SCORES.align",             ARG_DEFAULT             },
9613   { "viewport.door_2.SCORES.valign",            ARG_DEFAULT             },
9614   { "viewport.door_2.EDITOR.x",                 "566"                   },
9615   { "viewport.door_2.EDITOR.y",                 "356"                   },
9616   { "viewport.door_2.EDITOR.width",             "100"                   },
9617   { "viewport.door_2.EDITOR.height",            "144"                   },
9618   { "viewport.door_2.EDITOR.border_size",       "4"                     },
9619   { "viewport.door_2.EDITOR.align",             "left"                  },
9620   { "viewport.door_2.EDITOR.valign",            "top"                   },
9621   { "viewport.door_2.PLAYING.x",                ARG_DEFAULT             },
9622   { "viewport.door_2.PLAYING.y",                ARG_DEFAULT             },
9623   { "viewport.door_2.PLAYING.width",            ARG_DEFAULT             },
9624   { "viewport.door_2.PLAYING.height",           ARG_DEFAULT             },
9625   { "viewport.door_2.PLAYING.border_size",      ARG_DEFAULT             },
9626   { "viewport.door_2.PLAYING.align",            ARG_DEFAULT             },
9627   { "viewport.door_2.PLAYING.valign",           ARG_DEFAULT             },
9628
9629   { NULL,                                       NULL                    }
9630 };