ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
define.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef WATCHMAKER_DEFINE_H
23 #define WATCHMAKER_DEFINE_H
24 
25 namespace Watchmaker {
26 
27 // Main Chars
28 #define DARRELL 0
29 #define VICTORIA 1
30 
31 // user define for .nl
32 #define TEXT1 10000
33 #define TEXT2 10001
34 #define TEXT3 10002
35 #define TEXT4 10003
36 #define TEXT5 10004
37 #define ANIM2 10000
38 
39 // Flag per Obj, ObjInv, Room
40 #define EXAMINEACT 1 // Fa Azione in anim2 su esamina
41 #define ROOM 2 // Cambia Stanza - ma oggetto e' esaminabile
42 #define DOOR 2 // Cambia Stanza - ma oggetto e' esaminabile
43 #define CHARACTER 4 // Parte dialogo
44 #define TAKE 8 // solo per obj - Lo prende
45 #define DAR 0 // solo per inv - se per darrell
46 #define VIC 8 // solo per inv - se per victoria
47 #define USE 0 // Se puo' essere usato
48 #define USEWITH 16 // Fa Usa con
49 #define EXTRA 32 // Extra
50 #define EXTRA2 64 // Extra2
51 #define DONE 128 // Operato
52 #define ON 256 // Attivo (presente nella stanza)
53 #define WITHI 512 // se fa usacon automatico con invobj o con obj
54 #define HIDE 1024 // Se l'oggetto e' nascosto (indipendentemente dal fatto che sia ON)
55 #define HIDEIN1ST 2048 // se invisibile in prima persona
56 #define HIDEIN3RD 4096 // se invisibile in terza persona
57 #define NOSWITCH 8192 // non torna in terza se sono in prima e ci clicco sopra
58 #define FORCERIGHT 16384 // se deve prendere sempre un click col destro
59 #define NOUPDATE 32768 // se non deve utare le mesh collegate
60 
61 // Flags per animazioni
62 #define ANIM_ON 1 // Se attiva quando si entra nella stanza
63 #define ANIM_PORTAL_LINK 2 // Se collega due portali
64 #define ANIM_ABS 4 // Se non dipende da luce posizione
65 #define ANIM_BLOCK 8 // Se deve tenere ultimo frame
66 #define ANIM_NO_FIX_POS 16 // Se non deve fissare la posizione alla fine
67 #define ANIM_CHECK_BOUNDS 32 // Se deve stare dentro i bounds
68 #define ANIM_TIME 64 // Se e' un'animazione che da il tempo
69 #define ANIM_SKIP_LAST_FRAME 128 // Non Playa ultimo frame
70 #define ANIM_NULL 256 // Se serve soltanto come conta tempo
71 #define ANIM_PAUSED 512 // Se e' in pausa
72 #define ANIM_STAND 1024 // Se e' un'animazione di stand-by quando uso l'altro personaggio
73 #define ANIM_DEFAULT 2048 // Se va caricata come default
74 #define ANIM_NO_START_BLEND 4096 // Se non va blendata all'inizio
75 #define ANIM_NO_END_BLEND 8192 // Se non va blendata alla fine
76 #define ANIM_DIARY 16384 // Se e' stata lanciata da un diario
77 #define ANIM_SKIP_1ST_FRAME 32768 // Non Playa il primo frame
78 #define ANIM_BLOCK_PLAYER 65536 // Blocca anche il player
79 #define ANIM_BKG 131072 // E' una animazione di background
80 
81 // Flags per Sound - da implementare
82 #define SOUND_ON 1 // Se il suono e' attivo
83 #define SOUND_LOOP 2 // Se deve andare in loop
84 #define SOUND_BACK 4 // Se e' un suono di background
85 #define SOUND_PSX 8 // Se e' il suono del passo sinistro
86 #define SOUND_PDX 16 // Se e' i,l suono del passo destro
87 #define SOUND_STAIRS 32 // Se e' il suono di un passo sulle scale
88 #define SOUND_MUTE0 64 // Se e' MUTE0
89 #define SOUND_MUTE1 128 // Se e' MUTE1
90 
91 // Flags per crediti
92 #define CF_NULL 0 // nullo
93 #define CF_STATIC 1 // le scritte che seguono appaiono staticamente (di default scrollano)
94 #define CF_TITLE 2 // scrive la scritta nel mezzo (solo per scrolling)
95 #define CF_SPACE 4 // lascia x righe vuote prima di continuare a scrivere
96 #define CF_IMG 8 // mette sulla sinistra l'immagine 64x64 e sulla destra la descrizione
97 #define CF_IMG2 16 // mette sulla sinistra l'immagine 128x64 e sulla destra la descrizione
98 #define CF_END 32 // e' la scritta finale, una volta che e' arrivata a meta' schermo si ferma e poi finiscono i crediti (solo per scrolling)
99 
100 // Environment predefiniti per rooms
101 #define vGENERIC 0
102 #define vPADDEDCELL 1
103 #define vROOM 2
104 #define vBATHROOM 3
105 #define vLIVINGROOM 4
106 #define vSTONEROOM 5
107 #define vAUDITORIUM 6
108 #define vCONCERTHALL 7
109 #define vCAVE 8
110 #define vARENA 9
111 #define vHANGAR 10
112 #define vCARPETEDHALLWAY 11
113 #define vHALLWAY 12
114 #define vSTONECORRIDOR 13
115 #define vALLEY 14
116 #define vFOREST 15
117 #define vCITY 16
118 #define vMOUNTAINS 17
119 #define vQUARRY 18
120 #define vPLAIN 19
121 #define vPARKINGLOT 20
122 #define vSEWERPIPE 21
123 #define vUNDERWATER 22
124 #define vDRUGGED 23
125 #define vDIZZY 24
126 #define vPSYCHOTIC 25
127 
128 // Flags per dialoghi
129 #define DIALOG_RTV 1 // Se e' un RTV (non ha scelte)
130 #define DIALOG_RTV2 2 // Se deve partire RTV2
131 #define DIALOG_RTV3 4 // Se deve partire RTV3
132 #define DIALOG_PRE1 8 // Se deve partire il predialog1
133 #define DIALOG_PRE2 16 // Se deve partire il predialog2
134 #define DIALOG_PRE3 32 // Se deve partire il predialog3
135 #define DIALOG_PRE4 64 // Se deve partire il predialog4
136 #define DIALOG_PRE_RAND 128 // Se deve partire un predialog a caso tra quelli attivi
137 #define DIALOG_END1 256 // Se finire con l'enddialog1
138 #define DIALOG_END2 512 // Se finire con l'enddialog1
139 #define DIALOG_END3 1024 // Se finire con l'enddialog1
140 #define DIALOG_END_RAND 2048 // Se finire con un enddialog a caso tra quelli attivi
141 #define DIALOG_DONE 4096 // Se il dialogo e' gia' stato fatto
142 #define DIALOG_ONCE 8192 // Se dialogo deve essere eseguito una sola volta
143 
144 // Flags per le Rooms
145 #define ROOM_VISITED 1 // Se sono gia' stato in questa stanza
146 #define ROOM_VISIBLE 2 // Se e' visibile
147 #define ROOM_OLDVISIBLE 4 // Se prima era visbile
148 #define ROOM_EXTRA 8 // Se e' successa una cosa extra
149 #define ROOM_EXTRA2 16 // Se e' successa una cosa extra2
150 
151 // effetti speciali
152 #define EFFECT_FADIN 1 // Effetto FadIn
153 #define EFFECT_FADOUT 2 // Effetto FadOut
154 #define EFFECT_FADOUT_FADIN 3 // Effetto FadOut-FadIn
155 #define EFFECT_WAIT 4 // Effetto Aspetta
156 #define EFFECT_WAITDARK 5 // Effetto Aspetta con schermo nero
157 #define EFFECT_ROOMINFO 6 // Effetto RoomInfo
158 #define EFFECT_FADEIN_T1 7 // Effetto FadIn T1
159 #define EFFECT_FADEOUT_T1 8 // Effetto FadOut T1
160 #define EFFECT_FADEIN_T2 9 // Effetto FadIn T2
161 #define EFFECT_FADEOUT_T2 10 // Effetto FadOut T2
162 #define EFFECT_MOVEIN_T1 11 // Effetto MOVEIn T1
163 #define EFFECT_MOVEOUT_T1 12 // Effetto MOVEOut T1
164 #define EFFECT_MOVEIN_T2 13 // Effetto MOVEIn T2
165 #define EFFECT_MOVEOUT_T2 14 // Effetto MOVEOut T2
166 #define EFFECT_DISPLAY_NEWLOGIMG 15 // Mostra una immagine quando il log viene aggiornato
167 
168 // Per i log del PDA (menu e sottomenu)
169 #define PDA_UPDATE 1
170 #define PDA_MENU 2
171 #define PDA_ON 4
172 #define PDA_MAIN 8
173 
174 /* -----------------17/03/98 10.42-------------------
175  * AtFrame
176  * --------------------------------------------------*/
177 
178 #define ATF_DO 1 // Esegue l'evento programmabile <event>
179 #define ATF_PUSH 2 // Mette il valore <val> nello stack
180 #define ATF_POP 3 // Cancella il valore attuale dallo stack
181 #define ATF_JUMP 4 // Fa saltare animazioni NON in stack al frame <frame>
182 #define ATF_JUMP_ALL 5 // Fa saltare tutte le animazioni al frame <frame>
183 #define ATF_LOOP_LEN 6 // Definisce lunghezza del loop dal frame attuale
184 #define ATF_LOOP_END 7 // Definisce fine del loop dal frame attuale
185 #define ATF_LOOP_MASK 8 // Definisce animazioni su cui NON funziona il loop
186 #define ATF_TEXT 9 // Dice la frase <sent>
187 #define ATF_POP_TEXT 10 // Dice la frase prendendola dallo stack
188 
189 #define ATF_CHANGE_ROOM 13 // Posiziona omino in <roomname> e setta la posizione
190 #define ATF_CHANGE_ROOM_AN 14 // Come ATF_SET_ROOM solo che fa partire anim in stack
191 #define ATF_SET_CAMERA 15 // Forza la camera a diventare <cam>
192 #define ATF_SET_BND_LEVEL 16 // Setta il livello <lev> di bounds
193 #define ATF_TO_1ST_SENT 17 // Setta la frase da dire appena entra in prima
194 #define ATF_TO_1ST_ANIM 18 // Setta animazione di entrata in prima persona
195 #define ATF_FROM_1ST_ANIM 19 // Setta animazione di uscita dalla prima persona
196 #define ATF_CUROBJ 20 // Setta il CurObj
197 #define ATF_CHANGE_PLAYER 21 // Cambia personaggio con cui stai giocando
198 #define ATF_NO_INPUT 22 // Setta on/off l'input da parte del giocatore
199 #define ATF_UPDATE_BBOX 23 // Aggiorna Bounding box della mesh nel canale <mesh>
200 #define ATF_RESET_BLEND 24 // Resetta blend per la mesh nel canale <mesh>
201 #define ATF_CAMERA_TARGET 25 // Cambia oggetto su cui deve puntare la camera
202 #define ATF_UPDATE_MAX_TARGET 26 // Aggiorna il target con quello attuale
203 #define ATF_SUB_MUSIC 27 // Cambia la sottomusica attuale
204 #define ATF_EXIT 28 // Termina l'animazione istantaneamente
205 #define ATF_LINK 29 // Definisce questo frame come possibile uscita dal loop
206 
207 #define ATFO_OFF 30 // Spegne l'oggetto <obj>
208 #define ATFO_ON 31 // Attiva l'oggetto <obj>
209 #define ATFO_HIDE 32 // hida oggetto <obj>
210 #define ATFO_UNHIDE 33 // unhida oggetto <obj>
211 #define ATFOM_OFF 34 // Spegne l'oggetto <obj> e tutte le mesh collegate
212 #define ATFOM_ON 35 // Attiva l'oggetto <obj> e tutte le mesh collegate
213 #define ATFOM_HIDE 36 // hida oggetto <obj> e tutte le mesh collegate
214 #define ATFOM_UNHIDE 37 // unhida oggetto <obj> e tutte le mesh collegate
215 #define ATFD_OFF 38 // Spegne il dialogo <dlg>
216 #define ATFD_ON 39 // Attiva il dialogo <dlg>
217 #define ATFW_OFF 40 // Spegne l'effetto sonoro <wav>
218 #define ATFW_ON 41 // Attiva l'effetto sonoro <wav>
219 #define ATFI_OFF 42 // Spegne l'icona <icon>
220 #define ATFI_ON 43 // Attiva l'icona <icon>
221 #define ATFA_OFF 44 // Spegne l'animazione <anim>
222 #define ATFA_ON 45 // Attiva l'animazione <anim>
223 #define ATFA_OFF_POP 46 // Spegne l'animazione <anim> in stack
224 #define ATFA_ON_POP 47 // Attiva l'animazione <anim> in stack
225 #define ATFA_PAUSE 48 // Pausa l'animazione <anim>
226 #define ATFA_CONTINUE 49 // Continua l'animazione <anim>
227 #define ATFP_OFF 50 // Spegne il portale nella subanim <portal>
228 #define ATFP_ON 51 // Attiva il portale nella subanim <portal>
229 #define ATFM_OFF 52 // Spegne la mesh nella subanim <mesh>
230 #define ATFM_ON 53 // Attiva la mesh nella subanim <mesh>
231 #define ATFM_OFF_POP 54 // Non fa rivelare <mesh> al mouse
232 #define ATFM_ON_POP 55 // Fa rivelare <mesh> al mouse
233 #define ATFM_HIDE 56 // Spegne la mesh del canale che viene poppata
234 #define ATFM_UNHIDE 57 // Attiva la mesh del canale che viene poppata
235 #define ATFM_SET_AVFLAG 58 // Setta la mesh sempre visibile
236 #define ATFM_CLR_AVFLAG 59 // Torna a fare il normale test di visibilita'
237 #define ATFM_SETFRAME 60 // setta il frame del filmato nella <mesh>
238 #define ATFM_INCFRAME 61 // incrementa il frame del filmato nella <mesh>
239 #define ATFM_DECFRAME 62 // decrementa il frame del filmato nella <mesh>
240 #define ATFM_START_MOVIE 63 // attiva il filmato nella <mesh>
241 #define ATFM_STOP_MOVIE 64 // disattiva il filmato nella <mesh>
242 #define ATFH_ON 65 // attiva tutte le haloes nella stanza
243 #define ATFH_OFF 66 // disattiva tutte le haloes nella stanza
244 #define ATFC_HIDE 67 // Nasconde personaggio <ch>
245 #define ATFC_UNHIDE 68 // Fa apparire personaggio <ch>
246 #define ATFC_SETTO 69 // Teletrasporta personaggio in stack in <pos>
247 #define ATFC_GOTO 70 // Fa camminare personaggio in stack in <pos>
248 #define ATFC_RUNTO 71 // Fa correre personaggio in stack in <pos>
249 #define ATFC_BACKTO 72 // Fa indietreggiare personaggio in stack in <pos>
250 #define ATFC_GOTO_AN 73 // Fa camminare pers in stack in <pos> e parte anim
251 #define ATFC_RUNTO_AN 74 // Fa correre pers in stack in <pos> e parte anim
252 #define ATFC_BACKTO_AN 75 // Fa indietreggiare pers in stack in <pos> e parte anim
253 #define ATFC_FIX_POS 76 // Fissa la posizione attuale del personaggio <ch>
254 #define ATFC_SET_ALT0 77 // Setta il persoanggio <ch> come alternate default
255 #define ATFC_SET_ALT1 78 // Setta il persoanggio <ch> come alternate 1
256 #define ATFC_SET_ALT2 79 // Setta il persoanggio <ch> come alternate 2
257 #define ATFC_SET_ALT3 80 // Setta il persoanggio <ch> come alternate 3
258 #define ATFPL_SETTO 81 // Teletrasporta giocatore in <pos>
259 #define ATFPL_GOTO 82 // Fa camminare giocatore in <pos>
260 #define ATFPL_RUNTO 83 // Fa correre giocatore in stack in <pos>
261 #define ATFPL_BACKTO 84 // Fa indietreggiare giocatore in stack in <pos>
262 #define ATFPL_GOTO_AN 85 // Fa camminare giocatore in <pos> e parte anim in stack
263 #define ATFPL_RUNTO_AN 86 // Fa correre giocatore in <pos> e parte anim in stack
264 #define ATFPL_BACKTO_AN 87 // Fa indietreggiare giocatore in <pos> e parte anim
265 #define ATFDM_OFF 88 // Spegne menu item <item>
266 #define ATFDM_ON 89 // Attiva menu item <item>
267 #define ATFS_OFF 90 // Spegne effetto sonoro <sound>
268 #define ATFS_ON 91 // Attiva effetto sonoro <sound>
269 #define ATFS_PSX 92 // Suona passo di sinistra
270 #define ATFS_PDX 93 // Suona passo di destra
271 
272 #define ATFO_TEX 94 // Parte frase esamina dell'oggetto in stack
273 #define ATFO_TACT 95 // Parte frase action dell'oggetto in stack
274 #define ATFO_TEXT 96 // Parte frase text dell'oggetto in stack
275 #define ATFO_CEX 97 // Cambia frase esamina con <sent> dell'oggetto in stack
276 #define ATFO_CACT 98 // Cambia frase action con <sent> dell'oggetto in stack
277 #define ATFO_CANIM 99 // Cambia animazione con <anim> dell'oggetto in stack
278 #define ATFO_CANIM2 100 // Cambia animazione2 con <anim> dell'oggetto in stack
279 #define ATFO_CPOS 101 // Cambia posizione con <pos> dell'oggetto in stack
280 #define ATFO_SET_FLAG 102 // Setta il <flag> nell'oggetto in stack
281 #define ATFO_CLR_FLAG 103 // Cancella il <flag> nell'oggetto in stack
282 #define ATFCO_TEX 104 // Parte frase esamina dell'oggetto attuale
283 #define ATFCO_TACT 105 // Parte frase action dell'oggetto attuale
284 #define ATFCO_TEXT 106 // Parte frase text dell'oggetto attuale
285 #define ATFCO_CEX 107 // Cambia frase esamina con <sent> dell'oggetto attuale
286 #define ATFCO_CACT 108 // Cambia frase action con <sent> dell'oggetto attuale
287 #define ATFCO_CANIM 109 // Cambia animazione con <anim> dell'oggetto attuale
288 #define ATFCO_CANIM2 110 // Cambia animazione2 con <anim> dell'oggetto attuale
289 #define ATFCO_CPOS 111 // Cambia posizione con <pos> dell'oggetto attuale
290 #define ATFCO_SET_FLAG 112 // Setta il <flag> nell'oggetto attuale
291 #define ATFCO_CLR_FLAG 113 // Cancella il <flag> nell'oggetto attuale
292 #define ATFI_TEX 114 // Parte frase esamina dell'icona in stack
293 #define ATFI_TACT 115 // Parte frase action dell'icona in stack
294 #define ATFI_TEXT 116 // Parte frase text dell'icona in stack
295 #define ATFI_CEX 117 // Cambia frase esamina con <sent> dell'icona in stack
296 #define ATFI_CACT 118 // Cambia frase action con <sent> dell'icona in stack
297 #define ATFI_CANIM 119 // Cambia animazione con <anim> dell'icona in stack
298 #define ATFI_CANIM2 120 // Cambia animazione con <anim> dell'icona in stack
299 #define ATFI_CUWOBJ 121 // Cambia uwobj con <obj> dell'icona in stack
300 #define ATFI_SET_FLAG 122 // Setta il <flag> nell'icona in stack
301 #define ATFI_CLR_FLAG 123 // Cancella il <flag> nell'icona in stack
302 #define ATFI_REPLACE 124 // Rimpiazza l'icona in stack con <icon>
303 #define ATFSA_START 125 // Attiva tutte le sottoanimazioni NON in <mask>
304 #define ATFSA_BLOCK 126 // Blocca ultimo frame sottoanim <num>
305 #define ATF_PUSH_USED 127 // Mette in stack l'oggetto usato nell'usa con
306 #define ATF_PUSH_WITH 128 // Mette in stack l'oggetto destinazione nell'usa con
307 #define ATF_GG_MODE 129 // Cambia il GolfMode
308 #define ATF_VISIBILITY 130 // Forza riaggiornamento visibilita' della stanza
309 
310 #define ATF_INC_TIME 135 // Incrementa contatore interno tempo
311 #define ATF_DEC_TIME 136 // Decrementa contatore interno tempo
312 #define ATF_SET_TIME 137 // Setta contatore interno tempo
313 #define ATF_SET_STARTT 138 // Setta all'ora attuale l'ora di partenza di un diario
314 #define ATF_SET_ENDT 139 // Setta all'ora attuale l'ora di fine di un diario
315 #define ATF_START_T2D 140 // Parte sezione T2D
316 
317 #define ATFO_CANIMD 141
318 #define ATFO_CANIMV 142
319 #define ATFO_CANIM2D 143
320 #define ATFO_CANIM2V 144
321 #define ATFCO_CANIMD 145
322 #define ATFCO_CANIMV 146
323 #define ATFCO_CANIM2D 147
324 #define ATFCO_CANIM2V 148
325 #define ATFI_CANIMD 149
326 #define ATFI_CANIMV 150
327 #define ATFI_CANIM2D 151
328 #define ATFI_CANIM2V 152
329 #define ATFO_CANIMCP 153
330 #define ATFO_CANIMOP 154
331 #define ATFO_CANIM2CP 155
332 #define ATFO_CANIM2OP 156
333 #define ATFCO_CANIMCP 157
334 #define ATFCO_CANIMOP 158
335 #define ATFCO_CANIM2CP 159
336 #define ATFCO_CANIM2OP 160
337 #define ATFI_CANIMCP 161
338 #define ATFI_CANIMOP 162
339 #define ATFI_CANIM2CP 163
340 #define ATFI_CANIM2OP 164
341 #define ATFC_HIDE_BND 165
342 #define ATFC_UNHIDE_BND 166
343 #define ATFI_ON_DAR 167
344 #define ATFI_ON_VIC 168
345 #define ATFO_CEX_DLG 169
346 #define ATFO_CACT_DLG 170
347 #define ATFO_CEX_BOTH 171
348 #define ATFO_CACT_BOTH 172
349 #define ATFCO_CEX_BOTH 173
350 #define ATFCO_CACT_BOTH 174
351 #define ATFI_CEX_BOTH 175
352 #define ATFI_CACT_BOTH 176
353 #define ATFD_ON_DLG 177
354 #define ATFS_PSX_STAIRS 178
355 #define ATFS_PDX_STAIRS 179
356 #define ATFO_SET_NOUPDATE 180
357 #define ATFO_CLR_NOUPDATE 181
358 #define ATFC_DIARY_ENABLE 182
359 #define ATFC_DIARY_DISABLE 183
360 #define ATFL_ON 184
361 #define ATFC_ENABLE_SHADOWS 185
362 #define ATFC_DISABLE_SHADOWS 186
363 #define ATFD_ON_WAITTEXT 187
364 #define ATF_SET_NOSKIP 188
365 #define ATFO_TACTOP 189 // Parte frase action dell'OtherPlayer dell'oggetto in stack
366 #define ATFO_TEXOP 190 // Parte frase esamina dell'OtherPlayer dell'oggetto in stack
367 #define ATF_SET_BASAMENTO 191 // indica se il curplayer e' su oXT14BASAMENTO o meno
368 #define ATFC_ENABLE_VOLUMETRIC_SHADOWS 192
369 #define ATFC_DISABLE_VOLUMETRIC_SHADOWS 193
370 #define ATFS_SET_FLAG 194 // Setta il <flag> nel suono in stack
371 #define ATFS_CLR_FLAG 195 // Cancella il <flag> nel suono in stack
372 #define ATF_START_WIDESCREEN 196
373 #define ATF_END_WIDESCREEN 197
374 #define ATF_DONT_PLAY_STEPS 198
375 #define ATFO_CEXD 199 // Cambia frase esamina con <sent> dell'oggetto in stack (solo Darrell)
376 #define ATFO_CEXV 200 // Cambia frase esamina con <sent> dell'oggetto in stack (solo Victoria)
377 
378 /* -----------------17/03/98 10.44-------------------
379  * AtfDo
380  * --------------------------------------------------*/
381 #define fFADIN 1
382 #define fFADOUT 2
383 #define fFADOUTWAIT2 3
384 #define fFADOUTWAIT5 4
385 #define fPOP_ROOM 5
386 #define fPUSH_ROOM 6
387 #define fPOP_ROOM_dR015 7
388 #define fSET_MOGLIE_GYM 8
389 #define fSET_MOGLIE_SANGUE 9
390 #define fSET_PLAYERSWITCH_ON 10
391 #define fSET_PLAYERSWITCH_OFF 11
392 #define fUSCITAPOZZO 12
393 #define f22STOPWAVES 13
394 #define f2OENTRALIFT 14
395 #define f2OESCELIFT 15
396 #define f23ENTRALIFT 16
397 #define f23ESCELIFT 17
398 #define f25CHECK 18
399 #define f2QENTRALAB 19
400 #define f2QESCELAB 20
401 #define fFORCE_DEFAULT_ANIM 22
402 #define f34MERIDIANASX 23
403 #define f34MERIDIANADX 24
404 #define f34CRISTALLOSX 25
405 #define f34CRISTALLODX 26
406 #define f34CHECK 27
407 #define f35LIGHTS 28
408 #define f36MSD 29
409 #define f36MSS 30
410 #define f36PSD 31
411 #define f36PSS 32
412 #define f36MID 33
413 #define f36MIS 34
414 #define f36PID 35
415 #define f36PIS 36
416 #define f3BCHECK 37
417 #define f41WALK 38
418 #define f44UPDATE 39
419 #define f45STARTTIMER 40
420 #define f45STOPTIMER 41
421 #define f49CHECK 42
422 #define f4ASETBND44 43
423 #define fSTART_CACCIATORE 44
424 #define fSTOP_CACCIATORE 45
425 #define fPASSA_ICONE 48
426 #define f47SETPDALOGS 49
427 #define f41STARTTIMER 50
428 #define f41STOPTIMER 51
429 #define fDISABLESAVE 52
430 #define fENABLESAVE 53
431 #define fSAVEPARTICULAR 54
432 #define f42RESETCOMBINATION 55
433 #define fdR222CHECK 59
434 #define fCPSPEAK_PORTACHIUSA1 60
435 #define fCPSPEAK_PORTACHIUSA2 61
436 #define fSET_BLOCCO_PORTE_ESTERNO 62
437 #define fCLR_BLOCCO_PORTE_ESTERNO 63
438 #define f25CHECKFORNO 64
439 #define fCALLOTHERPLAYER_START 65
440 #define fCALLOTHERPLAYER_END 66
441 #define fLAUNCHGAMEOVERMUSIC 67
442 #define fLAUNCHCREDITSMUSIC 68
443 #define fSTART_TITOLI_CODA 69
444 #define fSTART_MAIN_MENU 70
445 #define fSTART_DISCESAPISCINA 71
446 #define fEND_DISCESAPISCINA 72
447 #define f48_STOPSOUNDS_ENDTRO 73
448 
449 #define fGG_USER1 80
450 #define fGG_USER2 81
451 
452 /* -----------------20/06/00 11.41-------------------
453  * MeshModifier
454  * --------------------------------------------------*/
455 #define MM_ADD_FLAGS 1
456 #define MM_REMOVE_FLAGS 2
457 #define MM_ADD_MAT_FLAGS 4
458 #define MM_REMOVE_MAT_FLAGS 8
459 #define MM_SET_MAT_FRAME 16
460 #define MM_ANIM_BLOCK 32
461 #define MM_SET_BND_LEVEL 64
462 #define MM_SET_HALOES 128
463 #define MM_SET_WAVES 256
464 #define MM_SET_PARTICLES 512
465 
466 /* -----------------17/09/98 11.11-------------------
467  * Item Commands
468  * --------------------------------------------------*/
469 #define IC_NULL 0 // Comando nullo
470 #define IC_SET_PLAYER 1 // Stabilisce per chi sono i comandi seguenti
471 #define IC_ANIM 2 // Parte anim
472 #define IC_SET_CAMERA 3 // Cambia la camera con un cut
473 #define IC_MOVE_CAMERA_TO 4 // Cambia la camera con un movimento
474 #define IC_SET_TARGET 5 // Setta il target su un oggetto
475 #define IC_SET_CHAR 6 // Posiziona un personaggio
476 #define IC_WALK_CHAR 7 // Fa camminare un personaggio fino a
477 #define IC_RUN_CHAR 8 // Fa correre un personaggio fino a
478 #define IC_BACK_CHAR 9 // Fa indietreggiare un personaggio fino a
479 #define IC_HIDE_CHAR 10 // Nasconde un personaggio
480 #define IC_UNHIDE_CHAR 11 // Mostra un personaggio
481 #define IC_CHANGE_ROOM 12 // Cambia la stanza
482 #define IC_EXPRESSION 13 // Attiva un'espressione facciale
483 #define IC_CHANGE_PLAYER 14 // Cambia il personaggio con cui giochi
484 #define IC_DEBUG 15 // Scrive una scritta di debug
485 #define IC_ITEM 16 // Attiva o disattiva un item di dialogo
486 #define IC_SET_FLAGS 17 // Setta flags per il dialogo
487 #define IC_CLR_FLAGS 18 // Desetta flags per il dialogo
488 #define IC_ATFRAME 19 // Lancia ATFrame all'istante
489 #define IC_NEXT_DLG 20 // Dialogo che deve partire alla fine
490 #define IC_SET_CHAR2 21 // Non fa setcahcr se e' in alternate
491 #define IC_INTRO_TEXT1 22 // Intro text1
492 #define IC_INTRO_TEXT2 23 // Intro text2
493 
494 #define IC_TIME_ANIM 24 // Parte animazione che da' il tempo
495 #define IC_TIME_ANIM2 25 // Parte animazione che da' il tempo
496 #define IC_TIME_WALK_CHAR 26 // Parte camminata che da' il tempo
497 #define IC_TIME_RUN_CHAR 27 // Parte corsa che da' il tempo
498 #define IC_TIME_BACK_CHAR 28 // Parte camminata che da' il tempo
499 #define IC_TIME_WAIT_CAMERA 29 // Aspetta che la camera abbia finito prima di continuare
500 #define IC_TIME_WAIT 30 // Aspetta tempo prima di continuare
501 #define IC_TIME_FADOUT 31 // Aspetta che abbia finito il fadout prima di continuare
502 
503 /* -----------------27/06/00 14.49-------------------
504  * Espressioni Facciali
505  * --------------------------------------------------*/
506 #define EXPR_DEFAULT 0
507 #define EXPR_SORRIDENTE 1
508 #define EXPR_SECCATO 2
509 #define EXPR_SERIO 3
510 #define EXPR_DISPERATO 4
511 #define EXPR_STUPITO 5
512 #define EXPR_IMPAURITO 6
513 #define EXPR_TRISTE 7
514 #define EXPR_IRONICO 8
515 
516 /* -----------------17/03/98 10.20-------------------
517  * Rooms
518  * --------------------------------------------------*/
519 
520 #define rNULL 0
521 #define r13 1
522 #define r15 2
523 #define r17 3
524 #define r19 4
525 #define r1B 5
526 #define r1C 6
527 #define r1D 7
528 #define r1F 8
529 #define r21 9
530 #define r22 10
531 #define r23 11
532 #define r24 12
533 #define r25 13
534 #define r26 14
535 #define r27 15
536 #define r28 16
537 #define r29 17
538 #define r2A 18
539 #define r2B 19
540 #define r2C 20
541 #define r2D 21
542 #define r2E 22
543 #define r2F 23
544 #define r2G 24
545 #define r2H 25
546 #define r2I 26
547 #define r2L 27
548 #define r2M 28
549 #define r2N 29
550 #define r2O 30
551 #define r2P 31
552 #define r2Q 32
553 #define r2R 33
554 #define r2S 34
555 #define r2T 35
556 #define r31 36
557 #define r32 37
558 #define r33 38
559 #define r34 39
560 #define r35 40
561 #define r36 41
562 #define r37 42
563 #define r38 43
564 #define r39 44
565 #define r3a 45
566 #define r3b 46
567 #define r3c 47
568 #define r41 48
569 #define r42 49
570 #define r43 50
571 #define r44 51
572 #define r45 52
573 #define r46 53
574 #define r47 54
575 #define r48 55
576 #define r49 56
577 #define r4a 57
578 #define rXT 58
579 #define r21_dR212 59
580 #define r81 60
581 #define r82 61
582 #define r83 62
583 #define r84 63
584 #define r91 64
585 #define r92 65
586 #define r71 66
587 #define r72 67
588 #define r73 68
589 #define r74 69
590 #define r97 71
591 #define r98 72
592 #define r99 73
593 /* -----------------17/03/98 10.20-------------------
594  * Objs
595  * --------------------------------------------------*/
596 #define oNULL 0
597 
598 #define ocDARRELL 1
599 #define ocVICTORIA 2
600 #define ocCUOCO 3
601 #define ocDOMESTICA 4
602 #define ocGIARDINIERE 5
603 #define ocCUSTODE 6
604 #define ocSERVETTA 7
605 #define ocSUPERVISORE 8
606 #define ocMOGLIESUPERVISORE 9
607 #define ocMOGLIE_KIMONO 10
608 #define ocCACCIATORE 11
609 #define ocVECCHIO 12
610 #define ocCHIRURGO 13
611 #define ocTRADUTTORE 14
612 #define ocOROLOGIAIO 15
613 #define ocKRENN 16
614 #define ocDUKES 17
615 #define ocCORONA 18
616 #define ocVALENCIA 19
617 #define ocNOTAIO 20
618 #define ocMOORE 21
619 #define ocDARRELLALETTO 22
620 #define ocCACCIATOREMALPRESO 23
621 #define ocMOOREBUCATO 24
622 
623 #define ocLASTCHAR 24
624 
625 #define ocCURPLAYER 25
626 
627 #define oCAMERAMAX 26
628 
629 #define oTOOLTIPS 98
630 #define oNEXTPORTAL 99
631 
632 #define o21pXT 201
633 #define o21p22 202
634 #define o21PULSANTEASC 203
635 #define o21p24 204
636 #define o21As21BDX 205
637 #define o21As21BSX 206
638 #define o21Bs21A 207
639 #define o21s26DX 208
640 #define o21s26SX 209
641 #define o21p23 210
642 #define o21QUADROPORTONEDX 211
643 #define o21QUADROPORTONESX 212
644 #define o21QUADROCX 213
645 #define o21QUADROSX 214
646 #define o21DIVANOSCALE 215
647 #define o21DIVANO 216
648 #define o21DIVANOSOPPALCO 217
649 #define o21TAVOLINOPORTONE 218
650 #define o21TAVOLINOSCALE 219
651 #define o21TAVOLINOSOPPALCO 220
652 #define o21SEDIA1PORTONE 221
653 #define o21SEDIA2PORTONE 222
654 #define o21SEDIA3PORTONE 223
655 #define o21SEDIA1SCALE 224
656 #define o21SEDIA2SCALE 225
657 #define o21SEDIA1SOPPALCO 226
658 #define o21SEDIA2SOPPALCO 227
659 #define o21PENDOLO 228
660 #define o21PIANTA1 229
661 #define o21PIANTA2 230
662 #define o21PIANTA3 231
663 #define o21PIANTA4 232
664 #define o22PISCINA 233
665 #define o22TRAMPOLINO 234
666 #define o22SCALETTA 235
667 #define o22SKIMMER1 236
668 #define o22SKIMMER2 237
669 #define o22LETTINO1 238
670 #define o22LETTINO2 239
671 #define o22LETTINO3 240
672 #define o22LETTINO4 241
673 #define o22POLTRONA 242
674 #define o22LAMPADA 243
675 #define o22TAVOLINO 244
676 #define o22SEDIA1 245
677 #define o22SEDIA2 246
678 #define o22SEDIA3 247
679 #define o22pXT 248
680 #define o22PORTA33 249
681 #define o22p33 250
682 #define o22p21 251
683 #define o22BRACCIALE 252
684 #define o22LIBRO 253
685 #define o22PISCINASCHIUMA 254
686 #define o23ATASTO1 255
687 #define o23ATASTO2 256
688 #define o23ATASTO3 257
689 #define o23ATASTOA 258
690 #define o23BTASTO1 259
691 #define o23BTASTO2 260
692 #define o23BTASTO3 261
693 #define o23BTASTOA 262
694 #define o23CTASTO1 263
695 #define o23CTASTO2 264
696 #define o23CTASTO3 265
697 #define o23CTASTOA 266
698 #define o24PORTATRAMEZZOA 267
699 #define o24p21 268
700 #define o24MOBILETTOENTRATA 269
701 #define o24BOTTE1 270
702 #define o24BOTTE2 271
703 #define o24QUADRO 272
704 #define o24TAVOLO 273
705 #define o24SEDIA1 274
706 #define o24SEDIA2 275
707 #define o24SEDIA3 276
708 #define o24SEDIA4 277
709 #define o24SEDIA5 278
710 #define o24SEDIA6 279
711 #define o24SEDIA7 280
712 #define o24SEDIA8 281
713 #define o24SEDIA9 282
714 #define o24SEDIA10 283
715 #define o24CERVO 284
716 #define o24CINGHIALE 285
717 #define o24LUPO 286
718 #define o24FINESTRA1 287
719 #define o24CAMINO 288
720 #define o24OROLOGIO 289
721 #define o24CARRELLO 290
722 #define o24CASSAPANCA 291
723 #define o24ZUPPIERA 292
724 #define o24FINESTRA2 293
725 #define o24p2M 294
726 #define o24p25 295
727 #define o24CREDENZACH 296
728 #define o24CREDENZAAP 297
729 #define o24TOVAGLIECREDENZA 298
730 #define o24POSATECREDENZA 299
731 #define o24VASSOIO 300
732 #define o24TAZZINA 301
733 #define o24VASETTTOVASSOIO 302
734 #define o24BOCCIOLO 303
735 #define o24BOCCIOLOSANGUE 304
736 #define o24CHIAVETTAOROLOGIO 305
737 #define o24PORTATRAMEZZOB 306
738 #define o25CAPPA 307
739 #define o25FORNELLI 308
740 #define o25PIASTRE 309
741 #define o25FRIGGITRICE 310
742 #define o25PIANODILAVORO 311
743 #define o25UTENSILICUOCO 312
744 #define o25LAVELLOCAPPA 313
745 #define o25FORNOCH 314
746 #define o25FORNOAP 315
747 #define o25DISPLAYFORNO 316
748 #define o25TASTOONFORNO 317
749 #define o25TASTOOFFFORNO 318
750 #define o25TASTOPIUFORNO 319
751 #define o25TASTOMENOFORNO 320
752 #define o25CONTROLLIFORNO 321
753 #define o25FIALAAFORNO 322
754 #define o25FIALABFORNO 323
755 #define o25FIALABFORNOCALDA 324
756 #define o25p24 325
757 #define o25BIDONE1 326
758 #define o25LAVANDINO1 327
759 #define o25FINESTRALAVANDINO1 328
760 #define o25LAVANDINO2 329
761 #define o25LAVASTOVIGLIE 330
762 #define o25p2Q 331
763 #define o25pXT 332
764 #define o25APPENDIOGGETTI 333
765 #define o25GANCIO 334
766 #define o25CHIAVI 335
767 #define o25MOBILETTO 336
768 #define o25TAVOLO 337
769 #define o25SEDIA2 339
770 #define o25BOTTIGLIAVUOTA 340
771 #define o25BICCHIERE 341
772 #define o25NAVE 342
773 #define o25FOTO 344
774 #define o25FINESTRATAVOLO 345
775 #define o25BIDONE2 346
776 #define o25Ap25B 347
777 #define o25Bp25A 348
778 #define o25SCAFFALEMAGAZZINO 349
779 #define o25SACCHIMAGAZZINO 350
780 #define o25SCOPAMAGAZZINO 351
781 #define o25SECCHIOMAGAZZINO 352
782 #define o25BIDONEMAGAZZINO 353
783 #define o25SEDIAMAGAZZINO 354
784 #define o25APORTACELLA 355
785 #define o25PORTACELLA 356
786 #define o25SCAFFALECELLA 357
787 #define o25CONGELATORE1 358
788 #define o25CONGELATORE2CH 359
789 #define o25CONGELATORE2AP 360
790 #define o25CONGELATORE3 361
791 #define o25DISPLAYCONGELATORE 362
792 #define o25TASTOPIUCONGELATORE 363
793 #define o25TASTOMENOCONGELATORE 364
794 #define o25CONTROLLIFRIGO 365
795 #define o25FIALAACONGELATORE 366
796 #define o25FIALABCONGELATORE 367
797 #define o25FIALAACONGELATOREFREDDA 368
798 #define o26s2Q 369
799 #define o26PORTABALCONE 370
800 #define o26TAVOLINO1BAR 371
801 #define o26TAVOLINO2BAR 372
802 #define o26SEDIA1 373
803 #define o26SEDIA2 374
804 #define o26SEDIA3 375
805 #define o26SEDIA4 376
806 #define o26BANCONE 377
807 #define o26SPINEBIRRA 378
808 #define o26SCAFFALE 379
809 #define o26SHAKER 380
810 #define o26ZUCCHERIERA 381
811 #define o26TOVAGLIOLINI 382
812 #define o26SGABELLO1 383
813 #define o26SGABELLO2 384
814 #define o26SGABELLO3 385
815 #define o26SGABELLO4 386
816 #define o26LAMPADABANCONE 387
817 #define o26QUADRO1 388
818 #define o26QUADRO2 389
819 #define o26p23 390
820 #define o26PULSANTEASC 391
821 #define o26SEDIAASC 392
822 #define o26TENDONE1 393
823 #define o26TENDONE2 394
824 #define o26DIVANO 395
825 #define o26TAVOLINODIVANO 396
826 #define o26SEDIA5 397
827 #define o26SEDIA6 398
828 #define o26s21 399
829 #define o26STATUA1 400
830 #define o26STATUA2 401
831 #define o26POLTRONASCALA 402
832 #define o26TAVOLINOSCALA 403
833 #define o26SEDIA7 404
834 #define o26SEDIA8 405
835 #define o26POLTRONCINA 406
836 #define o26FESTONE 407
837 #define o27p2P 408
838 #define o27SPECCHIO 409
839 #define o27SBARRA 410
840 #define o27STEPPER1 411
841 #define o27STEPPER2 412
842 #define o27CYCLETTE 413
843 #define o27GAMBE 414
844 #define o27PANCHETTA 415
845 #define o27PETTORALI 416
846 #define o27DORSALI 417
847 #define o27RASTRELLIERA 418
848 #define o27PANCA 419
849 #define o27CONSOLESPENTA 420
850 #define o27VANOCH 421
851 #define o27VANOAP 422
852 #define o27BATTERIE 423
853 #define o27CONSOLEACCESA 424
854 #define o28TAVOLO 425
855 #define o28SEDIA1 426
856 #define o28SEDIA2 427
857 #define o28SEDIA3 428
858 #define o28SEDIA4 429
859 #define o28SEDIA5 430
860 #define o28SEDIA6 431
861 #define o28SEDIA7 432
862 #define o28LAMPADA1 433
863 #define o28LAMPADA2 434
864 #define o28LAMPADA3 435
865 #define o28LAMPADA4 436
866 #define o28LAMPADA5 437
867 #define o28LAMPADA6 438
868 #define o28LAMPADA7 439
869 #define o28p2Q 440
870 #define o28SCHEDARIO 441
871 #define o28CARTELLA1 442
872 #define o28CARTELLA2 443
873 #define o28TENDA1 444
874 #define o28TENDA2 445
875 #define o28MAPPAMONDO 446
876 #define o28MONITOR 447
877 #define o28PULSANTEMONITOR 448
878 #define o28LIBRI1 449
879 #define o28LIBRI2 450
880 #define o28LIBRO 451
881 #define o28REGISTRI1 452
882 #define o28REGISTRI2 453
883 #define o28REGISTRI3 454
884 #define o28TARGA1 455
885 #define o28TARGA2 456
886 #define o28CAMPIONE1 457
887 #define o28CAMPIONE2 458
888 #define o28BONSAI 459
889 #define o28WALKMAN 460
890 #define o28POSTER1 461
891 #define o28GRAFICO1 462
892 #define o28GRAFICO2 463
893 #define o28GRAFICO3 464
894 #define o28POSTER2 465
895 #define o28POSTER3 466
896 #define o28ANTEDXCH 467
897 #define o28ANTEDXAP 468
898 #define o28ANTECXCH 469
899 #define o28ANTECXAP 470
900 #define o28ANTESXCH 471
901 #define o28ANTESXAP 472
902 #define o29p2Q 473
903 #define o29PIANTAPORTA 474
904 #define o29LIBRI 475
905 #define o29REGISTRI 476
906 #define o29TARGA1 477
907 #define o29TARGA2 478
908 #define o29TARGA3 479
909 #define o29TARGA4 480
910 #define o29COPPA 481
911 #define o29PIANTALIBRERIA 482
912 #define o29PORTA 483
913 #define o29FINESTRA 484
914 #define o29ATTACCAPANNI 485
915 #define o29LAMPADA 486
916 #define o29SCRIVANIA 487
917 #define o29POLTRONA 488
918 #define o29SEDIA1 489
919 #define o29SEDIA2 490
920 #define o29PORTACENERE 491
921 #define o29CESTINO 492
922 #define o29PORTAFOTOCONJUDE 493
923 #define o29PORTAFOTOVUOTO 494
924 #define o29PORTAFOTOROVESCIATO 495
925 #define o29COMPUTER 496
926 #define o29SCANNER 497
927 #define o29TELEFONO 498
928 #define o29SIGARI 499
929 #define o29LAMPADASCRIVANIA 500
930 #define o29SCHEDARIO 501
931 #define o29FOTO1 502
932 #define o29FOTO2 503
933 #define o29FOTO3 504
934 #define o29FOTO4 505
935 #define o29FOTO5 506
936 #define o29FOTO6 507
937 #define o29FOTO7 508
938 #define o29FOTO8 509
939 #define o29INGRANDIMENTO 510
940 #define o29FOTOSCANNER 511
941 #define o2ATAVOLINO 512
942 #define o2Ap2Q 513
943 #define o2ATASTIERINO 514
944 #define o2ACASSACH 515
945 #define o2ATASTOROSSO 516
946 #define o2ABUSTASANGUE 517
947 #define o2ACUORE 518
948 #define o2ARENE 519
949 #define o2ACERVELLO 520
950 #define o2ASEDIA1 521
951 #define o2ACASETTI1 522
952 #define o2AOSCILLOSCOPIO 523
953 #define o2AMICROSCOPIO1 524
954 #define o2ACARTELLA 525
955 #define o2ACENTRIFUGA1 526
956 #define o2ATESTER1 527
957 #define o2APROVETTA 528
958 #define o2AFIALE 529
959 #define o2ASCATOLE 530
960 #define o2ACONTENITORE1 531
961 #define o2ACONTENITORE2 532
962 #define o2ACONTENITORE3 533
963 #define o2ACONDIZIONATORE 534
964 #define o2ASCHEDARIO 535
965 #define o2ASEDIA2 536
966 #define o2ACASSETTI2 537
967 #define o2ATESTER2 538
968 #define o2AMICROSCOPIO2 539
969 #define o2ACONTENITORE4 540
970 #define o2AACIDO 541
971 #define o2ASCAFFALE 542
972 #define o2ACASSETTI3 543
973 #define o2ASEDIA3 544
974 #define o2ALETTORE 545
975 #define o2ACASSETTOAP 546
976 #define o2ASIRINGA 547
977 #define o2ASCANNER 548
978 #define o2ACENTRIFUGA2 549
979 #define o2ACOMPUTER 550
980 #define o2ATASTIERACOMPUTER 551
981 #define o2AVETRO 552
982 #define o2APORTA 553
983 #define o2BLAVANDINO 554
984 #define o2Bp2O 555
985 #define o2BPULSANTEASC 556
986 #define o2BDIVANO 557
987 #define o2BAp2BB 558
988 #define o2BBp2BA 559
989 #define o2BAp2BD 560
990 #define o2BDp2BA 561
991 #define o2BAp2BC 562
992 #define o2BCp2BA 563
993 #define o2BPANCHINA 564
994 #define o2BBRACIERE 565
995 #define o2BAPPENDIABITIM 566
996 #define o2BARMADIETTOMCH 567
997 #define o2BARMADIETTOMAP 568
998 #define o2BAPPENDIABITIF 569
999 #define o2BARMADIETTOFCH 570
1000 #define o2BARMADIETTOFAP 571
1001 #define o2BBORSA 572
1002 #define o2BSACCHETTO 573
1003 #define o2BDISPENSER 574
1004 #define o2Cp2R 575
1005 #define o2Cp2E 576
1006 #define o2Cp2F 577
1007 #define o2Cp2T 578
1008 #define o2Cp2S 579
1009 #define o2CQUADRO1 580
1010 #define o2CBUSTO 581
1011 #define o2Cp2O 582
1012 #define o2Cp23 583
1013 #define o2CCASSAPANCA 584
1014 #define o2CPIANTA1 585
1015 #define o2CQUADRO2 586
1016 #define o2CQUADRO3 587
1017 #define o2CQUADRO4 588
1018 #define o2CPULSANTEASC2O 589
1019 #define o2CPULSANTEASC23 590
1020 #define o2CPIANTA2 591
1021 #define o2Dp2P 592
1022 #define o2DSTEREO 593
1023 #define o2DTV 594
1024 #define o2DCASSA1 595
1025 #define o2DCASSA2 596
1026 #define o2DLIBRERIA 597
1027 #define o2DQUADRO1 598
1028 #define o2DVETRATA 599
1029 #define o2DTAVOLINO 600
1030 #define o2DSEDIA1 601
1031 #define o2DSEDIA2 602
1032 #define o2DDIVANO 603
1033 #define o2DQUADRO2 604
1034 #define o2DPORTACAMERA 605
1035 #define o2DCAMINO 606
1036 #define o2DPIANTA1 607
1037 #define o2DPIANTA2 608
1038 #define o2DVASSOIO 609
1039 #define o2DTAZZA 610
1040 #define o2DROSA 611
1041 #define o2DQUADRODIVANO 612
1042 #define o2DCASSAFORTECH 613
1043 #define o2DTASTIERINO 614
1044 #define o2D0 615
1045 #define o2D1 616
1046 #define o2D2 617
1047 #define o2D3 618
1048 #define o2D4 619
1049 #define o2D5 620
1050 #define o2D6 621
1051 #define o2D7 622
1052 #define o2D8 623
1053 #define o2D9 624
1054 #define o2DC 625
1055 #define o2DE 626
1056 #define o2DCASSAFORTEAP 627
1057 #define o2DSOLDI 628
1058 #define o2DTITOLI 629
1059 #define o2DTARGA 630
1060 #define o2DSESTERZO 631
1061 #define o2DANTA1 632
1062 #define o2DANTA2 633
1063 #define o2DANTA3 634
1064 #define o2DANTA4 635
1065 #define o2Ep2C 636
1066 #define o2EpBAGNO 637
1067 #define o2Ep15 638
1068 #define o2ELETTO 639
1069 #define o2ECOMODINO 640
1070 #define o2ELAMPADACOMODINO 641
1071 #define o2EMOBILEANTE 642
1072 #define o2ESCRITTOIO 643
1073 #define o2ELAMPADASCRITTOIO 644
1074 #define o2ESEDIA 645
1075 #define o2ECAMINO 646
1076 #define o2EQUADRO1 647
1077 #define o2EQUADRO2 648
1078 #define o2EQUADRO3 649
1079 #define o2EQUADRO4 650
1080 #define o2EMOBILECASSETTI 651
1081 #define o2Fp2C 652
1082 #define o2FpBAGNO 653
1083 #define o2Fp15 654
1084 #define o2FLETTO 655
1085 #define o2FCOMODINO 656
1086 #define o2FLAMPADACOMODINO 657
1087 #define o2FMOBILEANTE 658
1088 #define o2FSCRITTOIO 659
1089 #define o2FLAMPADASCRITTOIO 660
1090 #define o2FSEDIA1 661
1091 #define o2FSEDIA2 662
1092 #define o2FCAMINO 663
1093 #define o2FQUADRO1 664
1094 #define o2FQUADRO2 665
1095 #define o2FQUADRO3 666
1096 #define o2FQUADRO4 667
1097 #define o2FMOBILECASSETTI 668
1098 #define o2Gp2H 669
1099 #define o2GCALDAIA 670
1100 #define o2GESTINTORE1 671
1101 #define o2GTUBOCALDAIA 672
1102 #define o2GPOMPADX 673
1103 #define o2GPOMPASX 674
1104 #define o2GMANOMETRODX 675
1105 #define o2GMANOMETROSX 676
1106 #define o2GTUBOPOMPE 677
1107 #define o2GFILTRODXCH 678
1108 #define o2GFILTROSXCH 679
1109 #define o2GFILTRODXAP 680
1110 #define o2GFILTROSXAP 681
1111 #define o2GFILTRODXAPDETERSIVO 682
1112 #define o2GFILTROSXAPDETERSIVO 683
1113 #define o2GCONSOLE 684
1114 #define o2GON 685
1115 #define o2GOFF 686
1116 #define o2GBIDONE 687
1117 #define o2GTANICADX 688
1118 #define o2GTANICASX 689
1119 #define o2GSACCHI 690
1120 #define o2GESTINTORE2 691
1121 #define o2Hp2O 692
1122 #define o2HPULSANTEASC 693
1123 #define o2Hp2L 694
1124 #define o2Hp2G 695
1125 #define o2HPALLET 696
1126 #define o2HCASSA 697
1127 #define o2HPANNELLO 698
1128 #define o2HSCATOLONE1 699
1129 #define o2HSCATOLONE2 700
1130 #define o2HSCATOLAELETTRICA 701
1131 #define o2Hp2I 702
1132 #define o2Ip2H 703
1133 #define o2IBIDONE 704
1134 #define o2ISCOPA 705
1135 #define o2IMOBILE 706
1136 #define o2ILENZUOLA 707
1137 #define o2IASCIUGAMANI 708
1138 #define o2IFLACONE1 709
1139 #define o2IFLACONE2 710
1140 #define o2IFLACONE3 711
1141 #define o2ICESTA1 712
1142 #define o2IASSE 713
1143 #define o2IFERRO 714
1144 #define o2ITAVOLO 715
1145 #define o2IMACCHINACUCIRE 716
1146 #define o2ICAMICIA 717
1147 #define o2IMAGLIETTE 718
1148 #define o2ISEDIA1 719
1149 #define o2ISEDIA2 720
1150 #define o2ICESTA2 721
1151 #define o2ILAVATRICENUOVA 722
1152 #define o2ILAVATRICEVECCHIA 723
1153 #define o2IDISPENSER 724
1154 #define o2Lp2H 725
1155 #define o2LBOTTEPORTA 726
1156 #define o2LDAMIGIANA1 727
1157 #define o2LDAMIGIANA2 728
1158 #define o2LBOTTE1 729
1159 #define o2LBOTTE2 730
1160 #define o2LCASSETTA 731
1161 #define o2LCASSA 732
1162 #define o2LFIASCO 733
1163 #define o2LBOTTIGLIADX 734
1164 #define o2LBOTTIGLIASX 735
1165 #define o2LIMBUTI 736
1166 #define o2LFIASCOMENSOLA 737
1167 #define o2LCASSETTE 738
1168 #define o2LCASSABASSA 739
1169 #define o2LSGABELLO 740
1170 #define o2LSCAFFALE 741
1171 #define o2MSPECCHIO 742
1172 #define o2MLAVANDINOSPECCHIO 743
1173 #define o2MDISPENSERDXLAV 744
1174 #define o2MDISPENSERSXLAV 745
1175 #define o2Mp24 746
1176 #define o2MPIANTA1 747
1177 #define o2MMOBILETTO1 748
1178 #define o2MMOBILETTO2 749
1179 #define o2MPIANTA2 750
1180 #define o2MAp2MD 751
1181 #define o2MDp2MA 752
1182 #define o2MAp2MC 753
1183 #define o2MCp2MA 754
1184 #define o2MLAVANDINOM 755
1185 #define o2MLAVANDINOF 756
1186 #define o2MBIDETM 757
1187 #define o2MBIDETF 758
1188 #define o2MWCM 759
1189 #define o2MWMF 760
1190 #define o2MLAVANDINODOCCE 761
1191 #define o2MDISPENDERLAVDOCCE 762
1192 #define o2MMOBILE 763
1193 #define o2MANTECHMOBILE 764
1194 #define o2MANTEAPMOBILE 765
1195 #define o2MSAPONETTE 766
1196 #define o2MFLACONE1 767
1197 #define o2MFLACONE2 768
1198 #define o2MACIDO 769
1199 #define o2MPIANTA3 770
1200 #define o2MPIANTA4 771
1201 #define o2MPIANTA5 772
1202 #define o2MBp2MF 773
1203 #define o2MFp2MB 774
1204 #define o2MBp2ME 775
1205 #define o2MEp2MB 776
1206 #define o2MPANCHINA1M 777
1207 #define o2MPANCHINA2M 778
1208 #define o2MPANCHINA1F 779
1209 #define o2MPANCHINA2F 780
1210 #define o2MATTACCAPANNIM 781
1211 #define o2MATTACCAPANNIF 782
1212 #define o2MARMADIETTOM 783
1213 #define o2MARMADIETTOF 784
1214 #define o2MPORTA1M 785
1215 #define o2MPORTA2M 786
1216 #define o2MPORTA1F 787
1217 #define o2MPORTA2F 788
1218 #define o2Mp2O 789
1219 #define o2MPULSANTEASC 790
1220 #define o2MFLACONELAVANDINO 791
1221 #define o2OATASTOU 792
1222 #define o2OATASTO0 793
1223 #define o2OATASTO1 794
1224 #define o2OATASTO2 795
1225 #define o2OATASTO3 796
1226 #define o2OATASTOSTOP 797
1227 #define o2OATASTOALLARME 798
1228 #define o2OATASTOINTERFONO 799
1229 #define o2OBTASTOU 800
1230 #define o2OBTASTO0 801
1231 #define o2OBTASTO1 802
1232 #define o2OBTASTO2 803
1233 #define o2OBTASTO3 804
1234 #define o2OBTASTOSTOP 805
1235 #define o2OBTASTOALLARME 806
1236 #define o2OBTASTOINTERFONO 807
1237 #define o2OCTASTOU 808
1238 #define o2OCTASTO0 809
1239 #define o2OCTASTO1 810
1240 #define o2OCTASTO2 811
1241 #define o2OCTASTO3 812
1242 #define o2OCTASTOSTOP 813
1243 #define o2OCTASTOALLARME 814
1244 #define o2OCTASTOINTERFONO 815
1245 #define o2ODTASTOU 816
1246 #define o2ODTASTO0 817
1247 #define o2ODTASTO1 818
1248 #define o2ODTASTO2 819
1249 #define o2ODTASTO3 820
1250 #define o2ODTASTOSTOP 821
1251 #define o2ODTASTOALLARME 822
1252 #define o2ODTASTOINTERFONO 823
1253 #define o2OETASTOU 824
1254 #define o2OETASTO0 825
1255 #define o2OETASTO1 826
1256 #define o2OETASTO2 827
1257 #define o2OETASTO3 828
1258 #define o2OETASTOSTOP 829
1259 #define o2OETASTOALLARME 830
1260 #define o2OETASTOINTERFONO 831
1261 #define o2Pp2D 832
1262 #define o2PPIANTA1 833
1263 #define o2PPIANTA2 834
1264 #define o2PCAMINETTO 835
1265 #define o2PCANDELABRO1 836
1266 #define o2PCANDELABRO2 837
1267 #define o2POROLOGIO 838
1268 #define o2Pp2O 839
1269 #define o2PPULSANTEASC 840
1270 #define o2Pp27 841
1271 #define o2Qs26 842
1272 #define o2QQUADRO1 843
1273 #define o2QTAVOLINO 844
1274 #define o2QSEDIA1 845
1275 #define o2QSEDIA2 846
1276 #define o2QSEDIA3 847
1277 #define o2QPORTACENERE1 848
1278 #define o2QLAMPADATAVOLINO 849
1279 #define o2QPORTACENERETAVOLINO 850
1280 #define o2QFINESTRA 851
1281 #define o2Qs25 852
1282 #define o2QQUADRO2 853
1283 #define o2QATTACCAPANNI 854
1284 #define o2QPIANTA1 855
1285 #define o2Qp28 856
1286 #define o2Qp29 857
1287 #define o2Qp2N 858
1288 #define o2QQUADRO3 859
1289 #define o2QPIANTA2 860
1290 #define o2QQUADRO4 861
1291 #define o2QPORTACENERE2 862
1292 #define o2Qp2A 863
1293 #define o2QTASTIERINO 864
1294 #define o2Q0 865
1295 #define o2Q1 866
1296 #define o2Q2 867
1297 #define o2Q3 868
1298 #define o2Q4 869
1299 #define o2Q5 870
1300 #define o2Q6 871
1301 #define o2Q7 872
1302 #define o2Q8 873
1303 #define o2Q9 874
1304 #define o2QC 875
1305 #define o2QE 876
1306 #define o2QLAMPADA 877
1307 #define o2QQUADRO5 878
1308 #define o2QQUADRO6 879
1309 #define o2QQUADRO7 880
1310 #define o2Rp2C 881
1311 #define o2RPORTA 882
1312 #define o2RFINESTRA1 883
1313 #define o2RFINESTRA2 884
1314 #define o2RLETTO 885
1315 #define o2RCOMODINOSX 886
1316 #define o2RCOMODINODX 887
1317 #define o2RARMADIOANTE 888
1318 #define o2RSEPARE 889
1319 #define o2RCAMINETTO 890
1320 #define o2RSCRITTOIO 891
1321 #define o2RLAMPADA 892
1322 #define o2RSEDIA 893
1323 #define o2RQUADRO1 894
1324 #define o2RQUADRO2 895
1325 #define o2RQUADRO3 896
1326 #define o2RARMADIOCASSETTI 897
1327 #define o2RCASSETTOSCRITTOIOAP 898
1328 #define o2RBUSTE 899
1329 #define o2Sp2C 900
1330 #define o2SQUADRO1 901
1331 #define o2SPORTA 902
1332 #define o2STAVOLINO1 903
1333 #define o2SLETTO 904
1334 #define o2SCOMODINODX 905
1335 #define o2SCOMODINOSX 906
1336 #define o2SLAMPADADX 907
1337 #define o2SLAMPADASX 908
1338 #define o2SSEDIA1 909
1339 #define o2SARMADIOANTE 910
1340 #define o2SCASSAPANCA 911
1341 #define o2SCUSCINO1 912
1342 #define o2SCUSCINO2 913
1343 #define o2SPENDOLA 914
1344 #define o2SPOLTRONA1 915
1345 #define o2SPOLTRONA2 916
1346 #define o2SLAMPADA 917
1347 #define o2STAVOLINO2 918
1348 #define o2SPORTACENERE 919
1349 #define o2SCASSETTIERA 920
1350 #define o2SVASO 921
1351 #define o2SLIBRI 922
1352 #define o2SPIATTINO 923
1353 #define o2STENDADX 924
1354 #define o2STENDASX 925
1355 #define o2SQUADRO2 926
1356 #define o2SQUADRO3 927
1357 #define o2SQUADRO4 928
1358 #define o2SQUADRO5 929
1359 #define o2SARMADIOCASSETTI 930
1360 #define o2Tp2C 931
1361 #define o2TPORTA 932
1362 #define o2TTENDA 933
1363 #define o2TLETTO 934
1364 #define o2TCOMODINOSX 935
1365 #define o2TCOMODINODX 936
1366 #define o2TMOBILEANTE 937
1367 #define o2TCASSETTIERA 938
1368 #define o2TLAMPADA 939
1369 #define o2TSEDIA 940
1370 #define o2TQUADRO1 941
1371 #define o2TQUADRO2 942
1372 #define o2TQUADRO3 943
1373 #define o2TMOBILECASSETTI 944
1374 #define o31INGRANAGGI 945
1375 #define o31TUBO 946
1376 #define o31MACCHINAAP 947
1377 #define o31LEVA 948
1378 #define o31MACCHINAAPINGRANAGGGIO 949
1379 #define o31ANELLO 950
1380 #define o31SEGATURA 951
1381 #define o31s32 952
1382 #define o31BOTOLACH 953
1383 #define o31BOTOLAAP 954
1384 #define o31DISCOSANO 955
1385 #define o31DISCOROTTO 956
1386 #define o31DISCONUOVO 957
1387 #define o31BAULECH 958
1388 #define o31LEVETTA1 959
1389 #define o31LEVETTA2 960
1390 #define o31LEVETTA3 961
1391 #define o31LEVETTA4 962
1392 #define o31LEVETTA5 963
1393 #define o31BAULEAP 964
1394 #define o31DISCOBAULE 965
1395 #define o31ROBABAULE 966
1396 #define o31DISCOROTTOPAVIMENTO 967
1397 #define o31ALLOGGIAMENTO 968
1398 #define o31CRISTALLO 969
1399 #define o31CRISTALLOATTIVATO 970
1400 #define o31MACCHINACH 971
1401 #define o32s31 972
1402 #define o32LASTRONE 973
1403 #define o32LASTRONEMOSSO 974
1404 #define o32LEVA 975
1405 #define o33p35 976
1406 #define o33p22 977
1407 #define o33s36 978
1408 #define o33OROLOGIO 979
1409 #define o33LANCETTAHSX 980
1410 #define o33LANCETTAMSX 981
1411 #define o33LANCETTAHDX 982
1412 #define o33LANCETTAMDX 983
1413 #define o33DIVANETTO 984
1414 #define o33MOBILETTO 985
1415 #define o33LAMPADA 986
1416 #define o33QUADROPASSAGGIO 987
1417 #define o33QUADRO1 988
1418 #define o33QUADROOROLOGIO 989
1419 #define o33QUADROLAMAPADA 990
1420 #define o33QUADROSCALA 991
1421 #define o34ALTARE 992
1422 #define o34SFERA 993
1423 #define o34QUADRANTESFERA 994
1424 #define o34LASTRADX 995
1425 #define o34LASTRASX 996
1426 #define o34CANDELABRODX 997
1427 #define o34CANDELABROSX 998
1428 #define o34CANDELABRODXD 999
1429 #define o34CANDELABROSXD 1000
1430 #define o34FACCIABIANCA 1001
1431 #define o34FACCIANERA 1002
1432 #define o34DIARIOCH 1003
1433 #define o34PERGAMENA 1004
1434 #define o34BORSONECH 1005
1435 #define o34BORSONEAP 1006
1436 #define o34SCATOLA 1007
1437 #define o34MUROPORTA 1008
1438 #define o34LEVA 1009
1439 #define o34SFERASU 1010
1440 #define o34CRISTALLO1 1011
1441 #define o34CRISTALLO2 1012
1442 #define o34CRISTALLO3 1013
1443 #define o34CRISTALLO4 1014
1444 #define o34CRISTALLO5 1015
1445 #define o34CRISTALLO6 1016
1446 #define o34DIARIOAP 1017
1447 #define o35CASSETTIERA 1018
1448 #define o35TAVOLO 1019
1449 #define o35SEDIATAVOLO 1020
1450 #define o35DIVANO 1021
1451 #define o35SEDIADIVANODX 1022
1452 #define o35SEDIADIVANOSX 1023
1453 #define o35TAVOLINO 1024
1454 #define o35VASETTOTAVOLINO 1025
1455 #define o35CREDENZA 1026
1456 #define o35CHIODO 1027
1457 #define o35QUADRO 1028
1458 #define o35SEDIASX 1029
1459 #define o35SEDIACX 1030
1460 #define o35SEDIADX 1031
1461 #define o35VASOSX 1032
1462 #define o35VASODX 1033
1463 #define o35TENDASX 1034
1464 #define o35TENDACX 1035
1465 #define o35TENDADX 1036
1466 #define o35INTERRUTTORE 1037
1467 #define o35p32 1038
1468 #define o35CREDENZASPOSTATA 1039
1469 #define o36p39 1040
1470 #define o36p37 1041
1471 #define o36p38 1042
1472 #define o36QUADRO1 1043
1473 #define o36QUADRO2 1044
1474 #define o36s32 1045
1475 #define o36TAVOLINO 1046
1476 #define o36SPECCHIO 1047
1477 #define o36BILANCIA 1048
1478 #define o36PIATTODX 1049
1479 #define o36PIATTOSX 1050
1480 #define o36SESTERZODX 1051
1481 #define o36SESTERZOSX 1052
1482 #define o36INCENSODX 1053
1483 #define o36INCENSOSX 1054
1484 #define o37p36 1055
1485 #define o37QUADROCAMINO 1056
1486 #define o37CAMINO 1057
1487 #define o37PIANOFORTE 1058
1488 #define o37SGABELLOPIANOFORTE 1059
1489 #define o37LIBRERIA 1060
1490 #define o37CILINDRO 1061
1491 #define o37LIBRO 1062
1492 #define o37TENDA 1063
1493 #define o37SCRIVANIA 1064
1494 #define o37POLTRONA 1065
1495 #define o37SEDIASX 1066
1496 #define o37SEDIADX 1067
1497 #define o37FONOGRAFO 1068
1498 #define o37FONOGRAFOCILINDRO 1069
1499 #define o37LAMPADA 1070
1500 #define o37QUADRO 1071
1501 #define o37QUADROANNA 1072
1502 #define o37BACHECA 1073
1503 #define o37QUADRODX 1074
1504 #define o37QUADROSX 1075
1505 #define o38p36 1076
1506 #define o38PANCA1 1077
1507 #define o38PANCA2 1078
1508 #define o38LIBRERIA 1079
1509 #define o38TENDASX 1080
1510 #define o38TENDADX 1081
1511 #define o38BACHECA 1082
1512 #define o38SESTANTI 1083
1513 #define o38MANOSCRITTO 1084
1514 #define o38CANNOCCHIALE 1085
1515 #define o38TELESCOPIO1 1086
1516 #define o38SCALA 1087
1517 #define o38FINESTRASX 1088
1518 #define o38FINESTRADX 1089
1519 #define o38TAVOLO 1090
1520 #define o38TELESCOPIO2 1091
1521 #define o38SGABELLO 1092
1522 #define o38SEDIASX 1093
1523 #define o38SEDIADX 1094
1524 #define o38QUADRO1 1095
1525 #define o38MAPPA1 1096
1526 #define o38MAPPA2 1097
1527 #define o38QUADRO2 1098
1528 #define o38QUADRO3 1099
1529 #define o38MACCHINA 1100
1530 #define o38MANOVELLA 1101
1531 #define o39SCAFFALE1 1102
1532 #define o39SCAFFALE2 1103
1533 #define o39p36 1104
1534 #define o39QUADRO1 1105
1535 #define o39PENDOLADX 1106
1536 #define o39PENDOLASX 1107
1537 #define o39BACHECADX 1108
1538 #define o39BACHECASX 1109
1539 #define o39TENDA1 1110
1540 #define o39TENDA2 1111
1541 #define o39TENDA3 1112
1542 #define o39PENDOLO1 1113
1543 #define o39PENDOLO2 1114
1544 #define o39TAVOLINO 1115
1545 #define o39CANDELABRO 1116
1546 #define o39TAVOLO 1117
1547 #define o39OROLOGIO 1118
1548 #define o39SCOMPARTOCH 1119
1549 #define o39SCOMPARTOAP 1120
1550 #define o39RETTANGOLO 1121
1551 #define o39TONDO 1122
1552 #define o39SEMICERCHIO 1123
1553 #define o39CRISTALLO 1124
1554 #define o39SFERA 1125
1555 #define o39COLLANA 1126
1556 #define o39ANGELO 1127
1557 #define o39CRISTALLOATTIVATO 1128
1558 #define o3BLAPIDI 1129
1559 #define o3Bs3C 1130
1560 #define o3BFESSURA 1131
1561 #define o3BALTARE 1132
1562 #define o3BSCULTURABRACCIALI 1133
1563 #define o3BSCULTURA 1134
1564 #define o3BCOPPABRACCIALI 1135
1565 #define o3BCOPPA 1136
1566 #define o3BSESTERZOBRACCIALI 1137
1567 #define o3BSESTERZO 1138
1568 #define o3B1DOSEBRACCIALI 1139
1569 #define o3B1DOSE 1140
1570 #define o3B2DOSIBRACCIALI 1141
1571 #define o3B2DOSI 1142
1572 #define o3BNICCHIA 1143
1573 #define o3BLASTRA 1144
1574 #define o3CpXT 1145
1575 #define o3CALTARE 1146
1576 #define o3Cs3B 1147
1577 #define o3CSERRATURACH 1148
1578 #define o3CSERRATURAAP 1149
1579 #define o3CSCALA 1150
1580 #define o13p12 1151
1581 #define o13SCRITTOIO 1152
1582 #define o13LIBRERIA 1153
1583 #define o13MANGIME 1154
1584 #define o13SCALPELLO 1155
1585 #define o13STATUETTE 1156
1586 #define o13LAMPADA 1157
1587 #define o13CUSTODIA 1158
1588 #define o13FINESTRA 1159
1589 #define o13TENDA 1160
1590 #define o13PORTA 1161
1591 #define o13QUADRO1 1162
1592 #define o13QUADRO2 1163
1593 #define o13QUADRO3 1164
1594 #define o13MOBILE 1165
1595 #define o13LAMPADAMOBILE 1166
1596 #define o13COMODINO 1167
1597 #define o13VASO 1168
1598 #define o13TAVOLINO 1169
1599 #define o13POLTRONA 1170
1600 #define o13CREDENZA 1171
1601 #define o13DIVANETTO 1172
1602 #define o15COLONNINATORRE 1173
1603 #define o15COLONNINA 1174
1604 #define o15p2E 1175
1605 #define o15p2F 1176
1606 #define o15BASSORILIEVO1 1177
1607 #define o15BASSORILIEVO2 1178
1608 #define o15CREPAESTERNA 1179
1609 #define o15OROLOGIO 1180
1610 #define o15INTONACO 1181
1611 #define o15QUADRANTE 1182
1612 #define o15PASSAGGIO 1183
1613 #define o15BRECCIA 1184
1614 #define o17p16 1185
1615 #define o17AUTOSPORTIVA 1186
1616 #define o17FORD 1187
1617 #define o17FURGONE 1188
1618 #define o17PORTELLONE 1189
1619 #define o17PORTELLONECH 1190
1620 #define o17PORTELLONEAP 1191
1621 #define o17SACCO 1192
1622 #define o17SACCHI 1193
1623 #define o17COMPUTER 1194
1624 #define o17SARACINESCA 1195
1625 #define o17SERRATURA 1196
1626 #define o17ESTINTORE 1197
1627 #define o17CAVETTO 1198
1628 #define o19p18 1199
1629 #define o19TARGA 1200
1630 #define o19PANCHINA1 1201
1631 #define o19SCACCHIERA 1202
1632 #define o19BAMBOLA 1203
1633 #define o19T01 1204
1634 #define o19T02 1205
1635 #define o19T03 1206
1636 #define o19T04 1207
1637 #define o19T05 1208
1638 #define o19T06 1209
1639 #define o19T07 1210
1640 #define o19T08 1211
1641 #define o19T09 1212
1642 #define o19T10 1213
1643 #define o19T11 1214
1644 #define o19T12 1215
1645 #define o19T13 1216
1646 #define o19T14 1217
1647 #define o19T15 1218
1648 #define o19T16 1219
1649 #define o19T17 1220
1650 #define o19T18 1221
1651 #define o19T19 1222
1652 #define o19T20 1223
1653 #define o19T21 1224
1654 #define o19T22 1225
1655 #define o19T23 1226
1656 #define o19T24 1227
1657 #define o19T25 1228
1658 #define o19T26 1229
1659 #define o19T27 1230
1660 #define o19T28 1231
1661 #define o19T29 1232
1662 #define o19T30 1233
1663 #define o19T31 1234
1664 #define o19T32 1235
1665 #define o19T33 1236
1666 #define o19T34 1237
1667 #define o19T35 1238
1668 #define o19T36 1239
1669 #define o19T37 1240
1670 #define o19T38 1241
1671 #define o19T39 1242
1672 #define o19T40 1243
1673 #define o19T41 1244
1674 #define o19T42 1245
1675 #define o19T43 1246
1676 #define o19T44 1247
1677 #define o19T45 1248
1678 #define o19T46 1249
1679 #define o19T47 1250
1680 #define o19T48 1251
1681 #define o19T49 1252
1682 #define o19T50 1253
1683 #define o19T51 1254
1684 #define o19T52 1255
1685 #define o19T53 1256
1686 #define o19T54 1257
1687 #define o19T55 1258
1688 #define o19T56 1259
1689 #define o19T57 1260
1690 #define o19T58 1261
1691 #define o19T59 1262
1692 #define o19T60 1263
1693 #define o19T61 1264
1694 #define o19T62 1265
1695 #define o19T63 1266
1696 #define o19T64 1267
1697 #define o19CANDELIERE1 1268
1698 #define o19CANDELIERE2 1269
1699 #define o19PANCHINA2 1270
1700 #define o1Bp1A 1271
1701 #define o1Bp1C 1272
1702 #define o1BAIUOLA1 1273
1703 #define o1BAIUOLA2 1274
1704 #define o1BARMADIETTOCH 1275
1705 #define o1BARMADIETTOAP 1276
1706 #define o1BUTENSILI 1277
1707 #define o1BBUSTE 1278
1708 #define o1BFLACONI 1279
1709 #define o1BSCATOLONE 1280
1710 #define o1BCARTONE 1281
1711 #define o1Cp1B 1282
1712 #define o1CFONTANA 1283
1713 #define o1CSTATUA 1284
1714 #define o1CBOCCA 1285
1715 #define o1Cs41 1286
1716 #define o1CALBERO1 1287
1717 #define o1CALBERO2 1288
1718 #define o1CALBERO3 1289
1719 #define o1CALBERO4 1290
1720 #define o1DBRECCIA 1291
1721 #define o1DCREDENZACH 1292
1722 #define o1DCREDENZAAP 1293
1723 #define o1DVALIGETTACREDENZA 1294
1724 #define o1DVALIGETTACH 1295
1725 #define o1DSWITCH1 1296
1726 #define o1DSWITCH2 1297
1727 #define o1DSWITCH3 1298
1728 #define o1DSWITCH4 1299
1729 #define o1DSWITCH5 1300
1730 #define o1DTASTO 1301
1731 #define o1DVALIGETTAAP 1302
1732 #define o1DAUDIOCASSETTA 1303
1733 #define o1DBANCONOTE 1304
1734 #define o1DBOTTIGLIE 1305
1735 #define o1DCESTA 1306
1736 #define o1DBARATTOLI 1307
1737 #define o1DTRONCHESE 1308
1738 #define o1DSEMENTI 1309
1739 #define o1DSACCHI 1310
1740 #define o1DVASI 1311
1741 #define o1DDAMIGIANA 1312
1742 #define o1DFALCIATRICE 1313
1743 #define o1DSCALA 1314
1744 #define o1DSEMENTITERRA 1315
1745 #define o1Fs1A 1316
1746 #define o1FACQUA 1317
1747 #define o1FSBARREDX 1318
1748 #define o1FSBARRESX 1319
1749 #define o1FVARCO 1320
1750 #define o1FDETRITI 1321
1751 #define o1FMACCHINARIO 1322
1752 #define o1FPULSANTE 1323
1753 #define o1FPULSANTEFUSO 1324
1754 #define o1FLEVAGIU 1325
1755 #define o1FLEVASU 1326
1756 #define o1FCRISTALLODX 1327
1757 #define o1FCRISTALLOSX 1328
1758 #define o1FPORTA 1329
1759 #define o1FTUBO 1330
1760 #define o1FINDICATORE1 1332
1761 #define o1FINDICATORE2 1333
1762 #define o1FINDICATORE3 1334
1763 #define o1FINDICATORE4 1335
1764 #define o1FINDICATORE5 1336
1765 #define oXT11p21 1337
1766 #define oXT11CANCELLO 1338
1767 #define oXT11ALBERO1 1339
1768 #define oXT11ALBERO2 1340
1769 #define oXT11ALBERO3 1341
1770 #define oXT11SIEPE 1342
1771 #define oXT12CASACUSTODE 1343
1772 #define oXT12p13 1344
1773 #define oXT12ALBERO 1345
1774 #define oXT14ALBERO 1346
1775 #define oXT14PIUMA 1347
1776 #define oXT14BASAMENTO 1348
1777 #define oXT14NIDO 1349
1778 #define oXT14OCCHIALI 1350
1779 #define oXT14PIANTA 1351
1780 #define oXT14VASO 1352
1781 #define oXT14SACCHETTO 1353
1782 #define oXT14p3C 1354
1783 #define oXT1ACOLOMBAVOLA 1355
1784 #define oXT16PORTA 1356
1785 #define oXT16p17 1357
1786 #define oXT16SARACINESCA 1358
1787 #define oXT16SIEPI 1359
1788 #define oXT16ALBERI 1360
1789 #define oXT18p19 1361
1790 #define oXT18ROSETO 1362
1791 #define oXT18INTONACO 1363
1792 #define oXT18MAUSOLEO 1364
1793 #define oXT18SCACCHIERA 1365
1794 #define oXT18p25 1366
1795 #define oXT18ALBERO 1367
1796 #define oXT1Ap1B 1368
1797 #define oXT1ABUCO1 1369
1798 #define oXT1ABUCO2 1370
1799 #define oXT1AVETRI 1371
1800 #define oXT1AVOLIERA 1372
1801 #define oXT1ASPORTELLO 1373
1802 #define oXT1ALUCCHETTO 1374
1803 #define oXT1AFINESTRA 1375
1804 #define oXT1Ap22 1376
1805 #define oXT1APOZZO 1377
1806 #define oXT1AANTECH 1378
1807 #define oXT1AANTEAP 1379
1808 #define oXT1AALBERO 1380
1809 #define oXT1ASASSO 1381
1810 #define oXT1ABIDONE 1382
1811 #define oXT1ABOTTIGLIA 1383
1812 #define oXT1ECASAGIARDINIERE 1384
1813 #define oXT1EPORTA 1385
1814 #define oXT1ETARGHETTA 1386
1815 #define oXT1ELAVABO 1387
1816 #define oXT1ETESTA1 1388
1817 #define oXT1ETESTA2 1389
1818 #define oXT1EALBERO1 1390
1819 #define oXT1EALBERO2 1391
1820 #define oXT1EFINESTRA 1392
1821 #define o41SCALEPIETRA 1393
1822 #define o41PORTALABIRINTO 1394
1823 #define o41STRANOSIMBOLO 1395
1824 #define o41CADAVEREGIARDINIERE 1396
1825 #define o41MUCCHIOSABBIA 1397
1826 #define o41OGGETTOARGENTEO 1398
1827 #define o41PAVLASTRICATO 1399
1828 #define o41PRIMOTASTOSU 1400
1829 #define o41SECONDOTASTOSU 1401
1830 #define o41TERZOTASTOSU 1402
1831 #define o41QUARTOTASTOSU 1403
1832 #define o41QUINTOTASTOSU 1404
1833 #define o41SESTOTASTOSU 1405
1834 #define o41PRIMOTASTOGIU 1406
1835 #define o41SECONDOTASTOGIU 1407
1836 #define o41TERZOTASTOGIU 1408
1837 #define o41QUARTOTASTOGIU 1409
1838 #define o41QUINTOTASTOGIU 1410
1839 #define o41SESTOTASTOGIU 1411
1840 #define o42MACCHINACHIUSA 1412
1841 #define o42LEVA 1413
1842 #define o42PIATTAFORMA 1414
1843 #define o42PORTALABIRINTO 1415
1844 #define o42STRANOSIMBOLO 1416
1845 #define o42TASTO01SU 1417
1846 #define o42TASTO02SU 1418
1847 #define o42TASTO03SU 1419
1848 #define o42TASTO04SU 1420
1849 #define o42TASTO05SU 1421
1850 #define o42TASTO06SU 1422
1851 #define o42TASTO07SU 1423
1852 #define o42TASTO08SU 1424
1853 #define o42TASTO09SU 1425
1854 #define o42TASTO10SU 1426
1855 #define o42TASTO11SU 1427
1856 #define o42TASTO12SU 1428
1857 #define o42TASTO01GIU 1429
1858 #define o42TASTO02GIU 1430
1859 #define o42TASTO03GIU 1431
1860 #define o42TASTO04GIU 1432
1861 #define o42TASTO05GIU 1433
1862 #define o42TASTO06GIU 1434
1863 #define o42TASTO07GIU 1435
1864 #define o42TASTO08GIU 1436
1865 #define o42TASTO09GIU 1437
1866 #define o42TASTO10GIU 1438
1867 #define o42TASTO11GIU 1439
1868 #define o42TASTO12GIU 1440
1869 #define o42s43 1441
1870 #define o42LEVAMURATA 1442
1871 #define o42TUBOPIATTAFORMA 1443
1872 #define o43s42 1444
1873 #define o43CANCELLO01 1445
1874 #define o43CANCELLO02 1446
1875 #define o43CANCELLO03 1447
1876 #define o43s45 1448
1877 #define o43CANCELLOALZATO01 1449
1878 #define o43CANCELLOALZATO02 1450
1879 #define o43CANCELLOALZATO03 1451
1880 #define o44OROLOGIO 1452
1881 #define o44AFFRESCO 1453
1882 #define o44LEVAORE 1454
1883 #define o44LEVAMINUTI 1455
1884 #define o44LEVAGRADI 1456
1885 #define o45INGRANAGGI 1457
1886 #define o45APERTURA 1458
1887 #define o45MACCHINARIO 1459
1888 #define o45SPORTELLO 1460
1889 #define o45ALLOGGIAMENTO 1461
1890 #define o45STELLAMETALLICA 1462
1891 #define o45SCOMPARTIMENTO 1463
1892 #define o45INDICATORE1 1464
1893 #define o45INDICATORE2 1465
1894 #define o45INDICATORE3 1466
1895 #define o45INDICATORE4 1467
1896 #define o45INDICATORE5 1468
1897 #define o45s43 1469
1898 #define o45SANGUE 1470
1899 #define o46PRIMODIAGRAMMA 1471
1900 #define o46SECONDODIAGRAMMA 1472
1901 #define o46PIANTACASTELLO 1473
1902 #define o46SCRITTOIO 1474
1903 #define o46BUSTAOROLOGIAIO 1475
1904 #define o46CARTELLINA1 1476
1905 #define o46CARTELLINA2 1477
1906 #define o46CARTELLINA3 1478
1907 #define o46CARTELLINA4 1479
1908 #define o46CARTELLINA5 1480
1909 #define o46CARTELLINA6 1481
1910 #define o46CARTELLINA7 1482
1911 #define o46CARTELLINAC 1483
1912 #define o46POLTRONA 1484
1913 #define o46CANDELABRO 1485
1914 #define o46CANDELA1 1486
1915 #define o46CANDELA2 1487
1916 #define o46CASSETTO 1488
1917 #define o46PERGAMENAINGIALLITA 1489
1918 #define o46CALAMAIO 1490
1919 #define o46COMPASSO 1491
1920 #define o46SESTANTE 1492
1921 #define o46STELLAMETALLICA 1493
1922 #define o46BRACERE 1494
1923 #define o46CANDELABRACERE 1495
1924 #define o46CERABRACERE 1496
1925 #define o46CALCOBRACERE 1497
1926 #define o46SCAFFALE 1498
1927 #define o47CADAVERECORONA 1499
1928 #define o47TRAPPOLA 1500
1929 #define o47s41 1501
1930 #define o48RINGHIERA 1502
1931 #define o48PENDOLO 1503
1932 #define o48MANETTE 1504
1933 #define o48KRENNSVENUTO 1506
1934 #define o49BASSORILIEVO 1507
1935 #define o49DUKESMORTO 1508
1936 #define o49TESTALEONE 1509
1937 #define o49s4A 1510
1938 #define o49SANGUE 1511
1939 #define o49ALTARE 1512
1940 #define o49AMPOLLAAZZURRO 1513
1941 #define o49AMPOLLAVERDE 1514
1942 #define o49AMPOLLAGIALLO 1515
1943 #define o49AMPOLLAROSSO 1516
1944 #define o49PERGAMENA 1517
1945 #define o49STELLADX 1518
1946 #define o49STELLADXCIA 1519
1947 #define o49STELLASX 1520
1948 #define o49STELLASXCIA 1521
1949 #define o49INCAVODX 1522
1950 #define o49INCAVOSX 1523
1951 #define o49PORTACHIUSA 1524
1952 #define o4ALEVA 1525
1953 #define o4As49 1526
1954 #define oXT14OCCHIALI_NOTAKE 1527
1955 #define oXT14NIDO_da_sopra_il_basamento 1528
1956 #define o2CCARRELLO1 1529
1957 #define o2CCARRELLO2 1530
1958 #define o2PCARRELLO1 1531
1959 #define o37BACHECAAPERTA 1532
1960 #define o31INGRALEGNO 1533
1961 #define o46CARTELLINA8 1534
1962 #define o25SPUGNETTECUOCO 1535
1963 #define o25TEIERA 1536
1964 #define o2TBOTTIGLIACUOCO 1537
1965 #define o26PULIZIATENDA 1538
1966 #define o26PULIZIAFORCHETTA 1539
1967 #define o28FOGLIODOMESTICA 1540
1968 #define o2LOGGETTIDOMESTICA 1541
1969 #define o25OGGETTIDOMESTICA 1542
1970 #define o22OGGETTIDOMESTICA 1543
1971 #define o13OCCHIALIDIARIO 1544
1972 #define o2MOGGETTICUSTODE_TOSHOW 1545
1973 #define o2MOGGETTICUSTODE_TOHIDE 1546
1974 #define oXTSECCHIGIARDINIERE 1547
1975 #define o48DARRELLSVENUTO 1548
1976 #define o2QSTRACCIODIARIO 1549
1977 #define o26OGGETTISUPERVISORE 1550
1978 #define o48ELEKTRO 1551
1979 #define oDIARIOPAG1A 1552
1980 #define oDIARIOPAG1B 1553
1981 #define oDIARIOPAG1C 1554
1982 #define oDIARIOPAG1D 1555
1983 #define oDIARIOPAG1E 1556
1984 #define oDIARIOPAG1F 1557
1985 #define oDIARIOPAG2A 1558
1986 #define oDIARIOPAG2B 1559
1987 #define oDIARIOPAG2C 1560
1988 #define oDIARIOPAG2D 1561
1989 #define oDIARIOPAG2E 1562
1990 #define oDIARIOPAG2F 1563
1991 #define oDIARIOPAG3A 1564
1992 #define oDIARIOPAG3B 1565
1993 #define oDIARIOPAG3C 1566
1994 #define oDIARIOPAG3D 1567
1995 #define oDIARIOPAG4A 1568
1996 #define oDIARIOPAG4B 1569
1997 #define oDIARIOPAG4C 1570
1998 #define oDIARIOPAG4D 1571
1999 #define oDIARIOPAG4E 1572
2000 #define oDIARIOPAG4F 1573
2001 #define oDIARIOPAG4G 1574
2002 #define oDIARIOPAG4H 1575
2003 #define oDIARIOPAG4I 1576
2004 #define oDIARIOPAG4J 1577
2005 #define oDIARIOPAG4K 1578
2006 #define oDIARIOPAG4L 1579
2007 #define o34DIARIOKRENNAPERTO 1580
2008 #define o22LIBRORTV 1581
2009 #define oCOMPUTERDIAL 1582
2010 #define oCOMPUTEREMAIL1 1583
2011 #define oCOMPUTEREMAIL2 1584
2012 #define oTONERHELP 1585
2013 #define o2DOGGETTIRTV 1586
2014 #define o2DTAVOLINORTV 1587
2015 #define o48PISTOLAKRENN 1588
2016 #define o29ANTAWIN 1589
2017 #define o29ANTAWINROTTA 1590
2018 #define oXTTAXI 1591
2019 #define o49FUMO 1592
2020 #define o2CMEGABB_2R 1593
2021 #define o2CMEGABB_2S 1594
2022 #define o2PMEGABB_2D 1595
2023 #define oXTPISCINA 1596
2024 #define o2CTASTOVERDE 1597
2025 #define o2CTASTOROSSO 1598
2026 #define o2CTASTOBLINK 1599
2027 #define o2MTASTOVERDE 1600
2028 #define o2MTASTOROSSO 1601
2029 #define o2MTASTOBLINK 1602
2030 #define oXTPERSIANECHIUSE 1603
2031 #define oXTPERSIANEAPERTE 1604
2032 #define o98LETTER 1605
2033 #define o98PARCHMENT 1606
2034 #define o91DARRELLALETTO 1607
2035 #define o91TELEFONO 1608
2036 #define o91COPERTABASSA 1609
2037 #define o91COPERTAALTA 1610
2038 #define o97SFONDO 1611
2039 #define o97BORDI 1612
2040 #define o97COLORI 1613
2041 #define o97NETERT 1614
2042 #define o97LETTERE 1615
2043 #define o97LOGOWM 1616
2044 #define o73SFONDO 1617
2045 #define oADDTEXTOBJ 1618
2046 #define oEXTRALS 1619
2047 
2048 /* -----------------17/03/98 10.20-------------------
2049  * Anims
2050  * --------------------------------------------------*/
2051 #define aNULL 0
2052 #define aSTAND 1
2053 #define aWALK_START 2
2054 #define aWALK_LOOP 3
2055 #define aWALK_END 4
2056 #define aBACK_START 5
2057 #define aBACK_LOOP 6
2058 #define aBACK_END 7
2059 #define aRUN_START 8
2060 #define aRUN_LOOP 9
2061 #define aRUN_END 10
2062 #define aROT_DX 11
2063 #define aROT_SX 12
2064 
2065 #define aGIRO 16
2066 #define aBOH 17
2067 #define aTO1PERSON 18
2068 #define aTO3PERSON 19
2069 #define aDUMMY 20
2070 
2071 #define aCAMBIO_DARRELL_91 21
2072 #define aCAMBIO_VICTORIA_92 22
2073 #define aCAMBIO_DARRELL_93 23
2074 #define aCAMBIO_VICTORIA_94 24
2075 #define aCAMBIO_DARRELL_95 25
2076 #define aCAMBIO_VICTORIA_96 26
2077 #define aCAMBIO_DARRELL_97 27
2078 #define aCAMBIO_VICTORIA_98 28
2079 
2080 #define aFOX 29
2081 #define aPENSA 30
2082 #define aDUMMY_dR391_A 31
2083 #define aDUMMY_dR391_B 32
2084 #define aDUMMY_dR391_C 33
2085 
2086 #define aIDLE_DARRELL_1 34
2087 #define aIDLE_DARRELL_2 35
2088 #define aIDLE_VICTORIA_1 36
2089 #define aIDLE_VICTORIA_2 37
2090 
2091 #define aCUO251 51
2092 #define aCUO252 52
2093 #define aCUO253 53
2094 #define aCUO254 54
2095 #define aCUO255 55
2096 #define aCUO256 56
2097 #define aCUO257 57
2098 #define aCUO258 58
2099 #define aCUO259 59
2100 #define aCUO25s 60
2101 #define aCUO2T1 61
2102 #define aCUS131 62
2103 #define aCUS132 63
2104 #define aCUS133 64
2105 #define aCUS134 65
2106 #define aCUS135 66
2107 #define aCUS136 67
2108 #define aCUS2G1 71
2109 #define aCUS2G2 72
2110 #define aCUS2M1 74
2111 #define aCUS2M2 75
2112 #define aCUS2M3 76
2113 #define aCUS2M4 77
2114 #define aDARRELL481 78
2115 #define aDOM221 79
2116 #define aDOM222 80
2117 #define aDOM223 81
2118 #define aDOM251 82
2119 #define aDOM252 83
2120 #define aDOM261 85
2121 #define aDOM262 86
2122 #define aDOM263 87
2123 #define aDOM264 88
2124 #define aDOM265 89
2125 #define aDOM26s 90
2126 #define aDOM281 91
2127 #define aDOM2L1 93
2128 #define aDOM2L2 94
2129 #define aGIA141 95
2130 #define aGIA142 96
2131 #define aGIA143 97
2132 #define aGIA1A1 98
2133 #define aGIA1A2 99
2134 #define aGIA1A3 100
2135 #define aGIA1A4 101
2136 #define aGIA1A5 102
2137 #define aGIA1A6 103
2138 #define aGIA181 104
2139 #define aGIA182 105
2140 #define aGIA183 106
2141 #define aGIA2G1 107
2142 #define aGIA2G2 108
2143 #define aMOS221 110
2144 #define aMOS222 111
2145 #define aMOS271 112
2146 #define aMOS272 113
2147 #define aMOS273 114
2148 #define aMOS274 115
2149 #define aMOS2P1 116
2150 #define aMOS2P2 117
2151 #define aSER2C1 118
2152 #define aSER2C2 119
2153 #define aSER2C3 120
2154 #define aSER2C4 121
2155 #define aSER2C5 122
2156 #define aSER2C6 123
2157 #define aSER2C7 124
2158 #define aSER2C8 125
2159 #define aSER2C9 126
2160 #define aSER2C10 127
2161 #define aSER2I1 128
2162 #define aSER2I2 129
2163 #define aSER2P1 130
2164 #define aSER2P2 131
2165 #define aSER2P3 132
2166 #define aSER2P4 133
2167 #define aSER2P5 134
2168 #define aSER2Q1 135
2169 #define aSER2Q2 136
2170 #define aSER2Q3 137
2171 #define aSUP261 138
2172 #define aSUP262 139
2173 #define aSUP263 140
2174 #define aSUP291 141
2175 #define aSUP292 142
2176 #define aSUP293 143
2177 #define aSUP294 144
2178 #define aSUP295 145
2179 #define aSUP296 146
2180 #define aSUP297 147
2181 #define aMOS27sa 148
2182 #define aMOS27sb 149
2183 
2184 // AZIONI (come da librone)
2185 #define a211 201
2186 #define a212 202
2187 #define a213 203
2188 #define a214 204
2189 #define a215 205
2190 #define a216 206
2191 #define a217 207
2192 #define a218 208
2193 #define a219 209
2194 #define a2110 210
2195 #define a2111 211
2196 #define a2112 212
2197 #define a2113 213
2198 #define a221 214
2199 #define a222 215
2200 #define a223 216
2201 #define a224 217
2202 #define a225 218
2203 #define a226 219
2204 #define a227 220
2205 #define a2210 221
2206 #define a2211 222
2207 #define a241 223
2208 #define a242 224
2209 #define a243 225
2210 #define a244 226
2211 #define a245 227
2212 #define a246 228
2213 #define a247 229
2214 #define a248 230
2215 #define a249 231
2216 #define a2410 232
2217 #define a2411 233
2218 #define a251 234
2219 #define a252 235
2220 #define a253 236
2221 #define a254 237
2222 #define a255 238
2223 #define a256 239
2224 #define a257 240
2225 #define a258 241
2226 #define a259 242
2227 #define a2510 243
2228 #define a2511 244
2229 #define a2512 245
2230 #define a2513 246
2231 #define a2514 247
2232 #define a2515 248
2233 #define a2516 249
2234 #define a2517 250
2235 #define a2518 251
2236 #define a2519 252
2237 #define a2520 253
2238 #define a2521 254
2239 #define a2522 255
2240 #define a2523 256
2241 #define a2524 257
2242 #define a2525 258
2243 #define a2526 259
2244 #define a2527 260
2245 #define a2528 261
2246 #define a2531 262
2247 #define a2532 263
2248 #define a2533 264
2249 #define a2534 265
2250 #define a2535 266
2251 #define a2536 267
2252 #define a261 268
2253 #define a262 269
2254 #define a263 270
2255 #define a264 271
2256 #define a265 272
2257 #define a267 273
2258 #define a268 274
2259 #define a271 275
2260 #define a272 276
2261 #define a273 277
2262 #define a274 278
2263 #define a275 279
2264 #define a276 280
2265 #define a277 281
2266 #define a281 282
2267 #define a282 283
2268 #define a283 284
2269 #define a284 285
2270 #define a285 286
2271 #define a289 287
2272 #define a2811 288
2273 #define a2812 289
2274 #define a2813 290
2275 #define a2814 291
2276 #define a2815 292
2277 #define a2816 293
2278 #define a2817 294
2279 #define a291 295
2280 #define a292 296
2281 #define a293 297
2282 #define a295 298
2283 #define a297 299
2284 #define a298 300
2285 #define a299 301
2286 #define a2A1 302
2287 #define a2A2 303
2288 #define a2A3 304
2289 #define a2A4 305
2290 #define a2A5 306
2291 #define a2A6 307
2292 #define a2A7 308
2293 #define a2A8 309
2294 #define a2A9 310
2295 #define a2A10 311
2296 #define a2A11 312
2297 #define a2A12 313
2298 #define a2A13 314
2299 #define a2A14 315
2300 #define a2A15 316
2301 #define a2B1 317
2302 #define a2B2 318
2303 #define a2B3 319
2304 #define a2B4 320
2305 #define a2B5 321
2306 #define a2B6 322
2307 #define a2B7 323
2308 #define a2B8 324
2309 #define a2B9 325
2310 #define a2B10 326
2311 #define a2B11 327
2312 #define a2B12 328
2313 #define a2B13 329
2314 #define a2B14 330
2315 #define a2C1 331
2316 #define a2C2 332
2317 #define a2C3 333
2318 #define a2C4 334
2319 #define a2C5 335
2320 #define a2C6 336
2321 #define a2C7 337
2322 #define a2C9 338
2323 #define a2C10 339
2324 #define a2C11 340
2325 #define a2D1 341
2326 #define a2D2 342
2327 #define a2D3 343
2328 #define a2D4 344
2329 #define a2D5 345
2330 #define a2D6 346
2331 #define a2D7 347
2332 #define a2D11 348
2333 #define a2D12 349
2334 #define a2D13 350
2335 #define a2D14 351
2336 #define a2D15 352
2337 #define a2D16 353
2338 #define a2E1 354
2339 #define a2E2 355
2340 #define a2E3 356
2341 #define a2E4 357
2342 #define a2E5 358
2343 #define a2E6 359
2344 #define a2E7 360
2345 #define a2F1 361
2346 #define a2F2 362
2347 #define a2F3 363
2348 #define a2F4 364
2349 #define a2F5 365
2350 #define a2F6 366
2351 #define a2F7 367
2352 #define a2F8 368
2353 #define a2G1 369
2354 #define a2G2 370
2355 #define a2G3 371
2356 #define a2G4 372
2357 #define a2G5 373
2358 #define a2G6 374
2359 #define a2G7 375
2360 #define a2G8 376
2361 #define a2G9 377
2362 #define a2H1 378
2363 #define a2H2 379
2364 #define a2H3 380
2365 #define a2H4 381
2366 #define a2H5 382
2367 #define a2H6 383
2368 #define a2H7 384
2369 #define a2I1 385
2370 #define a2I2 386
2371 #define a2I3 387
2372 #define a2I4 388
2373 #define a2L1 389
2374 #define a2L2 390
2375 #define a2L3 391
2376 #define a2L4 392
2377 #define a2M1 393
2378 #define a2M3 394
2379 #define a2M4 395
2380 #define a2M5 396
2381 #define a2M6 397
2382 #define a2M7 398
2383 #define a2M8 399
2384 #define a2M9 400
2385 #define a2M10 401
2386 #define a2M11 402
2387 #define a2M12 403
2388 #define a2M13 404
2389 #define a2M14 405
2390 #define a2M15 406
2391 #define a2M16 407
2392 #define a2M17 408
2393 #define a2M18 409
2394 #define a2M19 410
2395 #define a2M20 411
2396 #define a2M21 412
2397 #define a2M22 413
2398 #define a2M23 414
2399 #define a2M24 415
2400 #define a2P1 416
2401 #define a2P2 417
2402 #define a2P3 418
2403 #define a2P4 419
2404 #define a2P5 420
2405 #define a2P6 421
2406 #define a2Q1 422
2407 #define a2Q2 423
2408 #define a2Q3 424
2409 #define a2Q4 425
2410 #define a2Q5 426
2411 #define a2Q6 427
2412 #define a2Q7 428
2413 #define a2Q11 429
2414 #define a2Q12 430
2415 #define a2Q13 431
2416 #define a2Q14 432
2417 #define a2R1 433
2418 #define a2R2 434
2419 #define a2R3 435
2420 #define a2R4 436
2421 #define a2R5 437
2422 #define a2R6 438
2423 #define a2R7 439
2424 #define a2R8 440
2425 #define a2R9 441
2426 #define a2S1 442
2427 #define a2S2 443
2428 #define a2S3 444
2429 #define a2S4 445
2430 #define a2S5 446
2431 #define a2S6 447
2432 #define a2S7 448
2433 #define a2T1 449
2434 #define a2T2 450
2435 #define a2T3 451
2436 #define a2T4 452
2437 #define a2T5 453
2438 #define a2T6 454
2439 #define a2T7 455
2440 #define a111 456
2441 #define a112 457
2442 #define a121 458
2443 #define a131 459
2444 #define a132 460
2445 #define a133 461
2446 #define a139 462
2447 #define a1310 463
2448 #define a1311 464
2449 #define a1312 465
2450 #define a141 466
2451 #define a142 467
2452 #define a143 468
2453 #define a144 469
2454 #define a145 470
2455 #define a146 471
2456 #define a147 472
2457 #define a148 473
2458 #define a151 474
2459 #define a153 475
2460 #define a154 476
2461 #define a155 477
2462 #define a156 478
2463 #define a157 479
2464 #define a158 480
2465 #define a159 481
2466 #define a1510 482
2467 #define a161 483
2468 #define a162 484
2469 #define a163 485
2470 #define a164 486
2471 #define a171 487
2472 #define a172 488
2473 #define a173 489
2474 #define a174 490
2475 #define a175 491
2476 #define a176 492
2477 #define a177 493
2478 #define a178 494
2479 #define a1710 495
2480 #define a1711 496
2481 #define a181 497
2482 #define a182 498
2483 #define a183 499
2484 #define a191 500
2485 #define a192 501
2486 #define a193 502
2487 #define a194 503
2488 #define a1A1 504
2489 #define a1A2 505
2490 #define a1A3 506
2491 #define a1A4 507
2492 #define a1A5 508
2493 #define a1A6 509
2494 #define a1A8 510
2495 #define a1A9 511
2496 #define a1A10 512
2497 #define a1A11 513
2498 #define a1A14 514
2499 #define a1A15 515
2500 #define a1A12 516
2501 #define a1B1 517
2502 #define a1B2 518
2503 #define a1B3 519
2504 #define a1B4 520
2505 #define a1B5 521
2506 #define a1B6 522
2507 #define a1C1 523
2508 #define a1C2 524
2509 #define a1D1 525
2510 #define a1D2 526
2511 #define a1D3 527
2512 #define a1D4 528
2513 #define a1D5 529
2514 #define a1D6 530
2515 #define a1D8 531
2516 #define a1D9 532
2517 #define a1D10 533
2518 #define a1D11 534
2519 #define a1D12 535
2520 #define a1E1 536
2521 #define a1E2 537
2522 #define a1E3 538
2523 #define a1E4 539
2524 #define a1F1 540
2525 #define a1F2 541
2526 #define a1F3 542
2527 #define a1F4 543
2528 #define a1F5 544
2529 #define a1F6 545
2530 #define a1F7 546
2531 #define a1F8 547
2532 #define a1F9 548
2533 #define a1F10 549
2534 #define a1F11 550
2535 #define a1F12 551
2536 #define a311 552
2537 #define a312 553
2538 #define a313 554
2539 #define a314 555
2540 #define a315 556
2541 #define a316 557
2542 #define a317 558
2543 #define a318 559
2544 #define a319 560
2545 #define a3110 561
2546 #define a3111 562
2547 #define a3112 563
2548 #define a3113 564
2549 #define a3114 565
2550 #define a3115 566
2551 #define a3116 567
2552 #define a3117 568
2553 #define a3119 569
2554 #define a3120 570
2555 #define a3121 571
2556 #define a321 572
2557 #define a322 573
2558 #define a323 574
2559 #define a326 575
2560 #define a327 576
2561 #define a324 577
2562 #define a325 578
2563 #define a331 579
2564 #define a336 580
2565 #define a337 581
2566 #define a338 582
2567 #define a339 583
2568 #define a3310 584
2569 #define a341 585
2570 #define a342 586
2571 #define a343 587
2572 #define a344 588
2573 #define a345 589
2574 #define a346 590
2575 #define a347_DARRELL 591
2576 #define a349 593
2577 #define a3410 594
2578 #define a3411 595
2579 #define a3412 596
2580 #define a3413 597
2581 #define a3414 598
2582 #define a3415 599
2583 #define a3416 600
2584 #define a3417 601
2585 #define a3418 602
2586 #define a3419 603
2587 #define a351 604
2588 #define a352 605
2589 #define a353 606
2590 #define a354 607
2591 #define a355 608
2592 #define a356 609
2593 #define a357 610
2594 #define a361 611
2595 #define a362 612
2596 #define a363 613
2597 #define a364 614
2598 #define a36MSDM 615
2599 #define a36MSSM 616
2600 #define a36MSDA 617
2601 #define a36MSSA 618
2602 #define a36PSDB 619
2603 #define a36PSSB 620
2604 #define a36PSDM 621
2605 #define a36PSSM 622
2606 #define a36MIDA 623
2607 #define a36MISA 624
2608 #define a36PIDB 625
2609 #define a36PISB 626
2610 #define a36PIDM 627
2611 #define a36PISM 628
2612 #define a36PBDB 629
2613 #define a36PBSB 630
2614 #define a36PBDM 631
2615 #define a36PBSM 632
2616 #define a3627 633
2617 #define a371 634
2618 #define a372 635
2619 #define a373 636
2620 #define a374 637
2621 #define a375 638
2622 #define a376 639
2623 #define a377 640
2624 #define a378 641
2625 #define a381 642
2626 #define a382 643
2627 #define a383 644
2628 #define a384 645
2629 #define a386 646
2630 #define a387 647
2631 #define a391 648
2632 #define a392 649
2633 #define a393 650
2634 #define a394 651
2635 #define a395 652
2636 #define a396 653
2637 #define a397 654
2638 #define a398 655
2639 #define a399 656
2640 #define a3910 657
2641 #define a3911 658
2642 #define a3912 659
2643 #define a3913 660
2644 #define a3B1 661
2645 #define a3B2 662
2646 #define a3B3 663
2647 #define a3B4 664
2648 #define a3B5 665
2649 #define a3B6 666
2650 #define a3B7 667
2651 #define a3B8 668
2652 #define a3B9 669
2653 #define a3B10 670
2654 #define a3B11 671
2655 #define a3B12 672
2656 #define a3B13 673
2657 #define a3B14 674
2658 #define a3B15 675
2659 #define a3B16 676
2660 #define a3B17 677
2661 #define a3B18 678
2662 #define a3B19 679
2663 #define a3B20 680
2664 #define a3B21 681
2665 #define a3B24 682
2666 #define a3B25 683
2667 #define a3B26 684
2668 #define a3C1 685
2669 #define a3C2 686
2670 #define a3C3 687
2671 #define a3C4 688
2672 #define a3C5 689
2673 #define a3C6 690
2674 #define a3C7 691
2675 #define a3C8 692
2676 #define a411 693
2677 #define a412 694
2678 #define a413 695
2679 #define a421 696
2680 #define a422 697
2681 #define a424 698
2682 #define a425 699
2683 #define a426 700
2684 #define a427 701
2685 #define a428 702
2686 #define a431 703
2687 #define a432 704
2688 #define a433 705
2689 #define a434 706
2690 #define a435 707
2691 #define a436 708
2692 #define a437 709
2693 #define a438 710
2694 #define a441 711
2695 #define a442 712
2696 #define a443 713
2697 #define a444 714
2698 #define a451 715
2699 #define a452 716
2700 #define a453 717
2701 #define a454 718
2702 #define a455 719
2703 #define a456 720
2704 #define a457 721
2705 #define a458 722
2706 #define a459 723
2707 #define a4510 724
2708 #define a461 725
2709 #define a462 726
2710 #define a463 727
2711 #define a464 728
2712 #define a465 729
2713 #define a466 730
2714 #define a467 731
2715 #define a468 732
2716 #define a469 733
2717 #define a4610 734
2718 #define a4611 735
2719 #define a4612 736
2720 #define a4613 737
2721 #define a4614 738
2722 #define a4615 739
2723 #define a4616 740
2724 #define a4617 741
2725 #define a4618 742
2726 #define a4619 743
2727 #define a4620 744
2728 #define a471 745
2729 #define a481 746
2730 #define a482 747
2731 #define a491 748
2732 #define a492 749
2733 #define a493a 750
2734 #define a493b 751
2735 #define a494a 752
2736 #define a494b 753
2737 #define a493ca 754
2738 #define a493cb 755
2739 #define a494ca 756
2740 #define a494cb 757
2741 #define a495 758
2742 #define a496 759
2743 #define a497 760
2744 #define a498 761
2745 #define a499 762
2746 #define a4910 763
2747 #define a4911 764
2748 #define a4912 765
2749 #define a4913 766
2750 #define a4914 767
2751 #define a4915 768
2752 #define a4916 769
2753 #define a4917 770
2754 #define a4918 771
2755 #define a4A1 774
2756 #define a4A2 775
2757 #define a4A3 776
2758 #define a4A4 777
2759 #define a1F13 778
2760 
2761 // per chris
2762 #define aGOPHER_ACTION 901
2763 //ATTENZIONE! numeri incasinati!!
2764 #define aDARRELL_PARLA 926
2765 #define aVICTORIA_PARLA 927
2766 #define aCURPLAYER_PARLA 928
2767 #define aCURPLAYER_ASCOLTA 929
2768 #define aCURPLAYER_PENSA 930
2769 #define aCUOCO_PARLA 931
2770 #define aDOMESTICA_PARLA 932
2771 #define aGIARDINIERE_PARLA 933
2772 #define aCUSTODE_PARLA 934
2773 #define aSERVETTA_PARLA 935
2774 #define aSUPERVISORE_PARLA 936
2775 #define aMOGLIESUPERVISORE_PARLA 937
2776 #define aDARRELL_ASCOLTA 938
2777 #define aVICTORIA_ASCOLTA 939
2778 #define aCUOCO_ASCOLTA 940
2779 #define aDOMESTICA_ASCOLTA 941
2780 #define aGIARDINIERE_ASCOLTA 942
2781 #define aCUSTODE_ASCOLTA 943
2782 #define aSERVETTA_ASCOLTA 944
2783 #define aSUPERVISORE_ASCOLTA 945
2784 #define aMOGLIESUPERVISORE_ASCOLTA 946
2785 #define aCUSTODE_ALZA_TESTA 947
2786 #define aCUSTODE_ABBASSA_TESTA 948
2787 #define aCAMBIA_FRASI 949
2788 #define aFINE_RTV 950
2789 #define aFINE_DEMO 951
2790 #define aPORTALE_32_34 952
2791 #define aPORTALE_34_32 953
2792 #define a48PENDOLO 954
2793 #define aCAC1a5a 955
2794 #define aCAC1a5b 956
2795 #define aCAC1c3 957
2796 #define aCAC2a1 958
2797 #define aCOL1a2a 959
2798 #define aCOL1a2b 960
2799 #define aCUO2t2a 961
2800 #define aCUO2t2b 962
2801 #define aCUS1a1d 963
2802 #define aCUS1a2 964
2803 #define aDAR1a1a 965
2804 #define aDAR1a1b 966
2805 #define aDAR1a1c 967
2806 #define aDAR1a3a 968
2807 #define aDAR1a4 969
2808 #define aDAR1c1a 970
2809 #define aDAR1c1c 971
2810 #define aDAR1c2a 972
2811 #define aDAR1c2b 973
2812 #define aDAR1c3 974
2813 #define aDAR1c3b 975
2814 #define aDAR1c3c 976
2815 #define aDAR221b 977
2816 #define aDAR421 978
2817 #define aDAR481 979
2818 #define aGIA1a1a 980
2819 #define aGIA1a1b 981
2820 #define aGIA1a1c 982
2821 #define aGIA1a1d 983
2822 #define aGIA1a3a 984
2823 #define aJUD222a 985
2824 #define aJUD222b 986
2825 #define aJUD2d1a 987
2826 #define aJUD2d1b 988
2827 #define aJUD2p1 989
2828 #define aKRE481a 990
2829 #define aKRE481b 991
2830 #define aPSG1c3a 992
2831 #define aPSG1c3b 993
2832 #define aSER1a1 994
2833 #define aSER1a2 995
2834 #define aSUP291a1 996
2835 #define aSUP291a2 997
2836 #define aSUP291a3 998
2837 #define aSUP291b 999
2838 #define aSUP291c 1000
2839 #define aSUP291d 1001
2840 #define aVIC1a3a 1002
2841 #define aVIC1a4 1003
2842 #define aVIC1a5 1004
2843 #define aVIC1e1 1005
2844 #define aVIC212b 1006
2845 #define aVIC221b 1007
2846 #define aVIC291a 1008
2847 #define aVIC291b1 1009
2848 #define aVIC291b2 1010
2849 #define aVIC291b3 1011
2850 #define aVIC291c 1012
2851 #define aVIC2a1 1013
2852 #define aVIC411a 1014
2853 #define aVIC411b 1015
2854 #define aVIC411c 1016
2855 #define aVIC491b 1017
2856 #define aVIV451 1018
2857 #define aVIV452a 1019
2858 #define aVIV452b 1020
2859 #define aVIV471a 1021
2860 #define aVIV471b 1022
2861 #define aVIV472c 1023
2862 #define aAND007a 1024
2863 #define aAND007c 1025
2864 #define aCUO009a 1026
2865 #define aCUO009b 1027
2866 #define aDAR009 1028
2867 #define aHEN002b 1029
2868 #define aVIC0010 1030
2869 #define aVIC0014 1031
2870 #define aVIC009 1032
2871 #define aSUP1a2a 1033
2872 #define aSUP1a2b 1034
2873 #define aR1f1 1035
2874 #define aDARRELL_DARE 1036
2875 #define aVICTORIA_DARE 1037
2876 #define aDARRELL_PRENDERE 1038
2877 #define aVICTORIA_PRENDERE 1039
2878 #define aDARRELL_ARRIVA_R41 1040
2879 #define aVIC1c1a 1041
2880 #define aDARRELL_ARRIVA_R1C 1042
2881 #define aCACPOR 1043
2882 #define aMOGLIE_KIMONO_PARLA 1044
2883 #define aMOGLIE_KIMONO_ASCOLTA 1045
2884 #define aCACCIATORE_PARLA 1046
2885 #define aCACCIATORE_ASCOLTA 1047
2886 #define aCACCIATORE_SCENDE 1048
2887 #define aCACCIATORE_ARRIVA_R41 1049
2888 #define aSab411 1050
2889 #define aJUD2d1c 1051
2890 #define aMOGLIE_KIMONO_DARE 1052
2891 #define aVIC1c3b 1053
2892 #define aDAR1c3d 1054
2893 #define aDAR1c3d_nopoptext 1055
2894 #define aKRENN_PARLA 1056
2895 #define aKRENN_ASCOLTA 1057
2896 #define aVALENCIA_PARLA 1058
2897 #define aVALENCIA_ASCOLTA 1059
2898 #define aSUP_PARLA 1060
2899 #define aR1A5_ENDRTV 1061
2900 #define aVIC212a 1062
2901 #define aSUP1a2c 1063
2902 #define aCOL1a2c 1064
2903 #define aCOL1a2d 1065
2904 #define aSER1a2_SHOW_OBJS 1066
2905 #define aR1f1_START 1067
2906 #define aSERVETTA_PRENDERE 1068
2907 #define aSERVETTA_DARE 1069
2908 #define aCUSTODE_PENSA 1070
2909 #define aCUSTODESEDUTO_PARLA 1071
2910 #define aCUSTODESEDUTO_ASCOLTA 1072
2911 #define aCUSTODESEDUTO_PENSA 1073
2912 #define aSUPERVISORESEDUTO_PARLA 1074
2913 #define aSUPERVISORESEDUTO_ASCOLTA 1075
2914 #define aMOGLIESEDUTA_PARLA 1076
2915 #define aMOGLIESEDUTA_ASCOLTA 1077
2916 #define aCAM461 1078
2917 #define aCUSTODE_PRENDERE 1079
2918 #define aCUSTODE_DARE 1080
2919 #define aPorta421_LEFT 1081
2920 #define aPorta421_RIGHT 1082
2921 #define aDAR421a 1083
2922 #define aVIC421a 1084
2923 #define aDAR421b 1085
2924 #define aPorta421a_LEFT 1086
2925 #define aPorta421a_RIGHT 1087
2926 #define aDOM221a 1088
2927 #define aDOM221b 1089
2928 #define aDAR000b 1091
2929 #define aDAR000c 1092
2930 #define aDAR000d 1093
2931 #define aDAR000e 1094
2932 #define aR000_SVEGLIA 1095
2933 #define aCUSTODE_PORTA 1096
2934 #define aTAXI1 1097
2935 #define aTAXI2 1098
2936 #define aVIC000tb 1099
2937 #define aTAXI3 1100
2938 #define aSUPERVISORE_ALZA 1101
2939 #define aSUPERVISORE_PARLABAR 1102
2940 #define aDAR2c1 1103
2941 #define aVIC2c1 1104
2942 #define aSUPERVISORE_PRENDERE 1105
2943 #define aSUPERVISORE_DARE 1106
2944 #define aCUSTODE_OCCHIALI 1107
2945 #define aCUSTODE_OCCHIALISEDUTO 1108
2946 #define aCUSTODE_OSSERVAPRENDE 1109
2947 #define aCUSTODE_OSSPRENDESEDUTO 1110
2948 #define aSERVETTA_OSSERVAPRENDE 1111
2949 #define aDAR000f 1112
2950 #define aDAR000g 1113
2951 #define aDAR000h 1114
2952 #define aDAR000j 1115
2953 #define aVIC000b 1117
2954 #define aVIC000c 1118
2955 #define aVIC000d 1119
2956 #define aVIC000e 1120
2957 #define aPET000a1 1121
2958 #define aPET000a2 1122
2959 #define aPET000b 1123
2960 #define aPET000c 1124
2961 #define aPET000d 1125
2962 #define aPET000e 1126
2963 #define aPET000f 1127
2964 #define aDAR_DOOR_A92 1128
2965 #define a144_switch_camera 1130
2966 #define aSUPERVISORE_APRE_PORTA 1131
2967 #define a145_con_occhiali 1132
2968 #define a148_start 1133
2969 #define a2Q4b 1134
2970 #define a1A7 1135
2971 #define aCUOCO_VERSA 1136
2972 #define aCUOCO_BEVE 1137
2973 #define aCUSTODE_SEDUTODARE 1138
2974 #define aCUSTODE_SEDUTOPRENDERE 1139
2975 #define a3123 1140
2976 #define aDAR482a 1141
2977 #define aDAR482b 1142
2978 #define aDAR482c 1143
2979 #define aDAR482in 1144
2980 #define aCAC482a 1145
2981 #define aCAC482l 1146
2982 #define aCAC482c 1147
2983 #define aCAC482d 1148
2984 #define aCAC482e 1149
2985 #define aCAC482f 1150
2986 #define aCAC482g 1151
2987 #define aCAC482h 1152
2988 #define aCAC482i 1153
2989 #define aCAC482j 1154
2990 #define aCAC482k 1155
2991 #define aVIC482a 1156
2992 #define aVIC482a1 1157
2993 #define aVIC482in 1158
2994 #define a3123_switch_to_a159 1159
2995 #define a48PORTA 1161
2996 #define aDARRELL_BOTTIGLIA 1163
2997 #define aCUOCO_VERSAUNO 1164
2998 #define aVICTORIA_BOTTIGLIA 1165
2999 #define aDARRELL_SEGNO 1166
3000 #define aVICTORIA_SEGNO 1167
3001 #define aCUOCO_MOSTRAQUADRO 1168
3002 #define aDARRELL_PRENDECHIAVI 1169
3003 #define aVICTORIA_PRENDECHIAVI 1170
3004 #define aCUOCO_INTERRUPT1 1171
3005 #define aCUOCO_INTERRUPT2 1172
3006 #define aDOMESTICA_INTERRUPT1 1173
3007 #define aDOMESTICA_INTERRUPT2 1174
3008 #define aGIARDINIERE_INTERRUPT1 1175
3009 #define aGIARDINIERE_INTERRUPT2 1176
3010 #define aCUSTODE_INTERRUPT1 1177
3011 #define aCUSTODE_INTERRUPT2 1178
3012 #define aCUSTODE_INTERRUPT3 1179
3013 #define aCUSTODE_INTERRUPT4 1180
3014 #define aCUSTODE_INTERRUPT5 1181
3015 #define aMOGLIESUP_INTERRUPT1 1182
3016 #define aMOGLIESUP_INTERRUPT2 1183
3017 #define aSUPERVISORE_INTERRUPT1 1184
3018 #define aSUPERVISORE_INTERRUPT2 1185
3019 #define aSUPERVISORE_INTERRUPT3 1186
3020 #define aSUPERVISORE_INTERRUPT4 1187
3021 #define aKREI347a 1188
3022 #define aKREI347b 1189
3023 #define aPEN347 1190
3024 #define aCORI347a 1191
3025 #define aCORI347b 1192
3026 #define aCORI347c 1193
3027 #define aKREI347c 1194
3028 #define aKREI347d 1195
3029 #define aKREI347e 1196
3030 #define aDUKI347a 1197
3031 #define aDUKI347b 1198
3032 #define aDUKI347c 1199
3033 #define a1A9_rtv 1200
3034 //#define a1A9_dice_solo_frase 1201
3035 #define a225_prima_volta 1202
3036 #define aDUKI347d 1203
3037 #define aDUKI347e 1204
3038 #define aDUKI347f 1205
3039 #define aDUKI347g 1206
3040 #define aVICI347a 1207
3041 #define aVICI347b 1208
3042 #define aGREI347a 1209
3043 #define aGREI347b 1210
3044 #define aGREI347c 1211
3045 #define a84cam 1212
3046 #define a2G9_parte_rtv 1213
3047 #define a323_tira 1214
3048 #define a323_lascia 1215
3049 #define aCUO255_nopentole 1216
3050 #define aDARI347a 1217
3051 #define aDARI347b 1218
3052 #define aFAKE_BOTTLE 1219
3053 #define aSUP295_loop 1220
3054 #define a2P7 1222
3055 #define a2P8 1223
3056 #define a41_lancia_dR411 1224
3057 #define aSUPERVISORE_GUARDAFOTO 1225
3058 #define aGIA2G_PORTA 1226
3059 #define a229 1227
3060 #define a2211_ultimavolta 1228
3061 #define aVOCEFUORICAMPO 1229
3062 #define a289_noinctime 1230
3063 #define aVOCECORONA 1231
3064 #define aVOCEDUKES 1232
3065 #define a22CAMBIA2T 1233
3066 #define a22LANCIAR2T2 1234
3067 #define a2TCAMBIA22 1235
3068 #define a1E1_rtv 1237
3069 #define aKREN491a 1239
3070 #define aKREN491b 1240
3071 #define a18GUARDA_SCACCHIERA 1241
3072 #define a1A11_primavolta 1242
3073 #define a1D3_dopo 1243
3074 #define a1D4_fine 1244
3075 #define a1F10_cambia_indicatori 1245
3076 #define a347_VICTORIA 1246
3077 #define aVIV347a 1247
3078 #define aVIV347b 1248
3079 #define aCOLOMBAMUORE 1249
3080 #define aALB1A5 1251
3081 #define a4617DARRELL 1252
3082 #define aGREI347d 1253
3083 #define a4612A 1254
3084 #define a429 1255
3085 #define aDAR241a 1256
3086 #define aDOM241 1257
3087 #define aDOM2D1 1258
3088 #define aJUD_dR241 1259
3089 #define aFINE_dR241 1260
3090 #define aDAR241b 1261
3091 #define aDUKI347d_nofrase 1262
3092 #define a426VIC 1266
3093 #define aVIC1c3c 1267
3094 #define aCACCIATOREMALPRESO_PARLA 1268
3095 #define a2513_DOM 1269
3096 #define a2512_DOM 1270
3097 #define a111_DOM 1271
3098 #define a1A4_DOM 1272
3099 #define aLancia_dR015 1273
3100 #define a2Q13_lancia_dR015 1274
3101 #define a465B 1275
3102 #define a466B 1276
3103 #define a467B 1277
3104 #define a468B 1278
3105 #define a469B 1279
3106 #define a4610B 1280
3107 #define a4611B 1281
3108 #define a4612B 1282
3109 #define a4612AB 1283
3110 #define aDARRELL_SOLO_FRASE 1284
3111 #define aVICTORIA_SOLO_FRASE 1285
3112 #define a2C4_CUOCODORME 1286
3113 #define aKRE481 1288
3114 #define aKRE482 1289
3115 #define aKRE483 1290
3116 #define aKRE484 1291
3117 #define aMOS2P1_restore 1292
3118 #define aGIA_dr1a4_doorA 1293
3119 #define aPEN73a 1294
3120 #define aKRE48indica 1295
3121 #define aKRE48spara 1296
3122 #define aLaunch_WMLetter 1297
3123 #define aLaunch_Parchment 1298
3124 #define aVIC48spavent 1299
3125 #define aDAR721 1300
3126 #define aCACinvita 1301
3127 #define aCACinvitab 1302
3128 #define aVICarresa 1303
3129 #define adR451_fine 1304
3130 #define a1A13 1305 //anim null per frase in RTV lucchetto
3131 #define aVIC_FRASE_BRACCIALE 1306 //anim null per frase da bracciale a servetta
3132 #define aPorta421_RIGHT_nocamera 1307
3133 #define a48camera 1308
3134 #define aDAR482ing_idle 1309
3135 #define aVIC482ing_idle 1310
3136 #define aMORTE_CHIRURGO 1311
3137 #define aMORTE_MOORE 1312
3138 #define aMORTE_TRADUTTORE 1313
3139 #define aMORTE_VECCHIO 1314
3140 #define aSUPERVISORE_ASCOLTABAR 1315
3141 #define aVIC000a 1316
3142 #define aVIC_PORTA_ANDERSON 1317
3143 #define aSETTA_FINESTRA_XT_ACCESA 1318
3144 #define a251_DaAcceso 1319
3145 #define aVIV471b1 1320
3146 #define aWALKMAN_STOP 1321
3147 #define aWALKMAN_PLAY 1322
3148 #define aWALKMAN_FASTF 1323
3149 #define a253_SportelloAperto 1324
3150 #define aDOOR_A_CHIUSA1 1325
3151 #define aDOOR_A_CHIUSA2 1326
3152 #define a2C6_occupato 1327
3153 #define a2M8_occupato 1328
3154 #define aTAXI483a 1329
3155 #define aDAR483_GIRATESTA 1330
3156 #define aVIC483_GIRATESTA 1331
3157 #define aDAR483_IDLE 1332
3158 #define aVIC483_IDLE 1333
3159 #define aCAMERA483 1334
3160 #define aPORTALLINK_26a_26b 1335
3161 #define aPORTALLINK_26b_26a 1336
3162 #define aPORTALLINK_24a_24b 1337
3163 #define aPORTALLINK_24b_24a 1338
3164 #define aPORTALLINK_38b_38a 1339
3165 #define aLOGOTREC_START 1340
3166 #define aLOGOTREC 1341
3167 #define aR000cam 1342
3168 #define aDAR000a 1343
3169 #define aCHIUDOCANCINTRO 1344
3170 #define a393b 1345
3171 #define a39VORTICE 1346
3172 #define a39VORTICE_CLEAN 1347
3173 #define aCAMERA483inizio 1348
3174 #define aCACMUOREFUMO 1349
3175 #define aVIC482b 1350
3176 #define aLOGOWM 1351
3177 #define a2G8_fake 1352
3178 #define aMOORE_PARLA 1353
3179 
3180 /* -----------------18/08/99 17.00-------------------
3181  * Icons
3182  * --------------------------------------------------*/
3183 #define iNULL 0
3184 #define i00TELEFONO 1
3185 #define i00TELEFONOVIC 2
3186 #define i13SCALPELLO 3
3187 #define i13INGRANAGGIO 4
3188 #define i14PIUMA 5
3189 #define i14OCCHIALI 6
3190 #define i19BAMBOLA 7
3191 #define i19FOGLIO1 8
3192 #define i19CRISTALLO 9
3193 #define i1aLUCCHETTO 10
3194 #define i1aSASSO 11
3195 #define i1aBOTTIGLIAVUOTA 12
3196 #define i1cMEDAGLIONI3 13
3197 #define i1cMEDAGLIONI2 14
3198 #define i1cMEDAGLIONE 15
3199 #define i1dAUDIOCASSETTA 16
3200 #define i1dTRONCHESE 17
3201 #define i22BRACCIALE 18
3202 #define i22LIBROCHIUSODEPLIANT 19
3203 #define i22DEPLIANT 20
3204 #define i22LIBROAPERTODEPLIANT 21
3205 #define i22LIBROAPERTO 22
3206 #define i22LIBROCHIUSO 23
3207 #define i24COLTELLO 24
3208 #define i24CHIAVETTA 25
3209 #define i25MAZZODUECHIAVI 26
3210 #define i25FIALABOK 27
3211 #define i25FIALAAOK 28
3212 #define i25FIALEABPIENE 29
3213 #define i25FIALEABUSATE 30
3214 #define i25MEDAGLIONI4 31
3215 #define i27PILE 32
3216 #define i28WALKMANVUOTO 33
3217 #define i28WALKMANNASTRO 34
3218 #define i28WALKMANPILE 35
3219 #define i28WALKMANOK 36
3220 #define i29FOTOJUDE1 37
3221 #define i29CHIAVESUPERVISORE 38
3222 #define i29FOTOPROGETTO 39
3223 #define i29FOTOIMMORTALI 40
3224 #define i29STAMPAINGRANAGGIO 41
3225 #define i2aSANGUE 42
3226 #define i2aSIRINGAVUOTA 43
3227 #define i2aSIRINGANITRICO 44
3228 #define i2bSACCHETTOINCENSO 45
3229 #define i2cBANCONOTA1 46
3230 #define i2dSESTERZO 47
3231 #define i2dCOLLANA 48
3232 #define i2iDETERSIVO 49
3233 #define i2lBOTTIGLIAVINO 50
3234 #define i2mSIRINGASOLFORICO 51
3235 #define i2mSIRINGAACIDI 52
3236 #define i2rBUSTAVUOTAA 53
3237 #define i2rBUSTAVUOTAB 54
3238 #define i31ANELLOBRONZO 55
3239 #define i31DISCONUOVO 56
3240 #define i34PERGAMENA 57
3241 #define i34DIARIO 58
3242 #define i34LASTRE 59
3243 #define i34STAMPO 60
3244 #define i34FIALAA 61
3245 #define i34FIALAB 62
3246 #define i34SFERA 63
3247 #define i35DISEGNO 64
3248 #define i36BUSTA1DOSEA 65
3249 #define i36BUSTA2DOSIA 66
3250 #define i36BUSTA1DOSEB 67
3251 #define i36BUSTA2DOSIB 68
3252 #define i37CILINDRO 69
3253 #define i39CRISTALLOATTIVATO 70
3254 #define i3bLASTRA2VOLTI 71
3255 #define i3bLASTRABIANCA 72
3256 #define i3bLASTRANERA 73
3257 #define i41OGGETTO 74
3258 #define i46BUSTAOROLOGIAIO 75
3259 #define i46CANDELA1 76
3260 #define i46CANDELA2 77
3261 #define i46PERGAMENA 78
3262 #define i46STELLA1 79
3263 #define i46STELLA2 80
3264 #define i46FIALEABVUOTE 81
3265 #define i48CHIAVIMANETTE 82
3266 #define i49ACCENDINO 83
3267 #define i2lBOTTIGLIAVINO_NOCUOCO 84
3268 
3269 /* -----------------17/03/98 10.20-------------------
3270  * Actions
3271  * --------------------------------------------------*/
3272 #define h11RACCOGLIECARTA 1
3273 
3274 /* -----------------17/03/98 10.21-------------------
3275  * Scripts
3276  * --------------------------------------------------*/
3277 #define s16CARD 1
3278 
3279 /* -----------------17/03/98 10.21-------------------
3280  * Sounds
3281  * --------------------------------------------------*/
3282 #define wNULL 0
3283 #define wPROVA 1
3284 #define wPASSODESTROCOTTO 2
3285 #define wPASSOSINISTROCOTTO 3
3286 #define wPASSODESTROTAPPETO 4
3287 #define wPASSOSINISTROTAPPETO 5
3288 #define wPASSODESTROASFALTO 6
3289 #define wPASSOSINISTROASFALTO 7
3290 #define wPASSODESTROPIETRA 8
3291 #define wPASSOSINISTROPIETRA 9
3292 #define wPASSODESTROERBA 10
3293 #define wPASSOSINISTROERBA 11
3294 #define wPASSODESTROASFALTO2 12
3295 #define wPASSOSINISTROASFALTO2 13
3296 #define wPASSODESTROASFALTO3 14
3297 #define wPASSOSINISTROASFALTO3 15
3298 #define wPASSODESTROMARMO 16
3299 #define wPASSOSINISTROMARMO 17
3300 #define wPASSODESTROLEGNO 18
3301 #define wPASSOSINISTROLEGNO 19
3302 #define wPASSODESTROTAPPETO2 20
3303 #define wPASSOSINISTROTAPPETO2 21
3304 #define wPASSODESTROTAPPETO3 22
3305 #define wPASSOSINISTROTAPPETO3 23
3306 #define wPASSODESTROTAPPETO4 24
3307 #define wPASSOSINISTROTAPPETO4 25
3308 #define wPASSODESTROTAPPETO5 26
3309 #define wPASSOSINISTROTAPPETO5 27
3310 #define w132 28
3311 #define w133a 29
3312 #define w133b 30
3313 #define w139a 31
3314 #define w139b 32
3315 #define w1311a 33
3316 #define w1311b 34
3317 #define w1312a 35
3318 #define w1312b 36
3319 #define w213a 37
3320 #define w213b 38
3321 #define w2111 39
3322 #define w221a 40
3323 #define w221b 41
3324 #define w222a 42
3325 #define w222b 43
3326 #define w2210a 44
3327 #define w2210b 45
3328 #define w2211a 46
3329 #define w2211b 47
3330 #define w2211c 48
3331 #define w2211d 49
3332 #define w223a 50
3333 #define w223b 51
3334 #define w225a 52
3335 #define w225b 53
3336 #define w226a 54
3337 #define w226b 55
3338 #define w241a 56
3339 #define w241b 57
3340 #define w242a 58
3341 #define w242b 59
3342 #define w243a 60
3343 #define w243b 61
3344 #define w243c 62
3345 #define w243d 63
3346 #define w244 64
3347 #define w245 65
3348 #define w246 66
3349 #define w247 67
3350 #define w248 68
3351 #define w249a 69
3352 #define w249b 70
3353 #define w2411 71
3354 #define w251 72
3355 #define w252 73
3356 #define w25puls 74
3357 #define w25fialf 75
3358 #define w2512a 76
3359 #define w2512b 77
3360 #define w2512c 78
3361 #define w2512d 79
3362 #define w2513a 80
3363 #define w2513b 81
3364 #define w2515 82
3365 #define w2518a 83
3366 #define w2518b 84
3367 #define w2519a 85
3368 #define w2519b 86
3369 #define w2520 87
3370 #define w2521 88
3371 #define w2522 89
3372 #define w25fialc 90
3373 #define w2531a 91
3374 #define w2531b 92
3375 #define w2532a 93
3376 #define w2532b 94
3377 #define w2533a 95
3378 #define w2533b 96
3379 #define w2534a 97
3380 #define w2534b 98
3381 #define w2535a 99
3382 #define w2535b 100
3383 #define w2536a 101
3384 #define w2536b 102
3385 #define w2536d 103
3386 #define w2536c 104
3387 #define w111a 105
3388 #define w111b 106
3389 #define w143 107
3390 #define w156A 108
3391 #define w156B 109
3392 #define w156C 110
3393 #define w157A 111
3394 #define w158A 112
3395 #define w158B 113
3396 #define w161A 114
3397 #define w161B 115
3398 #define w172 116
3399 #define w173 117
3400 #define w174 118
3401 #define w176 119
3402 #define w177 120
3403 #define w112 121
3404 #define w162A 122
3405 #define w162B 123
3406 #define w162C 124
3407 #define w164 125
3408 #define w175 126
3409 #define w178 127
3410 #define w1710A 128
3411 #define w1710B 129
3412 #define w181A 130
3413 #define w181B 131
3414 #define w182A 132
3415 #define w182B 133
3416 #define w193A 134
3417 #define w193B 135
3418 #define w195 136
3419 #define w1A5A 137
3420 #define w1A5B 138
3421 #define w1A6 139
3422 #define w1A9 140
3423 #define w1A10 141
3424 #define w1A11A 142
3425 #define w1A11B 143
3426 #define w1A15 144
3427 #define w1B3 145
3428 #define w1B4A 146
3429 #define w1B4B 147
3430 #define w1B6 148
3431 #define w1C2A 149
3432 #define w1C2B 150
3433 #define w1D1A 151
3434 #define w1D1B 152
3435 #define w1D3 153
3436 #define w1D4A 154
3437 #define w1D4B 155
3438 #define w1D5 156
3439 #define w1D6A 157
3440 #define w1D6B 158
3441 #define w1D8 159
3442 #define w1D10 160
3443 #define w1D12 161
3444 #define w1E1 162
3445 #define w1F7 163
3446 #define w1F9 164
3447 #define w262A 165
3448 #define w262B 166
3449 #define w264A 167
3450 #define w264B 168
3451 #define w268 169
3452 #define w272 170
3453 #define w273 171
3454 #define w274 172
3455 #define w275 173
3456 #define w276 174
3457 #define w277 175
3458 #define w282 176
3459 #define w283 177
3460 #define w284A 178
3461 #define w284B 179
3462 #define w2811A 180
3463 #define w2811B 181
3464 #define wBCUCINA 182
3465 #define w2812 183
3466 #define w2813 184
3467 #define w2814 185
3468 #define w2815 186
3469 #define w2816 187
3470 #define w2817 188
3471 #define w292 189
3472 #define w293A 190
3473 #define w293B 191
3474 #define w295 192
3475 #define w297 193
3476 #define w298A 194
3477 #define w298B 195
3478 #define w298C 196
3479 #define w298D 197
3480 #define w298E 198
3481 #define w298F 199
3482 #define w299 200
3483 #define w2A1A 201
3484 #define w2A1B 202
3485 #define w2A1C 203
3486 #define w2A1D 204
3487 #define w2A1E 205
3488 #define w2A2A 206
3489 #define w2A2B 207
3490 #define w2A2C 208
3491 #define w2A4A 209
3492 #define w2A4B 210
3493 #define w2A5A 211
3494 #define w2A5B 212
3495 #define w2A6A 213
3496 #define w2A6B 214
3497 #define w2A6C 215
3498 #define w2A6D 216
3499 #define w2A7A 217
3500 #define w2A7B 218
3501 #define w2A8A 219
3502 #define w2A8B 220
3503 #define w2A9 221
3504 #define w2A11 222
3505 #define w2A12A 223
3506 #define w2A12B 224
3507 #define w2B1A 225
3508 #define w2B1B 226
3509 #define w2B6 227
3510 #define w2B9 228
3511 #define w2B10A 229
3512 #define w2B10B 230
3513 #define w2B11 231
3514 #define w2B12 232
3515 #define w2B14 233
3516 #define w2C6A 234
3517 #define w2C6B 235
3518 #define w2C7A 236
3519 #define w2C7B 237
3520 #define w2C9 238
3521 #define w2C10 239
3522 #define w2C11A 240
3523 #define w2C11B 241
3524 #define w2D3A 242
3525 #define w2D3B 243
3526 #define w2D4A 244
3527 #define w2D4B 245
3528 #define w2D5A 246
3529 #define w2D5B 247
3530 #define w2D6 248
3531 #define w2D11A 249
3532 #define w2D11B 250
3533 #define w2D12 251
3534 #define w2D13 252
3535 #define w2D14A 253
3536 #define w2D14B 254
3537 #define w2D15A 255
3538 #define w2D15B 256
3539 #define w2D16A 257
3540 #define w2D16B 258
3541 #define w2E2A 259
3542 #define w2E2B 260
3543 #define w2E4A 261
3544 #define w2E4B 262
3545 #define w2E5A 263
3546 #define w2E5B 264
3547 #define w2E6A 265
3548 #define w2E6B 266
3549 #define w2E7A 267
3550 #define w2E7B 268
3551 #define w2F2A 269
3552 #define w2F2B 270
3553 #define w2F4A 271
3554 #define w2F4B 272
3555 #define w2F5A 273
3556 #define w2F5B 274
3557 #define w2F6A 275
3558 #define w2F6B 276
3559 #define w2F7A 277
3560 #define w2F7B 278
3561 #define w2F8A 279
3562 #define w2F8B 280
3563 #define w2G2A 281
3564 #define w2G2B 282
3565 #define w2G2C 283
3566 #define w2G2D 284
3567 #define w2G3A 285
3568 #define w2G3B 286
3569 #define w2G3C 287
3570 #define w2G3D 288
3571 #define w2G4 289
3572 #define w2G5 290
3573 #define w2G6 291
3574 #define w2G7 292
3575 #define w2G8 293
3576 #define w2G9 294
3577 #define w2H1A 295
3578 #define w2H1B 296
3579 #define w2H5A 297
3580 #define w2H5B 298
3581 #define w2H6A 299
3582 #define w2H6B 300
3583 #define w2H7 301
3584 #define w2I2 302
3585 #define w2I3A 303
3586 #define w2I3B 304
3587 #define w2I3C 305
3588 #define w2I3D 306
3589 #define w2I4A 307
3590 #define w2I4B 308
3591 #define w2L2 309
3592 #define w2L3 310
3593 #define w2L4A 311
3594 #define w2L4B 312
3595 #define w2M1 313
3596 #define w2M4A 314
3597 #define w2M4B 315
3598 #define w2M5A 316
3599 #define w2M5B 317
3600 #define w2M6 318
3601 #define w2M7 319
3602 #define w2M8A 320
3603 #define w2M8B 321
3604 #define w2M15A 322
3605 #define w2M15B 323
3606 #define w2M16A 324
3607 #define w2M16B 325
3608 #define w2M17A 326
3609 #define w2M17B 327
3610 #define w2P1A 328
3611 #define w2P1B 329
3612 #define w2P1C 330
3613 #define w2P1D 331
3614 #define w2P2A 332
3615 #define w2P2B 333
3616 #define w2P3A 334
3617 #define w2P3B 335
3618 #define w2P5A 336
3619 #define w2P5B 337
3620 #define w2P5C 338
3621 #define w2P5D 339
3622 #define w2P6 340
3623 #define w2R2A 341
3624 #define w2R2B 342
3625 #define w2R3 343
3626 #define w2R4A 344
3627 #define w2R4B 345
3628 #define w2R5A 346
3629 #define w2R5B 347
3630 #define w2R6A 348
3631 #define w2R6B 349
3632 #define w2R7A 350
3633 #define w2R7B 351
3634 #define w2R8 352
3635 #define w2R9 353
3636 #define w2S2A 354
3637 #define w2S2B 355
3638 #define w2S3A 356
3639 #define w2S3B 357
3640 #define w2S4A 358
3641 #define w2S4B 359
3642 #define w2S5A 360
3643 #define w2S5B 361
3644 #define w2S6A 362
3645 #define w2S6B 363
3646 #define w2S7A 364
3647 #define w2S7B 365
3648 #define w2Q5A 366
3649 #define w2Q5B 367
3650 #define w2Q7A 368
3651 #define w2Q7B 369
3652 #define w2Q7C 370
3653 #define w2Q7D 371
3654 #define w2Q7E 372
3655 #define w2Q11A 373
3656 #define w2Q11B 374
3657 #define w2Q14 375
3658 #define wCUO254A 376
3659 #define wCUO254B 377
3660 #define wCUO254C 378
3661 #define wCUO254D 379
3662 #define wCUO254E 380
3663 #define wCUO252A 381
3664 #define wCUO252B 382
3665 #define wCUO251A 383
3666 #define wCUO251B 384
3667 #define wCUO251C 385
3668 #define wCUO251D 386
3669 #define wCUO251E 387
3670 #define wCUO253A 388
3671 #define wCUO253B 389
3672 #define wCUO253C 390
3673 #define wCUO255 391
3674 #define w2517a 392
3675 #define w2517b 393
3676 #define w271a 394
3677 #define w271b 395
3678 #define w281a 396
3679 #define w281b 397
3680 #define w291a 398
3681 #define w291b 399
3682 #define w2B3a 400
3683 #define w2B3b 401
3684 #define w2B5a 402
3685 #define w2B5b 403
3686 #define w2B8a 404
3687 #define w2B8b 405
3688 #define w2E1a 406
3689 #define w2E1b 407
3690 #define w2F1a 408
3691 #define w2F1b 409
3692 #define w2H2a 410
3693 #define w2H2b 411
3694 #define w2H3a 412
3695 #define w2H3b 413
3696 #define w2I1a 414
3697 #define w2I1b 415
3698 #define w2M12a 416
3699 #define w2M12b 417
3700 #define w2M14a 418
3701 #define w2M14b 419
3702 #define w2M19a 420
3703 #define w2M19b 421
3704 #define w2M21a 422
3705 #define w2M21b 423
3706 #define w2R1a 424
3707 #define w2R1b 425
3708 #define w2S1a 426
3709 #define w2S1b 427
3710 #define w2T1a 428
3711 #define w2T1b 429
3712 #define w211a 430
3713 #define w211b 431
3714 #define w2514a 432
3715 #define w2514b 433
3716 #define w212a 434
3717 #define w212b 435
3718 #define w214a 436
3719 #define w214b 437
3720 #define w2516a 438
3721 #define w2516b 439
3722 #define w2B2a 440
3723 #define w2B2b 441
3724 #define w2B4a 442
3725 #define w2B4b 443
3726 #define w2B7a 444
3727 #define w2B7b 445
3728 #define w2C1a 446
3729 #define w2C1b 447
3730 #define w2C2a 448
3731 #define w2C2b 449
3732 #define w2C3a 450
3733 #define w2C3b 451
3734 #define w2C4a 452
3735 #define w2C4b 453
3736 #define w2C5a 454
3737 #define w2C5b 455
3738 #define w2D1a 456
3739 #define w2D1b 457
3740 #define w2E3a 458
3741 #define w2E3b 459
3742 #define w2F3A 460
3743 #define w2F3B 461
3744 #define w2G1a 462
3745 #define w2G1b 463
3746 #define w2H4a 464
3747 #define w2H4b 465
3748 #define w2L1a 466
3749 #define w2L1b 467
3750 #define w2M3a 468
3751 #define w2M3b 469
3752 #define w2M11a 470
3753 #define w2M11b 471
3754 #define w2M13a 472
3755 #define w2M13b 473
3756 #define w2M18a 474
3757 #define w2M18b 475
3758 #define w2M20a 476
3759 #define w2M20b 477
3760 #define w2P4a 478
3761 #define w2P4b 479
3762 #define w2Q3a 480
3763 #define w2Q3b 481
3764 #define w2Q4a 482
3765 #define w2Q4b 483
3766 #define w121a 484
3767 #define w121b 485
3768 #define w163a 486
3769 #define w163b 487
3770 #define w183a 488
3771 #define w183b 489
3772 #define w1A1a 490
3773 #define w1A1b 491
3774 #define w1C1a 492
3775 #define w1C1b 493
3776 #define w131a 494
3777 #define w131b 495
3778 #define w153a 496
3779 #define w153b 497
3780 #define w154a 498
3781 #define w154b 499
3782 #define w171a 500
3783 #define w171b 501
3784 #define w1B1a 502
3785 #define w1B1b 503
3786 #define w1B2a 504
3787 #define w1B2b 505
3788 #define w144A 506
3789 #define w144B 507
3790 #define w145 508
3791 #define w1D10A 509
3792 #define w1D10B 510
3793 #define w1D10C 511
3794 #define w1F1A 512
3795 #define w1F1B 513
3796 #define w1F5A 514
3797 #define w1F5B 515
3798 #define w1F5C 516
3799 #define w411 517
3800 #define w413A 518
3801 #define w413B 519
3802 #define w421A 520
3803 #define w421B 521
3804 #define w421C 522
3805 #define w425 523
3806 #define w428A 524
3807 #define w428B 525
3808 #define w442A 526
3809 #define w443A 527
3810 #define w444A 528
3811 #define w454A 529
3812 #define w454B 530
3813 #define w4510 531
3814 #define w461 532
3815 #define w462 533
3816 #define w465A 534
3817 #define w465B 535
3818 #define w465C 536
3819 #define w4613 537
3820 #define w4614A 538
3821 #define w4614B 539
3822 #define w4614C 540
3823 #define w4616 541
3824 #define w4618A 542
3825 #define w4618B 543
3826 #define w4619 544
3827 #define w4620 545
3828 #define w481 546
3829 #define w482A 547
3830 #define w482B 548
3831 #define w492A 549
3832 #define w492B 550
3833 #define w493A 551
3834 #define w493BA 552
3835 #define w493BB 553
3836 #define w494BA 554
3837 #define w494BB 555
3838 #define w495A 556
3839 #define w495B 557
3840 #define w496A 558
3841 #define w496B 559
3842 #define w497A 560
3843 #define w497B 561
3844 #define w498A 562
3845 #define w498B 563
3846 #define w499A 564
3847 #define w499B 565
3848 #define w4910A 566
3849 #define w4910B 567
3850 #define w4910C 568
3851 #define w4915 569
3852 #define w4916 570
3853 #define w4A1A 571
3854 #define w4A1B 572
3855 #define w4A2A 573
3856 #define w4A2B 574
3857 #define w494A 575
3858 #define w442B 576
3859 #define w443B 577
3860 #define w444B 578
3861 #define w4612 579
3862 #define w453 580
3863 #define w311A 581
3864 #define w311B 582
3865 #define w312 583
3866 #define w313 584
3867 #define w315 585
3868 #define w316 586
3869 #define w317 587
3870 #define w318 588
3871 #define w319 589
3872 #define w3112 590
3873 #define w3113 591
3874 #define w3114 592
3875 #define w3115 593
3876 #define w3116 594
3877 #define w3117 595
3878 #define w3119 596
3879 #define w3120 597
3880 #define w323A 598
3881 #define w323B 599
3882 #define w337A 600
3883 #define w337B 601
3884 #define w342A 602
3885 #define w342B 603
3886 #define w344 604
3887 #define w345 605
3888 #define w349A 606
3889 #define w349B 607
3890 #define w349C 608
3891 #define w3415 609
3892 #define w3416 610
3893 #define w343A 611
3894 #define w343B 612
3895 #define w331A 613
3896 #define w331B 614
3897 #define w339A 615
3898 #define w339B 616
3899 #define w351A 617
3900 #define w351B 618
3901 #define w361A 619
3902 #define w361B 620
3903 #define w362A 621
3904 #define w362B 622
3905 #define w363A 623
3906 #define w363B 624
3907 #define w352A 625
3908 #define w352B 626
3909 #define w352C 627
3910 #define w352D 628
3911 #define w353A 629
3912 #define w353B 630
3913 #define w353C 631
3914 #define w353D 632
3915 #define w355 633
3916 #define w356 634
3917 #define w371A 635
3918 #define w371B 636
3919 #define w375 637
3920 #define w376 638
3921 #define w377 639
3922 #define w378 640
3923 #define w394 641
3924 #define w395 642
3925 #define w396 643
3926 #define w397 644
3927 #define w398 645
3928 #define w399 646
3929 #define w3910 647
3930 #define w3911 648
3931 #define w3912 649
3932 #define w3913 650
3933 #define w3B21 651
3934 #define w3B24A 652
3935 #define w3B24B 653
3936 #define w3B25A 654
3937 #define w3B25B 655
3938 #define w3C4A 656
3939 #define w3C4B 657
3940 #define w3C5A 658
3941 #define w3C5B 659
3942 #define w374A 660
3943 #define w374B 661
3944 #define w347A 662
3945 #define w347B 663
3946 #define w354A 664
3947 #define w354B 665
3948 #define w3417 666
3949 #define w384A 667
3950 #define w384B 668
3951 #define w384C 669
3952 #define w384D 670
3953 #define w392 671
3954 #define wB451 672
3955 #define w197 673
3956 #define w228 674
3957 #define w2D8 675
3958 #define w2D9 676
3959 #define w2D9B 677
3960 #define w2D10 678
3961 #define w2Q8 679
3962 #define w2Q9 680
3963 #define w2Q9B 681
3964 #define w2Q10 682
3965 #define w422 683
3966 #define w424 684
3967 #define w1D7 685
3968 #define w3118 686
3969 #define w3B22 687
3970 #define wCIAERRORE 688
3971 #define wCIAPULSANTE 689
3972 #define wPDAPULSANTE 690
3973 #define wPDAALERT 691
3974 #define wPDAOFF 692
3975 #define wSCANPULSANTE 693
3976 #define w2T2A 694
3977 #define w2T2B 695
3978 #define w2T3A 696
3979 #define w2T3B 697
3980 #define w2T4A 698
3981 #define w2T4B 699
3982 #define w2T5A 700
3983 #define w2T5B 701
3984 #define w2T6A 702
3985 #define w2T6B 703
3986 #define w2T7A 704
3987 #define w2T7B 705
3988 #define w4618C 706
3989 #define w3C2A 707
3990 #define w3C2B 708
3991 #define w2D7A 709
3992 #define w2D7B 710
3993 #define w148A 711
3994 #define w148B 712
3995 #define w148C 713
3996 #define w325 714
3997 #define w3414A 715
3998 #define w3414B 716
3999 #define w3419 717
4000 #define w36MIDA 718
4001 #define w36MISA 719
4002 #define w36MSDA 720
4003 #define w36PBDBA 721
4004 #define w36PBSBA 722
4005 #define w36PSDB 723
4006 #define w3B2 724
4007 #define w3B3 725
4008 #define w3B4 726
4009 #define w3B5 727
4010 #define w3B8 728
4011 #define w3B9A 729
4012 #define w3B10A 730
4013 #define w3B19 731
4014 #define w3B20 732
4015 #define w36PBDBB 733
4016 #define w36PBSBB 734
4017 #define w3B9B 735
4018 #define w3B10B 736
4019 #define w3B9C 737
4020 #define w3B10C 738
4021 #define wCUO256A 739
4022 #define wCUO256B 740
4023 #define wCUO256C 741
4024 #define wCUO256D 742
4025 #define wCUO256E 743
4026 #define wCUO258A 744
4027 #define wCUO258B 745
4028 #define wCUO2T1A 746
4029 #define wCUO2T1B 747
4030 #define wCUO2T1C 748
4031 #define wCUS131A 749
4032 #define wCUS131B 750
4033 #define wCUS131C 751
4034 #define wCUS131D 752
4035 #define wCUS131E 753
4036 #define wCUS133 754
4037 #define wCUS134 755
4038 #define wCUS2G2 756
4039 #define wCUS2M1A 757
4040 #define wCUS2M1B 758
4041 #define wCUS2M1C 759
4042 #define wCUS2M1D 760
4043 #define wCUS2M1E 761
4044 #define wCUS2M2A 762
4045 #define wCUS2M2B 763
4046 #define wCUS2M2C 764
4047 #define wCUS2M3A 765
4048 #define wCUS2M3B 766
4049 #define wCUS2M3C 767
4050 #define wCUS2M3D 768
4051 #define wCUS2M3E 769
4052 #define wCUS2M3F 770
4053 #define wCUS2M3G 771
4054 #define wDOM221A 772
4055 #define wDOM221B 773
4056 #define wDOM221C 774
4057 #define wDOM221D 775
4058 #define wDOM221E 776
4059 #define wDOM221F 777
4060 #define wDOM261A 778
4061 #define wDOM261B 779
4062 #define wDOM263A 780
4063 #define wDOM263B 781
4064 #define wDOM263C 782
4065 #define wDOM265 783
4066 #define wDOM281A 784
4067 #define wDOM281B 785
4068 #define wGIA141 786
4069 #define wGIA142 787
4070 #define wGIA181A 788
4071 #define wGIA181B 789
4072 #define wGIA181C 790
4073 #define wGIA183A 791
4074 #define wGIA183B 792
4075 #define wGIA183C 793
4076 #define wGIA183D 794
4077 #define wGIA1A1A 795
4078 #define wGIA1A1B 796
4079 #define wGIA1A1C 797
4080 #define wGIA1A2A 798
4081 #define wGIA1A2B 799
4082 #define wGIA1A2C 800
4083 #define wGIA1A2D 801
4084 #define wGIA1A4A 802
4085 #define wGIA1A4B 803
4086 #define wGIA1A4C 804
4087 #define wGIA1A5A 805
4088 #define wGIA1A5B 806
4089 #define wGIA1A5C 807
4090 #define wGIA1A5D 808
4091 #define wGIA2G1A 809
4092 #define wGIA2G1B 810
4093 #define wGIA2G1C 811
4094 #define wGIA2G1D 812
4095 #define wGIA2G1E 813
4096 #define wGIA2G1F 814
4097 #define wMOS273A 815
4098 #define wMOS273B 816
4099 #define wMOS273C 817
4100 #define wMOS274A 818
4101 #define wMOS274B 819
4102 #define wMOS2P1 820
4103 #define wMOS2P2 821
4104 #define wSER2C1A 822
4105 #define wSER2C1B 823
4106 #define wSER2C2A 824
4107 #define wSER2C2B 825
4108 #define wSER2C2C 826
4109 #define wSER2C3A 827
4110 #define wSER2C3B 828
4111 #define wSER2C3C 829
4112 #define wSER2C3D 830
4113 #define wSER2C4A 831
4114 #define wSER2C4B 832
4115 #define wSER2C5A 833
4116 #define wSER2C5B 834
4117 #define wSER2C6A 835
4118 #define wSER2C6B 836
4119 #define wSER2C7A 837
4120 #define wSER2C7B 838
4121 #define wSER2C7C 839
4122 #define wSER2C8A 840
4123 #define wSER2C8B 841
4124 #define wSER2C8C 842
4125 #define wSER2C8D 843
4126 #define wSER2C9A 844
4127 #define wSER2C9B 845
4128 #define wSER2C10A 846
4129 #define wSER2C10B 847
4130 #define wSER2I1A 848
4131 #define wSER2I1B 849
4132 #define wSER2I2 850
4133 #define wSER2P1A 851
4134 #define wSER2P1B 852
4135 #define wSER2P2A 853
4136 #define wSER2P2B 854
4137 #define wSER2P2C 855
4138 #define wSER2P3A 856
4139 #define wSER2P3B 857
4140 #define wSER2P3C 858
4141 #define wSER2P3D 859
4142 #define wSER2P4A 860
4143 #define wSER2P4B 861
4144 #define wSER2P5A 862
4145 #define wSER2P5B 863
4146 #define wSER2Q1A 864
4147 #define wSER2Q1B 865
4148 #define wSER2Q1C 866
4149 #define wSER2Q3A 867
4150 #define wSER2Q3B 868
4151 #define wSER2Q3C 869
4152 #define wSER2Q3D 870
4153 #define wSUP261A 871
4154 #define wSUP261B 872
4155 #define wSUP261C 873
4156 #define wSUP262A 874
4157 #define wSUP262B 875
4158 #define wSUP291A 876
4159 #define wSUP291B 877
4160 #define wSUP291C 878
4161 #define wSUP295A 879
4162 #define wSUP295B 880
4163 #define wSUP295C 881
4164 #define wSUP296A 882
4165 #define wSUP296B 883
4166 #define wSUP297 884
4167 #define wPASSODESTROPIETRA2 885
4168 #define wPASSOSINISTROPIETRA2 886
4169 #define wDAR1A1B 887
4170 #define wDAR1A1CA 888
4171 #define wDAR1A1CB 889
4172 #define wDAR1A1CC 890
4173 #define wCOL1A2AA 891
4174 #define wCOL1A2AB 892
4175 #define wCOL1A2AC 893
4176 #define wCOL1A2AD 894
4177 #define wSUP1A2AA 895
4178 #define wSUP1A2AB 896
4179 #define wDAR1A3AA 897
4180 #define wDAR1A3AB 898
4181 #define wVIC1A3AA 899
4182 #define wVIC1A3AB 900
4183 #define wCUO2T2AA 901
4184 #define wCUO2T2AB 902
4185 #define wPSG1C3A 903
4186 #define wVIV451A 904
4187 #define wVIV451B 905
4188 #define wVIV452AA 906
4189 #define wVIV452AB 907
4190 #define wCAC1A5A 908
4191 #define wCAC1A5B 909
4192 #define wVIC212A 910
4193 #define wVIC291A 911
4194 #define wSUP291CA 912
4195 #define wSUP291CB 913
4196 #define wSUP291CC 914
4197 #define wSUP291CD 915
4198 #define wSUP291CE 916
4199 #define wVIC291C 917
4200 #define wVIV471AA 918
4201 #define wVIV471AB 919
4202 #define wJUD222B 920
4203 #define wVIV471B 921
4204 #define wDAR421A 922
4205 #define wDAR481A 923
4206 #define wDAR481B 924
4207 #define wDAR482IN 925
4208 #define wVIC482IN 926
4209 #define wCAC482C 927
4210 #define wKREI347A 928
4211 #define wKREI347BA 929
4212 #define wKREI347BB 930
4213 #define wCORI347A 931
4214 #define wKREI347EA 932
4215 #define wKREI347EB 933
4216 #define wKREI347EC 934
4217 #define wDUKI347DA 935
4218 #define wDUKI347DB 936
4219 #define wDUKI347DC 937
4220 #define wDUKI347DD 938
4221 #define wDUKI347DE 939
4222 #define wDUKI347DF 940
4223 #define wGREI347AA 941
4224 #define wGREI347AB 942
4225 #define wDUKI347FA 943
4226 #define wDUKI347FB 944
4227 #define wGREI347BA 945
4228 #define wGREI347BB 946
4229 #define wAND007C 947
4230 #define wCUO009AA 948
4231 #define wCUO009AB 949
4232 #define wCUO009AC 950
4233 #define wCUO009BA 951
4234 #define wCUO009BB 952
4235 #define wDAR009 953
4236 #define wGIA1A3A 954
4237 #define wGIA1A3B 955
4238 #define wGIA1A3C 956
4239 #define wKRE481A 957
4240 #define wDAR000BA 958
4241 #define wDAR000BB 959
4242 #define wDAR000BC 960
4243 #define wDAR000BD 961
4244 #define wDAR000E 962
4245 #define wDAR000J 963
4246 #define wCARLOOP 964
4247 #define wCARLOOP2 965
4248 #define wCARSTART 966
4249 #define wCARSTOP 967
4250 #define wDAR000TAA 968
4251 #define wDAR000TAB 969
4252 #define wDAR000TAC 970
4253 #define wVIV47A 971
4254 #define wPET000E 972
4255 #define wR1F1A 973
4256 #define wR1F1B 974
4257 #define wR1F1C 975
4258 #define wR1F1D 976
4259 #define wR1F1E 977
4260 #define wSABBIAA 978
4261 #define wSABBIAB 979
4262 #define wSABBIAC 980
4263 #define wSABBIAD 981
4264 #define wVIC1A5 982
4265 #define wRAGGIOSTART 983
4266 #define wCAC2A1 984
4267 #define wVIC221B 985
4268 #define wDOM221AA 986
4269 #define wDOM221AB 987
4270 #define wDAR2C1A 988
4271 #define wDAR2C1B 989
4272 #define wDOM221BA 990
4273 #define wDOM221BB 991
4274 #define wDAR_DOOR_A92A 992
4275 #define wDAR_DOOR_A92B 993
4276 #define wGREI347CA 994
4277 #define wGREI347CB 995
4278 #define wVICI347B 996
4279 #define wDARI347A 997
4280 #define wVIC491B 998
4281 #define wV_3G1A 999
4282 #define wC_3G1A 1000
4283 #define wC_3G1B 1001
4284 #define wC_3G1C 1002
4285 #define wO_3G1A 1003
4286 #define wO_3G1B 1004
4287 #define wPASSODESTROTAPPETO6 1005
4288 #define wPASSOSINISTROTAPPETO6 1006
4289 #define wPASSODESTROTAPPETO7 1007
4290 #define wPASSOSINISTROTAPPETO7 1008
4291 #define wPASSODESTROTAPPETO8 1009
4292 #define wPASSOSINISTROTAPPETO8 1010
4293 #define wPASSODESTROFERRO 1011
4294 #define wPASSOSINISTROFERRO 1012
4295 #define wELICOTTERO 1013
4296 #define wSVEGLIA 1014
4297 #define wFONTANA 1015
4298 #define wLAVATRICE 1016
4299 #define wSUP291AB 1017
4300 #define wSER1A1 1018
4301 #define wSER1A2 1019
4302 #define w336 1020
4303 #define wNASTROFFWDDAR 1021
4304 #define wNASTROFFWDVIC 1022
4305 #define wNASTROSTARTDAR 1023
4306 #define wNASTROSTARTVIC 1024
4307 #define w425B 1025
4308 #define w444C 1026
4309 #define w157B 1027
4310 #define w157C 1028
4311 #define w157D 1029
4312 #define w157E 1030
4313 #define wDOM262 1031
4314 #define w147A 1032
4315 #define w147B 1033
4316 #define w2B13 1034
4317 #define w194A 1035
4318 #define w194B 1036
4319 #define w194C 1037
4320 #define w293C 1038
4321 #define w2A3 1039
4322 #define w2A14 1040
4323 #define w1A7 1041
4324 #define w259 1042
4325 #define w3111 1043
4326 #define wCAMINETTO 1044
4327 #define wPOMPA 1045
4328 #define wRINGHIERAA 1046
4329 #define wRINGHIERAB 1047
4330 #define wCOLONA 1048
4331 #define wCOLONB 1049
4332 #define wCOLONC 1050
4333 #define wCUO257A 1051
4334 #define wCUO257B 1052
4335 #define wCUO257C 1053
4336 #define w391A 1054
4337 #define w391B 1055
4338 #define wPFERRODX 1056
4339 #define wPFERROSX 1057
4340 #define w1D11A 1058
4341 #define w1D11B 1059
4342 #define w372 1060
4343 #define wPASSODESTROCOTTO2 1061
4344 #define wPASSOSINISTROCOTTO2 1062
4345 #define wPENDOLO 1063
4346 #define wMARMOFAKE1 1064
4347 #define wTAPPETOFAKEDX1 1065
4348 #define wTAPPETOFAKESX1 1066
4349 #define wTAPPETOFAKE2 1067
4350 #define wMARMOFAKEDX2 1068
4351 #define wMARMOFAKESX2 1069
4352 #define wMARMOFAKE3 1070
4353 #define wSPAROLENTO 1071
4354 #define wTIC 1072
4355 #define wTAC 1073
4356 #define wDOM2D1 1074
4357 #define wDOM241 1075
4358 #define wLEYLINES 1076
4359 #define wCLICK 1077
4360 #define wMODEM 1078
4361 #define w231074 1079
4362 #define wCAC482B 1080
4363 #define wCAC482KA 1081
4364 #define wCAC482KB 1082
4365 #define wCAC482KC 1083
4366 #define wCAC482KD 1084
4367 #define wCAC482KE 1085
4368 #define wCAC482KF 1086
4369 #define wMANETTEA 1087
4370 #define wMANETTEB 1088
4371 #define wPORTA421 1089
4372 #define wPORTA421A 1090
4373 #define wCUOREBRUCIA 1091
4374 #define wGREIPORTA 1092
4375 #define wDUKIFIN 1093
4376 #define wSCALATAA 1094
4377 #define wSCALATAB 1095
4378 #define wSCALATAC 1096
4379 #define wPORTACHIUSA 1097
4380 #define wMODEMFULL 1098
4381 #define wVIC2C1A 1099
4382 #define wVIC2C1B 1100
4383 #define wDAR2C1 1101
4384 #define w48PORTA 1102
4385 #define wCAC482CTEL 1103
4386 
4387 /* -----------------17/03/98 10.21-------------------
4388  * Menu
4389  * --------------------------------------------------*/
4390 #define mNULL 0
4391 #define mPREDIALOG1 1
4392 #define mPREDIALOG2 2
4393 #define mPREDIALOG3 3
4394 #define mPREDIALOG4 4
4395 #define mENDDIALOG1 5
4396 #define mENDDIALOG2 6
4397 #define mENDDIALOG3 7
4398 #define mQUIT 9
4399 #define mMAIN 10
4400 #define mRTV 11
4401 #define mRTV2 12
4402 #define mRTV3 13
4403 #define mCUOCO 20
4404 #define mCUOCO1 21
4405 #define mCUOCO2 22
4406 #define mDOMESTICA 30
4407 #define mDOMESTICA1 31
4408 #define mDOMESTICA2 32
4409 #define mGIARDINIERE 40
4410 #define mGIARDINIERE1 41
4411 #define mGIARDINIERE2 42
4412 #define mGIARDINIERE3 43
4413 #define mCUSTODE 50
4414 #define mCUSTODE1 51
4415 #define mCUSTODE2 52
4416 #define mSERVETTA 60
4417 #define mSERVETTA1 61
4418 #define mSERVETTA2 62
4419 #define mSUPERVISORE 70
4420 #define mSUPERVISORE1 71
4421 #define mSUPERVISORE2 72
4422 #define mSUPERVISORE3 73
4423 #define mSUPERVISORE4 74
4424 #define mMOGLIESUPERVISORE 80
4425 #define mMOGLIESUPERVISORE1 81
4426 #define mMOGLIESUPERVISORE2 82
4427 #define mMOGLIESUPERVISORE3 83
4428 #define mMOGLIESUPERVISORE4 84
4429 #define mMOGLIESUPERVISORE5 85
4430 #define mCOSEFATTI 90
4431 #define mCOSEFATTI1 91
4432 #define mCOSEFATTI2 92
4433 #define mCOSEFATTI3 93
4434 #define mCOSEFATTI4 94
4435 #define mCOSEFATTI5 95
4436 #define mCOSEFATTI6 96
4437 #define mCOSEFATTI7 97
4438 #define mCOSEFATTI8 98
4439 #define mCOSEFATTI9 99
4440 
4441 /* -----------------17/03/98 10.21-------------------
4442  * Diary
4443  * --------------------------------------------------*/
4444 #define eNULL 0
4445 #define eCUOCO1 2
4446 #define eCUOCO2 3
4447 #define eCUOCO3 4
4448 #define eCUOCO4 5
4449 #define eCUOCO5 6
4450 #define eDOMESTICA1 7
4451 #define eDOMESTICA2 8
4452 #define eDOMESTICA3 9
4453 #define eDOMESTICA4 10
4454 #define eDOMESTICA5 11
4455 #define eDOMESTICA6 12
4456 #define eGIARDINIERE1 13
4457 #define eGIARDINIERE2 14
4458 #define eGIARDINIERE3 15
4459 #define eCUSTODE0 16
4460 #define eCUSTODE1 17
4461 #define eCUSTODE2_prima 18
4462 #define eCUSTODE2_dopo 19
4463 #define eCUSTODE3 20
4464 #define eCUSTODE4_prima 21
4465 #define eCUSTODE4_dopo 22
4466 #define eCUSTODE5 23
4467 #define eCUSTODE6 24
4468 #define eSERVETTA1 25
4469 #define eSERVETTA2 26
4470 #define eSERVETTA3 27
4471 #define eSERVETTA4 28
4472 #define eSERVETTA5 29
4473 #define eSERVETTA6 30
4474 #define eSUPERVISORE0 31
4475 #define eSUPERVISORE1 32
4476 #define eSUPERVISORE2 33
4477 #define eSUPERVISORE3 34
4478 #define eSUPERVISORE4 35
4479 #define eMOGLIESUPERVISORE1 36
4480 #define eMOGLIESUPERVISORE2 37
4481 #define eKRENN1 38
4482 
4483 /* -----------------17/03/98 10.21---------------------
4484  * Dialogs
4485  * --------------------------------------------------*/
4486 #define dNULL 0
4487 
4488 // in questi rtv si vede il mouse
4489 #define dCUOCO 1
4490 #define dCUSTODE 2
4491 #define dDOMESTICA 3
4492 #define dGIARDINIERE 4
4493 #define dMOGLIESUPERVISORE 5
4494 #define dSERVETTA 6
4495 #define dSUPERVISORE 7
4496 
4497 // in questi rtv il mouse viene nascosto
4498 #define dCUOCO_INTERRUPT1 8
4499 #define dCUOCO_INTERRUPT2 9
4500 #define dCUSTODE_INTERRUPT1 10
4501 #define dCUSTODE_INTERRUPT2 11
4502 #define dCUSTODE_INTERRUPT3 12
4503 #define dCUSTODE_INTERRUPT4 13
4504 #define dCUSTODE_INTERRUPT5 14
4505 #define dDOMESTICA_INTERRUPT1 15
4506 #define dDOMESTICA_INTERRUPT2 16
4507 #define dGIARDINIERE_INTERRUPT1 17
4508 #define dGIARDINIERE_INTERRUPT2 18
4509 #define dMOGLIESUP_INTERRUPT1 19
4510 #define dMOGLIESUP_INTERRUPT2 20
4511 #define dR000 21
4512 #define dR001 22
4513 #define dR0010 23
4514 #define dR0014_left 24
4515 #define dR0014_right 25
4516 #define dR002 26
4517 #define dR003 27
4518 #define dR004 28
4519 #define dR005 29
4520 #define dR006 30
4521 #define dR007 31
4522 #define dR008 32
4523 #define dR009 33
4524 #define dR015 34
4525 #define dR111 35
4526 #define dR1A2 36
4527 #define dR1A3 37
4528 #define dR1A5 38
4529 #define dR1C1 39
4530 #define dR1C1_fine 40
4531 #define dR1C2 41
4532 #define dR1C3 42
4533 #define dR1E1 43
4534 #define dR1F1 44
4535 #define dR1a1 45
4536 #define dR1a1_fine_DARRELL 46
4537 #define dR1a1_fine_VICTORIA 47
4538 #define dR1a3 48
4539 #define dR1a4 49
4540 #define dR211 50
4541 #define dR211_dlg 51
4542 #define dR212 52
4543 #define dR221 53
4544 #define dR222 54
4545 #define dR241 55
4546 #define dR291 56
4547 #define dR2A1 57
4548 #define dR2C1 58
4549 #define dR2D1 59
4550 #define dR2P0 60
4551 #define dR2P1 61
4552 #define dR2T1 62
4553 #define dR2T2 63
4554 #define dR321_DAR 64
4555 #define dR321_VIC 65
4556 #define dR347_DARRELL_PART1 66
4557 #define dR347_DARRELL_PART2 67
4558 #define dR347_VICTORIA_PART1 68
4559 #define dR347_VICTORIA_PART2 69
4560 #define dR371 70
4561 #define dR391 71
4562 #define dR411 72
4563 #define dR421_DAR 73
4564 #define dR421_VIC 74
4565 #define dR421_fine 75
4566 #define dR42_porta 76
4567 #define dR451 77
4568 #define dR452 78
4569 #define dR461 79
4570 #define dR471 80
4571 #define dR481 81
4572 #define dR482 82
4573 #define dR483 83
4574 #define dR483_finale 84
4575 #define dR48KRENNSPARA 85
4576 #define dR48_chiavi 86
4577 #define dR491 87
4578 #define dRCALLOTHERPLAYER 88
4579 #define dRCARTELLINA1 89
4580 #define dRCARTELLINA2 90
4581 #define dRCARTELLINA3 91
4582 #define dRCARTELLINA4 92
4583 #define dRCARTELLINA5 93
4584 #define dRCARTELLINA6 94
4585 #define dRCARTELLINA7 95
4586 #define dRCARTELLINA8 96
4587 #define dRCARTELLINAC 97
4588 #define dRGAMEOVER 98
4589 #define dRLOGHI 99
4590 #define dROLDPARCHMENT 100
4591 #define dRUN_R1a1_CENTER 101
4592 #define dRUN_R1a1_RIGHT 102
4593 #define dRWALKMAN 103
4594 #define dRWATCHMAKERSLETTER 104
4595 #define dSUPERVISORE_INTERRUPT1 105
4596 #define dSUPERVISORE_INTERRUPT2 106
4597 #define dSUPERVISORE_INTERRUPT3 107
4598 #define dSUPERVISORE_INTERRUPT4 108
4599 #define dR391_end 109
4600 #define dPROVA 110
4601 
4602 /* -----------------23/06/00 16.38---------109------------
4603 * Music
4604 * ----------------------------------------------------*/
4605 #define nNULL 0
4606 #define nPROVA 1
4607 #define nPROVA2 2
4608 #define nBACK1 3
4609 #define nBACK2 4
4610 #define nBACK3 5
4611 #define nBACK4 6
4612 #define nCRIPTA 7
4613 #define nCHIESA 8
4614 #define nCACCIATORE 9
4615 #define nOROLOGIAIO 10
4616 #define nINSEGUIMENTO 11
4617 #define nFRIGO 12
4618 #define nTRAPPOLA 13
4619 #define nLABIRINTO 14
4620 #define nBACK21 15
4621 #define nBACK22 16
4622 #define nBACK41 17
4623 #define nLABIRINTO1 18
4624 #define nINTRO 19
4625 
4626 
4627 /* -----------------15/01/99 16.41-------------------
4628  * T2D
4629  * --------------------------------------------------*/
4630 #define tNULL 0
4631 #define tSCANNER 1
4632 #define tCOMPUTER 2
4633 #define tPDA 3
4634 #define tDIARIO 4
4635 #define tLETTERA 5
4636 #define tOPTIONS 6
4637 #define tMAINMENU 7
4638 #define tGAMEOVER 8
4639 #define tPROVA 9
4640 
4641 /* -----------------26/04/00 17.01-------------------
4642  * PDA Logs
4643  * --------------------------------------------------*/
4644 #define lNULL 0
4645 #define lPDA1_TITLE0 1
4646 #define lPDA1_TITLE1 2
4647 #define lPDA1_MENU1_ITEM1 3
4648 #define lPDA1_MENU1_ITEM2 4
4649 #define lPDA1_MENU1_ITEM3 5
4650 #define lPDA1_MENU1_ITEM4 6
4651 #define lPDA1_MENU1_ITEM5 7
4652 #define lPDA1_MENU1_ITEM6 8
4653 #define lPDA1_MENU1_ITEM7 9
4654 #define lPDA1_MENU1_ITEM8 10
4655 #define lPDA2_TITLE2 11
4656 #define lPDA2_TITLE3_CUO 12
4657 #define lPDA2_MENU3_CUO_ITEM1 13
4658 #define lPDA2_MENU3_CUO_ITEM2 14
4659 #define lPDA2_MENU3_CUO_ITEM3 15
4660 #define lPDA2_TITLE4_DOM 16
4661 #define lPDA2_MENU4_DOM_ITEM1 17
4662 #define lPDA2_MENU4_DOM_ITEM2 18
4663 #define lPDA2_TITLE5_RAUL 19
4664 #define lPDA2_MENU5_RAUL_ITEM1 20
4665 #define lPDA2_MENU5_RAUL_ITEM2 21
4666 #define lPDA2_MENU5_RAUL_ITEM3 22
4667 #define lPDA2_MENU5_RAUL_ITEM4 23
4668 #define lPDA2_MENU5_RAUL_ITEM5 24
4669 #define lPDA2_TITLE6_CUS 25
4670 #define lPDA2_MENU6_CUS_ITEM1 26
4671 #define lPDA2_MENU6_CUS_ITEM2 27
4672 #define lPDA2_MENU6_CUS_ITEM3 28
4673 #define lPDA2_MENU6_CUS_ITEM4 29
4674 #define lPDA2_TITLE7_SER 30
4675 #define lPDA2_MENU7_SER_ITEM1 31
4676 #define lPDA2_MENU7_SER_ITEM2 32
4677 #define lPDA2_MENU7_SER_ITEM3 33
4678 #define lPDA2_TITLE8_SUP 34
4679 #define lPDA2_MENU8_SUP_ITEM1 35
4680 #define lPDA2_MENU8_SUP_ITEM2 36
4681 #define lPDA2_MENU8_SUP_ITEM3 37
4682 #define lPDA2_MENU8_SUP_ITEM4 38
4683 #define lPDA2_MENU8_SUP_ITEM5 39
4684 #define lPDA2_MENU8_SUP_ITEM6 40
4685 #define lPDA2_TITLE9_MOGL 41
4686 #define lPDA2_MENU9_MOGL_ITEM1 42
4687 #define lPDA2_MENU9_MOGL_ITEM2 43
4688 #define lPDA3_TITLE10 44
4689 #define lPDA3_TITLE11_CORONA 45
4690 #define lPDA3_MENU11_CORONA_ITEM1 46
4691 #define lPDA3_MENU11_CORONA_ITEM2 47
4692 #define lPDA3_MENU11_CORONA_ITEM3 48
4693 #define lPDA3_TITLE12_DUKES 49
4694 #define lPDA3_MENU12_DUKES_ITEM1 50
4695 #define lPDA3_MENU12_DUKES_ITEM2 51
4696 #define lPDA3_TITLE13_KRENN 52
4697 #define lPDA3_MENU13_KRENN_ITEM1 53
4698 #define lPDA3_MENU13_KRENN_ITEM2 54
4699 #define lPDA3_TITLE14_VALENCIA 55
4700 #define lPDA3_MENU14_VALENCIA_ITEM1 56
4701 #define lPDA3_MENU14_VALENCIA_ITEM2 57
4702 #define lPDA3_TITLE15_CONCLUSIONS 58
4703 #define lPDA3_MENU15_CONCLUSIONS_ITEM1 59
4704 #define lPDA3_MENU15_CONCLUSIONS_ITEM2 60
4705 #define lPDA3_MENU15_CONCLUSIONS_ITEM3 61
4706 #define lPDA3_MENU15_CONCLUSIONS_ITEM4 62
4707 #define lPDA4_TITLE16 63
4708 #define lPDA4_TITLE17 64
4709 #define lPDA4_MENU17_ITEM1 65
4710 #define lPDA4_TITLE18 66
4711 #define lPDA4_MENU18_ITEM1 67
4712 #define lPDA4_TITLE19 68
4713 #define lPDA4_MENU19_ITEM1 69
4714 #define lPDA4_TITLE20 70
4715 #define lPDA4_MENU20_ITEM1 71
4716 #define lPDA4_TITLE21 72
4717 #define lPDA4_MENU21_ITEM1 73
4718 #define lPDA5_TITLE22 74
4719 #define lPDA5_TITLE23 75
4720 #define lPDA5_MENU23_ITEM1 76
4721 #define lPDA5_MENU23_ITEM2 77
4722 #define lPDA5_TITLE24 78
4723 #define lPDA5_MENU24_ITEM1 79
4724 #define lPDA5_TITLE25 80
4725 #define lPDA5_MENU25_ITEM1 81
4726 #define lPDA5_TITLE26 82
4727 #define lPDA5_MENU26_ITEM1 83
4728 #define lPDA5_MENU26_ITEM2 84
4729 #define lPDA5_MENU26_ITEM3 85
4730 #define lPDA5_TITLE27 86
4731 #define lPDA5_MENU27_ITEM1 87
4732 #define lPDA6_TITLE28 88
4733 #define lPDA6_TITLE29 89
4734 #define lPDA6_MENU29_ITEM1 90
4735 #define lPDA6_MENU29_ITEM2 91
4736 #define lPDA6_TITLE30 92
4737 #define lPDA6_MENU30_ITEM1 93
4738 #define lPDA6_TITLE31 94
4739 #define lPDA6_MENU31_ITEM1 95
4740 #define lPDA6_MENU31_ITEM2 96
4741 #define lPDA6_TITLE32 97
4742 #define lPDA6_MENU32_ITEM1 98
4743 #define lPDA6_MENU32_ITEM2 99
4744 //aggiunte
4745 #define lPDA5_MENU25_ITEM2 100
4746 
4747 /* -----------------17/03/98 10.21-------------------
4748  * END.
4749  * --------------------------------------------------*/
4750 
4751 } // End of namespace Watchmaker
4752 
4753 #endif // WATCHMAKER_DEFINE_H
Definition: 2d_stuff.h:30