msgidx.inc 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681
  1. type tmsgconst=(
  2. general_t_compilername,
  3. general_d_sourceos,
  4. general_i_targetos,
  5. general_t_exepath,
  6. general_t_unitpath,
  7. general_t_includepath,
  8. general_t_librarypath,
  9. general_t_objectpath,
  10. general_i_abslines_compiled,
  11. general_f_no_memory_left,
  12. general_i_writingresourcefile,
  13. general_e_errorwritingresourcefile,
  14. scan_f_end_of_file,
  15. scan_f_string_exceeds_line,
  16. scan_f_illegal_char,
  17. scan_f_syn_expected,
  18. scan_t_start_include_file,
  19. scan_w_comment_level,
  20. scan_n_far_directive_ignored,
  21. scan_n_stack_check_global_under_linux,
  22. scan_n_ignored_switch,
  23. scan_w_illegal_switch,
  24. scan_w_switch_is_global,
  25. scan_e_illegal_char_const,
  26. scan_f_cannot_open_input,
  27. scan_f_cannot_open_includefile,
  28. scan_e_too_much_endifs,
  29. scan_w_only_pack_records,
  30. scan_w_only_pack_enum,
  31. scan_e_endif_expected,
  32. scan_e_preproc_syntax_error,
  33. scan_e_error_in_preproc_expr,
  34. scan_w_marco_cut_after_255_chars,
  35. scan_e_endif_without_if,
  36. scan_f_user_defined,
  37. scan_e_user_defined,
  38. scan_w_user_defined,
  39. scan_n_user_defined,
  40. scan_h_user_defined,
  41. scan_i_user_defined,
  42. scan_e_keyword_cant_be_a_macro,
  43. scan_f_macro_buffer_overflow,
  44. scan_w_macro_deep_ten,
  45. scan_e_wrong_styled_switch,
  46. scan_d_handling_switch,
  47. scan_c_endif_found,
  48. scan_c_ifdef_found,
  49. scan_c_ifopt_found,
  50. scan_c_if_found,
  51. scan_c_ifndef_found,
  52. scan_c_else_found,
  53. scan_c_skipping_until,
  54. scan_i_press_enter,
  55. scan_w_unsupported_switch,
  56. scan_w_illegal_directive,
  57. scan_t_back_in,
  58. scan_w_unsupported_app_type,
  59. scan_w_app_type_not_support,
  60. scan_w_decription_not_support,
  61. scan_n_version_not_support,
  62. scan_n_only_exe_version,
  63. scan_w_wrong_version_ignored,
  64. scan_w_unsupported_asmmode_specifier,
  65. scan_w_no_asm_reader_switch_inside_asm,
  66. scan_e_wrong_switch_toggle,
  67. scan_e_resourcefiles_not_supported,
  68. scan_w_include_env_not_found,
  69. scan_e_invalid_maxfpureg_value,
  70. parser_e_syntax_error,
  71. parser_w_proc_far_ignored,
  72. parser_w_proc_near_ignored,
  73. parser_w_proc_register_ignored,
  74. parser_e_no_dll_file_specified,
  75. parser_e_export_name_double,
  76. parser_e_export_ordinal_double,
  77. parser_e_export_invalid_index,
  78. parser_w_parser_reloc_no_debug,
  79. parser_w_parser_win32_debug_needs_WN,
  80. parser_e_constructorname_must_be_init,
  81. parser_e_destructorname_must_be_done,
  82. parser_e_illegal_open_parameter,
  83. parser_e_proc_inline_not_supported,
  84. parser_w_priv_meth_not_virtual,
  85. parser_w_constructor_should_be_public,
  86. parser_w_destructor_should_be_public,
  87. parser_n_only_one_destructor,
  88. parser_e_no_local_objects,
  89. parser_f_no_anonym_objects,
  90. parser_object_has_no_vmt,
  91. parser_e_illegal_parameter_list,
  92. parser_e_wrong_parameter_type,
  93. parser_e_wrong_parameter_size,
  94. parser_e_overloaded_no_procedure,
  95. parser_e_overloaded_have_same_parameters,
  96. parser_e_header_dont_match_forward,
  97. parser_e_header_different_var_names,
  98. parser_n_duplicate_enum,
  99. parser_n_interface_name_diff_implementation_name,
  100. parser_e_no_with_for_variable_in_other_segments,
  101. parser_e_too_much_lexlevel,
  102. parser_e_range_check_error,
  103. parser_w_range_check_error,
  104. parser_e_double_caselabel,
  105. parser_e_case_lower_less_than_upper_bound,
  106. parser_e_type_const_not_possible,
  107. parser_e_no_overloaded_procvars,
  108. parser_e_invalid_string_size,
  109. parser_w_use_extended_syntax_for_objects,
  110. parser_w_no_new_dispose_on_void_pointers,
  111. parser_e_no_new_dispose_on_void_pointers,
  112. parser_e_class_id_expected,
  113. parser_e_no_type_not_allowed_here,
  114. parser_e_methode_id_expected,
  115. parser_e_header_dont_match_any_member,
  116. parser_p_procedure_start,
  117. parser_e_error_in_real,
  118. parser_e_fail_only_in_constructor,
  119. parser_e_no_paras_for_destructor,
  120. parser_e_only_class_methods_via_class_ref,
  121. parser_e_only_class_methods,
  122. parser_e_case_mismatch,
  123. parser_e_illegal_symbol_exported,
  124. parser_w_should_use_override,
  125. parser_e_nothing_to_be_overridden,
  126. parser_e_no_procedure_to_access_property,
  127. parser_w_stored_not_implemented,
  128. parser_e_ill_property_access_sym,
  129. parser_e_cant_access_protected_member,
  130. parser_e_cant_access_private_member,
  131. parser_w_overloaded_are_not_both_virtual,
  132. parser_w_overloaded_are_not_both_non_virtual,
  133. parser_e_overloaded_methodes_not_same_ret,
  134. parser_e_dont_nest_export,
  135. parser_e_methods_dont_be_export,
  136. parser_e_call_by_ref_without_typeconv,
  137. parser_e_no_super_class,
  138. parser_e_self_not_in_method,
  139. parser_e_generic_methods_only_in_methods,
  140. parser_e_illegal_colon_qualifier,
  141. parser_e_illegal_set_expr,
  142. parser_e_pointer_to_class_expected,
  143. parser_e_expr_have_to_be_constructor_call,
  144. parser_e_expr_have_to_be_destructor_call,
  145. parser_e_invalid_record_const,
  146. parser_e_false_with_expr,
  147. parser_e_void_function,
  148. parser_e_constructors_always_objects,
  149. parser_e_operator_not_overloaded,
  150. parser_e_no_reraise_possible,
  151. parser_e_no_new_or_dispose_for_classes,
  152. parser_e_asm_incomp_with_function_return,
  153. parser_e_procedure_overloading_is_off,
  154. parser_e_overload_operator_failed,
  155. parser_e_comparative_operator_return_boolean,
  156. parser_e_only_virtual_methods_abstract,
  157. parser_f_unsupported_feature,
  158. parser_e_mix_of_classes_and_objects,
  159. parser_w_unknown_proc_directive_ignored,
  160. parser_e_absolute_only_one_var,
  161. parser_e_absolute_only_to_var_or_const,
  162. parser_e_initialized_only_one_var,
  163. parser_e_abstract_no_definition,
  164. parser_e_overloaded_must_be_all_global,
  165. parser_w_virtual_without_constructor,
  166. parser_m_macro_defined,
  167. parser_m_macro_undefined,
  168. parser_m_macro_set_to,
  169. parser_i_compiling,
  170. parser_u_parsing_interface,
  171. parser_u_parsing_implementation,
  172. parser_d_compiling_second_time,
  173. parser_e_no_paras_allowed,
  174. parser_e_no_property_found_to_override,
  175. parser_e_only_one_default_property,
  176. parser_e_property_need_paras,
  177. parser_e_constructor_cannot_be_not_virtual,
  178. parser_e_no_default_property_available,
  179. parser_e_cant_have_published,
  180. parser_e_forward_declaration_must_be_resolved,
  181. parser_e_no_local_operator,
  182. parser_e_proc_dir_not_allowed_in_interface,
  183. parser_e_proc_dir_not_allowed_in_implementation,
  184. parser_e_proc_dir_not_allowed_in_procvar,
  185. parser_e_function_already_declared_public_forward,
  186. parser_e_not_external_and_export,
  187. parser_e_name_keyword_expected,
  188. parser_w_not_supported_for_inline,
  189. parser_w_inlining_disabled,
  190. parser_i_writing_browser_log,
  191. parser_h_maybe_deref_caret_missing,
  192. parser_f_assembler_reader_not_supported,
  193. parser_e_proc_dir_conflict,
  194. parser_e_call_convention_dont_match_forward,
  195. parser_e_register_calling_not_supported,
  196. parser_e_property_cant_have_a_default_value,
  197. parser_e_property_default_value_must_const,
  198. parser_e_cant_publish_that,
  199. parser_e_cant_publish_that_property,
  200. parser_w_empty_import_name,
  201. parser_e_empty_import_name,
  202. parser_e_used_proc_name_changed,
  203. parser_e_division_by_zero,
  204. parser_e_invalid_float_operation,
  205. parser_e_array_lower_less_than_upper_bound,
  206. parser_e_string_larger_array,
  207. parser_e_ill_msg_expr,
  208. parser_e_ill_msg_param,
  209. parser_e_duplicate_message_label,
  210. parser_e_self_in_non_message_handler,
  211. parser_e_threadvars_only_sg,
  212. parser_f_direct_assembler_not_allowed,
  213. parser_w_no_objpas_use_mode,
  214. parser_e_no_object_override,
  215. parser_e_cant_use_inittable_here,
  216. parser_e_resourcestring_only_sg,
  217. parser_e_exit_with_argument_not__possible,
  218. parser_e_stored_property_must_be_boolean,
  219. parser_e_ill_property_storage_sym,
  220. parser_e_only_publishable_classes_can__be_published,
  221. parser_e_proc_directive_expected,
  222. parser_e_invalid_property_index_value,
  223. parser_e_procname_to_short_for_export,
  224. parser_e_dlltool_unit_var_problem,
  225. parser_e_dlltool_unit_var_problem2,
  226. type_e_mismatch,
  227. type_e_incompatible_types,
  228. type_e_not_equal_types,
  229. type_e_type_id_expected,
  230. type_e_variable_id_expected,
  231. type_e_integer_expr_expected,
  232. type_e_boolean_expr_expected,
  233. type_e_ordinal_expr_expected,
  234. type_e_pointer_type_expected,
  235. type_e_class_type_expected,
  236. type_e_varid_or_typeid_expected,
  237. type_e_cant_eval_constant_expr,
  238. type_e_set_element_are_not_comp,
  239. type_e_set_operation_unknown,
  240. type_w_convert_real_2_comp,
  241. type_h_use_div_for_int,
  242. type_e_strict_var_string_violation,
  243. type_e_succ_and_pred_enums_with_assign_not_possible,
  244. type_e_cant_read_write_type,
  245. type_e_typeconflict_in_set,
  246. type_w_maybe_wrong_hi_lo,
  247. type_e_integer_or_real_expr_expected,
  248. type_e_wrong_type_in_array_constructor,
  249. type_e_wrong_parameter_type,
  250. type_e_no_method_and_procedure_not_compatible,
  251. type_e_wrong_math_argument,
  252. type_e_no_addr_of_constant,
  253. type_e_argument_cant_be_assigned,
  254. type_e_cannot_local_proc_to_procvar,
  255. type_e_no_assign_to_addr,
  256. type_e_no_assign_to_const,
  257. sym_e_id_not_found,
  258. sym_f_internal_error_in_symtablestack,
  259. sym_e_duplicate_id,
  260. sym_h_duplicate_id_where,
  261. sym_e_unknown_id,
  262. sym_e_forward_not_resolved,
  263. sym_f_id_already_typed,
  264. sym_e_error_in_type_def,
  265. sym_e_type_id_not_defined,
  266. sym_e_forward_type_not_resolved,
  267. sym_e_only_static_in_static,
  268. sym_e_invalid_call_tvarsymmangledname,
  269. sym_f_type_must_be_rec_or_class,
  270. sym_e_no_instance_of_abstract_object,
  271. sym_w_label_not_defined,
  272. sym_e_label_used_and_not_defined,
  273. sym_e_ill_label_decl,
  274. sym_e_goto_and_label_not_supported,
  275. sym_e_label_not_found,
  276. sym_e_id_is_no_label_id,
  277. sym_e_label_already_defined,
  278. sym_e_ill_type_decl_set,
  279. sym_e_class_forward_not_resolved,
  280. sym_h_para_identifier_not_used,
  281. sym_n_local_identifier_not_used,
  282. sym_h_para_identifier_only_set,
  283. sym_n_local_identifier_only_set,
  284. sym_h_local_symbol_not_used,
  285. sym_n_private_identifier_not_used,
  286. sym_n_private_identifier_only_set,
  287. sym_n_private_method_not_used,
  288. sym_e_set_expected,
  289. sym_w_function_result_not_set,
  290. sym_e_illegal_field,
  291. sym_n_uninitialized_local_variable,
  292. sym_n_uninitialized_variable,
  293. sym_e_id_no_member,
  294. sym_b_param_list,
  295. sym_e_segment_too_large,
  296. cg_e_break_not_allowed,
  297. cg_e_continue_not_allowed,
  298. cg_e_too_complex_expr,
  299. cg_e_illegal_expression,
  300. cg_e_invalid_integer,
  301. cg_e_invalid_qualifier,
  302. cg_e_upper_lower_than_lower,
  303. cg_e_illegal_count_var,
  304. cg_e_cant_choose_overload_function,
  305. cg_e_parasize_too_big,
  306. cg_e_illegal_type_conversion,
  307. cg_d_pointer_to_longint_conv_not_portable,
  308. cg_e_file_must_call_by_reference,
  309. cg_e_cant_use_far_pointer_there,
  310. cg_e_var_must_be_reference,
  311. cg_e_dont_call_exported_direct,
  312. cg_w_member_cd_call_from_method,
  313. cg_n_inefficient_code,
  314. cg_w_unreachable_code,
  315. cg_e_stackframe_with_esp,
  316. cg_e_cant_call_abstract_method,
  317. cg_f_internal_error_in_getfloatreg,
  318. cg_f_unknown_float_type,
  319. cg_f_secondvecn_base_defined_twice,
  320. cg_f_extended_cg68k_not_supported,
  321. cg_f_32bit_not_supported_in_68000,
  322. cg_f_internal_error_in_secondinline,
  323. cg_d_register_weight,
  324. cg_e_stacklimit_in_local_routine,
  325. cg_d_stackframe_omited,
  326. cg_w_64bit_range_check_not_supported,
  327. cg_e_unable_inline_object_methods,
  328. cg_e_unable_inline_procvar,
  329. cg_e_no_code_for_inline_stored,
  330. cg_e_no_call_to_interrupt,
  331. cg_e_can_access_element_zero,
  332. cg_e_include_not_implemented,
  333. cg_e_cannot_call_cons_dest_inside_with,
  334. cg_e_cannot_call_message_direct,
  335. cg_e_goto_inout_of_exception_block,
  336. cg_e_control_flow_outside_finally,
  337. asmr_d_start_reading,
  338. asmr_d_finish_reading,
  339. asmr_e_none_label_contain_at,
  340. asmr_w_override_op_not_supported,
  341. asmr_e_building_record_offset,
  342. asmr_e_offset_without_identifier,
  343. asmr_e_type_without_identifier,
  344. asmr_e_no_local_or_para_allowed,
  345. asmr_e_need_offset,
  346. asmr_e_cant_have_multiple_relocatable_symbols,
  347. asmr_e_only_add_relocatable_symbol,
  348. asmr_e_invalid_constant_expression,
  349. asmr_e_relocatable_symbol_not_allowed,
  350. asmr_e_invalid_reference_syntax,
  351. asmr_e_local_label_not_allowed_as_ref,
  352. asmr_e_wrong_base_index,
  353. asmr_e_wrong_scale_factor,
  354. asmr_e_multiple_index,
  355. asmr_e_invalid_operand_type,
  356. asmr_e_invalid_string_as_opcode_operand,
  357. asmr_w_CODE_and_DATA_not_supported,
  358. asmr_e_null_label_ref_not_allowed,
  359. asmr_e_ev_zero_divide,
  360. asmr_e_ev_stack_overflow,
  361. asmr_e_ev_stack_underflow,
  362. asmr_e_ev_invalid_number,
  363. asmr_e_ev_invalid_op,
  364. asmr_e_escape_seq_ignored,
  365. asmr_e_invalid_symbol_ref,
  366. asmr_w_fwait_emu_prob,
  367. asmr_w_calling_overload_func,
  368. asmr_e_unsupported_symbol_type,
  369. asmr_e_constant_out_of_bounds,
  370. asmr_e_error_converting_decimal,
  371. asmr_e_error_converting_octal,
  372. asmr_e_error_converting_binary,
  373. asmr_e_error_converting_hexadecimal,
  374. asmr_h_direct_global_to_mangled,
  375. asmr_w_direct_global_is_overloaded_func,
  376. asmr_e_cannot_use_SELF_outside_a_method,
  377. asmr_e_cannot_use_OLDEBP_outside_nested_procedure,
  378. asmr_e_void_function,
  379. asmr_e_SEG_not_supported,
  380. asmr_e_size_suffix_and_dest_dont_match,
  381. asmr_w_size_suffix_and_dest_dont_match,
  382. asmr_e_syntax_error,
  383. asmr_e_invalid_opcode_and_operand,
  384. asmr_e_syn_operand,
  385. asmr_e_syn_constant,
  386. asmr_e_invalid_string_expression,
  387. asmr_w_const32bit_for_address,
  388. asmr_e_invalid_or_missing_opcode,
  389. asmr_e_invalid_prefix_and_opcode,
  390. asmr_e_invalid_override_and_opcode,
  391. asmr_e_too_many_operands,
  392. asmr_w_near_ignored,
  393. asmr_w_far_ignored,
  394. asmr_e_dup_local_sym,
  395. asmr_e_unknown_local_sym,
  396. asmr_e_unknown_label_identifier,
  397. asmr_e_invalid_fpu_register,
  398. asmr_e_nor_not_supported,
  399. asmr_w_modulo_not_supported,
  400. asmr_e_invalid_float_const,
  401. asmr_e_invalid_float_expr,
  402. asmr_e_wrong_sym_type,
  403. asmr_e_cannot_index_relative_var,
  404. asmr_e_invalid_seg_override,
  405. asmr_w_id_supposed_external,
  406. asmr_e_string_not_allowed_as_const,
  407. asmr_e_no_var_type_specified,
  408. asmr_w_assembler_code_not_returned_to_text,
  409. asmr_e_not_directive_or_local_symbol,
  410. asmr_w_using_defined_as_local,
  411. asmr_e_dollar_without_identifier,
  412. asmr_w_32bit_const_for_address,
  413. asmr_n_align_is_target_specific,
  414. asmr_e_cannot_access_field_directly_for_parameters,
  415. asmr_e_cannot_access_object_field_directly,
  416. asmw_f_too_many_asm_files,
  417. asmw_f_assembler_output_not_supported,
  418. asmw_f_comp_not_supported,
  419. asmw_f_direct_not_supported,
  420. asmw_e_alloc_data_only_in_bss,
  421. asmw_f_no_binary_writer_selected,
  422. asmw_e_opcode_not_in_table,
  423. asmw_e_invalid_opcode_and_operands,
  424. asmw_e_16bit_not_supported,
  425. asmw_e_invalid_effective_address,
  426. asmw_e_immediate_or_reference_expected,
  427. asmw_e_value_exceeds_bounds,
  428. asmw_e_short_jmp_out_of_range,
  429. asmw_e_undefined_label,
  430. exec_w_source_os_redefined,
  431. exec_i_assembling_pipe,
  432. exec_d_cant_create_asmfile,
  433. exec_w_assembler_not_found,
  434. exec_t_using_assembler,
  435. exec_w_error_while_assembling,
  436. exec_w_cant_call_assembler,
  437. exec_i_assembling,
  438. exec_i_assembling_smart,
  439. exec_w_objfile_not_found,
  440. exec_w_libfile_not_found,
  441. exec_w_error_while_linking,
  442. exec_w_cant_call_linker,
  443. exec_i_linking,
  444. exec_w_util_not_found,
  445. exec_t_using_util,
  446. exec_e_exe_not_supported,
  447. exec_e_dll_not_supported,
  448. exec_i_closing_script,
  449. exec_w_res_not_found,
  450. exec_i_compilingresource,
  451. execinfo_f_cant_process_executable,
  452. execinfo_f_cant_open_executable,
  453. execinfo_x_codesize,
  454. execinfo_x_initdatasize,
  455. execinfo_x_uninitdatasize,
  456. execinfo_x_stackreserve,
  457. execinfo_x_stackcommit,
  458. unit_t_unitsearch,
  459. unit_t_ppu_loading,
  460. unit_u_ppu_name,
  461. unit_u_ppu_flags,
  462. unit_u_ppu_crc,
  463. unit_u_ppu_time,
  464. unit_u_ppu_file_too_short,
  465. unit_u_ppu_invalid_header,
  466. unit_u_ppu_invalid_version,
  467. unit_u_ppu_invalid_processor,
  468. unit_u_ppu_invalid_target,
  469. unit_u_ppu_source,
  470. unit_u_ppu_write,
  471. unit_f_ppu_cannot_write,
  472. unit_f_ppu_read_error,
  473. unit_f_ppu_read_unexpected_end,
  474. unit_f_ppu_invalid_entry,
  475. unit_f_ppu_dbx_count_problem,
  476. unit_e_illegal_unit_name,
  477. unit_f_too_much_units,
  478. unit_f_circular_unit_reference,
  479. unit_f_cant_compile_unit,
  480. unit_f_cant_find_ppu,
  481. unit_w_unit_name_error,
  482. unit_f_unit_name_error,
  483. unit_w_switch_us_missed,
  484. unit_f_errors_in_unit,
  485. unit_u_load_unit,
  486. unit_u_recompile_crc_change,
  487. unit_u_recompile_source_found_alone,
  488. unit_u_recompile_staticlib_is_older,
  489. unit_u_recompile_sharedlib_is_older,
  490. unit_u_recompile_obj_and_asm_older,
  491. unit_u_recompile_obj_older_than_asm,
  492. unit_u_start_parse_interface,
  493. unit_u_start_parse_implementation,
  494. unit_u_second_load_unit,
  495. unit_u_check_time,
  496. option_usage,
  497. option_only_one_source_support,
  498. option_def_only_for_os2,
  499. option_no_nested_response_file,
  500. option_no_source_found,
  501. option_no_option_found,
  502. option_illegal_para,
  503. option_help_pages_para,
  504. option_too_many_cfg_files,
  505. option_unable_open_file,
  506. option_reading_further_from,
  507. option_target_is_already_set,
  508. option_no_shared_lib_under_dos,
  509. option_too_many_ifdef,
  510. option_too_many_endif,
  511. option_too_less_endif,
  512. option_no_debug_support,
  513. option_no_debug_support_recompile_fpc,
  514. option_obsolete_switch,
  515. option_obsolete_switch_use_new,
  516. option_switch_bin_to_src_assembler,
  517. option_logo_start,
  518. option_logo_end,
  519. option_info_start,
  520. option_info1,
  521. option_info2,
  522. option_info3,
  523. option_info4,
  524. option_info5,
  525. option_info6,
  526. option_info7,
  527. option_info8,
  528. option_info_end,
  529. ol_begin,
  530. ol001,
  531. ol002,
  532. ol003,
  533. ol004,
  534. ol005,
  535. ol006,
  536. ol007,
  537. ol008,
  538. ol009,
  539. ol010,
  540. ol011,
  541. ol012,
  542. ol013,
  543. ol014,
  544. ol015,
  545. ol016,
  546. ol017,
  547. ol018,
  548. ol019,
  549. ol020,
  550. ol021,
  551. ol022,
  552. ol023,
  553. ol024,
  554. ol025,
  555. ol026,
  556. ol027,
  557. ol028,
  558. ol029,
  559. ol030,
  560. ol031,
  561. ol032,
  562. ol033,
  563. ol034,
  564. ol035,
  565. ol036,
  566. ol037,
  567. ol038,
  568. ol039,
  569. ol040,
  570. ol041,
  571. ol042,
  572. ol043,
  573. ol044,
  574. ol045,
  575. ol046,
  576. ol047,
  577. ol048,
  578. ol049,
  579. ol050,
  580. ol051,
  581. ol052,
  582. ol053,
  583. ol054,
  584. ol055,
  585. ol056,
  586. ol057,
  587. ol058,
  588. ol059,
  589. ol060,
  590. ol061,
  591. ol062,
  592. ol063,
  593. ol064,
  594. ol065,
  595. ol066,
  596. ol067,
  597. ol068,
  598. ol069,
  599. ol070,
  600. ol071,
  601. ol072,
  602. ol073,
  603. ol074,
  604. ol075,
  605. ol076,
  606. ol077,
  607. ol078,
  608. ol079,
  609. ol080,
  610. ol081,
  611. ol082,
  612. ol083,
  613. ol084,
  614. ol085,
  615. ol086,
  616. ol087,
  617. ol088,
  618. ol089,
  619. ol090,
  620. ol091,
  621. ol092,
  622. ol093,
  623. ol094,
  624. ol095,
  625. ol096,
  626. ol097,
  627. ol098,
  628. ol099,
  629. ol100,
  630. ol101,
  631. ol102,
  632. ol103,
  633. ol104,
  634. ol105,
  635. ol106,
  636. ol107,
  637. ol108,
  638. ol109,
  639. ol110,
  640. ol111,
  641. ol112,
  642. ol113,
  643. ol114,
  644. ol115,
  645. ol116,
  646. ol117,
  647. ol118,
  648. ol119,
  649. ol120,
  650. ol121,
  651. ol122,
  652. ol123,
  653. ol124,
  654. ol125,
  655. ol126,
  656. ol127,
  657. ol128,
  658. ol129,
  659. ol130,
  660. ol131,
  661. ol132,
  662. ol133,
  663. ol134,
  664. ol135,
  665. ol136,
  666. ol137,
  667. ol138,
  668. ol139,
  669. ol140,
  670. ol141,
  671. ol142,
  672. ol143,
  673. ol144,
  674. ol145,
  675. ol146,
  676. ol147,
  677. ol148,
  678. ol149,
  679. ol_end,
  680. endmsgconst
  681. );