From 835ea2656217614d22c7108f60944f86e2553172 Mon Sep 17 00:00:00 2001 From: crc <> Date: Thu, 12 Sep 2024 13:33:16 +0000 Subject: [PATCH] add descriptions from the glossary to the image FossilOrigin-Name: 88504acddfe3bee2544679db8f644601a40c8bc654735a1e7f1df4bab965f14f --- Configuration.mk | 1 + RELEASE-NOTES | 2 + interface/descriptions.retro | 677 +++++++ vm/nga-c/image.c | 3374 +++++++++++++++++++++++++++------- 4 files changed, 3367 insertions(+), 687 deletions(-) create mode 100644 interface/descriptions.retro diff --git a/Configuration.mk b/Configuration.mk index 82bf1b9..7ba5901 100644 --- a/Configuration.mk +++ b/Configuration.mk @@ -92,6 +92,7 @@ DEVICES += interface/error.retro DEVICES += interface/ioctl.retro DEVICES += interface/final.retro DEVICES += interface/library.retro +DEVICES += interface/descriptions.retro # ------------------------------------------------------------- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 02d0a1f..2505e73 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -41,6 +41,8 @@ - `sigil:(` extended to store stack comments (with a form of `(:comment)` - add `d:describe` + - stack comments & descriptions are now part of the standard + system image - library diff --git a/interface/descriptions.retro b/interface/descriptions.retro new file mode 100644 index 0000000..b70b7e0 --- /dev/null +++ b/interface/descriptions.retro @@ -0,0 +1,677 @@ +~~~ +:d:set-description (:ss-) + d:lookup dup n:-zero? [ d:descr &s:keep dip store ] &drop-pair choose ; +~~~ + +~~~ +'Return_ASCII:NUL_(0). '$ d:set-description +'Return_an_empty_string. '' d:set-description +'Provide_a_visual_indication_of_a_code_group. '( d:set-description +'Provide_a_visual_indication_of_a_code_group. ') d:set-description +'Multiply_`n1`_by_`n2`_and_return_the_result. '* d:set-description +'Multiply_`x`_by_`y`_and_then_divide_by_`z`_and_return_the_integer_part_of_the_quotient_and_remainder. '*/mod d:set-description +'Add_`n1`_to_`n2`_and_return_the_result. '+ d:set-description +'Store_the_specified_value_into_the_memory_at_`here`_and_increment_`Heap`_by_1. ', d:set-description +'Subtract_`n2`_from_`n1`_and_return_the_result. '- d:set-description +'Switch_to_the_exposed_(public)_portion_of_a_lexical_namespace. '---reveal--- d:set-description +'Compare_two_values_for_inequality._Returns_`TRUE`_if_they_are_not_equal_or_`FALSE`_otherwise. '-eq? d:set-description +'Execute_the_quotation_if_the_flag_is_`FALSE`. '-if d:set-description +'Execute_the_quotation_if_the_flag_is_`FALSE`._If_false,_also_exit_the_word. '-if; d:set-description +'Divide_`n`_by_`m`_and_return_the_integer_part_of_the_quotient. '/ d:set-description +'"Ignore_any_tokens_remaining_on_the_current_line._Works_with_files_and_the_interactive_""listener""." '// d:set-description +'Divide_`n`_by_`m`_and_return_the_integer_part_of_the_quotient_and_remainder. '/mod d:set-description +'If_`n`_is_zero,_drop_`n`_and_exit_the_current_word._If_non-zero,_leave_`n`_alone_and_allow_execution_to_continue. '0; d:set-description +'End_the_current_definition. '; d:set-description +'Duplicate_top_value_on_stack_if_not_zero._If_zero,_do_nothing. '?dup d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:ACK d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:BEL d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:BS d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:CAN d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:CR d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:DC1 d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:DC2 d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:DC3 d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:DC4 d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:DEL d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:DLE d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:EM d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:ENQ d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:EOT d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:ESC d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:ETB d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:ETX d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:FF d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:FS d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:GS d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:HT d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:LF d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:NAK d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:NUL d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:RS d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:SI d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:SO d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:SOH d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:SPACE d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:STX d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:SUB d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:SYN d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:US d:set-description +'Constant._Refers_to_specific_ASCII_code. 'ASCII:VT d:set-description +'Constant._Return_a_build_identifier._Use_along_with_version_to_identify_an_image. 'BUILD d:set-description +'Variable._Holds_the_current_numeric_base._Base_must_be_in_the_range_of_2-16. 'Base d:set-description +'Variable._Holds_the_compiler_state._If_TRUE,_the_compiler_is_active._If_FALSE,_it_is_not. 'Compiler d:set-description +'Return_device_ID_for_block_support. 'DEVICE:BLOCKS d:set-description +'Return_device_ID_for_clock_words. 'DEVICE:CLOCK d:set-description +'Return_device_ID_for_error_handlers. 'DEVICE:ERROR d:set-description +'Return_device_ID_for_foreign_function_interface. 'DEVICE:FFI d:set-description +'Return_device_ID_for_filesystem_access. 'DEVICE:FILES d:set-description +'Return_device_ID_for_floating_point. 'DEVICE:FLOATS d:set-description +'Return_device_ID_for_image_writer. 'DEVICE:IMAGE d:set-description +'Return_device_ID_for_Unix_IOCTL_interface. 'DEVICE:IOCTL d:set-description +'Return_device_ID_for_Keyboard_input. 'DEVICE:KEYBOARD d:set-description +'Return_device_ID_for_memory_allocator. 'DEVICE:MALLOC d:set-description +'Return_device_ID_for_multicore_support. 'DEVICE:MULTICORE d:set-description +'Return_device_ID_for_Output_device. 'DEVICE:OUTPUT d:set-description +'Reserved_device_ID. 'DEVICE:RESERVED11 d:set-description +'Reserved_device_ID. 'DEVICE:RESERVED12 d:set-description +'Reserved_device_ID. 'DEVICE:RESERVED13 d:set-description +'Reserved_device_ID. 'DEVICE:RESERVED6 d:set-description +'Return_device_ID_for_random_number_generator. 'DEVICE:RNG d:set-description +'Return_device_ID_for_scripting_support. 'DEVICE:SCRIPTING d:set-description +'Return_device_ID_for_sockets. 'DEVICE:SOCKET d:set-description +'Return_device_ID_for_unix_syscall. 'DEVICE:UNIX d:set-description +'Return_device_ID_for_unsigned_maths. 'DEVICE:UNSIGNED d:set-description +'Variable._Holds_a_pointer_to_the_most_recent_dictionary_header. 'Dictionary d:set-description +'Used_to_denote_the_end_of_a_linked_list._The_last_cons_will_have_the_cdr_point_to_this_address. 'END d:set-description +'Constant._Returns_the_last_addressable_memory_address. 'EOM d:set-description +'Returns_`0`,_the_value_used_to_indicate_a_FALSE_result. 'FALSE d:set-description +'Returns_the_number_of_cells_available_to_your_application._This_is_the_amount_of_memory,_less_the_already_consumed_portion_and_buffers_mapped_for_Retro's_internal_use. 'FREE d:set-description +'Hold_the_path_to_the_users_home_directory._Defined_as_a_floating_buffer_above_`here`. 'HOME d:set-description +'Variable._Holds_the_address_of_the_next_available_cell. 'Heap d:set-description +'Access_the_loop_index_for_the_current_loop._(For_loops_made_using_`indexed-times`) 'I d:set-description +'Variable._When_TRUE,_ignore_input_to_end_of_line. 'Ignoring d:set-description +'Access_the_parent_loop_index_for_the_current_loop._(For_loops_made_using_`indexed-times`) 'J d:set-description +'Access_the_grandparent_loop_index_for_the_current_loop._(For_loops_made_using_`indexed-times`) 'K d:set-description +'Variable._When_set_to_`TRUE`,_Retro_will_replace_underscores_in_strings_with_spaces._When_`FALSE`,_Retro_does_not. 'RewriteUnderscores d:set-description +'Return_the_address_of_the_start_of_the_temporary_string_pool._This_can_be_altered_by_changing_the_values_of_`TempStrings`_and_`TempStringMax`. 'STRINGS d:set-description +'Variable._This_holds_some_information_used_by_`{{`_and_`}}`. 'ScopeList d:set-description +'Constant._Returns_a_pointer_to_the_text_input_buffer. 'TIB d:set-description +'Returns_`-1`,_the_value_used_to_indicate_a_TRUE_result. 'TRUE d:set-description +'Variable._Holds_the_maximum_length_of_a_temporary_string. 'TempStringMax d:set-description +'Variable._Holds_the_number_of_temporary_strings. 'TempStrings d:set-description +'Variable._This_stores_the_version_number. 'Version d:set-description +'Begin_a_quotation. '[ d:set-description +'End_a_quotation. '] d:set-description +'Compare_all_values_in_the_array._Return_`FALSE`_if_all_values_are_equal_or_`TRUE`_otherwise._This_assumes_the_array_contains_only_numeric_values. 'a:-eq? d:set-description +'Return_a_new_array_consisting_of_the_values_in_a1_followed_by_the_values_in_a2. 'a:append d:set-description +'Return_`TRUE`_if_a1_begins_with_a2_or_`FALSE`_otherwise. 'a:begins-with? d:set-description +'Return_a_new_array_containing_all_but_the_last_value_in_the_source_array. 'a:chop d:set-description +'Return_`TRUE`_if_the_string_value_is_in_the_array_or_`FALSE`_otherwise. 'a:contains/string? d:set-description +'Return_`TRUE`_if_the_value_is_in_the_array_or_`FALSE`_otherwise. 'a:contains? d:set-description +'Copy_an_array_(a1)_to_a_destination_(a2). 'a:copy d:set-description +'Run_a_quote_and_construct_a_new_array_from_the_returned_values._The_quote_should_return_the_values_and_the_number_of_values_to_put_into_the_array. 'a:counted-results d:set-description +'Make_a_copy_of_an_array._Return_the_address_of_the_copy. 'a:dup d:set-description +'Return_`TRUE`_if_a1_ends_with_a2_or_`FALSE`_otherwise. 'a:ends-with? d:set-description +'Compare_all_values_in_the_array._Return_`TRUE`_if_all_values_are_equal_or_`FALSE`_otherwise._This_assumes_the_array_contains_only_numeric_values. 'a:eq? d:set-description +'Fetch_the_value_stored_at_the_specified_index_in_the_specified_array. 'a:fetch d:set-description +'For_each_item_in_the_initial_array,_run_the_specified_quote._If_the_quote_returns_`TRUE`,_copy_the_item_into_a_new_array._If_`FALSE`,_discard_it._Returns_a_pointer_to_the_new_array. 'a:filter d:set-description +'Return_the_first_value_in_the_array. 'a:first d:set-description +'Execute_the_quote_once_for_each_item_in_the_array. 'a:for-each d:set-description +'Create_a_new_array_with_the_characters_in_the_source_string. 'a:from-string d:set-description +'Calculate_a_hash_value_for_a_given_array. 'a:hash d:set-description +'Return_the_location_of_the_first_instance_of_the_specified_value_in_the_array. 'a:index d:set-description +'Return_the_location_of_the_first_instance_of_the_specified_string_in_the_array. 'a:index/string d:set-description +'Return_a_new_array_with_the_indices_the_specified_value_was_found_at_in_the_original_array. 'a:indices d:set-description +'Return_a_new_array_with_the_indices_of_the_specified_string_in_the_original_array. 'a:indices/string d:set-description +'Return_the_last_value_in_the_array. 'a:last d:set-description +'Return_a_new_array_containing_the_first_`n`_values_from_the_source_array. 'a:left d:set-description +'Return_the_length_of_a_array. 'a:length d:set-description +'Execute_quote._Return_a_new_array_containing_the_values_the_quote_leaves_on_the_stack._This_is_identical_to_doing_`a:counted-results 'a:make d:set-description +'Execute_quote_once_for_each_item_in_the_array._Constructs_a_new_array_from_the_value_returned_by_the_quote. 'a:map d:set-description +'Extract_a_new_array_from_the_middle_of_the_specified_array._This_will_take_the_values_starting_at_`f`_and_extend_to_the_`l`_last_value. 'a:middle d:set-description +'Return_a_new_array_consisting_of_the_values_in_a2_followed_by_the_values_in_a1. 'a:prepend d:set-description +'Takes_an_array,_a_starting_value,_and_a_quote._This_will_apply_the_quote_to_each_item_in_the_array;_the_quote_should_consume_two_values_and_return_one. 'a:reduce d:set-description +'Reverse_the_order_of_items_in_a_array._This_will_return_a_new_array. 'a:reverse d:set-description +'Return_a_new_array_containing_the_specified_number_of_values_from_the_right_side_of_the_array. 'a:right d:set-description +'Store_a_value_into_the_array_at_the_specified_index. 'a:store d:set-description +'Make_a_copy_of_the_array_in_a_rotating_set_of_temporary_buffers. 'a:temp d:set-description +'Return_the_actual_address_of_the_`n`th_item_in_the_array. 'a:th d:set-description +'Create_a_new_string_from_the_provided_array_of_character_values._This_string_will_be_stored_in_the_temporal_string_buffers. 'a:to-string d:set-description +'Abort_execution. 'abort d:set-description +'Close_an_unconditional_loop._Branches_back_to_the_prior_`repeat`. 'again d:set-description +'Allocate_the_specified_number_of_cells_from_the_`Heap`. 'allot d:set-description +'Perform_a_bitwise_AND_operation_between_the_two_provided_values. 'and d:set-description +'Fetch_the_8-bit_value_stored_at_the_specified_address._Addressing_for_this_is_in_8-bit_units. 'b:fetch d:set-description +'Fetch_the_value_stored_at_the_specified_address._Returns_the_next_address_and_the_value. 'b:fetch-next d:set-description +'Store_an_8-bit_value_into_the_specified_address._Addressing_for_this_is_in_8-bit_units. 'b:store d:set-description +'Store_a_value_into_the_specified_address_and_return_the_next_address. 'b:store-next d:set-description +'Translate_a_physical_address_to_a_byte_address. 'b:to-byte-address d:set-description +'Display_a_welcome_message_on_startup. 'banner d:set-description +'Execute_q1_against_x,_then_execute_q2_against_a_copy_of_x. 'bi d:set-description +'Execute_q1_against_x_and_q2_against_y. 'bi* d:set-description +'Execute_q_against_x,_then_execute_q_against_y. 'bi@ d:set-description +'Set_`Base`_to_binary. 'binary d:set-description +'Read_1024_cells_from_block_n_in_the_block_storage_into_memory_at_address_a. 'block:read d:set-description +'Set_the_file_name_of_the_block_storage_device. 'block:set-file d:set-description +'Save_the_1024_cells_at_address_a_to_block_n_in_the_block_storage. 'block:write d:set-description +'Append_a_value_to_the_current_buffer. 'buffer:add d:set-description +'Reset_the_current_buffer_to_an_empty_state. 'buffer:empty d:set-description +'Return_a_pointer_to_the_current_end_of_the_active_buffer. 'buffer:end d:set-description +'Remove_the_last_value_from_the_current_buffer. 'buffer:get d:set-description +'Save_and_restore_the_current_buffer_before_and_after_executing_the_specified_quote. 'buffer:preserve d:set-description +'Assign_a_new_buffer_as_the_current_one. 'buffer:set d:set-description +'Return_the_number_of_cells_in_the_buffer. 'buffer:size d:set-description +'Return_the_start_address_of_the_current_buffer. 'buffer:start d:set-description +'Exit_Retro. 'bye d:set-description +'Return_TRUE_if_character_is_a_not_consonant_or_FALSE_otherwise. 'c:-consonant? d:set-description +'Return_TRUE_if_character_is_a_not_numeric_digit_or_FALSE_otherwise. 'c:-digit? d:set-description +'Return_TRUE_if_character_is_not_lowercase_or_FALSE_otherwise. 'c:-lowercase? d:set-description +'Return_TRUE_if_character_is_not_uppercase_or_FALSE_otherwise. 'c:-uppercase? d:set-description +'Return_TRUE_if_character_is_not_printable_or_FALSE_otherwise. 'c:-visible? d:set-description +'Return_TRUE_if_character_is_not_a_vowel_or_FALSE_otherwise. 'c:-vowel? d:set-description +'Return_TRUE_if_character_is_not_whitespace,_or_FALSE_otherwise. 'c:-whitespace? d:set-description +'Return_TRUE_if_character_is_a_consonant_or_FALSE_otherwise. 'c:consonant? d:set-description +'Return_TRUE_if_character_is_a_numeric_digit_or_FALSE_otherwise. 'c:digit? d:set-description +'Vectored._Read_a_single_keypress. 'c:get d:set-description +'Return_TRUE_if_character_is_an_ASCII_letter_or_FALSE_otherwise. 'c:letter? d:set-description +'Return_TRUE_if_character_is_lowercase_or_FALSE_otherwise. 'c:lowercase? d:set-description +'Vectored._Display_a_single_character. 'c:put d:set-description +'Convert_character_to_lowercase_equivalent. 'c:to-lower d:set-description +'Convert_an_ASCII_digit_character_into_the_corresponding_decimal_value 'c:to-number d:set-description +'Convert_character_into_a_string. 'c:to-string d:set-description +'Convert_character_to_uppercase_equivalent. 'c:to-upper d:set-description +'Convert_an_ASCII_character_to_the_opposite_case. 'c:toggle-case d:set-description +'Return_TRUE_if_character_is_uppercase_or_FALSE_otherwise. 'c:uppercase? d:set-description +'Return_TRUE_if_character_is_printable_or_FALSE_otherwise. 'c:visible? d:set-description +'Return_TRUE_if_character_is_a_vowel_or_FALSE_otherwise. 'c:vowel? d:set-description +'Return_TRUE_if_character_is_whitespace,_or_FALSE_otherwise. 'c:whitespace? d:set-description +'Call_a_function. 'call d:set-description +'Return_a_pointer_to_the_car_of_cons_a. 'car d:set-description +'Store_n_into_the_car_of_cons_a. 'car! d:set-description +'Return_the_contents_of_the_car_of_cons_a. 'car@ d:set-description +'If_`n`_is_equal_to_`m`,_drop_both_and_execute_the_specified_quote_before_exiting_the_calling_word._If_not_equal,_leave_`n`_on_the_stack_and_let_execution_continue. 'case d:set-description +'Return_a_pointer_to_the_cdr_of_cons_a. 'cdr d:set-description +'Store_n_into_the_cdr_of_cons_a. 'cdr! d:set-description +'Return_the_contents_of_the_cdr_of_cons_a. 'cdr@ d:set-description +'Execute_q1_if_the_flag_is_true_(-1)_or_q2_if_the_flag_is_false_(0)._Only_these_flags_are_valid_when_using_`choose`;_passing_other_values_as_flags_will_result_in_memory_corruption. 'choose d:set-description +'Class_handler_for_data_structures. 'class:data d:set-description +'Class_handler_for_compiler_macros_(immediate_words) 'class:macro d:set-description +'Class_handler_for_primitive_words_(words_which_map_to_Nga_instructions) 'class:primitive d:set-description +'Class_handler_for_normal_words. 'class:word d:set-description +'Clear_the_display. 'clear d:set-description +'Return_the_current_day. 'clock:day d:set-description +'Return_the_current_hour._This_will_be_in_the_range_of_0-23,_inclusive. 'clock:hour d:set-description +'Return_the_current_minute._This_will_be_in_the_range_of_0-59,_inclusive. 'clock:minute d:set-description +'Return_the_current_month._This_will_be_in_the_range_of_1-12,_inclusive. 'clock:month d:set-description +'Trigger_a_clock_operation._This_is_not_intended_to_be_used_directly. 'clock:operation d:set-description +'Return_the_current_second._This_will_be_in_the_range_of_0-59,_inclusive. 'clock:second d:set-description +'Return_a_host_specific_timestamp._In_the_standard_system,_this_is_a_32-bit_Unix_timestamp,_but_this_is_not_required. 'clock:timestamp d:set-description +'Return_the_current_day_in_UTC. 'clock:utc:day d:set-description +'Return_the_current_hour_in_UTC. 'clock:utc:hour d:set-description +'Return_the_current_minute_in_UTC. 'clock:utc:minute d:set-description +'Return_the_current_month_in_UTC. 'clock:utc:month d:set-description +'Return_the_current_second_in_UTC. 'clock:utc:second d:set-description +'Return_the_current_year_in_UTC. 'clock:utc:year d:set-description +'Return_the_current_year. 'clock:year d:set-description +'Store_the_specified_value_into_the_memory_at_`here`_and_increment_`Heap`_by_1._Identical_to_`,`,_this_is_provided_for_compatibility_with_the_RetroForth_on_ilo_and_napia. 'comma d:set-description +'Compile_a_call_to_the_specified_address_into_the_current_definition. 'compile:call d:set-description +'Compile_a_jump_to_the_specified_address_into_the_current_definition. 'compile:jump d:set-description +'Compile_the_code_to_push_a_number_to_the_stack_into_the_current_definition. 'compile:lit d:set-description +'Compile_a_return_instruction_into_the_current_definition. 'compile:ret d:set-description +'Return_`TRUE`_if_compiler_is_on_or_`FALSE`_otherwise. 'compiling? d:set-description +'Create_a_new_cons_cell_with_a_car_of_x_and_a_cdr_of_y. 'cons d:set-description +'Create_a_constant_returning_the_specified_value. 'const d:set-description +'Copy_`l`_cells_from_memory_at_`s`_to_the_memory_at_`d`._These_should_not_overlap. 'copy d:set-description +'Clear_the_internal_state_of_core_`n`._This_should_be_done_prior_to_use_of_`core:start`,_which_activates_processing_on_the_core. 'core:init d:set-description +'Suspend_processing_on_core_`n`. 'core:pause d:set-description +'Suspend_processing_on_the_current_core. 'core:pause-current d:set-description +'Read_a_value_from_register_`n`_on_the_current_core. 'core:read/reg d:set-description +'Resume_processing_on_core_`n`_after_a_`core:pause`_or_`core:pause-current`. 'core:resume d:set-description +'Set_the_IP_of_core_`n`_to_address_`a`_and_begin_processing_on_core_`n`. 'core:start d:set-description +'Write_a_value_to_register_number_`n`_on_the_current_core. 'core:write/reg d:set-description +'Bind_a_value_to_a_function_and_return_a_new_quote_that_calls_the_bound_action. 'curry d:set-description +'Inline_a_numeric_value_to_the_current_assembly_segment. 'd d:set-description +'Variable._Holds_a_pointer_tho_the_function_for_calculating_dictionary_hashes. 'd:Hash-Function d:set-description +'Vectored._Create_a_header._Provide_a_string_(s)_for_the_name,_a_pointer_to_the_class_handler_(a1)_and_a_pointer_to_the_word_definition_(a2)_Generally_this_won't_be_used_directly. 'd:add-header d:set-description +'Given_a_dictionary_header,_return_the_class_field. 'd:class d:set-description +'Hook._Create_a_new_dictionary_header_named_the_specified_string._The_new_header_will_point_to_`here`_and_have_a_class_of_`class:data`. 'd:create d:set-description +'Execute_the_specified_quote_once_for_each_header_in_the_dictionary._Before_running_the_quote,_this_also_pushes_a_pointer_to_the_header_onto_the_stack. 'd:for-each d:set-description +'Given_a_dictionary_header,_return_the_hash_field. 'd:hash d:set-description +'Return_the_most_recent_dictionary_header. 'd:last d:set-description +'Return_a_pointer_to_the_class_field_of_the_most_recent_dictionary_header. 'd:last.class d:set-description +'Return_a_pointer_to_the_name_field_of_the_most_recent_dictionary_header. 'd:last.name d:set-description +'Return_a_pointer_to_the_xt_field_of_the_most_recent_dictionary_header. 'd:last.xt d:set-description +'Given_a_dictionary_header,_return_the_link_field. 'd:link d:set-description +'Lookup_the_specified_name_in_the_dictionary_and_return_a_pointer_to_its_dictionary_header._This_returns_zero_if_the_word_is_not_found._This_also_sets_an_internal_variable_('which'_in_retro.muri)_to_the_header_address. 'd:lookup d:set-description +'Lookup_the_specified_address_in_the_dictionary_and_return_a_pointer_to_its_dictionary_header._This_returns_zero_if_the_word_is_not_found. 'd:lookup-xt d:set-description +'Given_a_dictionary_header,_return_the_name_field. 'd:name d:set-description +'Update_the_hashes_for_all_visible_words_in_the_dictionary. 'd:rehash d:set-description +'Set_the_`d:source`_field_of_the_header_for_the_named_word_(s2)_to_string_(s1)._The_string_will_not_be_duplicated. 'd:set-source d:set-description +'Given_a_dictionary_header,_return_the_source_field. 'd:source d:set-description +'Change_dictionary_search_to_use_hashed_name_comparions. 'd:use-hashes d:set-description +'Change_dictionary_search_to_use_full_name_comparions. 'd:use-strings d:set-description +'Display_a_list_of_all_named_items_in_the_`Dictionary`. 'd:words d:set-description +'Display_a_list_of_all_named_items_in_the_`Dictionary`_that_begin_with_the_provided_substring. 'd:words-beginning-with d:set-description +'Display_a_list_of_all_named_items_in_the_`Dictionary`_that_contain_the_provided_substring. 'd:words-with d:set-description +'Given_a_dictionary_header,_return_the_xt_field. 'd:xt d:set-description +'Change_the_class_of_the_most_recently_defined_word_to_`class:data`. 'data d:set-description +'Set_`Base`_to_decimal. 'decimal d:set-description +'Return_the_number_of_items_on_the_stack. 'depth d:set-description +'Temporarily_remove_n_from_the_stack,_execute_the_quotation,_and_then_restore_n_to_the_stack. 'dip d:set-description +'Attach_an_action_to_the_most_recently_created_word._This_is_used_in_a_manner_similar_to_CREATE/DOES>_in_traditional_Forth. 'does d:set-description +'Create_a_constant_returning_the_specified_double_cell_value. 'double:const d:set-description +'Temporarily_remove_m_and_n_from_the_stack,_execute_the_quotation,_and_then_restore_m_and_n_to_the_stack. 'double:dip d:set-description +'Fetch_the_double_cell_values_stored_in_the_double_cell_variable_at_a. 'double:fetch d:set-description +'Run_quote._After_execution_completes,_put_a_copy_of_m_and_n_back_on_top_of_the_stack. 'double:sip d:set-description +'Store_the_double_cell_values_on_the_stack_in_the_double_cell_variable_at_a. 'double:store d:set-description +'Swap_double_cell_value_on_stack. 'double:swap d:set-description +'Create_a_variable_for_holding_the_specified_double_cell_value. 'double:var d:set-description +'Discard_the_top_value_on_the_stack. 'drop d:set-description +'Remove_top_two_items_on_the_stack. 'drop-pair d:set-description +'Display_the_items_on_the_data_stack. 'dump-stack d:set-description +'Duplicate_the_top_item_on_the_stack. 'dup d:set-description +'Duplicate_the_top_two_items_on_the_stack. 'dup-pair d:set-description +'Constant._Negative_infinity.__For_encoded_floating-point_values. 'e:-INF d:set-description +'Is_encoded_value_negative_infinity? 'e:-inf? d:set-description +'Constant._Infinity._For_encoded_floating-point_values. 'e:INF d:set-description +'Constant._Maximum_value._For_encoded_floating-point_values. 'e:MAX d:set-description +'Constant._Minimum_value._For_encoded_floating-point_values. 'e:MIN d:set-description +'Constant._Not_a_Number._For_encoded_floating-point_values. 'e:NAN d:set-description +'Constrain_the_encoded_value_to_the_allowable_range. 'e:clip d:set-description +'Is_encoded_value_infinity? 'e:inf? d:set-description +'Is_encoded_value_at_the_maximum? 'e:max? d:set-description +'Is_encoded_value_at_the_minimum? 'e:min? d:set-description +'Return_`TRUE`_if_the_encoded_value_is_a_valid_number,_or_`FALSE`_otherwise. 'e:n? d:set-description +'Is_encoded_value_a_Nan? 'e:nan? d:set-description +'Display_an_encoded_number. 'e:put d:set-description +'Decode_an_encoded_floating-point_value. 'e:to-f d:set-description +'Return_`TRUE`_if_the_value_is_zero,_or_`FALSE`_otherwise. 'e:zero? d:set-description +'Compare_two_values_for_equality._Returns_`TRUE`_if_they_are_equal_or_`FALSE`_otherwise. 'eq? d:set-description +'Error_handler_for_data_stack_overflow 'err:dso d:set-description +'Error_handler_for_data_stack_underflow. 'err:dsu d:set-description +'Vectored._Error_handler._Called_when_a_word_is_not_found_by_`interpret`. 'err:notfound d:set-description +'Set_the_default_error_handlers_for_various_conditions. 'err:set-defaults d:set-description +'Set_error_handler_for_error_code_N._ 'err:set-handler d:set-description +'Multiply_two_floating-point_numbers,_returning_the_result. 'f:* d:set-description +'Add_two_floating-point_numbers,_returning_the_result. 'f:+ d:set-description +'Subtract_F2_from_F1_returning_the_result. 'f:- d:set-description +'Return_a_value_corresponding_to_negative_infinity 'f:-INF d:set-description +'Compare_two_floating-point_values_for_inequality._Returns_`TRUE`_if_they_are_not_equal_or_`FALSE`_otherwise. 'f:-eq? d:set-description +'Return_`TRUE`_if_floating-point_value_is_-INF_or_`FALSE`_otherwise. 'f:-inf? d:set-description +'Divide_floating-point_value_F1_by_F2. 'f:/ d:set-description +'Return_the_floating-point_value_for_Euler's_number. 'f:E d:set-description +'Hook._Return_a_constant_used_as_the_scaling_factor_for_the_e:_words. 'f:E1 d:set-description +'Return_a_value_corresponding_to_positive_infinity 'f:INF d:set-description +'Return_a_value_corresponding_to_NaN 'f:NAN d:set-description +'Return_the_floating-point_value_for_PI. 'f:PI d:set-description +'Return_the_absolute_value_for_a_floating-point_value. 'f:abs d:set-description +'Return_the_arc_cosine_of_a_floating-point_number. 'f:acos d:set-description +'Return_the_number_of_items_on_the_alternate_floating-point_stack. 'f:adepth d:set-description +'Return_the_arc_sine_of_a_floating-point_number. 'f:asin d:set-description +'Return_the_arc_tangent_of_a_floating-point_number. 'f:atan d:set-description +'Return_TRUE_if_number_is_between_the_lower_(l)_and_upper_(u)_bounds._If_not,_return_FALSE._This_is_inclusive_of_the_limits. 'f:between? d:set-description +'If_`n`_is_equal_to_`m`,_drop_both_and_execute_the_specified_quote_before_exiting_the_calling_word._If_not_equal,_leave_`n`_on_the_stack_and_let_execution_continue. 'f:case d:set-description +'Return_the_smallest_integral_value_greater_than_or_equal_to_the_specified_value. 'f:ceiling d:set-description +'Return_the_cosine_of_a_floating-point_number. 'f:cos d:set-description +'Decrement_n_by_one. 'f:dec d:set-description +'Return_the_number_of_items_on_the_floating-point_stack. 'f:depth d:set-description +'Discard_the_top_item_on_the_floating-point_stack. 'f:drop d:set-description +'Remove_top_two_items_on_the_stack. 'f:drop-pair d:set-description +'Display_the_items_on_the_alternate_floating-point_stack. 'f:dump-astack d:set-description +'Display_the_items_on_the_floating-point_stack. 'f:dump-stack d:set-description +'Duplicate_the_top_item_on_the_floating-point_stack. 'f:dup d:set-description +'Duplicate_the_top_two_items_on_the_stack. 'f:dup-pair d:set-description +'Compare_two_floating-point_values_for_equality._Returns_`TRUE`_if_they_are_equal_or_`FALSE`_otherwise. 'f:eq? d:set-description +'Fetch_a_stored_floating-point_value. 'f:fetch d:set-description +'Perform_a_mathematical_floor_operation_on_the_floating-point_value. 'f:floor d:set-description +'Compare_two_floating-point_values_for_greater_than. 'f:gt? d:set-description +'Increment_n_by_one. 'f:inc d:set-description +'Return_`TRUE`_if_floating-point_value_is_INF_or_`FALSE`_otherwise. 'f:inf? d:set-description +'Return_n_if_it_is_within_the_lower_(l)_and_upper_(u)_bounds._If_outside_the_bounds,_return_the_closes_boundary_value. 'f:limit d:set-description +'Return_log(F1)_for_base_F2_for_floating-point_values. 'f:log d:set-description +'Compare_two_floating-point_values_for_less_than. 'f:lt? d:set-description +'Return_the_greater_of_two_values. 'f:max d:set-description +'Return_the_lesser_of_two_values. 'f:min d:set-description +'Return_`TRUE`_if_floating-point_value_is_NaN_or_`FALSE`_otherwise. 'f:nan? d:set-description +'Invert_the_sign_of_the_floating-point_value. 'f:negate d:set-description +'Return_`TRUE`_if_floating-point_value_is_negative_or_`FALSE`_if_not. 'f:negative? d:set-description +'Remove_the_second_item_from_the_stack. 'f:nip d:set-description +'Put_a_copy_of_the_second_floating-point_value_over_the_top_one. 'f:over d:set-description +'Pop_a_floating-point_value_from_the_alternate_stack. 'f:pop d:set-description +'Return_`TRUE`_if_floating-point_value_is_positive_or_`FALSE`_otherwise. 'f:positive? d:set-description +'Return_F1^F2_for_floating-point_values. 'f:power d:set-description +'Push_a_floating-point_value_to_an_alternative_stack. 'f:push d:set-description +'Display_a_floating-point_number. 'f:put d:set-description +'Rotate_the_top_three_values. 'f:rot d:set-description +'Round_a_floating-point_value. 'f:round d:set-description +'Return_1_if_the_floating-point_value_is_positive_or_-1_if_it_is_negative. 'f:sign d:set-description +'Return_the_square_root_of_a_floating-point_number. 'f:signed-sqrt d:set-description +'Return_the_square_of_a_floating-point_number. 'f:signed-square d:set-description +'Return_the_sine_of_a_floating-point_number. 'f:sin d:set-description +'Return_the_square_root_of_a_floating-point_number. 'f:sqrt d:set-description +'Return_the_square_of_a_floating-point_number. 'f:square d:set-description +'Store_a_floating-point_value_to_the_specified_memory_location. 'f:store d:set-description +'Exchange_the_top_and_second_items_on_the_floating-point_stack. 'f:swap d:set-description +'Return_the_tangent_of_a_floating-point_number. 'f:tan d:set-description +'Encode_the_floating-point_value_to_an_integer. 'f:to-e d:set-description +'Convert_a_floating-point_value_into_a_number. 'f:to-number d:set-description +'Convert_a_floating-point_value_into_a_string. 'f:to-string d:set-description +'Tuck_a_copy_of_the_top_floating-point_value_under_the_second_one. 'f:tuck d:set-description +'Fetch_the_value_stored_at_the_specified_address. 'fetch d:set-description +'Fetch_the_value_stored_at_the_specified_address._Returns_the_next_address_and_the_value. 'fetch-next d:set-description +'Invoke_an_FFI_function._Set_the_stack_as_needed,_and_pass_the_FFI_handle_to_this. 'ffi:invoke d:set-description +'Map_in_a_symbol_from_a_shared_library_or_object_file._Returns_an_FFI_handle. 'ffi:map-sym d:set-description +'Open_a_shared_library_or_object_file. 'ffi:open d:set-description +'Trigger_an_i/o_operation_using_the_FFI_device. 'ffi:operation d:set-description +'Constant_for_opening_a_file_in_APPEND_mode. 'file:A d:set-description +'Constant_for_opening_a_file_in_READ_mode. 'file:R d:set-description +'Constant_for_opening_a_file_in_READ_&_WRITE_mode. 'file:R+ d:set-description +'Constant_for_opening_a_file_in_WRITE_mode. 'file:W d:set-description +'Given_a_file_handle,_close_the_file. 'file:close d:set-description +'Delete_the_named_file. 'file:delete d:set-description +'Given_a_file_name,_return_`TRUE`_if_it_exists_or_`FALSE`_if_it_does_not. 'file:exists? d:set-description +'Given_a_file_handle,_flush_any_pending_writes_to_disk. 'file:flush d:set-description +'Given_a_file_name,_open_it_and_run_the_quote_once_for_each_line_in_the_file. 'file:for-each-line d:set-description +'Open_a_named_file_(s)_with_the_given_mode_(m)._Returns_a_handle_identifying_the_file. 'file:open d:set-description +'Open_a_file_for_reading_&_writing._Returns_the_size_(NOS)_and_a_file_ID_(TOS) 'file:open-for-append d:set-description +'Open_a_file_for_reading._Returns_the_size_(NOS)_and_a_file_ID_(TOS) 'file:open-for-reading d:set-description +'Open_a_file_for_writing._Returns_the_file_ID 'file:open-for-writing d:set-description +'Trigger_a_file_I/O_operation._This_is_not_intended_to_be_used_directly. 'file:operation d:set-description +'Given_a_file_handle,_read_and_return_the_next_byte_in_it. 'file:read d:set-description +'Given_a_file_handle,_read_a_line_and_return_a_pointer_to_it. 'file:read-line d:set-description +'Given_a_pointer,_a_count,_and_a_file_handle,_read_and_store_the_requested_number_of_bytes_into_memory,_starting_at_the_specified_address. 'file:read/bytes d:set-description +'Given_a_file_handle,_read_and_return_the_next_character_in_it._If_compiled_with_UTF32_support_this_will_read_and_convert_UTF8. 'file:read/c d:set-description +'Move_the_current_offset_into_a_file_to_the_specified_one. 'file:seek d:set-description +'Given_a_file_handle,_return_the_size_of_the_file_(in_bytes). 'file:size d:set-description +'Given_an_address_and_a_file_name,_read_the_file_contents_into_memory_starting_at_the_address. 'file:slurp d:set-description +'Given_a_string_(s1)_and_a_file_name_(s2),_write_the_string_into_the_file,_replacing_any_existing_content. 'file:spew d:set-description +'Given_a_file_handle,_return_the_current_offset_in_the_file. 'file:tell d:set-description +'Write_a_byte_to_the_file_represented_by_the_handle. 'file:write d:set-description +'Write_n_bytes_to_the_file_represented_by_the_handle._Bytes_are_taken_from_memory,_starting_at_the_provided_address. 'file:write/bytes d:set-description +'Write_a_character_to_the_file_represented_by_the_handle._If_built_with_UTF32_support,_this_will_translate_the_character_back_to_a_UTF8_sequence_before_writing. 'file:write/c d:set-description +'Fill_memory_starting_at_"p"_with_value_"v"._Fills_"n"_cells. 'fill d:set-description +'Append_a_cons_cell_to_a_list. 'fll:append/value d:set-description +'Create_a_new_list_wit_the_given_value_as_the_car_of_the_first_node. 'fll:create d:set-description +'Remove_the_specified_cons_from_a_list. 'fll:del d:set-description +'Remove_the_last_cons_from_a_list. 'fll:drop d:set-description +'Run_a_quotation_against_each_value_in_a_list. 'fll:for-each d:set-description +'Insert_a_new_cons_(v)_into_the_list_(p),_at_the_specified_index_(n). 'fll:inject d:set-description +'Return_the_length_of_a_list. 'fll:length d:set-description +'Display_the_(as_numbers)_values_in_a_list. 'fll:put d:set-description +'Given_a_pointer_to_a_list,_return_a_pointer_to_the_last_cons_cell. 'fll:to-end d:set-description +'Given_a_node_number,_return_a_pointer_to_the_cons_cell_in_the_list. 'fll:to-index d:set-description +'Trigger_a_floating-point_operation._This_is_not_intended_to_be_used_directly. 'float:operation d:set-description +'Run_quotation_in_an_endless_loop. 'forever d:set-description +'Save_value_of_`Heap`,_run_the_function_provided,_then_restore_`Heap`. 'gc d:set-description +'Takes_an_address,_a_server,_a_port,_and_a_selector._Fetch_the_resource_and_store_it_at_address._Return_the_number_of_bytes_received. 'gopher:get d:set-description +'Compare_n1_and_n2._Return_`TRUE`_if_n1_is_greater_than_n2,_or_`FALSE`_otherwise. 'gt? d:set-description +'Compare_n1_and_n2._Return_`TRUE`_if_n1_is_greater_than_or_equal_to_n2,_or_`FALSE`_otherwise. 'gteq? d:set-description +'Fetch_the_16-bit_value_stored_at_the_specified_address._Addressing_for_this_is_in_8-bit_units. 'h:fetch d:set-description +'Fetch_the_value_stored_at_the_specified_address._Returns_the_next_address_and_the_value. 'h:fetch-next d:set-description +'Store_an_16-bit_value_into_the_specified_address._Addressing_for_this_is_in_8-bit_units. 'h:store d:set-description +'Store_a_value_into_the_specified_address_and_return_the_next_address. 'h:store-next d:set-description +'Return_the_next_free_address_in_memory. 'here d:set-description +'Set_`Base`_to_hexadecimal. 'hex d:set-description +'Add_a_hook_point_into_the_current_word._This_should_only_be_used_as_the_first_word_in_a_definition. 'hook d:set-description +'Assemble_the_instructions_specified_by_the_string_into_the_current_assembly_scope. 'i d:set-description +'Execute_the_quote_if_the_flag_is_`TRUE`. 'if d:set-description +'Execute_the_quotation_if_the_flag_is_`TRUE`._If_true,_also_exit_the_word. 'if; d:set-description +'Save_the_current_system_to_a_new_image_file. 'image:save d:set-description +'Change_the_class_of_the_most_recently_defined_word_to_`class:macro`. 'immediate d:set-description +'Run_the_code_in_the_specified_file._ 'include d:set-description +'Run_a_quote_the_specified_number_of_times,_tracking_the_loop_index_in_`I`._This_is_less_efficient_than_`times`,_so_if_the_index_is_not_needed,_this_should_be_avoided. 'indexed-times d:set-description +'Vectored._Interpret_a_single_input_token. 'interpret d:set-description +'Trigger_an_I/O_operation_involving_multicore_support._Unix_system_call. 'io:core d:set-description +'Return_the_number_of_I/O_devices. 'io:enumerate d:set-description +'Invoke_an_interaction_with_an_I/O_device. 'io:invoke d:set-description +'Ask_an_I/O_device_to_identify_itself._Returns_a_version_(m)_and_device_ID_(N). 'io:query d:set-description +'Scan_the_I/O_devices_for_a_device_with_a_specified_ID._Returns_the_device_number,_or_-1_if_not_found. 'io:scan-for d:set-description +'Trigger_a_Unix_system_call._This_is_not_intended_to_be_used_directly. 'io:unix-syscall d:set-description +'Data._Return_a_template_for_a_library_file_name_in_`~/.config/retroforth/library`. 'library:.CONFIG d:set-description +'Find_the_users_home_directory_and_construct_a_filename_for_a_library_in_the_`~/.config/retroforth/library`_directory. 'library:.config d:set-description +'Data._Return_a_template_for_a_library_file_name_in_`./library`. 'library:CWD d:set-description +'Check_to_see_if_a_library_exists. 'library:contains? d:set-description +'Construct_a_filename_for_a_library_in_the_`~/library`_directory. 'library:cwd d:set-description +'Given_a_library_name,_construct_the_actual_filename_to_load. 'library:filename d:set-description +'Load_a_library._This_will_load_the_string,_with_".retro". 'library:load d:set-description +'"Run_interactive_""listener""_(a_REPL)." 'listen d:set-description +'Compare_n1_and_n2._Return_`TRUE`_if_n1_is_less_than_n2,_or_`FALSE`_otherwise. 'lt? d:set-description +'Compare_n1_and_n2._Return_`TRUE`_if_n1_is_less_than_or_equal_to_n2,_or_`FALSE`_otherwise. 'lteq? d:set-description +'Use_malloc_to_allocate_memory._Returns_a_double_cell_pointer_to_this_memory. 'mem:alloc d:set-description +'Return_address_of_next_cell._Uses_a_double_cell_pointer_on_the_stack. 'mem:cell+ d:set-description +'Fetch_value_from_malloc'd_memory_region._Address_is_a_double_cell_value. 'mem:fetch d:set-description +'Fetch_a_double_cell_value_from_a_malloc_memory_region. 'mem:fetch-double d:set-description +'Fre_a_malloc'd_region_of_memory._Pass_a_double_cell_pointer_to_the_memory_to_free. 'mem:free d:set-description +'Resize_a_malloc'd_memory_area. 'mem:resize d:set-description +'Store_a_value_into_a_malloc'd_memory_region._Uses_a_double_cell_pointer_for_the_address. 'mem:store d:set-description +'Store_a_double_value_into_a_malloc'd_memory_region._Uses_a_double_cell_pointer_for_the_address. 'mem:store-double d:set-description +'Divide_`n`_by_`m`_and_return_the_remainder. 'mod d:set-description +'Return_`TRUE`_if_number_is_not_zero,_or_`FALSE`_otherwise. 'n:-zero? d:set-description +'Return_the_maximum_value_that_will_fit_in_a_cell. 'n:MAX d:set-description +'Return_the_minimum_value_that_will_fit_in_a_cell. 'n:MIN d:set-description +'Return_the_absolute_value_of_a_number. 'n:abs d:set-description +'Add_`n1`_to_`n2`_and_return_the_result. 'n:add d:set-description +'Return_TRUE_if_number_is_between_the_lower_(l)_and_upper_(u)_bounds._If_not,_return_FALSE._This_is_inclusive_of_the_limits. 'n:between? d:set-description +'Decrement_n_by_one. 'n:dec d:set-description +'Divide_`n`_by_`m`_and_return_the_integer_part_of_the_quotient. 'n:div d:set-description +'Divide_`n`_by_`m`_and_return_the_integer_part_of_the_quotient_and_remainder. 'n:divmod d:set-description +'Return_`TRUE`_if_number_is_even,_or_`FALSE`_if_not. 'n:even? d:set-description +'Increment_n_by_one. 'n:inc d:set-description +'Return_n_if_it_is_within_the_lower_(l)_and_upper_(u)_bounds._If_outside_the_bounds,_return_the_closes_boundary_value. 'n:limit d:set-description +'Return_the_greater_of_two_values. 'n:max d:set-description +'Return_the_lesser_of_two_values. 'n:min d:set-description +'Divide_`n`_by_`m`_and_return_the_remainder. 'n:mod d:set-description +'Multiply_`n1`_by_`n2`_and_return_the_result. 'n:mul d:set-description +'Invert_the_sign_of_a_number. 'n:negate d:set-description +'Return_`TRUE`_if_number_is_negative,_or_`FALSE`_if_not. 'n:negative? d:set-description +'Return_`TRUE`_if_number_is_odd,_or_`FALSE`_if_not. 'n:odd? d:set-description +'Return_`TRUE`_if_number_is_positive,_or_`FALSE`_if_not. 'n:positive? d:set-description +'Return_base_(b)_to_power_(p). 'n:pow d:set-description +'Display_a_number. 'n:put d:set-description +'Return_a_random_number. 'n:random d:set-description +'Return_the_square_root_of_a_number. 'n:sqrt d:set-description +'Return_the_square_of_a_number. 'n:square d:set-description +'Return_TRUE_if_number_is_greater_than_zero_or_FALSE_if_it_is_zero_or_less. 'n:strictly-positive? d:set-description +'Subtract_`n2`_from_`n1`_and_return_the_result. 'n:sub d:set-description +'Convert_a_number_into_a_floating-point_value. 'n:to-float d:set-description +'Convert_a_number_into_a_string. 'n:to-string d:set-description +'Return_`TRUE`_if_number_is_zero,_or_`FALSE`_otherwise. 'n:zero? d:set-description +'Remove_the_second_item_from_the_stack. 'nip d:set-description +'Display_a_newline. 'nl d:set-description +'Perform_a_logical_NOT_operation. 'not d:set-description +'Set_`Base`_to_octal. 'octal d:set-description +'Perform_a_bitwise_OR_between_the_provided_values. 'or d:set-description +'Put_a_copy_of_n_over_m. 'over d:set-description +'Pack_four_8-bit_values_into_a_32-bit_value. 'pack d:set-description +'Read_input_from_stdin_(via_`c:get`)_until_the_returned_character_is_matched_by_the_quote._Returns_a_string. 'parse-until d:set-description +'Copy_a_string_from_the_pasteboard_to_the_specified_address. 'pb:get d:set-description +'Return_the_length_of_the_string_on_the_pasteboard. 'pb:length d:set-description +'Copy_a_string_to_the_pasteboard. 'pb:set d:set-description +'Move_a_value_from_the_return_stack_to_the_data_stack. 'pop d:set-description +'Change_the_class_of_the_most_recently_defined_word_to_`class:primitive`. 'primitive d:set-description +'Move_a_value_from_the_data_stack_to_the_return_stack. 'push d:set-description +'Lookup_a_reference_by_name_and_inline_its_pointer_to_the_current_assembly_segment. 'r d:set-description +'Change_the_class_handler_of_the_most_recently_defined_word_to_the_specified_one. 'reclass d:set-description +'Restructure_the_order_of_items_on_the_stack. 'reorder d:set-description +'Begin_an_unconditional_loop. 'repeat d:set-description +'Remove_all_items_from_the_stack. 'reset d:set-description +'Rotate_the_top_three_values. 'rot d:set-description +'Compile_the_code_needed_to_push_a_string_pointer_to_the_stack_and_inline_the_string_data_into_the_current_definition. 's, d:set-description +'Constant._Returns_a_string_of_the_ASCII_letters_(upper_and_lower_case) 's:ASCII-LETTERS d:set-description +'Constant._Returns_a_string_of_the_ASCII_letters_in_lowercase 's:ASCII-LOWERCASE d:set-description +'Constant._Returns_a_string_of_the_ASCII_letters_in_uppercase 's:ASCII-UPPERCASE d:set-description +'Constant._Return_a_string_of_characters_recognized_as_numeric_digits. 's:DIGITS d:set-description +'Constant._Return_a_string_of_characters_recognized_as_punctuation. 's:PUNCTUATION d:set-description +'Constant._Returns_a_string_of_characters_recognized_as_whitespace. 's:WHITESPACE d:set-description +'Return_a_new_string_consisting_of_s1_followed_by_s2. 's:append d:set-description +'Return_`TRUE`_if_s1_begins_with_s2_or_`FALSE`_otherwise. 's:begins-with? d:set-description +'If_the_`s`_matches_`S`,_discard_`s`_and_run_the_quote_before_exiting_the_caller._If_they_do_not_match,_discard_the_quote_and_leave_`s`_on_the_stack. 's:case d:set-description +'Remove_the_last_character_from_a_string._Returns_a_new_string. 's:chop d:set-description +'Create_a_constant_named_s2,_returning_a_pointer_to_s1._This_will_use_`s:keep`_to_preserve_the_original_string. 's:const d:set-description +'Return_`TRUE`_if_the_character_is_present_in_the_string_or_`FALSE`_otherwise. 's:contains/char? d:set-description +'Return_`TRUE`_if_the_second_string_is_present_in_the_first_string_or_`FALSE`_otherwise. 's:contains/string? d:set-description +'Copy_a_string_(s)_to_a_destination_(a)._This_will_include_the_terminator_character_when_copying. 's:copy d:set-description +'Return_a_deduplicated_version_of_the_string. 's:dedup d:set-description +'Variable._Holds_a_pointer_to_the_deduplication_list. 's:dedup.data d:set-description +'Check_to_see_if_a_string_is_in_the_deduplication_list. 's:dedup.defined? d:set-description +'Return_a_pointer_to_a_deduplicated_copy_of_a_string._If_the_string_is_not_in_the_deduplication_list,_this_will_cause_errors. 's:dedup.find d:set-description +'Add_a_string_to_the_deduplication_list. 's:dedup.register d:set-description +'Return_an_empty_string. 's:empty d:set-description +'Return_`TRUE`_if_s1_ends_with_s2_or_`FALSE`_otherwise. 's:ends-with? d:set-description +'Compare_two_strings_for_equality._Return_`TRUE`_if_identical_or_`FALSE`_if_not. 's:eq? d:set-description +'Evaluate_string_as_if_it_was_typed_into_the_interpreter. 's:evaluate d:set-description +'Fetch_the_character_value_stored_at_the_specified_index_in_the_string. 's:fetch d:set-description +'Execute_the_quote_once_for_each_value_in_the_string._If_the_quote_returns_`TRUE`,_append_the_value_into_a_new_string._If_`FALSE`_the_value_will_be_discarded. 's:filter d:set-description +'Execute_the_quote_once_for_each_value_in_the_string. 's:for-each d:set-description +'Construct_a_new_string_using_the_template_passed_and_items_from_the_stack. 's:format d:set-description +'Read_input_from_standard_in_(via_`c:get`)_until_a_CR_or_LF_is_encountered._Returns_a_string. 's:get d:set-description +'Read_input_from_standard_in_(via_`c:get`)_until_a_whitespace_is_encountered._Returns_a_string. 's:get-word d:set-description +'Calculate_a_hash_value_for_a_string._This_uses_the_djb2_algorithm. 's:hash d:set-description +'Return_the_location_of_the_first_instance_of_the_specified_character_in_the_string. 's:index/char d:set-description +'Return_the_location_of_the_first_instance_of_the_specified_substring_(s2)_in_the_string_(s1)._Returns_-1_if_not_found. 's:index/string d:set-description +'Store_a_string_into_the_heap_and_return_a_pointer_to_the_start_of_it. 's:keep d:set-description +'Return_a_new_string_containing_the_first_`n`_characters_from_the_source_string. 's:left d:set-description +'Return_the_number_of_characters_in_a_string,_excluding_the_NULL_terminator. 's:length d:set-description +'Execute_the_specified_quote_once_for_each_character_in_the_string._Builds_a_new_string_from_the_return_value_of_the_quote._The_quote_should_return_only_one_value. 's:map d:set-description +'Return_a_new_string_consisting_of_s2_followed_by_s1. 's:prepend d:set-description +'Display_a_string. 's:put d:set-description +'Replace_the_first_instance_of_s2_in_s1_with_s3. 's:replace d:set-description +'Replace_all_instances_of_s2_in_s1_with_s3. 's:replace-all d:set-description +'Reverse_the_order_of_ASCII_characters_in_a_string. 's:reverse d:set-description +'Return_a_new_string_containing_the_specified_number_of_characters_from_the_right_side_of_the_string. 's:right d:set-description +'Internal_helper_function_used_to_skip_over_a_string_in_a_definition. 's:skip d:set-description +'Split_a_string_on_the_first_occurrence_of_the_specified_character. 's:split/char d:set-description +'Split_a_string_on_the_first_occurrence_of_the_specified_string._After_the_split,_the_top_stack_item_will_be_the_part_of_the_string_before_the_specified_substring,_and_the_second_item_will_be_the_rest_of_the_original_string. 's:split/string d:set-description +'Store_a_character_value_into_the_string_at_the_specified_index. 's:store d:set-description +'Extract_a_substring_from_the_specified_string._This_will_take_the_characters_starting_at_`f`_and_extend_`l`_characters_in_length. 's:substr d:set-description +'Move_a_string_into_the_temporary_string_buffers. 's:temp d:set-description +'Convert_a_string_representation_into_a_floating-point_value. 's:to-float d:set-description +'Convert_uppercase_ASCII_characters_in_a_string_to_lowercase. 's:to-lower d:set-description +'Convert_a_string_to_a_number. 's:to-number d:set-description +'Convert_lowercase_ASCII_characters_in_a_string_to_uppercase. 's:to-upper d:set-description +'Takes_a_string_and_a_character_to_use_as_a_separator._It_splits_the_string_into_substrings_and_returns_an_array_containing_pointers_to_each_of_them. 's:tokenize d:set-description +'Takes_a_string_(s1)_and_a_substring_(s2)__use_as_a_separator._It_splits_the_string_into_substrings_and_returns_as_array_containing_pointers_to_each_of_them. 's:tokenize-on-string d:set-description +'Trim_leading_and_trailing_whitespace_from_a_string. 's:trim d:set-description +'Trim_leading_whitespace_from_a_string. 's:trim-left d:set-description +'Trim_trailing_whitespace_from_a_string. 's:trim-right d:set-description +'Alias_for_`s:dedup.defined?`. 's:unique? d:set-description +'Discard_remaining_tokens_on_the_current_line_being_evaluated._This_only_works_when_including_a_file,_not_at_the_interpreter. 'script:abort-include d:set-description +'Return_the_number_of_arguments_passed_to_the_program. 'script:arguments d:set-description +'Return_the_filename_of_the_file_being_processed_by_the_current_`include`,_or_`/dev/stdin`_if_the_input_source_is_the_terminal. 'script:current-file d:set-description +'Return_the_current_line_number_of_the_file_being_processed_by_the_current_`include`,_or_`0`_if_the_input_source_is_the_terminal._Line_numbering_starts_at_1. 'script:current-line d:set-description +'Return_the_text_of_the_current_line_being_processed_by_the_current_`include`. 'script:current-line-text d:set-description +'Given_an_argument_number,_return_the_argument_as_a_string. 'script:get-argument d:set-description +'Discard_remaining_lines_in_the_file_currently_being_evaluated._This_only_works_when_including_a_file,_not_at_the_interpreter. 'script:ignore-to-eof d:set-description +'Discard_remaining_tokens_in_the_current_line._This_only_works_when_including_a_file,_not_at_the_interpreter. 'script:ignore-to-eol d:set-description +'Return_the_filename_of_the_program_being_run. 'script:name d:set-description +'Patch_the_hook_point_in_a2_to_point_to_a1. 'set-hook d:set-description +'Peform_a_bitwise_shift_of_m_by_n_bits._If_n_is_positive,_shift_right._If_negative,_the_shift_will_be_to_the_left. 'shift d:set-description +'Store_a_value_into_a_variable. 'sigil:! d:set-description +'Process_token_as_a_number. 'sigil:# d:set-description +'Process_token_as_an_ASCII_character. 'sigil:$ d:set-description +'Return_a_pointer_to_a_named_item._If_name_is_not_found,_returns_0. 'sigil:& d:set-description +'Process_token_as_a_string. 'sigil:' d:set-description +'Process_token_as_a_comment. 'sigil:( d:set-description +'Interpret_time:_convert_string_to_a_floating-point_value._Compile_time:_convert_string_to_a_floating-point_value_and_compile_code_to_push_this_value_to_the_float_stack. 'sigil:. d:set-description +'Hook._Process_token_as_a_new_definition. 'sigil:: d:set-description +'Fetch_from_a_stored_variable. 'sigil:@ d:set-description +'Process_token_as_an_instruction_bundle. 'sigil:\ d:set-description +'Process_token_as_a_function_reference. 'sigil:^ d:set-description +'Process_token_as_a_bytecode. 'sigil:` d:set-description +'POSTPONE_equivalent. 'sigil:| d:set-description +'Run_quote._After_execution_completes,_put_a_copy_of_n_back_on_top_of_the_stack. 'sip d:set-description +'Begin_accepting_connections._Returns_a_new_socket_and_an_error_code. 'socket:accept d:set-description +'Bind_a_socket_to_a_port._The_port_should_be_a_string._Returns_0_if_successful_or_-1_otherwise_and_an_error_code. 'socket:bind d:set-description +'Close_a_socket. 'socket:close d:set-description +'Configure_internal_settings_for_a_host_(s1)_and_port_(s2)._Use_before_`socket:bind`. 'socket:configure d:set-description +'Connect_to_a_server._Provide_a_socket,_this_will_return_a_status_flag_and_an_error_code. 'socket:connect d:set-description +'Obtain_a_new_socket. 'socket:create d:set-description +'Get_the_host_IP_in_dotted_notation._The_host_is_specified_by_the_string_and_the_address_is_the_start_of_the_buffer_for_the_dotted_IP. 'socket:gethostbyname d:set-description +'Prepare_a_socket_for_accepting_incoming_connections._Takes_a_backlog_count_(n1)_and_a_socket_(n2)._Returns_a_flag_(0_success,_-1_failed)_and_an_error_code. 'socket:listen d:set-description +'Trigger_a_socket_operation._This_is_not_intended_to_be_used_directly. 'socket:operation d:set-description +'Receive_data_from_a_socket._This_will_read_into_memory_starting_at_address_*a*,_up_to_*n1*_bytes._*n2*_is_the_socket._Returns_the_number_of_bytes_read_and_an_error_code. 'socket:recv d:set-description +'Send_a_string_to_a_socket._This_will_return_the_number_of_characters_sent_and_an_error_code. 'socket:send d:set-description +'Display_a_space_(`ASCII:SPACE`) 'sp d:set-description +'Store_a_value_into_the_specified_address. 'store d:set-description +'Store_a_value_into_the_specified_address_and_return_the_next_address. 'store-next d:set-description +'Exchange_the_position_of_the_top_two_items_on_the_stack 'swap d:set-description +'Display_a_tab_(`ASCII:HT`) 'tab d:set-description +'Convert_a_call_before_the_semicolon_to_a_jump. 'tail-recurse d:set-description +'Run_the_specified_quote_the_specified_number_of_times. 'times d:set-description +'Apply_q1_against_x,_then_q2_against_a_copy_of_x,_and_finally_q3_against_another_copy_of_x. 'tri d:set-description +'Apply_q1_against_x,_q2_against_y,_and_q3_against_z. 'tri* d:set-description +'Apply_q_against_x,_then_against_y,_and_finally_against_z. 'tri@ d:set-description +'Put_a_copy_of_the_top_item_on_the_stack_under_the_second_one. 'tuck d:set-description +'Add_view_named_`s`_to_the_displayed_views. 'ui:add-view d:set-description +'Create_a_new_view._`s1`_is_the_name_and_`s2`_is_the_type. 'ui:create-view d:set-description +'Return_the_address_of_the_Retro_handler_for_a_view's_associated_action. 'ui:get-action d:set-description +'Return_the_row_and_column_of_the_named_view. 'ui:get-position d:set-description +'Return_the_height_and_width_of_the_named_view. 'ui:get-size d:set-description +'Get_the_value_of_the_text_property_of_the_named_view. 'ui:get-text d:set-description +'Get_the_value_of_the_title_property_for_the_named_view. 'ui:get-title d:set-description +'Carry_out_a_UI_operation._Used_internally_by_the_other_`ui:`_words. 'ui:operation d:set-description +'Display_all_views. 'ui:present d:set-description +'Remove_view_named_`s`_from_the_displayed_views. 'ui:remove-view d:set-description +'Set_the_action_handler_for_a_view_to_the_specified_Retro_word_address. 'ui:set-action d:set-description +'Move_view_`s`_to_row_`n1`_and_column_`n2`. 'ui:set-position d:set-description +'Set_view_`s`_to_height_`n1`_and_width_`n2`. 'ui:set-size d:set-description +'Set_the_text_property_of_view_`s2`_to_`s1`. 'ui:set-text d:set-description +'Set_the_title_property_of_view_`s2`_to_`s1`. 'ui:set-title d:set-description +'Reset_the_hook_point_in_a1_to_the_default_definition. 'unhook d:set-description +'Change_the_current_working_directory_to_the_specified_one. 'unix:chdir d:set-description +'Return_the_number_of_files_(and_subdirectories)_in_the_current_working_directory 'unix:count-files-in-cwd d:set-description +'Execute_a_process_by_running_the_application_specified_by_s. 'unix:exec0 d:set-description +'Execute_a_process_by_running_the_application_specified_by_s1._Pass_s2_as_an_argument. 'unix:exec1 d:set-description +'Execute_a_process_by_running_the_application_specified_by_s1._Pass_s2_and_s3_as_arguments. 'unix:exec2 d:set-description +'Execute_a_process_by_running_the_application_specified_by_s1._Pass_s2,_s3,_and_s4_as_arguments. 'unix:exec3 d:set-description +'Runs_another_application_and_return_after_execution_is_completed._This_does_not_invoke_the_shell_like_`unix:system`_and_does_not_support_globbing. 'unix:execute d:set-description +'Exit_the_current_process,_returning_the_specified_return_code. 'unix:exit d:set-description +'Run_a_quote_once_for_each_file_or_subdirectory_in_the_current_directory._The_quote_will_receive_the_file_name_as_a_string_and_should_consume_this_and_return_nothing_on_the_stack. 'unix:for-each-file d:set-description +'Fork_the_current_process._Returns_a_PID. 'unix:fork d:set-description +'Return_the_current_working_directory 'unix:get-cwd d:set-description +'Get_an_environment_variable._Provide_the_name_and_an_address_to_store_it_in. 'unix:getenv d:set-description +'Return_the_PID_of_the_current_process. 'unix:getpid d:set-description +'Terminates_a_process._Takes_a_process_and_a_signal_to_send. 'unix:kill d:set-description +'Close_a_pipe. 'unix:pclose d:set-description +'Takes_a_string_with_a_Unix_command_line_and_run_it_in_a_pipe,_returning_a_new_string_with_the_first_line_of_the_output_from_the_pipe. 'unix:pipe d:set-description +'Open_a_pipe._Takes_a_command_to_run,_and_a_file_mode_(`file:R`_or_`file:W`;_`file:R+`_may_work_on_some_systems)._Returns_a_file_ID_usable_with_words_in_the_`file:`_namespace. 'unix:popen d:set-description +'Takes_a_string_in_the_form_`name=value`_and_sets_an_environment_variable_named_`name`_to_`value`. 'unix:putenv d:set-description +'Sleep_for_the_specified_number_of_seconds. 'unix:sleep d:set-description +'Open_a_pipe._Read_all_output_from_the_pipe_(until_ASCII:NULL)_and_store_in_the_specified_buffer._Return_the_number_of_bytes_read. 'unix:slurp-pipe d:set-description +'Runs_another_application_using_the_system_shell_and_returns_after_execution_is_completed. 'unix:system d:set-description +'Waits_for_a_child_process_to_complete._This_maps_to_the_wait()_system_call. 'unix:wait d:set-description +'Unpack_a_32-bit_value_into_four_8-bit_values. 'unpack d:set-description +'Multiply_`n1`_by_`n2`_and_return_the_result. 'unsigned:* d:set-description +'Multiply_`x`_by_`y`_and_then_divide_by_`z`_and_return_the_integer_part_of_the_quotient_and_remainder. 'unsigned:*/mod d:set-description +'Add_`n1`_to_`n2`_and_return_the_result. 'unsigned:+ d:set-description +'Subtract_`n2`_from_`n1`_and_return_the_result. 'unsigned:- d:set-description +'Compare_two_values_for_inequality._Returns_`TRUE`_if_they_are_not_equal_or_`FALSE`_otherwise. 'unsigned:-eq? d:set-description +'Divide_`n`_by_`m`_and_return_the_integer_part_of_the_quotient_and_remainder. 'unsigned:/mod d:set-description +'Compare_two_values_for_equality._Returns_`TRUE`_if_they_are_equal_or_`FALSE`_otherwise. 'unsigned:eq? d:set-description +'Compare_n1_and_n2._Return_`TRUE`_if_n1_is_greater_than_n2,_or_`FALSE`_otherwise. 'unsigned:gt? d:set-description +'Compare_n1_and_n2._Return_`TRUE`_if_n1_is_less_than_n2,_or_`FALSE`_otherwise. 'unsigned:lt? d:set-description +'Peform_a_bitwise_shift_of_m_by_n_bits._If_n_is_positive,_shift_right._If_negative,_the_shift_will_be_to_the_left. 'unsigned:shift d:set-description +'Execute_quote_repeatedly_while_the_quote_returns_a_value_of_`FALSE`._The_quote_should_return_a_flag_of_either_`TRUE`_or_`FALSE`,_though_`until`_will_treat_any_non-zero_value_as_`TRUE`. 'until d:set-description +'Decrement_the_value_stored_at_the_specified_address_by_1. 'v:dec d:set-description +'Decrement_the_value_stored_at_the_specified_address_by_the_specified_value. 'v:dec-by d:set-description +'Increment_the_value_stored_at_the_specified_address_by_1. 'v:inc d:set-description +'Increment_the_value_stored_at_the_specified_address_by_the_specified_value. 'v:inc-by d:set-description +'Fetch_the_value_stored_at_the_address,_then_run_`n:limit`_against_it,_using_the_specified_lower_and_upper_bounds._Then_store_the_resulting_value_back_to_the_original_address. 'v:limit d:set-description +'Set_a_variable_to_0. 'v:off d:set-description +'Set_a_variable_to_-1. 'v:on d:set-description +'Make_a_copy_of_the_value_at_the_address,_then_run_the_quote._Once_the_quote_completes,_restore_the_address_to_the_specified_value. 'v:preserve d:set-description +'Fetch_a_value_from_the_specified_address,_then_run_the_quotation_with_this_value_on_the_stack._Afterwards,_store_the_returned_value_at_the_original_address. 'v:update d:set-description +'Create_a_variable._The_variable_is_initialized_to_0. 'var d:set-description +'Create_a_variable_with_the_specified_initial_value. 'var-n d:set-description +'Create_a_variable_with_the_specified_initial_value. 'var-s d:set-description +'Fetch_the_32-bit_value_stored_at_the_specified_address._Addressing_for_this_is_in_8-bit_units._The_address_must_be_aligned_on_a_four_byte_boundary. 'w:fetch d:set-description +'Fetch_the_value_stored_at_the_specified_address._Returns_the_next_address_and_the_value. 'w:fetch-next d:set-description +'Store_an_32-bit_value_into_the_specified_address._Addressing_for_this_is_in_8-bit_units._The_address_must_be_aligned_on_a_four_byte_boundary. 'w:store d:set-description +'Store_a_value_into_the_specified_address_and_return_the_next_address. 'w:store-next d:set-description +'Execute_quote_repeatedly_while_the_quote_returns_a_`TRUE`_value._The_quote_should_return_a_flag_of_either_`TRUE`_or_`FALSE`,_though_`while`_will_treat_any_non-zero_value_as_`TRUE`. 'while d:set-description +'Perform_a_bitwise_XOR_operation. 'xor d:set-description +'Begin_an_array._This_is_intended_to_make_creating_arrays_a_bit_cleaner_than_using_a_quotation_and_`a:counted-results`. '{ d:set-description +'Begin_a_lexically_scoped_area. '{{ d:set-description +'Complete_an_array_begun_by_`{`._Returns_a_pointer_to_the_data. '} d:set-description +'End_a_lexically_scoped_area._This_will_hide_any_headers_between_`{{`_and_`---reveal---`,_leaving_only_headers_between_`---reveal---`_and_the_`}}`_visible. '}} d:set-description +~~~ diff --git a/vm/nga-c/image.c b/vm/nga-c/image.c index f49d761..46734cc 100644 --- a/vm/nga-c/image.c +++ b/vm/nga-c/image.c @@ -10,8 +10,8 @@ #define CELL_MAX LLONG_MAX - 1 #endif #endif -CELL ngaImageCells = 29283; -CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10,1,10,2,10,3,10, +CELL ngaImageCells = 69290; +CELL ngaImage[] = { 1793,13735,69236,69289,202409,439,411,1601,2048,0,13789,0,10,1,10,2,10,3,10, 4,10,5,10,6,10,7,10,8,10,11,10,12,10,13,10,14,10,15,10, 16,10,17,10,18,10,19,10,20,10,21,10,22,10,23,10,24,10,25,68223234, 1,2575,85000450,1,656912,163,180,268505089,65,64,285281281,0,65,2063,10,101384453,0,9,10,68485378, @@ -21,8 +21,8 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 25,2049,130,1793,137,2049,137,117506307,0,130,0,524545,28,135,168820993,0,149,1642241,149,134283523, 13,135,1793,130,524545,2049,130,1793,130,16846593,149,163,180,1793,66,16846593,149,135,180,1793, 66,7,10,659713,1,659713,2,659713,3,659713,4,659713,5,659713,6,659713,7,659713,8,659713, - 9,45,0,1793,28279,17108737,3,2,524559,130,2049,130,2049,130,524545,0,130,524545,0,130, - 524545,0,130,524545,200,130,524545,200,130,524545,0,130,2049,144,1048838,2,1642241,10,7,27688, + 9,45,0,1793,68286,17108737,3,2,524559,130,2049,130,2049,130,524545,0,130,524545,0,130, + 524545,0,130,524545,200,130,524545,200,130,524545,0,130,2049,144,1048838,2,1642241,10,7,67695, 8246457295145463473,167841793,238,11,17826049,0,238,2,15,25,524546,26344,134287105,239,29,2305,240,459023,248,2049, 5994,134287361,239,243,659201,238,10,659969,7,2049,58,25,17694978,58,266,9,84152833,48,319750404,265, 117507601,268,184618754,45,25,16974851,-1,168886532,1,134284289,1,281,134284289,0,268,660227,32,0,0,115, @@ -38,62 +38,71 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 0,2049,258,987393,1,1793,130,524546,517,2049,515,2049,515,17891588,2,517,8,17045505,-24,-16, 17043736,-8,1118488,1793,130,17043202,1,169021201,2049,58,25,33883396,101450758,6404,459011,507,34668804,2,2049,504, 524545,449,507,302056196,449,659969,1,114,101,116,114,111,46,109,117,114,105,0,0,15, - 174,526,193489870,16060,200,200,0,100,117,112,0,537,17,174,526,6385162522,16051,200,200,0, - 100,114,111,112,0,550,19,174,526,6385706560,16715,200,200,0,115,119,97,112,0,564, - 27,174,526,6385107969,15873,200,200,0,99,97,108,108,0,578,29,174,526,193490778,16075,200, - 200,0,101,113,63,0,592,31,174,526,6383171847,15328,200,200,0,45,101,113,63,0, - 605,33,174,526,193498500,16212,200,200,0,108,116,63,0,619,35,174,526,193493055,16140,200, - 200,0,103,116,63,0,632,37,174,526,210712273007,16080,200,200,0,102,101,116,99,104, - 0,645,39,174,526,210728224082,16706,200,200,0,115,116,111,114,101,0,660,41,174,526, - 177616,15313,200,200,0,43,0,675,43,174,526,177618,15321,200,200,0,45,0,686,45, - 174,526,177615,15308,200,200,0,42,0,697,47,174,526,6383252404,15346,200,200,0,47,109, - 111,100,0,708,49,174,526,193486360,15712,200,200,0,97,110,100,0,722,51,174,526, - 5863686,16332,200,200,0,111,114,0,735,53,174,526,193511454,16845,200,200,0,120,111,114, - 0,747,55,174,526,210727785923,16646,200,200,0,115,104,105,102,116,0,760,405,180,526, - 6385597157,16356,15264,200,0,112,117,115,104,0,775,408,180,526,193502740,16351,15261,200,0,112, - 111,112,0,789,402,180,526,5861552,15352,200,200,0,48,59,0,802,58,168,526,8246307614109670331, - 16084,200,200,0,102,101,116,99,104,45,110,101,120,116,0,814,61,168,526,8246931865698567806, - 16710,200,200,0,115,116,111,114,101,45,110,101,120,116,0,834,288,168,526,-4555094569267928757, - 16608,200,200,0,115,58,116,111,45,110,117,109,98,101,114,0,854,118,168,526, - 210726128775,16481,200,200,0,115,58,101,113,63,0,875,104,168,526,7572865151309012,16537,200,200,0, - 115,58,108,101,110,103,116,104,0,890,66,168,526,6953390994662,15914,200,200,0,99,104, - 111,111,115,101,0,908,76,174,526,5863476,16178,200,200,0,105,102,0,924,74,168, - 526,193429569,15333,200,200,0,45,105,102,0,936,327,180,526,229482595734751,0,200,200,0,115, - 105,103,105,108,58,40,0,949,149,156,526,7570887965854272,15484,200,200,0,67,111,109,112, - 105,108,101,114,0,966,3,156,526,6384141667,15501,200,200,0,72,101,97,112,0,984, - 130,168,526,177617,15318,200,200,0,44,0,998,144,168,526,5863748,16388,200,200,0,115, - 44,0,1009,150,180,526,177632,15362,200,200,0,59,0,1021,361,180,526,177664,15540,200, - 200,0,91,0,1032,377,180,526,177666,15542,200,200,0,93,0,1043,2,156,526,8244734546833303387, - 15487,200,200,0,68,105,99,116,105,111,110,97,114,121,0,1054,181,168,526,6953375463185, - 16010,200,200,0,100,58,108,105,110,107,0,1074,182,168,526,6385101839,16032,200,200,0, - 100,58,120,116,0,1090,184,168,526,229461379705849,15984,200,200,0,100,58,99,108,97,115, - 115,0,1104,198,168,526,6953375526308,16022,200,200,0,100,58,110,97,109,101,0,1121,168, - 168,526,8246177435876103505,15935,200,200,0,99,108,97,115,115,58,119,111,114,100,0,1137,180, - 168,526,-4577305721744236665,15929,200,200,0,99,108,97,115,115,58,109,97,99,114,111,0,1157, - 156,168,526,8246177435875405519,15919,200,200,0,99,108,97,115,115,58,100,97,116,97,0,1178, - 202,168,526,-3503194823018915134,15979,200,200,0,100,58,97,100,100,45,104,101,97,100,101,114, - 0,1198,328,180,526,229482595734746,16655,200,200,0,115,105,103,105,108,58,35,0,1220,334, - 180,526,229482595734769,16674,200,200,0,115,105,103,105,108,58,58,0,1237,353,180,526,229482595734749, - 16663,200,200,0,115,105,103,105,108,58,38,0,1254,332,180,526,229482595734747,16659,200,200, - 0,115,105,103,105,108,58,36,0,1271,392,180,526,6953974492262,16373,200,200,0,114,101, - 112,101,97,116,0,1288,394,180,526,210706394789,15707,200,200,0,97,103,97,105,110,0, - 1304,439,168,526,249892712402858498,16192,200,200,0,105,110,116,101,114,112,114,101,116,0,1319, - 258,168,526,7572225886563901,16014,200,200,0,100,58,108,111,111,107,117,112,0,1338,174,168, - 526,399738814153734542,15932,200,200,0,99,108,97,115,115,58,112,114,105,109,105,116,105,118, - 101,0,1356,4,156,526,229445000025131,15537,200,200,0,86,101,114,115,105,111,110,0,1381, - 486,168,526,177678,16175,200,200,0,105,0,1398,130,168,526,177673,15974,200,200,0,100, - 0,1409,480,168,526,177687,16359,200,200,0,114,0,1420,265,156,526,6383922272,15481,200,200, - 0,66,97,115,101,0,1431,92,168,526,6385574852,16344,200,200,0,112,97,99,107,0, - 1445,78,168,526,6954102567431,16762,200,200,0,117,110,112,97,99,107,0,1459,186,168,526, - 7572226160734292,16028,200,200,0,100,58,115,111,117,114,99,101,0,1475,188,168,526,6953375310887,15994, - 200,200,0,100,58,104,97,115,104,0,1493,190,168,526,229461398967545,15282,200,200,0,100, + 174,526,193489870,16060,200,200,43239,100,117,112,0,537,17,174,526,6385162522,16051,200,200,43131, + 100,114,111,112,0,550,19,174,526,6385706560,16715,200,200,62357,115,119,97,112,0,564, + 27,174,526,6385107969,15873,200,200,38267,99,97,108,108,0,578,29,174,526,193490778,16075,200, + 200,44023,101,113,63,0,592,31,174,526,6383171847,15328,200,200,28258,45,101,113,63,0, + 605,33,174,526,193498500,16212,200,200,53105,108,116,63,0,619,35,174,526,193493055,16140,200, + 200,50985,103,116,63,0,632,37,174,526,210712273007,16080,200,200,47983,102,101,116,99,104, + 0,645,39,174,526,210728224082,16706,200,200,62245,115,116,111,114,101,0,660,41,174,526, + 177616,15313,200,200,28029,43,0,675,43,174,526,177618,15321,200,200,28148,45,0,686,45, + 174,526,177615,15308,200,200,27882,42,0,697,47,174,526,6383252404,15346,200,200,28537,47,109, + 111,100,0,708,49,174,526,193486360,15712,200,200,35776,97,110,100,0,722,51,174,526, + 5863686,16332,200,200,54567,111,114,0,735,53,174,526,193511454,16845,200,200,67294,120,111,114, + 0,747,55,174,526,210727785923,16646,200,200,60417,115,104,105,102,116,0,760,405,180,526, + 6385597157,16356,15264,200,54812,112,117,115,104,0,775,408,180,526,193502740,16351,15261,200,54685,112, + 111,112,0,789,402,180,526,5861552,15352,200,200,28614,48,59,0,802,58,168,526,8246307614109670331, + 16084,200,200,48032,102,101,116,99,104,45,110,101,120,116,0,814,61,168,526,8246931865698567806, + 16710,200,200,62287,115,116,111,114,101,45,110,101,120,116,0,834,288,168,526,-4555094569267928757, + 16608,200,200,59061,115,58,116,111,45,110,117,109,98,101,114,0,854,118,168,526, + 210726128775,16481,200,200,56774,115,58,101,113,63,0,875,104,168,526,7572865151309012,16537,200,200,57783, + 115,58,108,101,110,103,116,104,0,890,66,168,526,6953390994662,15914,200,200,38674,99,104, + 111,111,115,101,0,908,76,174,526,5863476,16178,200,200,51752,105,102,0,924,74,168, + 526,193429569,15333,200,200,28352,45,105,102,0,936,327,180,526,229482595734751,0,200,200,0,115, + 105,103,105,108,58,40,0,949,149,156,526,7570887965854272,15484,200,200,30372,67,111,109,112, + 105,108,101,114,0,966,3,156,526,6384141667,15501,200,200,31718,72,101,97,112,0,984, + 130,168,526,177617,15318,200,200,28069,44,0,998,144,168,526,5863748,16388,200,200,55166,115, + 44,0,1009,150,180,526,177632,15362,200,200,28728,59,0,1021,361,180,526,177664,15540,200, + 200,32670,91,0,1032,377,180,526,177666,15542,200,200,32689,93,0,1043,2,156,526,8244734546833303387, + 15487,200,200,31193,68,105,99,116,105,111,110,97,114,121,0,1054,181,168,526,6953375463185, + 16010,200,200,41944,100,58,108,105,110,107,0,1074,182,168,526,6385101839,16032,200,200,42735, + 100,58,120,116,0,1090,184,168,526,229461379705849,15984,200,200,41297,100,58,99,108,97,115, + 115,0,1104,198,168,526,6953375526308,16022,200,200,42350,100,58,110,97,109,101,0,1121,168, + 168,526,8246177435876103505,15935,200,200,39013,99,108,97,115,115,58,119,111,114,100,0,1137,180, + 168,526,-4577305721744236665,15929,200,200,38889,99,108,97,115,115,58,109,97,99,114,111,0,1157, + 156,168,526,8246177435875405519,15919,200,200,38854,99,108,97,115,115,58,100,97,116,97,0,1178, + 202,168,526,-3503194823018915134,15979,200,200,41118,100,58,97,100,100,45,104,101,97,100,101,114, + 0,1198,328,180,526,229482595734746,16655,200,200,60562,115,105,103,105,108,58,35,0,1220,334, + 180,526,229482595734769,16674,200,200,60917,115,105,103,105,108,58,58,0,1237,353,180,526,229482595734749, + 16663,200,200,60626,115,105,103,105,108,58,38,0,1254,332,180,526,229482595734747,16659,200,200, + 60589,115,105,103,105,108,58,36,0,1271,392,180,526,6953974492262,16373,200,200,55075,114,101, + 112,101,97,116,0,1288,394,180,526,210706394789,15707,200,200,35654,97,103,97,105,110,0, + 1304,439,168,526,249892712402858498,16192,200,200,52140,105,110,116,101,114,112,114,101,116,0,1319, + 258,168,526,7572225886563901,16014,200,200,41994,100,58,108,111,111,107,117,112,0,1338,174,168, + 526,399738814153734542,15932,200,200,38941,99,108,97,115,115,58,112,114,105,109,105,116,105,118, + 101,0,1356,4,156,526,229445000025131,15537,200,200,32628,86,101,114,115,105,111,110,0,1381, + 486,168,526,177678,16175,200,200,51669,105,0,1398,130,168,526,177673,15974,200,200,40984,100, + 0,1409,480,168,526,177687,16359,200,200,54866,114,0,1420,265,156,526,6383922272,15481,200,200, + 30295,66,97,115,101,0,1431,92,168,526,6385574852,16344,200,200,54641,112,97,99,107,0, + 1445,78,168,526,6954102567431,16762,200,200,64736,117,110,112,97,99,107,0,1459,186,168,526, + 7572226160734292,16028,200,200,42573,100,58,115,111,117,114,99,101,0,1475,188,168,526,6953375310887,15994, + 200,200,41634,100,58,104,97,115,104,0,1493,190,168,526,229461398967545,15282,200,200,0,100, 58,115,116,97,99,107,0,1509,192,168,526,7572225460986458,15286,200,200,0,100,58,97,115, 116,97,99,107,0,1526,194,168,526,7572225656663423,15290,200,200,0,100,58,102,115,116,97, 99,107,0,1544,196,168,526,229461380659284,15294,200,200,0,100,58,100,101,115,99,114,0, - 1562,411,168,526,-3366153855364863819,16073,200,200,0,101,114,114,58,110,111,116,102,111,117,110, + 1562,411,168,526,-3366153855364863819,16073,200,200,44189,101,114,114,58,110,111,116,102,111,117,110, 100,0,105,109,97,103,101,58,115,97,118,101,0,103,101,0,98,108,101,0, - 46,114,101,116,114,111,0,0,111,0,95,102,111,117,110,100,0,101,116,114, - 111,0,46,49,47,83,79,67,75,69,84,83,46,109,100,0,0,0,0,0, + 46,114,101,116,114,111,0,0,111,0,46,95,84,104,105,115,95,119,105,108, + 108,95,104,105,100,101,95,97,110,121,95,104,101,97,100,101,114,115,95,98, + 101,116,119,101,101,110,95,96,123,123,96,95,97,110,100,95,96,45,45,45, + 114,101,118,101,97,108,45,45,45,96,44,95,108,101,97,118,105,110,103,95, + 111,110,108,121,95,104,101,97,100,101,114,115,95,98,101,116,119,101,101,110, + 95,96,45,45,45,114,101,118,101,97,108,45,45,45,96,95,97,110,100,95, + 116,104,101,95,96,125,125,96,95,118,105,115,105,98,108,101,46,0,110,111, + 110,45,122,101,114,111,95,118,97,108,117,101,95,97,115,95,96,84,82,85, + 69,96,46,0,69,96,46,0,108,108,95,98,101,95,116,104,101,95,114,101, + 115,116,95,111,102,95,116,104,101,95,111,114,105,103,105,110,97,108,95,115, + 116,114,105,110,103,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, @@ -104,118 +113,109 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,1579,2061,168,16931,193454822,15492,200,200,0,69,79, - 77,0,1,-3,15,10,2048,2080,168,16931,210709897370,16040,200,200,0,100,101,112,116,104, - 0,1,-1,15,10,2065,2100,168,16931,6953375454647,15998,200,200,0,100,58,108,97,115,116, - 0,1,2,15,10,2084,2123,168,16931,249883453713703409,16007,200,200,0,100,58,108,97,115,116, - 46,120,116,0,2049,2100,2049,182,15,10,2104,2151,168,16931,-3502687787217310053,16001,200,200,0,100, + 0,0,0,0,0,0,0,0,0,1579,2061,168,16931,193454822,15492,200,200,31353,69,79, + 77,0,1,-3,15,10,2048,2080,168,16931,210709897370,16040,200,200,42874,100,101,112,116,104, + 0,1,-1,15,10,2065,2100,168,16931,6953375454647,15998,200,200,41684,100,58,108,97,115,116, + 0,1,2,15,10,2084,2123,168,16931,249883453713703409,16007,200,200,41873,100,58,108,97,115,116, + 46,120,116,0,2049,2100,2049,182,15,10,2104,2151,168,16931,-3502687787217310053,16001,200,200,41726,100, 58,108,97,115,116,46,99,108,97,115,115,0,2049,2100,2049,184,15,10,2129,2178, - 168,16931,-4578080011420638202,16004,200,200,0,100,58,108,97,115,116,46,110,97,109,101,0,2049, - 2100,2049,198,10,2157,2200,168,16931,229481143079314,16362,200,200,0,114,101,99,108,97,115,115, - 0,2049,2100,2049,184,16,10,2183,2225,168,16931,249892660727267252,16186,200,200,0,105,109,109,101, - 100,105,97,116,101,0,1,180,2049,2200,10,2206,2244,168,16931,6385144159,16036,200,200,0, - 100,97,116,97,0,1,156,2049,2200,10,2230,2268,168,16931,249902713833354782,16354,200,200,0,112, + 168,16931,-4578080011420638202,16004,200,200,41800,100,58,108,97,115,116,46,110,97,109,101,0,2049, + 2100,2049,198,10,2157,2200,168,16931,229481143079314,16362,200,200,54949,114,101,99,108,97,115,115, + 0,2049,2100,2049,184,16,10,2183,2225,168,16931,249892660727267252,16186,200,200,51867,105,109,109,101, + 100,105,97,116,101,0,1,180,2049,2200,10,2206,2244,168,16931,6385144159,16036,200,200,42783, + 100,97,116,97,0,1,156,2049,2200,10,2230,2268,168,16931,249902713833354782,16354,200,200,54739,112, 114,105,109,105,116,105,118,101,0,1,174,2049,2200,10,2249,2287,180,16931,6385302998,16173, - 200,200,0,104,111,111,107,0,1,1793,2049,130,1,3,15,1,1,17,2049,130, - 10,2273,2318,168,16931,7572920930896175,16642,200,200,0,115,101,116,45,104,111,111,107,0,1, - 1,17,16,10,2300,2339,168,16931,6954102295577,16759,200,200,0,117,110,104,111,111,107,0, - 1,1,17,2,1,1,17,4,16,10,2323,2360,180,16931,177613,15304,200,200,0,40, - 0,10,2349,2372,180,16931,177614,15306,200,200,0,41,0,10,2361,2394,168,16931,-4577149749211730287,15947, - 200,200,0,99,111,109,112,105,108,101,58,108,105,116,0,1,1,2049,130,2049, - 130,10,2373,2423,168,16931,-3471989134310745468,15944,200,200,0,99,111,109,112,105,108,101,58,106, - 117,109,112,0,1,1793,2049,130,2049,130,10,2401,2452,168,16931,-3471989134311018844,15941,200,200,0, + 200,200,51569,104,111,111,107,0,1,1793,2049,130,1,3,15,1,1,17,2049,130, + 10,2273,2318,168,16931,7572920930896175,16642,200,200,60374,115,101,116,45,104,111,111,107,0,1, + 1,17,16,10,2300,2339,168,16931,6954102295577,16759,200,200,62805,117,110,104,111,111,107,0, + 1,1,17,2,1,1,17,4,16,10,2323,2360,180,16931,177613,15304,200,200,27792,40, + 0,10,2349,2372,180,16931,177614,15306,200,200,27837,41,0,10,2361,2394,168,16931,-4577149749211730287,15947, + 200,200,40073,99,111,109,112,105,108,101,58,108,105,116,0,1,1,2049,130,2049, + 130,10,2373,2423,168,16931,-3471989134310745468,15944,200,200,40004,99,111,109,112,105,108,101,58,106, + 117,109,112,0,1,1793,2049,130,2049,130,10,2401,2452,168,16931,-3471989134311018844,15941,200,200,39935, 99,111,109,112,105,108,101,58,99,97,108,108,0,1,2049,2049,130,2049,130,10, - 2430,2480,168,16931,-4577149749211723885,15950,200,200,0,99,111,109,112,105,108,101,58,114,101,116, - 0,1,10,2049,130,10,2459,2505,168,16931,8246182162316307558,15952,200,200,0,99,111,109,112,105, - 108,105,110,103,63,0,1,149,15,10,2485,2526,180,16931,229482595734807,16687,200,200,0,115, + 2430,2480,168,16931,-4577149749211723885,15950,200,200,40149,99,111,109,112,105,108,101,58,114,101,116, + 0,1,10,2049,130,10,2459,2505,168,16931,8246182162316307558,15952,200,200,40207,99,111,109,112,105, + 108,105,110,103,63,0,1,149,15,10,2485,2526,180,16931,229482595734807,16687,200,200,61067,115, 105,103,105,108,58,96,0,2049,288,2049,130,10,2509,2548,180,16931,229482595734803,16681,200,200, - 0,115,105,103,105,108,58,92,0,2049,486,10,2531,2568,180,16931,229482595734805,16684,200,200, - 0,115,105,103,105,108,58,94,0,2049,480,10,2551,2585,168,16931,6385292201,16168,200,200, - 0,104,101,114,101,0,1,3,15,10,2571,2606,180,16931,229482595734775,16677,200,200,0,115, + 60988,115,105,103,105,108,58,92,0,2049,486,10,2531,2568,180,16931,229482595734805,16684,200,200, + 61028,115,105,103,105,108,58,94,0,2049,480,10,2551,2585,168,16931,6385292201,16168,200,200, + 51502,104,101,114,101,0,1,3,15,10,2571,2606,180,16931,229482595734775,16677,200,200,60958,115, 105,103,105,108,58,64,0,2049,258,2049,182,15,2049,2505,1793,2622,1,3841,2049,130, 2049,130,10,1,2615,1793,2628,15,10,1,2626,2049,66,10,2589,2650,180,16931,229482595734744,16651, - 200,200,0,115,105,103,105,108,58,33,0,2049,258,2049,182,15,2049,2505,1793,2666, + 200,200,60531,115,105,103,105,108,58,33,0,2049,258,2049,182,15,2049,2505,1793,2666, 1,4097,2049,130,2049,130,10,1,2659,1793,2672,16,10,1,2670,2049,66,10,2633,2695, - 168,16931,7572225537532823,15988,200,200,0,100,58,99,114,101,97,116,101,0,1793,2697,1,156, + 168,16931,7572225537532823,15988,200,200,41348,100,58,99,114,101,97,116,101,0,1793,2697,1,156, 1,0,2049,202,2049,2585,2049,2100,2049,182,16,10,2677,2726,168,16931,210731100041,16812,200,200, - 0,118,97,114,45,110,0,2049,2695,2049,130,10,2711,2744,168,16931,193508814,16809,200,200, - 0,118,97,114,0,134284289,0,2726,10,2731,2763,168,16931,210709068620,15960,200,200,0,99,111, + 66560,118,97,114,45,110,0,2049,2695,2049,130,10,2711,2744,168,16931,193508814,16809,200,200, + 66507,118,97,114,0,134284289,0,2726,10,2731,2763,168,16931,210709068620,15960,200,200,40316,99,111, 110,115,116,0,2049,2695,2049,2100,2049,182,16,10,2748,2785,174,16931,6385740380,16752,200,200, - 0,116,117,99,107,0,100926722,10,2771,2801,174,16931,6385561857,16337,200,200,0,111,118,101, - 114,0,67502597,10,2787,2816,174,16931,193500364,16319,200,200,0,110,105,112,0,772,10,2803, - 2837,174,16931,249885844724841747,16054,200,200,0,100,114,111,112,45,112,97,105,114,0,771,10, - 2818,2853,174,16931,6383817805,15364,200,200,0,63,100,117,112,0,6402,10,2839,2873,168,16931, - 7572302161469511,16065,200,200,0,100,117,112,45,112,97,105,114,0,67502597,67502597,10,2855,2889,168, - 16931,193489474,16043,200,200,0,100,105,112,0,525572,6,10,2876,2905,168,16931,193505809,16693,200, - 200,0,115,105,112,0,67502597,1,27,2049,2889,10,2892,2923,168,16931,5863248,15741,200,200, - 0,98,105,0,1,2905,2049,2889,8,10,2911,2942,168,16931,193487226,15747,200,200,0,98, - 105,42,0,1,2889,2049,2889,8,10,2929,2961,168,16931,193487248,15754,200,200,0,98,105, - 64,0,2,2049,2942,10,2948,2978,168,16931,193507188,16729,200,200,0,116,114,105,0,1793, + 62743,116,117,99,107,0,100926722,10,2771,2801,174,16931,6385561857,16337,200,200,54617,111,118,101, + 114,0,67502597,10,2787,2816,174,16931,193500364,16319,200,200,54455,110,105,112,0,772,10,2803, + 2837,174,16931,249885844724841747,16054,200,200,43167,100,114,111,112,45,112,97,105,114,0,771,10, + 2818,2853,174,16931,6383817805,15364,200,200,28756,63,100,117,112,0,6402,10,2839,2873,168,16931, + 7572302161469511,16065,200,200,43276,100,117,112,45,112,97,105,114,0,67502597,67502597,10,2855,2889,168, + 16931,193489474,16043,200,200,42915,100,105,112,0,525572,6,10,2876,2905,168,16931,193505809,16693,200, + 200,61117,115,105,112,0,67502597,1,27,2049,2889,10,2892,2923,168,16931,5863248,15741,200,200, + 36268,98,105,0,1,2905,2049,2889,8,10,2911,2942,168,16931,193487226,15747,200,200,36327,98, + 105,42,0,1,2889,2049,2889,8,10,2929,2961,168,16931,193487248,15754,200,200,36366,98,105, + 64,0,2,2049,2942,10,2948,2978,168,16931,193507188,16729,200,200,62542,116,114,105,0,1793, 2987,1,2905,2049,2889,2049,2905,10,1,2980,2049,2889,8,10,2965,3007,168,16931,6385737246,16736, - 200,200,0,116,114,105,42,0,1793,3024,1793,3017,4,1,2889,2049,2889,10,1,3011, - 2049,2889,2049,2889,10,1,3009,2049,2889,8,10,2993,3044,168,16931,6385737268,16745,200,200,0, - 116,114,105,64,0,2,2,2049,3007,10,3030,3064,168,16931,210732529790,16838,200,200,0,119, + 200,200,62633,116,114,105,42,0,1793,3024,1793,3017,4,1,2889,2049,2889,10,1,3011, + 2049,2889,2049,2889,10,1,3009,2049,2889,8,10,2993,3044,168,16931,6385737268,16745,200,200,62685, + 116,114,105,64,0,2,2,2049,3007,10,3030,3064,168,16931,210732529790,16838,200,200,67113,119, 104,105,108,101,0,1793,3073,525570,1639430,3,1,3066,7,10,1,3066,8,3,10,3049, - 3093,168,16931,210730385457,16769,200,200,0,117,110,116,105,108,0,1793,3104,525570,385942534,-1,25, - 3,1,3095,7,10,1,3095,8,3,10,3078,3126,168,16931,229466054377278,16134,200,200,0,102, + 3093,168,16931,210730385457,16769,200,200,65548,117,110,116,105,108,0,1793,3104,525570,385942534,-1,25, + 3,1,3095,7,10,1,3095,8,3,10,3078,3126,168,16931,229466054377278,16134,200,200,50881,102, 111,114,101,118,101,114,0,1793,3130,8,10,1,3128,2049,2905,1,3126,7,10,3109, - 3153,168,16931,210729012103,16725,200,200,0,116,105,109,101,115,0,1793,3165,4,25,33886721,1, - 2053,1542,1,3156,7,10,1,3155,8,3,10,3138,3187,180,16931,229482595734835,16690,200,200,0, + 3153,168,16931,210729012103,16725,200,200,62487,116,105,109,101,115,0,1793,3165,4,25,33886721,1, + 2053,1542,1,3156,7,10,1,3155,8,3,10,3138,3187,180,16931,229482595734835,16690,200,200,61096, 115,105,103,105,108,58,124,0,2049,258,1793,3195,2049,182,15,10,1,3191,1793,3203, 2049,184,15,10,1,3199,2049,2923,2049,2505,1793,3218,1,156,2049,2889,2049,2452,10,1, - 3211,1,27,2049,66,10,3170,3239,168,16931,6384551781,15528,200,200,0,84,82,85,69,0, - 1,-1,10,3225,3257,168,16931,210672985680,15495,200,200,0,70,65,76,83,69,0,1,0, - 10,3242,3274,168,16931,6385108193,15888,200,200,0,99,97,115,101,0,1793,3279,67502597,11,10, + 3211,1,27,2049,66,10,3170,3239,168,16931,6384551781,15528,200,200,32465,84,82,85,69,0, + 1,-1,10,3225,3257,168,16931,210672985680,15495,200,200,31408,70,65,76,83,69,0,1,0, + 10,3242,3274,168,16931,6385108193,15888,200,200,38397,99,97,115,101,0,1793,3279,67502597,11,10, 1,3276,2049,2889,4,1793,3291,772,8,2049,3239,10,1,3286,1793,3299,3,2049,3257,10, - 1,3295,2049,66,25,6,3,3,10,3260,3324,168,16931,6953962162094,16419,200,200,0,115,58, + 1,3295,2049,66,25,6,3,3,10,3260,3324,168,16931,6953962162094,16419,200,200,55791,115,58, 99,97,115,101,0,1793,3330,67502597,2049,118,10,1,3326,2049,2889,4,1793,3342,772,8, 2049,3239,10,1,3337,1793,3350,3,2049,3257,10,1,3346,2049,66,25,6,3,3,10, - 3308,3372,168,16931,193500566,16326,200,200,0,110,111,116,0,1,-1,23,10,3359,3391,168, - 16931,210719911674,16217,200,200,0,108,116,101,113,63,0,2049,2873,101516555,22,10,3376,3411,168, - 16931,210713982069,16145,200,200,0,103,116,101,113,63,0,4,2049,3391,10,3396,3430,168,16931, - 210720171475,16231,200,200,0,110,58,77,65,88,0,1,-5,15,10,3415,3449,168,16931,210720171729, - 16234,200,200,0,110,58,77,73,78,0,1,-4,15,10,3434,3470,168,16931,229474321428492,16315, - 200,200,0,110,58,122,101,114,111,63,0,1,0,11,10,3453,3492,168,16931,7572649618157049, - 16227,200,200,0,110,58,45,122,101,114,111,63,0,1,0,12,10,3474,3517,168, - 16931,-4562761254435316065,16279,200,200,0,110,58,110,101,103,97,116,105,118,101,63,0,1,0, - 13,10,3496,3542,168,16931,-4562757999622951041,16287,200,200,0,110,58,112,111,115,105,116,105,118, - 101,63,0,1,-1,14,10,3521,3576,168,16931,-1420858746182909718,16307,200,200,0,110,58,115,116, + 3308,3372,168,16931,193500566,16326,200,200,54513,110,111,116,0,1,-1,23,10,3359,3391,168, + 16931,210719911674,16217,200,200,53183,108,116,101,113,63,0,2049,2873,101516555,22,10,3376,3411,168, + 16931,210713982069,16145,200,200,51066,103,116,101,113,63,0,4,2049,3391,10,3396,3430,168,16931, + 210720171475,16231,200,200,53376,110,58,77,65,88,0,1,-5,15,10,3415,3449,168,16931,210720171729, + 16234,200,200,53426,110,58,77,73,78,0,1,-4,15,10,3434,3470,168,16931,229474321428492,16315, + 200,200,54400,110,58,122,101,114,111,63,0,1,0,11,10,3453,3492,168,16931,7572649618157049, + 16227,200,200,53317,110,58,45,122,101,114,111,63,0,1,0,12,10,3474,3517,168, + 16931,-4562761254435316065,16279,200,200,53945,110,58,110,101,103,97,116,105,118,101,63,0,1,0, + 13,10,3496,3542,168,16931,-4562757999622951041,16287,200,200,54052,110,58,112,111,115,105,116,105,118, + 101,63,0,1,-1,14,10,3521,3576,168,16931,-1420858746182909718,16307,200,200,54247,110,58,115,116, 114,105,99,116,108,121,45,112,111,115,105,116,105,118,101,63,0,1,0,14, - 10,3546,3597,168,16931,229474297120890,16251,200,200,0,110,58,101,118,101,110,63,0,1,2, - 20,3,2049,3470,10,3580,3620,168,16931,6953766919107,16283,200,200,0,110,58,111,100,100,63, - 0,2049,3597,2049,3372,10,3604,3638,168,16931,193494767,16182,200,200,0,105,102,59,0,67502597, - 1,76,2049,2889,25,6,771,10,3625,3661,168,16931,6383175836,15337,200,200,0,45,105,102, + 10,3546,3597,168,16931,229474297120890,16251,200,200,53659,110,58,101,118,101,110,63,0,1,2, + 20,3,2049,3470,10,3580,3620,168,16931,6953766919107,16283,200,200,54001,110,58,111,100,100,63, + 0,2049,3597,2049,3372,10,3604,3638,168,16931,193494767,16182,200,200,51793,105,102,59,0,67502597, + 1,76,2049,2889,25,6,771,10,3625,3661,168,16931,6383175836,15337,200,200,28398,45,105,102, 59,0,67502597,1,74,2049,2889,2049,3372,25,6,771,10,3647,3685,174,16931,193504922,16380,200, - 200,0,114,111,116,0,67503109,10,3672,3698,174,16931,177620,15341,200,200,0,47,0,197652, - 10,3687,3713,174,16931,193499461,16222,200,200,0,109,111,100,0,788,10,3700,3730,168,16931, - 210720211139,16291,200,200,0,110,58,112,111,119,0,1,1,4,1793,3738,67502597,19,10,1, - 3735,2049,3153,772,10,3715,3762,168,16931,7572652137106817,16275,200,200,0,110,58,110,101,103,97, - 116,101,0,1,-1,19,10,3744,3784,168,16931,7572652347517886,16303,200,200,0,110,58,115,113, - 117,97,114,101,0,4866,10,3766,3802,168,16931,6953767077527,16299,200,200,0,110,58,115,113, + 200,55137,114,111,116,0,67503109,10,3672,3698,174,16931,177620,15341,200,200,28474,47,0,197652, + 10,3687,3713,174,16931,193499461,16222,200,200,53273,109,111,100,0,788,10,3700,3730,168,16931, + 210720211139,16291,200,200,54108,110,58,112,111,119,0,1,1,4,1793,3738,67502597,19,10,1, + 3735,2049,3153,772,10,3715,3762,168,16931,7572652137106817,16275,200,200,53916,110,58,110,101,103,97, + 116,101,0,1,-1,19,10,3744,3784,168,16931,7572652347517886,16303,200,200,54216,110,58,115,113, + 117,97,114,101,0,4866,10,3766,3802,168,16931,6953767077527,16299,200,200,54180,110,58,115,113, 114,116,0,1,1,1793,3820,2049,2873,197652,67502597,18,1,2,197652,25,17,1,3806,7, - 10,1,3806,8,772,10,3786,3840,168,16931,210720207665,16270,200,200,0,110,58,109,105,110, + 10,1,3806,8,772,10,3786,3840,168,16931,210720207665,16270,200,200,53883,110,58,109,105,110, 0,2049,2873,13,1793,3847,3,10,1,3845,1793,3853,772,10,1,3851,2049,66,10,3825, - 3873,168,16931,210720207411,16265,200,200,0,110,58,109,97,120,0,2049,2873,14,1793,3880,3, + 3873,168,16931,210720207411,16265,200,200,53849,110,58,109,97,120,0,2049,2873,14,1793,3880,3, 10,1,3878,1793,3886,772,10,1,3884,2049,66,10,3858,3906,168,16931,210720194371,16237,200,200, - 0,110,58,97,98,115,0,2,2049,3517,1,3762,9,10,3891,3930,168,16931,229474304963756,16259, - 200,200,0,110,58,108,105,109,105,116,0,4,5,2049,3840,6,2049,3873,10,3913, - 3953,168,16931,210720203463,16255,200,200,0,110,58,105,110,99,0,659713,1,10,3938,3971,168, - 16931,210720197721,16247,200,200,0,110,58,100,101,99,0,659969,1,10,3956,3994,168,16931,8246617666422322998, - 16241,200,200,0,110,58,98,101,116,119,101,101,110,63,0,67503109,1793,4002,67503109,67503109, - 2049,3930,10,1,3997,2049,2905,11,10,3974,4027,168,16931,249861296566813883,15522,200,200,0,83,99, - 111,112,101,76,105,115,116,0,28814,28963,10,4008,4042,168,16931,5864091,16852,200,200,0, + 53476,110,58,97,98,115,0,2,2049,3517,1,3762,9,10,3891,3930,168,16931,229474304963756,16259, + 200,200,53731,110,58,108,105,109,105,116,0,4,5,2049,3840,6,2049,3873,10,3913, + 3953,168,16931,210720203463,16255,200,200,53711,110,58,105,110,99,0,659713,1,10,3938,3971,168, + 16931,210720197721,16247,200,200,53639,110,58,100,101,99,0,659969,1,10,3956,3994,168,16931,8246617666422322998, + 16241,200,200,53515,110,58,98,101,116,119,101,101,110,63,0,67503109,1793,4002,67503109,67503109, + 2049,3930,10,1,3997,2049,2905,11,10,3974,4027,168,16931,249861296566813883,15522,200,200,32350,83,99, + 111,112,101,76,105,115,116,0,68821,68970,10,4008,4042,168,16931,5864091,16852,200,200,67446, 123,123,0,2049,2100,2,1,4027,2049,61,16,10,4030,4073,168,16931,-6305314778776785742,15326,200,200, - 0,45,45,45,114,101,118,101,97,108,45,45,45,0,2049,2100,1,4027,2049,3953, - 16,10,4051,4093,168,16931,5864159,16857,200,200,0,125,125,0,1,4027,2049,58,4,15, + 28195,45,45,45,114,101,118,101,97,108,45,45,45,0,2049,2100,1,4027,2049,3953, + 16,10,4051,4093,168,16931,5864159,16857,200,200,67540,125,125,0,1,4027,2049,58,4,15, 11,1793,4107,3841,4027,4097,2,10,1,4102,1793,4133,3841,4027,1793,4128,1,2,983567,1, 4027,2049,3953,1641487,3,1,4117,7,10,1,4115,8,16,10,1,4111,2049,66,10,4081, 4152,168,0,0,0,200,200,0,66,121,116,101,0,10,4138,4172,168,0,0,0, @@ -226,91 +226,91 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 4213,2049,3274,1,1,1793,4264,1793,4259,1793,4254,3,3841,4152,10,1,4250,2049,2889,10, 1,4248,2049,2889,10,1,4246,2049,3274,1,2,1793,4283,1793,4278,3,3841,4152,10,1, 4274,2049,2889,10,1,4272,2049,3274,1,3,1793,4295,3,3841,4152,10,1,4291,2049,3274, - 3,10,4081,4328,168,16931,-6972911891006832072,15735,200,200,0,98,58,116,111,45,98,121,116,101, + 3,10,4081,4328,168,16931,-6972911891006832072,15735,200,200,36182,98,58,116,111,45,98,121,116,101, 45,97,100,100,114,101,115,115,0,4865,4,10,4301,4348,168,16931,229458800096267,15717,200,200, - 0,98,58,102,101,116,99,104,0,267265,4,134288385,4,3685,266001,2049,4172,10,4331,4374, - 168,16931,229458816047342,15726,200,200,0,98,58,115,116,111,114,101,0,1048836,4152,267265,4,1793, + 35841,98,58,102,101,116,99,104,0,267265,4,134288385,4,3685,266001,2049,4172,10,4331,4374, + 168,16931,229458816047342,15726,200,200,36024,98,58,115,116,111,114,101,0,1048836,4152,267265,4,1793, 4383,134287106,78,10,1,4380,2049,2889,2049,4209,2049,92,4,16,10,4357,4411,168,16931,229466548904081, - 16150,200,200,0,104,58,102,101,116,99,104,0,1,4348,1793,4423,2049,3953,2049,4348, - 1,-8,24,10,1,4415,2049,2923,22,10,4394,4446,168,16931,229466564855156,16159,200,200,0,104, + 16150,200,200,51159,104,58,102,101,116,99,104,0,1,4348,1793,4423,2049,3953,2049,4348, + 1,-8,24,10,1,4415,2049,2923,22,10,4394,4446,168,16931,229466564855156,16159,200,200,51343,104, 58,115,116,111,114,101,0,2049,2873,102039813,255,2049,4374,2049,3953,18350341,8,255,117507605,4374, - 10,4429,4477,168,16931,229485920923616,16820,200,200,0,119,58,102,101,116,99,104,0,1,4, - 197652,15,10,4460,4499,168,16931,229485936874691,16829,200,200,0,119,58,115,116,111,114,101,0, - 1,4,197652,16,10,4482,4526,168,16931,-2542660583859062324,16824,200,200,0,119,58,102,101,116,99, + 10,4429,4477,168,16931,229485920923616,16820,200,200,66664,119,58,102,101,116,99,104,0,1,4, + 197652,15,10,4460,4499,168,16931,229485936874691,16829,200,200,66901,119,58,115,116,111,114,101,0, + 1,4,197652,16,10,4482,4526,168,16931,-2542660583859062324,16824,200,200,66812,119,58,102,101,116,99, 104,45,110,101,120,116,0,2,1,4,17,4,2049,4477,10,4504,4556,168,16931,-3300792181564964579, - 16154,200,200,0,104,58,102,101,116,99,104,45,110,101,120,116,0,2,1,2, - 17,4,2049,4411,10,4534,4586,168,16931,-3604044820647325481,15721,200,200,0,98,58,102,101,116,99, + 16154,200,200,51254,104,58,102,101,116,99,104,45,110,101,120,116,0,2,1,2, + 17,4,2049,4411,10,4534,4586,168,16931,-3604044820647325481,15721,200,200,35935,98,58,102,101,116,99, 104,45,110,101,120,116,0,2,1,1,17,4,2049,4348,10,4564,4616,168,16931,-2542036332270164849, - 16833,200,200,0,119,58,115,116,111,114,101,45,110,101,120,116,0,2,1,4, - 17,1,4499,2049,2889,10,4594,4647,168,16931,-3300167929976067104,16163,200,200,0,104,58,115,116,111, + 16833,200,200,67043,119,58,115,116,111,114,101,45,110,101,120,116,0,2,1,4, + 17,1,4499,2049,2889,10,4594,4647,168,16931,-3300167929976067104,16163,200,200,51432,104,58,115,116,111, 114,101,45,110,101,120,116,0,2,1,2,17,1,4446,2049,2889,10,4625,4678,168, - 16931,-3603420569058428006,15730,200,200,0,98,58,115,116,111,114,101,45,110,101,120,116,0,2, - 1,1,17,1,4374,2049,2889,10,4656,4705,168,16931,7572992899446007,16786,200,200,0,118,58,105, - 110,99,45,98,121,0,286196994,659462,10,4687,4726,168,16931,7572992693095753,16779,200,200,0,118,58, - 100,101,99,45,98,121,0,68093186,168822290,10,4708,4744,168,16931,210729690831,16783,200,200,0,118, - 58,105,110,99,0,1,1,4,2049,4705,10,4729,4765,168,16931,210729685089,16776,200,200,0, + 16931,-3603420569058428006,15730,200,200,36112,98,58,115,116,111,114,101,45,110,101,120,116,0,2, + 1,1,17,1,4374,2049,2889,10,4656,4705,168,16931,7572992899446007,16786,200,200,65925,118,58,105, + 110,99,45,98,121,0,286196994,659462,10,4687,4726,168,16931,7572992693095753,16779,200,200,65791,118,58, + 100,101,99,45,98,121,0,68093186,168822290,10,4708,4744,168,16931,210729690831,16783,200,200,65867,118, + 58,105,110,99,0,1,1,4,2049,4705,10,4729,4765,168,16931,210729685089,16776,200,200,65733, 118,58,100,101,99,0,1,1,4,2049,4726,10,4750,4788,168,16931,229484636707508,16790,200,200, - 0,118,58,108,105,109,105,116,0,251790597,1542,2049,3930,4100,10,4771,4808,168,16931,6385748402, - 16798,200,200,0,118,58,111,110,0,2049,3239,4100,10,4794,4827,168,16931,210729697104,16795,200, - 200,0,118,58,111,102,102,0,2049,3257,4100,10,4812,4846,168,16931,210706586657,15709,200,200, - 0,97,108,108,111,116,0,1,3,2049,4705,10,4831,4871,168,16931,8246989571153063777,16801,200,200, - 0,118,58,112,114,101,115,101,114,118,101,0,84869636,1,27,2049,2889,1049606,10,4851, - 4896,168,16931,7572993371535704,16805,200,200,0,118,58,117,112,100,97,116,101,0,4,1793,4903, - 15,4,8,10,1,4899,2049,2905,16,10,4878,4923,168,16931,6385123360,15964,200,200,0,99, + 66001,118,58,108,105,109,105,116,0,251790597,1542,2049,3930,4100,10,4771,4808,168,16931,6385748402, + 16798,200,200,66197,118,58,111,110,0,2049,3239,4100,10,4794,4827,168,16931,210729697104,16795,200, + 200,66176,118,58,111,102,102,0,2049,3257,4100,10,4812,4846,168,16931,210706586657,15709,200,200, + 35720,97,108,108,111,116,0,1,3,2049,4705,10,4831,4871,168,16931,8246989571153063777,16801,200,200, + 66219,118,58,112,114,101,115,101,114,118,101,0,84869636,1,27,2049,2889,1049606,10,4851, + 4896,168,16931,7572993371535704,16805,200,200,66350,118,58,117,112,100,97,116,101,0,4,1793,4903, + 15,4,8,10,1,4899,2049,2905,16,10,4878,4923,168,16931,6385123360,15964,200,200,40365,99, 111,112,121,0,1793,4932,285278725,1,33951492,268767489,1,6,10,1,4925,2049,3153,771,10,4909, 4953,156,0,0,0,200,200,0,115,116,97,114,116,0,0,10,4938,4968,156,0, 0,0,200,200,0,101,110,100,0,0,10,4955,4989,168,0,0,0,200,200,0, 116,101,114,109,105,110,97,116,101,0,1,0,3841,4968,16,10,4909,5017,168,16931, - -3513680875729732409,15782,200,200,0,98,117,102,102,101,114,58,115,116,97,114,116,0,3841,4953, - 10,4995,5040,168,16931,8246143877888709904,15767,200,200,0,98,117,102,102,101,114,58,101,110,100, - 0,3841,4968,10,5020,5063,168,16931,8246143877888705218,15762,200,200,0,98,117,102,102,101,114,58, + -3513680875729732409,15782,200,200,36977,98,117,102,102,101,114,58,115,116,97,114,116,0,3841,4953, + 10,4995,5040,168,16931,8246143877888709904,15767,200,200,36706,98,117,102,102,101,114,58,101,110,100, + 0,3841,4968,10,5020,5063,168,16931,8246143877888705218,15762,200,200,36624,98,117,102,102,101,114,58, 97,100,100,0,3841,4968,16,1,4968,2049,4744,2049,4989,10,5043,5093,168,16931,8246143877888711801,15770, - 200,200,0,98,117,102,102,101,114,58,103,101,116,0,1,4968,2049,4765,3841,4968, - 15,2049,4989,10,5073,5125,168,16931,-3513680875746570456,15765,200,200,0,98,117,102,102,101,114,58, + 200,200,36764,98,117,102,102,101,114,58,103,101,116,0,1,4968,2049,4765,3841,4968, + 15,2049,4989,10,5073,5125,168,16931,-3513680875746570456,15765,200,200,36662,98,117,102,102,101,114,58, 101,109,112,116,121,0,3841,4953,4097,4968,2049,4989,10,5103,5153,168,16931,-4578413135315348908,15779,200, - 200,0,98,117,102,102,101,114,58,115,105,122,101,0,3841,4968,3841,4953,18,10, - 5132,5179,168,16931,8246143877888724869,15776,200,200,0,98,117,102,102,101,114,58,115,101,116,0, - 4097,4953,2049,5125,10,5159,5209,168,16931,-3186446687793719003,15773,200,200,0,98,117,102,102,101,114, + 200,36935,98,117,102,102,101,114,58,115,105,122,101,0,3841,4968,3841,4953,18,10, + 5132,5179,168,16931,8246143877888724869,15776,200,200,36895,98,117,102,102,101,114,58,115,101,116,0, + 4097,4953,2049,5125,10,5159,5209,168,16931,-3186446687793719003,15773,200,200,36811,98,117,102,102,101,114, 58,112,114,101,115,101,114,118,101,0,3841,4953,3841,4968,1793,5222,1,27,2049,2889, - 4097,4953,10,1,5215,2049,2889,4097,4968,10,5184,5250,156,16931,-4600587576916820603,15534,200,200,0,84, + 4097,4953,10,1,5215,2049,2889,4097,4968,10,5184,5250,156,16931,-4600587576916820603,15534,200,200,32579,84, 101,109,112,83,116,114,105,110,103,115,0,32,5229,5274,156,16931,7474516786580364824,15531,200,200, - 0,84,101,109,112,83,116,114,105,110,103,77,97,120,0,512,5251,5292,168,16931, - 229440420829967,15519,200,200,0,83,84,82,73,78,71,83,0,2049,2061,3841,5250,3841,5274,19, + 32521,84,101,109,112,83,116,114,105,110,103,77,97,120,0,512,5251,5292,168,16931, + 229440420829967,15519,200,200,32207,83,84,82,73,78,71,83,0,2049,2061,3841,5250,3841,5274,19, 18,10,5275,5322,168,0,-4555101230505660792,15275,200,200,0,115,58,111,118,101,114,115,105,122, 101,63,0,2049,104,3841,5274,2049,3971,14,10,5301,5350,168,0,8246850507793776056,15271,200,200,0, 115,58,116,114,117,110,99,97,116,101,0,2,2049,5322,1793,5363,1,0,67502597,3841, 5274,17,16,10,1,5355,9,10,5330,5384,156,0,0,0,200,200,0,67,117,114, - 114,101,110,116,0,8,10,5367,5405,168,0,0,0,200,200,0,115,58,112,111, + 114,101,110,116,0,1,10,5367,5405,168,0,0,0,200,200,0,115,58,112,111, 105,110,116,101,114,0,3841,5384,3841,5274,19,2049,5292,17,10,5386,5430,168,0,0, 0,200,200,0,115,58,110,101,120,116,0,1,5384,2049,4744,3841,5384,3841,5250,11, - 1793,5446,1,0,4097,5384,10,1,5441,9,10,5330,5466,168,16931,6953962777192,16600,200,200,0, + 1793,5446,1,0,4097,5384,10,1,5441,9,10,5330,5466,168,16931,6953962777192,16600,200,200,58890, 115,58,116,101,109,112,0,2049,5350,2,2049,104,2049,3953,2049,5405,4,2049,4923,2049, - 5405,2049,5430,10,5450,5500,168,16931,229480754149537,16473,200,200,0,115,58,101,109,112,116,121, - 0,2049,5405,2049,5430,1,0,67502597,16,10,5483,5525,168,16931,6953962747657,16575,200,200,0,115, + 5405,2049,5430,10,5450,5500,168,16931,229480754149537,16473,200,200,56695,115,58,101,109,112,116,121, + 0,2049,5405,2049,5430,1,0,67502597,16,10,5483,5525,168,16931,6953962747657,16575,200,200,58336,115, 58,115,107,105,112,0,6,1793,5533,68223234,1,786703,0,10,1,5528,2049,3064,2049,3971, - 5,10,5509,5557,168,16931,6953962453495,16528,200,200,0,115,58,107,101,101,112,0,2049,2505, + 5,10,5509,5557,168,16931,6953962453495,16528,200,200,57633,115,58,107,101,101,112,0,2049,2505, 1793,5566,1,5525,2049,2452,10,1,5561,9,2049,2585,1,144,2049,2889,2049,156,10,5541, 5595,180,0,229482595734750,0,200,200,0,115,105,103,105,108,58,39,0,2049,2505,1,5557, - 1,5466,2049,66,10,5578,5621,168,16931,229480755051740,16490,200,200,0,115,58,102,101,116,99, - 104,0,17,15,10,5604,5641,168,16931,229480771002815,16589,200,200,0,115,58,115,116,111,114, - 101,0,17,16,10,5624,5660,168,16931,6953962169596,16433,200,200,0,115,58,99,104,111,112, + 1,5466,2049,66,10,5578,5621,168,16931,229480755051740,16490,200,200,56911,115,58,102,101,116,99, + 104,0,17,15,10,5604,5641,168,16931,229480771002815,16589,200,200,58696,115,58,115,116,111,114, + 101,0,17,16,10,5624,5660,168,16931,6953962169596,16433,200,200,55940,115,58,99,104,111,112, 0,2049,5466,2,2049,104,67502597,17,2049,3971,1,0,4,16,10,5644,5693,168,16931,249904557751418990, - 16566,200,200,0,115,58,114,101,118,101,114,115,101,0,1793,5735,2,2049,5466,2049, + 16566,200,200,58184,115,58,114,101,118,101,114,115,101,0,1793,5735,2,2049,5466,2049, 5179,1,104,1793,5711,2,2049,104,17,2049,3971,10,1,5704,2049,2923,4,1793,5725,2, 15,2049,5063,2049,3971,10,1,5718,2049,3153,3,2049,5017,2049,5466,10,1,5695,2049,5209, - 10,5674,5759,168,16931,249904555657463488,16546,200,200,0,115,58,112,114,101,112,101,110,100,0, + 10,5674,5759,168,16931,249904555657463488,16546,200,200,58022,115,58,112,114,101,112,101,110,100,0, 2049,5466,1793,5802,2049,2873,1,104,2049,2961,17,3841,5274,14,1,2837,1793,5797,2,2049, 104,17,1793,5789,2,2049,104,2049,3953,10,1,5783,2049,2889,4,2049,4923,10,1,5777, - 2049,66,10,1,5763,2049,2905,10,5740,5825,168,16931,7572864733934314,16409,200,200,0,115,58,97, - 112,112,101,110,100,0,4,2049,5759,10,5807,5849,168,16931,8246849907066750743,16500,200,200,0,115, + 2049,66,10,1,5763,2049,2905,10,5740,5825,168,16931,7572864733934314,16409,200,200,55681,115,58,97, + 112,112,101,110,100,0,4,2049,5759,10,5807,5849,168,16931,8246849907066750743,16500,200,200,57140,115, 58,102,111,114,45,101,97,99,104,0,1793,5864,67502597,6415,3,67502597,67502597,251987205,2054,101777670, - 1,1,5851,7,10,1,5851,8,771,10,5829,5891,168,16931,-2744677796467205929,16518,200,200,0,115, + 1,1,5851,7,10,1,5851,8,771,10,5829,5891,168,16931,-2744677796467205929,16518,200,200,57430,115, 58,105,110,100,101,120,47,99,104,97,114,0,4,1793,5914,2049,58,25,4,1793, 5903,67502597,12,10,1,5900,2049,2889,4,25,3,1,5894,7,10,1,5894,1793,5923,18, 2049,3971,772,10,1,5918,1793,5932,2049,104,67502597,11,10,1,5927,2049,2978,1793,5942,3, - 1,-1,10,1,5938,9,10,5869,5972,168,16931,-2157201767973730595,16441,200,200,0,115,58,99,111, + 1,-1,10,1,5938,9,10,5869,5972,168,16931,-2157201767973730595,16441,200,200,56114,115,58,99,111, 110,116,97,105,110,115,47,99,104,97,114,63,0,2049,5891,1,-1,12,10,5946, - 5994,168,16931,6953962341782,16514,200,200,0,115,58,104,97,115,104,0,1,5381,4,1793,6002, + 5994,168,16931,6953962341782,16514,200,200,57363,115,58,104,97,115,104,0,1,5381,4,1793,6002, 286458116,33,10,1,5999,2049,5849,10,5978,6020,156,0,0,0,200,200,0,83,116,114, 0,0,6007,6038,168,0,0,0,200,200,0,101,120,116,114,97,99,116,0,2049, 2873,3841,6020,4,2049,4923,3841,6020,67502597,17,1,0,4,16,10,6021,6069,168,0,0, @@ -320,7 +320,7 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 2049,3470,21,10,1,6118,2049,2889,4,1793,6133,772,2,10,1,6130,9,10,1,6115, 2049,2889,10,1,6113,2049,2889,10,6091,6162,168,0,0,0,200,200,0,115,101,116, 117,112,0,2049,5500,4097,6020,1,0,67503109,67503109,1,104,1,5994,2049,2923,1793,6182,67502597, - 2049,104,10,1,6178,2049,2889,4,10,5978,6212,168,16931,-581580411198892688,16523,200,200,0,115,58, + 2049,104,10,1,6178,2049,2889,4,10,5978,6212,168,16931,-581580411198892688,16523,200,200,57514,115,58, 105,110,100,101,120,47,115,116,114,105,110,103,0,67502597,1793,6231,2049,6162,1793,6224, 2049,6069,2049,6109,10,1,6219,2049,3153,771,3,10,1,6215,2049,2889,18,1,2,18, 1,-1,2049,3873,10,6188,6257,156,0,0,0,200,200,0,83,114,99,0,0,6244, @@ -333,130 +333,130 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 2049,104,2049,4923,10,6353,6401,168,0,0,0,200,200,0,99,111,109,112,97,114, 101,0,3841,6285,3841,6271,2049,118,3841,6309,22,4097,6309,3841,6309,1793,6421,3841,6297,4097, 6322,10,1,6416,2049,74,10,6384,6440,168,0,0,0,200,200,0,110,101,120,116, - 0,1,6297,2049,4744,10,6188,6473,168,16931,-6456227941126558634,16446,200,200,0,115,58,99,111,110, + 0,1,6297,2049,4744,10,6188,6473,168,16931,-6456227941126558634,16446,200,200,56192,115,58,99,111,110, 116,97,105,110,115,47,115,116,114,105,110,103,63,0,4097,6271,4097,6257,2049,5500, 4097,6285,1,0,4097,6297,1,0,4097,6309,3841,6257,2049,104,1793,6504,2049,6370,2049,6342, 2049,6401,2049,6440,10,1,6495,2049,3153,3841,6309,10,6445,6529,168,16931,7572864921182136,16495,200,200, - 0,115,58,102,105,108,116,101,114,0,67502597,2049,5322,1793,6539,1,5350,2049,2889,10, + 56982,115,58,102,105,108,116,101,114,0,67502597,2049,5322,1793,6539,1,5350,2049,2889,10, 1,6534,9,1793,6570,2049,5500,2049,5179,4,1793,6562,2049,2873,4,8,1,5063,1,17, 2049,66,10,1,6551,2049,5849,3,2049,5017,10,1,6544,2049,5209,10,6511,6590,168,16931, - 210726137008,16541,200,200,0,115,58,109,97,112,0,1793,6612,2049,5500,2049,5179,4,1793,6604, + 210726137008,16541,200,200,57859,115,58,109,97,112,0,1793,6612,2049,5500,2049,5179,4,1793,6604, 67502597,8,2049,5063,10,1,6599,2049,5849,3,2049,5017,10,1,6592,2049,5209,10,6575,6635, - 168,16931,7572865443813333,16594,200,200,0,115,58,115,117,98,115,116,114,0,1793,6641,17,2049, + 168,16931,7572865443813333,16594,200,200,58760,115,58,115,117,98,115,116,114,0,1793,6641,17,2049, 5500,10,1,6637,2049,2889,1793,6653,67502597,1,4923,2049,2889,10,1,6647,2049,2905,67502597,1793, 6666,17,1,0,4,16,10,1,6660,2049,2889,10,6617,6688,168,16931,229480769412560,16570,200,200, - 0,115,58,114,105,103,104,116,0,67502597,2049,104,67502597,18,4,2049,6635,10,6671,6713, - 168,16931,6953962489469,16532,200,200,0,115,58,108,101,102,116,0,1,0,4,2049,6635,10, - 6697,6743,168,16931,-949014848675520942,16414,200,200,0,115,58,98,101,103,105,110,115,45,119,105, + 58235,115,58,114,105,103,104,116,0,67502597,2049,104,67502597,18,4,2049,6635,10,6671,6713, + 168,16931,6953962489469,16532,200,200,57703,115,58,108,101,102,116,0,1,0,4,2049,6635,10, + 6697,6743,168,16931,-949014848675520942,16414,200,200,55734,115,58,98,101,103,105,110,115,45,119,105, 116,104,63,0,2,2049,104,1,19,2049,2889,2049,6713,2049,118,10,6719,6777,168,16931, - -2744863427173801468,16476,200,200,0,115,58,101,110,100,115,45,119,105,116,104,63,0,2,2049, - 104,1,19,2049,2889,2049,6688,2049,118,10,6755,6805,168,16931,6953962177261,16451,200,200,0,115, + -2744863427173801468,16476,200,200,56719,115,58,101,110,100,115,45,119,105,116,104,63,0,2,2049, + 104,1,19,2049,2889,2049,6688,2049,118,10,6755,6805,168,16931,6953962177261,16451,200,200,56280,115, 58,99,111,112,121,0,67502597,2049,104,2049,3953,2049,4923,10,6789,6831,168,16931,7572863551252214,16400, - 200,200,0,115,58,68,73,71,73,84,83,0,2049,5525,48,49,50,51,52,53, + 200,200,55477,115,58,68,73,71,73,84,83,0,2049,5525,48,49,50,51,52,53, 54,55,56,57,65,66,67,68,69,70,0,1,6833,10,6813,6880,168,16931,-3174032931242973971,16394, - 200,200,0,115,58,65,83,67,73,73,45,76,79,87,69,82,67,65,83,69, + 200,200,55355,115,58,65,83,67,73,73,45,76,79,87,69,82,67,65,83,69, 0,2049,5525,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113, 114,115,116,117,118,119,120,121,122,0,1,6882,10,6853,6939,168,16931,-3174020239987242608,16397,200, - 200,0,115,58,65,83,67,73,73,45,85,80,80,69,82,67,65,83,69,0, + 200,55416,115,58,65,83,67,73,73,45,85,80,80,69,82,67,65,83,69,0, 2049,5525,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82, 83,84,85,86,87,88,89,90,0,1,6941,10,6912,6996,168,16931,4909441458232360267,16391,200,200, - 0,115,58,65,83,67,73,73,45,76,69,84,84,69,82,83,0,2049,5525,97, + 55284,115,58,65,83,67,73,73,45,76,69,84,84,69,82,83,0,2049,5525,97, 98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117, 118,119,120,121,122,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79, 80,81,82,83,84,85,86,87,88,89,90,0,1,6998,10,6971,7077,168,16931,1619870888324870636, - 16403,200,200,0,115,58,80,85,78,67,84,85,65,84,73,79,78,0,2049,5525, + 16403,200,200,55547,115,58,80,85,78,67,84,85,65,84,73,79,78,0,2049,5525, 95,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,58,59,60,61, 62,63,64,91,92,93,94,96,123,124,125,126,0,1,7079,1,95,67502597,16,10, - 7054,7141,156,16931,-2745567821320788289,16406,200,200,0,115,58,87,72,73,84,69,83,80,65,67, - 69,0,32,9,10,13,0,7119,7157,180,16931,177612,15301,200,200,0,39,0,1,5500, - 2049,168,10,7146,7173,180,16931,177609,15298,200,200,0,36,0,1,0,2049,156,10,7162, - 0,156,16931,249835240931843863,15445,200,200,0,65,83,67,73,73,58,78,85,76,0,7178,27, - 156,16931,249835240931833987,15418,200,200,0,65,83,67,73,73,58,69,83,67,0,7197,8,156, - 16931,7570764876722141,15382,200,200,0,65,83,67,73,73,58,66,83,0,7216,9,156,16931,7570764876722340, - 15436,200,200,0,65,83,67,73,73,58,72,84,0,7234,10,156,16931,7570764876722458,15439,200, - 200,0,65,83,67,73,73,58,76,70,0,7252,11,156,16931,7570764876722802,15475,200,200,0, - 65,83,67,73,73,58,86,84,0,7270,12,156,16931,7570764876722260,15427,200,200,0,65,83, - 67,73,73,58,70,70,0,7288,13,156,16931,7570764876722173,15388,200,200,0,65,83,67,73, - 73,58,67,82,0,7306,32,156,16931,-4630583730859567212,15460,200,200,0,65,83,67,73,73,58, - 83,80,65,67,69,0,7324,127,156,16931,249835240931832445,15403,200,200,0,65,83,67,73,73, - 58,68,69,76,0,7345,1,156,16931,249835240931849106,15457,200,200,0,65,83,67,73,73,58, - 83,79,72,0,7364,2,156,16931,249835240931849287,15463,200,200,0,65,83,67,73,73,58,83, - 84,88,0,7383,3,156,16931,249835240931834041,15424,200,200,0,65,83,67,73,73,58,69,84, - 88,0,7402,4,156,16931,249835240931833872,15415,200,200,0,65,83,67,73,73,58,69,79,84, - 0,7421,5,156,16931,249835240931833836,15412,200,200,0,65,83,67,73,73,58,69,78,81,0, - 7440,6,156,16931,249835240931829111,15376,200,200,0,65,83,67,73,73,58,65,67,75,0,7459, - 7,156,16931,249835240931830267,15379,200,200,0,65,83,67,73,73,58,66,69,76,0,7478,14, - 156,16931,7570764876722698,15454,200,200,0,65,83,67,73,73,58,83,79,0,7497,15,156,16931, - 7570764876722692,15451,200,200,0,65,83,67,73,73,58,83,73,0,7515,16,156,16931,249835240931832669,15406, - 200,200,0,65,83,67,73,73,58,68,76,69,0,7533,17,156,16931,249835240931832352,15391,200, - 200,0,65,83,67,73,73,58,68,67,49,0,7552,18,156,16931,249835240931832353,15394,200,200, - 0,65,83,67,73,73,58,68,67,50,0,7571,19,156,16931,249835240931832354,15397,200,200,0, - 65,83,67,73,73,58,68,67,51,0,7590,20,156,16931,249835240931832355,15400,200,200,0,65, - 83,67,73,73,58,68,67,52,0,7609,21,156,16931,249835240931843202,15442,200,200,0,65,83, - 67,73,73,58,78,65,75,0,7628,22,156,16931,249835240931849442,15469,200,200,0,65,83,67, - 73,73,58,83,89,78,0,7647,23,156,16931,249835240931834019,15421,200,200,0,65,83,67,73, - 73,58,69,84,66,0,7666,24,156,16931,249835240931831226,15385,200,200,0,65,83,67,73,73, - 58,67,65,78,0,7685,25,156,16931,7570764876722234,15409,200,200,0,65,83,67,73,73,58, - 69,77,0,7704,26,156,16931,249835240931849298,15466,200,200,0,65,83,67,73,73,58,83,85, - 66,0,7722,28,156,16931,7570764876722273,15430,200,200,0,65,83,67,73,73,58,70,83,0, - 7741,29,156,16931,7570764876722306,15433,200,200,0,65,83,67,73,73,58,71,83,0,7759,30, - 156,16931,7570764876722669,15448,200,200,0,65,83,67,73,73,58,82,83,0,7777,31,156,16931, - 7570764876722768,15472,200,200,0,65,83,67,73,73,58,85,83,0,7795,7835,168,16931,-3553210050247798618,15830, - 200,200,0,99,58,108,111,119,101,114,99,97,115,101,63,0,1,97,1,122, - 2049,3994,10,7813,7864,168,16931,-3552791238808663639,15857,200,200,0,99,58,117,112,112,101,114,99, + 7054,7141,156,16931,-2745567821320788289,16406,200,200,55614,115,58,87,72,73,84,69,83,80,65,67, + 69,0,32,9,10,13,0,7119,7157,180,16931,177612,15301,200,200,27768,39,0,1,5500, + 2049,168,10,7146,7173,180,16931,177609,15298,200,200,27746,36,0,1,0,2049,156,10,7162, + 0,156,16931,249835240931843863,15445,200,200,29762,65,83,67,73,73,58,78,85,76,0,7178,27, + 156,16931,249835240931833987,15418,200,200,29393,65,83,67,73,73,58,69,83,67,0,7197,8,156, + 16931,7570764876722141,15382,200,200,28901,65,83,67,73,73,58,66,83,0,7216,9,156,16931,7570764876722340, + 15436,200,200,29639,65,83,67,73,73,58,72,84,0,7234,10,156,16931,7570764876722458,15439,200, + 200,29680,65,83,67,73,73,58,76,70,0,7252,11,156,16931,7570764876722802,15475,200,200,30172, + 65,83,67,73,73,58,86,84,0,7270,12,156,16931,7570764876722260,15427,200,200,29516,65,83, + 67,73,73,58,70,70,0,7288,13,156,16931,7570764876722173,15388,200,200,28983,65,83,67,73, + 73,58,67,82,0,7306,32,156,16931,-4630583730859567212,15460,200,200,29967,65,83,67,73,73,58, + 83,80,65,67,69,0,7324,127,156,16931,249835240931832445,15403,200,200,29188,65,83,67,73,73, + 58,68,69,76,0,7345,1,156,16931,249835240931849106,15457,200,200,29926,65,83,67,73,73,58, + 83,79,72,0,7364,2,156,16931,249835240931849287,15463,200,200,30008,65,83,67,73,73,58,83, + 84,88,0,7383,3,156,16931,249835240931834041,15424,200,200,29475,65,83,67,73,73,58,69,84, + 88,0,7402,4,156,16931,249835240931833872,15415,200,200,29352,65,83,67,73,73,58,69,79,84, + 0,7421,5,156,16931,249835240931833836,15412,200,200,29311,65,83,67,73,73,58,69,78,81,0, + 7440,6,156,16931,249835240931829111,15376,200,200,28819,65,83,67,73,73,58,65,67,75,0,7459, + 7,156,16931,249835240931830267,15379,200,200,28860,65,83,67,73,73,58,66,69,76,0,7478,14, + 156,16931,7570764876722698,15454,200,200,29885,65,83,67,73,73,58,83,79,0,7497,15,156,16931, + 7570764876722692,15451,200,200,29844,65,83,67,73,73,58,83,73,0,7515,16,156,16931,249835240931832669,15406, + 200,200,29229,65,83,67,73,73,58,68,76,69,0,7533,17,156,16931,249835240931832352,15391,200, + 200,29024,65,83,67,73,73,58,68,67,49,0,7552,18,156,16931,249835240931832353,15394,200,200, + 29065,65,83,67,73,73,58,68,67,50,0,7571,19,156,16931,249835240931832354,15397,200,200,29106, + 65,83,67,73,73,58,68,67,51,0,7590,20,156,16931,249835240931832355,15400,200,200,29147,65, + 83,67,73,73,58,68,67,52,0,7609,21,156,16931,249835240931843202,15442,200,200,29721,65,83, + 67,73,73,58,78,65,75,0,7628,22,156,16931,249835240931849442,15469,200,200,30090,65,83,67, + 73,73,58,83,89,78,0,7647,23,156,16931,249835240931834019,15421,200,200,29434,65,83,67,73, + 73,58,69,84,66,0,7666,24,156,16931,249835240931831226,15385,200,200,28942,65,83,67,73,73, + 58,67,65,78,0,7685,25,156,16931,7570764876722234,15409,200,200,29270,65,83,67,73,73,58, + 69,77,0,7704,26,156,16931,249835240931849298,15466,200,200,30049,65,83,67,73,73,58,83,85, + 66,0,7722,28,156,16931,7570764876722273,15430,200,200,29557,65,83,67,73,73,58,70,83,0, + 7741,29,156,16931,7570764876722306,15433,200,200,29598,65,83,67,73,73,58,71,83,0,7759,30, + 156,16931,7570764876722669,15448,200,200,29803,65,83,67,73,73,58,82,83,0,7777,31,156,16931, + 7570764876722768,15472,200,200,30131,65,83,67,73,73,58,85,83,0,7795,7835,168,16931,-3553210050247798618,15830, + 200,200,37701,99,58,108,111,119,101,114,99,97,115,101,63,0,1,97,1,122, + 2049,3994,10,7813,7864,168,16931,-3552791238808663639,15857,200,200,38035,99,58,117,112,112,101,114,99, 97,115,101,63,0,1,65,1,90,2049,3994,10,7842,7890,168,16931,249882047462872305,15826,200,200, - 0,99,58,108,101,116,116,101,114,63,0,1,7835,1,7864,2049,2923,22,10,7871, - 7916,168,16931,7572182947632498,15819,200,200,0,99,58,100,105,103,105,116,63,0,1,48,1, - 57,2049,3994,10,7898,7943,168,16931,8246107997572794159,15861,200,200,0,99,58,118,105,115,105,98, - 108,101,63,0,1,32,1,126,2049,3994,10,7923,7968,168,16931,7572183659755470,15865,200,200,0, + 37637,99,58,108,101,116,116,101,114,63,0,1,7835,1,7864,2049,2923,22,10,7871, + 7916,168,16931,7572182947632498,15819,200,200,37539,99,58,100,105,103,105,116,63,0,1,48,1, + 57,2049,3994,10,7898,7943,168,16931,8246107997572794159,15861,200,200,38093,99,58,118,105,115,105,98, + 108,101,63,0,1,32,1,126,2049,3994,10,7923,7968,168,16931,7572183659755470,15865,200,200,38151, 99,58,118,111,119,101,108,63,0,2049,5525,97,101,105,111,117,65,69,73,79, - 85,0,1,7970,4,2049,5972,10,7950,8009,168,16931,-3553628119197217420,15815,200,200,0,99,58,99, + 85,0,1,7970,4,2049,5972,10,7950,8009,168,16931,-3553628119197217420,15815,200,200,37479,99,58,99, 111,110,115,111,110,97,110,116,63,0,2,2049,7890,1793,8019,2049,7968,2049,3372,10, 1,8014,1793,8027,3,2049,3257,10,1,8023,2049,66,10,7987,8055,168,16931,-6558963794062736370,15869,200, - 200,0,99,58,119,104,105,116,101,115,112,97,99,101,63,0,1,7141,4,2049, - 5972,10,8032,8084,168,16931,-6672106426782194349,15795,200,200,0,99,58,45,108,111,119,101,114,99, - 97,115,101,63,0,2049,7835,2049,3372,10,8061,8112,168,16931,-6671687615343059370,15799,200,200,0,99, + 200,38207,99,58,119,104,105,116,101,115,112,97,99,101,63,0,1,7141,4,2049, + 5972,10,8032,8084,168,16931,-6672106426782194349,15795,200,200,37169,99,58,45,108,111,119,101,114,99, + 97,115,101,63,0,2049,7835,2049,3372,10,8061,8112,168,16931,-6671687615343059370,15799,200,200,37231,99, 58,45,117,112,112,101,114,99,97,115,101,63,0,2049,7864,2049,3372,10,8089,8136, - 168,16931,249881966047746975,15791,200,200,0,99,58,45,100,105,103,105,116,63,0,2049,7916,2049, - 3372,10,8117,8165,168,16931,1197920222559514203,15811,200,200,0,99,58,45,119,104,105,116,101,115, - 112,97,99,101,63,0,2049,8055,2049,3372,10,8141,8191,168,16931,-4579699312045814628,15803,200,200,0, + 168,16931,249881966047746975,15791,200,200,37101,99,58,45,100,105,103,105,116,63,0,2049,7916,2049, + 3372,10,8117,8165,168,16931,1197920222559514203,15811,200,200,37415,99,58,45,119,104,105,116,101,115, + 112,97,99,101,63,0,2049,8055,2049,3372,10,8141,8191,168,16931,-4579699312045814628,15803,200,200,37293, 99,58,45,118,105,115,105,98,108,101,63,0,2049,7943,2049,3372,10,8170,8215,168, - 16931,249881966759869947,15807,200,200,0,99,58,45,118,111,119,101,108,63,0,2049,7968,2049,3372, - 10,8196,8243,168,16931,-6672524495731613151,15787,200,200,0,99,58,45,99,111,110,115,111,110,97, - 110,116,63,0,2049,8009,2049,3372,10,8220,8268,168,16931,8246107917359977086,15849,200,200,0,99,58, + 16931,249881966759869947,15807,200,200,37355,99,58,45,118,111,119,101,108,63,0,2049,7968,2049,3372, + 10,8196,8243,168,16931,-6672524495731613151,15787,200,200,37037,99,58,45,99,111,110,115,111,110,97, + 110,116,63,0,2049,8009,2049,3372,10,8220,8268,168,16931,8246107917359977086,15849,200,200,37943,99,58, 116,111,45,117,112,112,101,114,0,2,2049,7835,25,3,1,32,18,10,8248,8297, - 168,16931,8246107917349275483,15837,200,200,0,99,58,116,111,45,108,111,119,101,114,0,2,2049, - 7864,25,3,1,32,17,10,8277,8327,168,16931,-4579599832837481303,15845,200,200,0,99,58,116,111, + 168,16931,8246107917349275483,15837,200,200,37797,99,58,116,111,45,108,111,119,101,114,0,2,2049, + 7864,25,3,1,32,17,10,8277,8327,168,16931,-4579599832837481303,15845,200,200,37910,99,58,116,111, 45,115,116,114,105,110,103,0,2049,5525,46,0,1,8329,2049,5466,1,39,2049,2905, - 10,8306,8363,168,16931,-6563237009071717459,15853,200,200,0,99,58,116,111,103,103,108,101,45,99, + 10,8306,8363,168,16931,-6563237009071717459,15853,200,200,37986,99,58,116,111,103,103,108,101,45,99, 97,115,101,0,2,2049,7835,1,8268,1,8297,2049,66,10,8340,8394,168,16931,-4579599833032159941,15841, - 200,200,0,99,58,116,111,45,110,117,109,98,101,114,0,2,2049,7916,1793,8403, + 200,200,37840,99,58,116,111,45,110,117,109,98,101,114,0,2,2049,7916,1793,8403, 1,48,18,10,1,8399,1793,8411,3,1,0,10,1,8407,2049,66,10,8373,8436,168, - 16931,8246850501110408334,16612,200,200,0,115,58,116,111,45,117,112,112,101,114,0,1,8268,2049, - 6590,10,8416,8461,168,16931,8246850501099706731,16604,200,200,0,115,58,116,111,45,108,111,119,101, - 114,0,1,8297,2049,6590,10,8441,8487,168,16931,-4555094364049076026,16630,200,200,0,115,58,116,114, + 16931,8246850501110408334,16612,200,200,59091,115,58,116,111,45,117,112,112,101,114,0,1,8268,2049, + 6590,10,8416,8461,168,16931,8246850501099706731,16604,200,200,59000,115,58,116,111,45,108,111,119,101, + 114,0,1,8297,2049,6590,10,8441,8487,168,16931,-4555094364049076026,16630,200,200,59510,115,58,116,114, 105,109,45,108,101,102,116,0,2049,5466,1793,8501,2049,58,1,8055,1,3492,2049,2923, - 21,10,1,8491,2049,3064,2049,3971,10,8466,8530,168,16931,-2744161423935835847,16634,200,200,0,115,58, + 21,10,1,8491,2049,3064,2049,3971,10,8466,8530,168,16931,-2744161423935835847,16634,200,200,59549,115,58, 116,114,105,109,45,114,105,103,104,116,0,2049,5466,2049,5693,2049,8487,2049,5693,10, - 8508,8555,168,16931,6953962791214,16626,200,200,0,115,58,116,114,105,109,0,2049,8530,2049,8487, - 10,8539,8588,156,16931,-429402327855008236,15516,200,200,0,82,101,119,114,105,116,101,85,110,100, + 8508,8555,168,16931,6953962791214,16626,200,200,59458,115,58,116,114,105,109,0,2049,8530,2049,8487, + 10,8539,8588,156,16931,-429402327855008236,15516,200,200,32092,82,101,119,114,105,116,101,85,110,100, 101,114,115,99,111,114,101,115,0,-1,8560,8602,168,0,0,0,200,200,0,115, 117,98,0,1,95,1793,8609,1,32,10,1,8606,2049,3274,10,8589,8631,168,0,0, 0,200,200,0,114,101,119,114,105,116,101,0,3841,8588,1793,8640,1,8602,2049,6590, 10,1,8635,9,10,8614,8660,168,0,0,0,200,200,0,104,97,110,100,108,101, - 0,1,5595,8,10,8560,8681,180,16931,229482595734750,16667,200,200,0,115,105,103,105,108,58, - 39,0,2049,8631,2049,8660,10,8664,8708,168,16931,-2744210522849075797,16577,200,200,0,115,58,115,112, + 0,1,5595,8,10,8560,8681,180,16931,229482595734750,16667,200,200,60693,115,105,103,105,108,58, + 39,0,2049,8631,2049,8660,10,8664,8708,168,16931,-2744210522849075797,16577,200,200,58405,115,58,115,112, 108,105,116,47,99,104,97,114,0,2049,2873,2049,5891,772,2049,2873,2049,6713,1,41, - 2049,2889,10,8686,8746,168,16931,-72719441055178940,16583,200,200,0,115,58,115,112,108,105,116,47, + 2049,2889,10,8686,8746,168,16931,-72719441055178940,16583,200,200,58472,115,58,115,112,108,105,116,47, 115,116,114,105,110,103,0,2049,2873,2049,6212,2049,3953,772,2049,2873,2049,6713,1,41, - 2049,2889,10,8722,8781,168,16931,249904557744535982,16554,200,200,0,115,58,114,101,112,108,97,99, + 2049,2889,10,8722,8781,168,16931,249904557744535982,16554,200,200,58093,115,58,114,101,112,108,97,99, 101,0,67502597,2049,104,2049,2585,16,1793,8797,2049,8746,4,2049,2585,15,17,10,1,8789, 2049,2889,2049,5759,2049,5825,10,8762,8824,156,0,0,0,200,200,0,83,112,108,105, 116,45,79,110,0,0,8806,8841,168,0,0,0,200,200,0,109,97,116,99,104, 63,0,3841,8824,11,10,8825,8864,168,0,0,0,200,200,0,116,101,114,109,105, 110,97,116,101,0,1,0,67502597,2049,3971,16,10,8845,8885,168,0,0,0,200,200, 0,115,116,101,112,0,1,3953,2049,2889,2049,8841,1793,8899,2,2049,130,2049,8864,10, - 1,8893,9,10,8762,8923,168,16931,8246850503517749147,16616,200,200,0,115,58,116,111,107,101,110, + 1,8893,9,10,8762,8923,168,16931,8246850503517749147,16616,200,200,59152,115,58,116,111,107,101,110, 105,122,101,0,4097,8824,2049,5557,2049,2585,1,0,2049,130,1793,8945,2,2049,130,2, 1,8885,2049,5849,3,10,1,8935,2049,2889,2049,2585,67502597,18,2049,3971,67502597,16,10,8903, 8974,156,0,0,0,200,200,0,78,101,101,100,108,101,0,0,0,0,0,0, @@ -478,7 +478,7 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 200,200,0,115,97,118,101,0,2049,5557,3841,9272,1,9132,17,2049,3953,16,1,9272, 2049,4744,10,9273,9316,168,0,0,0,200,200,0,110,101,120,116,0,1793,9322,3841, 9115,17,10,1,9318,2049,2905,10,9302,9342,168,0,0,0,200,200,0,100,111,110, - 101,63,0,2049,104,2049,3470,10,8903,9377,168,16931,9213749861880762729,16621,200,200,0,115,58,116, + 101,63,0,2049,104,2049,3470,10,8903,9377,168,16931,9213749861880762729,16621,200,200,59301,115,58,116, 111,107,101,110,105,122,101,45,111,110,45,115,116,114,105,110,103,0,1,0, 4097,9272,1793,9391,2,1,8974,2049,6805,2049,5825,10,1,9383,1793,9400,2049,104,4097,9115, 10,1,9395,2049,2923,1793,9417,1,8974,2049,8746,2049,9287,2049,9316,2049,9342,10,1,9406, @@ -494,7 +494,7 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 10,1,9588,2049,3093,3,10,9347,9636,168,0,-3499893649969689757,15267,200,200,0,110,58,116,111, 45,115,116,114,105,110,103,47,114,101,118,101,114,115,101,100,0,1793,9650,1, 9447,2049,5179,2,2049,3906,2049,9586,2049,9533,10,1,9638,2049,5209,1,9447,10,9606,9678, - 168,16931,-4562752463999572364,16311,200,200,0,110,58,116,111,45,115,116,114,105,110,103,0,2049, + 168,16931,-4562752463999572364,16311,200,200,54368,110,58,116,111,45,115,116,114,105,110,103,0,2049, 9636,2049,5693,10,9657,9697,168,0,0,0,200,200,0,99,104,97,114,0,1,32, 1793,9706,1,95,2049,5063,10,1,9701,2049,3274,1,114,1793,9719,1,13,2049,5063,10, 1,9714,2049,3274,1,110,1793,9732,1,10,2049,5063,10,1,9727,2049,3274,1,116,1793, @@ -505,72 +505,72 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 110,1793,9830,4,2049,9678,1,5063,2049,5849,10,1,9822,2049,3274,3,10,9778,9852,168, 0,0,0,200,200,0,104,97,110,100,108,101,0,1,92,1793,9861,2049,58,2049, 9697,10,1,9856,2049,3274,1,37,1793,9874,2049,58,2049,9792,10,1,9869,2049,3274,2049, - 5063,10,9657,9899,168,16931,7572864928505531,16504,200,200,0,115,58,102,111,114,109,97,116,0, + 5063,10,9657,9899,168,16931,7572864928505531,16504,200,200,57193,115,58,102,111,114,109,97,116,0, 1793,9928,2049,5500,1793,9923,2049,5179,1793,9918,2049,58,25,2049,9852,1,9909,7,10,1, 9909,8,3,10,1,9905,2049,2905,10,1,9901,2049,5209,10,9881,9950,168,16931,229480751847353,16437, - 200,200,0,115,58,99,111,110,115,116,0,1,5557,2049,2889,2049,2763,10,9933,9973, + 200,200,56003,115,58,99,111,110,115,116,0,1,5557,2049,2889,2049,2763,10,9933,9973, 156,0,0,0,200,200,0,86,97,108,117,101,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,9957,10015,168,0,0,0,200,200,0,102,114,111,109,0,2049,104,2,1793, 10033,1793,10026,1,9973,4113,10,1,10022,2049,2905,2049,3971,10,1,10020,2049,3153,3,10, 10001,10051,168,0,0,0,200,200,0,116,111,0,2,2049,104,1793,10067,2049,58,1, 97,18,2049,3953,1,9973,266001,10,1,10056,2049,3153,3,10,9933,10090,168,16931,229481157528792,16365, - 200,200,0,114,101,111,114,100,101,114,0,1,10015,2049,2889,2049,10051,10,10073,10112, - 168,16931,210709288570,15969,200,200,0,99,117,114,114,121,0,2049,2585,1793,10122,4,2049,2394, - 2049,2423,10,1,10116,2049,2889,10,10097,10141,168,16931,6385158928,16048,200,200,0,100,111,101, + 200,200,55030,114,101,111,114,100,101,114,0,1,10015,2049,2889,2049,10051,10,10073,10112, + 168,16931,210709288570,15969,200,200,40905,99,117,114,114,121,0,2049,2585,1793,10122,4,2049,2394, + 2049,2423,10,1,10116,2049,2889,10,10097,10141,168,16931,6385158928,16048,200,200,43008,100,111,101, 115,0,2049,2123,4,2049,10112,2049,2100,2049,182,16,1,168,2049,2200,10,10127,10176,168, - 16931,8246153734800721448,15991,200,200,0,100,58,102,111,114,45,101,97,99,104,0,1,2,1793, + 16931,8246153734800721448,15991,200,200,41483,100,58,102,111,114,45,101,97,99,104,0,1,2,1793, 10189,6415,2049,2873,134481157,1542,1,10180,7,10,1,10180,8,3,10,10156,10215,168,16931,-4578079420196310922, - 16018,200,200,0,100,58,108,111,111,107,117,112,45,120,116,0,1,0,4,1793, + 16018,200,200,42212,100,58,108,111,111,107,117,112,45,120,116,0,1,0,4,1793, 10240,2049,2873,2049,182,2831,1793,10233,4,1,2816,2049,2889,10,1,10227,1,17,2049,66, - 10,1,10220,2049,10176,3,10,10194,10258,168,16931,5863407,16137,200,200,0,103,99,0,1, - 3,4,2049,4871,10,10246,10282,168,16931,7572098019335426,15650,200,200,0,97,58,108,101,110,103, - 116,104,0,15,10,10264,10302,168,16931,7572098062851599,15663,200,200,0,97,58,109,105,100,100, + 10,1,10220,2049,10176,3,10,10194,10258,168,16931,5863407,16137,200,200,50915,103,99,0,1, + 3,4,2049,4871,10,10246,10282,168,16931,7572098019335426,15650,200,200,34534,97,58,108,101,110,103, + 116,104,0,15,10,10264,10302,168,16931,7572098062851599,15663,200,200,34805,97,58,109,105,100,100, 108,101,0,2049,2585,1793,10325,2,2049,130,1793,10315,2049,3953,17,10,1,10311,2049,2889, - 2049,2585,4,2049,4923,10,1,10306,2049,2889,10,10284,10346,168,16931,6953258052395,15645,200,200,0, + 2049,2585,4,2049,4923,10,1,10306,2049,2889,10,10284,10346,168,16931,6953258052395,15645,200,200,34460, 97,58,108,101,102,116,0,1,0,4,2049,10302,10,10330,10369,168,16931,229457522989118,15684,200, - 200,0,97,58,114,105,103,104,116,0,67502597,2049,10282,67502597,18,4,2049,10302,10,10352, - 10405,168,16931,9069136730318539537,15577,200,200,0,97,58,99,111,117,110,116,101,100,45,114,101, + 200,35242,97,58,114,105,103,104,116,0,67502597,2049,10282,67502597,18,4,2049,10302,10,10352, + 10405,168,16931,9069136730318539537,15577,200,200,33242,97,58,99,111,117,110,116,101,100,45,114,101, 115,117,108,116,115,0,8,2049,2585,1793,10418,2,2049,130,1,130,2049,3153,10,1, - 10410,2049,2889,10,10378,10446,168,16931,8526436589641133048,15613,200,200,0,97,58,102,114,111,109,45, + 10410,2049,2889,10,10378,10446,168,16931,8526436589641133048,15613,200,200,33987,97,58,102,114,111,109,45, 115,116,114,105,110,103,0,2049,2585,1793,10460,2,2049,104,2049,130,1,130,2049,5849, - 10,1,10450,2049,2889,10,10423,10485,168,16931,8246014500347515589,15609,200,200,0,97,58,102,111,114, + 10,1,10450,2049,2889,10,10423,10485,168,16931,8246014500347515589,15609,200,200,33936,97,58,102,111,114, 45,101,97,99,104,0,4,2049,58,1,19,2049,2889,1793,10501,5,2049,58,84018692,525572, - 1542,10,1,10494,2049,3153,771,10,10465,10522,168,16931,210704781289,15581,200,200,0,97,58,100, + 1542,10,1,10494,2049,3153,771,10,10465,10522,168,16931,210704781289,15581,200,200,33389,97,58,100, 117,112,0,2049,2585,1793,10535,2,15,2049,130,1,130,2049,10485,10,1,10526,2049,2889, - 10,10507,10556,168,16931,6953257740187,15573,200,200,0,97,58,99,111,112,121,0,1,3,1793, + 10,10507,10556,168,16931,6953257740187,15573,200,200,33200,97,58,99,111,112,121,0,1,3,1793, 10572,4097,3,2,2049,10282,2049,130,1,130,2049,10485,10,1,10560,2049,4871,10,10540,10598, - 168,16931,-4582662990808010201,15703,200,200,0,97,58,116,111,45,115,116,114,105,110,103,0,1, + 168,16931,-4582662990808010201,15703,200,200,35513,97,58,116,111,45,115,116,114,105,110,103,0,1, 3,1793,10611,2049,10522,1,0,2049,130,2049,3953,10,1,10602,2049,4871,2049,5466,10,10577, - 10636,168,16931,7572097601960728,15549,200,200,0,97,58,97,112,112,101,110,100,0,2049,2873,1, + 10636,168,16931,7572097601960728,15549,200,200,32852,97,58,97,112,112,101,110,100,0,2049,2873,1, 37,2049,2961,17,2049,2585,1793,10661,2049,130,1793,10656,1,130,2049,10485,10,1,10651,2049, - 2961,10,1,10647,2049,2889,10,10618,10685,168,16931,249879240302335150,15669,200,200,0,97,58,112,114, - 101,112,101,110,100,0,4,2049,10636,10,10666,10705,168,16931,6953257732522,15559,200,200,0,97, + 2961,10,1,10647,2049,2889,10,10618,10685,168,16931,249879240302335150,15669,200,200,34941,97,58,112,114, + 101,112,101,110,100,0,4,2049,10636,10,10666,10705,168,16931,6953257732522,15559,200,200,32989,97, 58,99,104,111,112,0,2049,10522,1,-1,2049,4846,2,2049,4765,10,10689,10733,168,16931, - 7572097789208550,15600,200,200,0,97,58,102,105,108,116,101,114,0,1793,10748,67502597,1,27,2049, + 7572097789208550,15600,200,200,33717,97,58,102,105,108,116,101,114,0,1793,10748,67502597,1,27,2049, 2889,4,1,130,1,17,2049,66,10,1,10735,2049,10112,2049,2585,1793,10763,67502597,15,2049, 130,2049,10485,10,1,10756,2049,2889,2049,2585,67502597,18,2049,3971,67502597,16,10,10715,10797,168, - 16931,-4582686815792817282,15568,200,200,0,97,58,99,111,110,116,97,105,110,115,63,0,1,0, + 16931,-4582686815792817282,15568,200,200,33135,97,58,99,111,110,116,97,105,110,115,63,0,1,0, 4,1793,10809,4,5,67502597,11,6,22,10,1,10802,2049,10485,772,10,10776,10843,168,16931, - -3160266450763725308,15563,200,200,0,97,58,99,111,110,116,97,105,110,115,47,115,116,114,105, + -3160266450763725308,15563,200,200,33063,97,58,99,111,110,116,97,105,110,115,47,115,116,114,105, 110,103,63,0,1,0,4,1793,10856,4,5,67502597,2049,118,6,22,10,1,10848,2049, - 10485,772,10,10815,10877,168,16931,210704790430,15658,200,200,0,97,58,109,97,112,0,4,1793, + 10485,772,10,10815,10877,168,16931,210704790430,15658,200,200,34697,97,58,109,97,112,0,4,1793, 10907,2049,58,1793,10901,1793,10890,15,67502597,8,10,1,10886,2049,2905,1,39,2049,2905,2049, 3953,10,1,10884,2049,3153,771,10,1,10880,2049,2905,10,10862,10931,168,16931,249879242396290652,15680,200, - 200,0,97,58,114,101,118,101,114,115,101,0,2049,2585,1793,10965,2049,58,1793,10943, + 200,35173,97,58,114,101,118,101,114,115,101,0,2049,2585,1793,10965,2049,58,1793,10943, 17,2049,3971,10,1,10939,2049,2905,2,2049,130,1793,10959,2,15,2049,130,2049,3971,10, - 1,10952,2049,3153,3,10,1,10935,2049,2889,10,10912,10984,168,16931,6384993884,15698,200,200,0, - 97,58,116,104,0,17,2049,3953,10,10970,11005,168,16931,229457508628298,15595,200,200,0,97,58, - 102,101,116,99,104,0,2049,10984,15,10,10988,11026,168,16931,229457524579373,15689,200,200,0,97, - 58,115,116,111,114,101,0,2049,10984,16,10,11009,11047,168,16931,229457508770408,15605,200,200,0, + 1,10952,2049,3153,3,10,1,10935,2049,2889,10,10912,10984,168,16931,6384993884,15698,200,200,35455, + 97,58,116,104,0,17,2049,3953,10,10970,11005,168,16931,229457508628298,15595,200,200,33647,97,58, + 102,101,116,99,104,0,2049,10984,15,10,10988,11026,168,16931,229457524579373,15689,200,200,35337,97, + 58,115,116,111,114,101,0,2049,10984,16,10,11009,11047,168,16931,229457508770408,15605,200,200,33899, 97,58,102,105,114,115,116,0,1,0,2049,11005,10,11030,11068,168,16931,6953258048468,15641,200, - 200,0,97,58,108,97,115,116,0,2,2049,10282,2049,3971,2049,11005,10,11052,11094,168, - 16931,7572098253803096,15674,200,200,0,97,58,114,101,100,117,99,101,0,1,19,2049,2889,2049, - 10485,10,11076,11115,168,16931,6384048135,15498,200,200,0,70,82,69,69,0,2049,5292,1,1025, + 200,34424,97,58,108,97,115,116,0,2,2049,10282,2049,3971,2049,11005,10,11052,11094,168, + 16931,7572098253803096,15674,200,200,35021,97,58,114,101,100,117,99,101,0,1,19,2049,2889,2049, + 10485,10,11076,11115,168,16931,6384048135,15498,200,200,31464,70,82,69,69,0,2049,5292,1,1025, 18,1,513,1,12,19,18,2049,2585,18,10,11101,11149,156,0,0,0,200,200,0, 78,101,120,116,65,114,114,97,121,0,10,11130,11166,168,0,0,0,200,200,0, 97,114,114,97,121,115,0,2049,11115,2049,2585,17,10,11101,11188,168,16931,6953258340118,15694,200, - 200,0,97,58,116,101,109,112,0,3841,11149,2,1,12,11,1793,11203,3,1,0, + 200,35390,97,58,116,101,109,112,0,3841,11149,2,1,12,11,1793,11203,3,1,0, 2,4097,11149,10,1,11196,9,1,513,19,2049,11166,17,67502597,2049,10282,2049,3953,2049,4923, 3841,11149,1,513,19,2049,11166,17,1,11149,2049,4744,10,11172,11247,156,0,0,0,200, 200,0,67,111,117,110,116,0,3,11232,11265,168,0,0,0,200,200,0,112,114, @@ -583,26 +583,26 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 101,47,110,0,1793,11395,67502597,11,1,11359,9,1,11247,2049,4744,10,1,11385,2049,10485, 10,11364,11419,168,0,0,0,200,200,0,105,116,101,114,97,116,101,47,115,0, 1793,11432,67502597,2049,118,1,11359,9,1,11247,2049,4744,10,1,11421,2049,10485,10,11172,11456, - 168,16931,249879231104077855,15631,200,200,0,97,58,105,110,100,105,99,101,115,0,2049,11265,2049, + 168,16931,249879231104077855,15631,200,200,34249,97,58,105,110,100,105,99,101,115,0,2049,11265,2049, 2585,1793,11468,2049,11288,2049,11383,3,10,1,11462,2049,2889,2049,11309,2049,11335,10,11437,11503, - 168,16931,6001861788990794213,15636,200,200,0,97,58,105,110,100,105,99,101,115,47,115,116,114, + 168,16931,6001861788990794213,15636,200,200,34341,97,58,105,110,100,105,99,101,115,47,115,116,114, 105,110,103,0,2049,11265,2049,2585,1793,11515,2049,11288,2049,11419,3,10,1,11509,2049,2889, - 2049,11309,2049,11335,10,11477,11541,168,16931,229457512492152,15621,200,200,0,97,58,105,110,100,101, + 2049,11309,2049,11335,10,11477,11541,168,16931,229457512492152,15621,200,200,34090,97,58,105,110,100,101, 120,0,1793,11550,2049,11456,1,0,2049,11005,10,1,11543,2049,10258,10,11524,11579,168,16931, - 4816227687043827742,15626,200,200,0,97,58,105,110,100,101,120,47,115,116,114,105,110,103,0, + 4816227687043827742,15626,200,200,34169,97,58,105,110,100,101,120,47,115,116,114,105,110,103,0, 1793,11588,2049,11503,1,0,2049,11005,10,1,11581,2049,10258,10,11555,11609,168,16931,6953258084126,15654, - 200,200,0,97,58,109,97,107,101,0,2049,10405,2,2,1,3,1793,11620,2049,10931, - 10,1,11617,2049,4871,4,2049,10556,10,11593,11639,180,16931,177696,16850,200,200,0,123,0, + 200,200,34564,97,58,109,97,107,101,0,2049,10405,2,2,1,3,1793,11620,2049,10931, + 10,1,11617,2049,4871,4,2049,10556,10,11593,11639,180,16931,177696,16850,200,200,67327,123,0, 1,361,2049,180,1,2080,2049,168,1,361,2049,180,10,11628,11663,180,16931,177698,16854,200, - 200,0,125,0,1,377,2049,180,1,2889,2049,168,1,2080,2049,168,1,19,2049,174, + 200,67477,125,0,1,377,2049,180,1,2889,2049,168,1,2080,2049,168,1,19,2049,174, 1,43,2049,174,1,3971,2049,168,1,377,2049,180,1,11609,2049,168,10,11652,11712,168, - 16931,6953257904708,15617,200,200,0,97,58,104,97,115,104,0,1,5381,4,1793,11723,4,1, - 33,19,17,10,1,11717,2049,10485,10,11696,11743,168,16931,210704782197,15590,200,200,0,97,58, - 101,113,63,0,2049,11712,4,2049,11712,11,10,11728,11766,168,16931,6953255788674,15544,200,200,0, + 16931,6953257904708,15617,200,200,34048,97,58,104,97,115,104,0,1,5381,4,1793,11723,4,1, + 33,19,17,10,1,11717,2049,10485,10,11696,11743,168,16931,210704782197,15590,200,200,33501,97,58, + 101,113,63,0,2049,11712,4,2049,11712,11,10,11728,11766,168,16931,6953255788674,15544,200,200,32706, 97,58,45,101,113,63,0,2049,11712,4,2049,11712,12,10,11750,11797,168,16931,4448793249567199488,15554, - 200,200,0,97,58,98,101,103,105,110,115,45,119,105,116,104,63,0,1,3, + 200,200,32932,97,58,98,101,103,105,110,115,45,119,105,116,104,63,0,1,3, 1793,11813,2,2049,10282,1,19,2049,2889,2049,10346,2049,11743,10,1,11801,2049,4871,10,11773, - 11840,168,16931,-3654621344420884174,15585,200,200,0,97,58,101,110,100,115,45,119,105,116,104,63, + 11840,168,16931,-3654621344420884174,15585,200,200,33446,97,58,101,110,100,115,45,119,105,116,104,63, 0,1,3,1793,11856,2,2049,10282,1,19,2049,2889,2049,10369,2049,11743,10,1,11844,2049, 4871,10,11818,11881,156,0,0,0,200,200,0,83,117,98,115,116,105,116,117,116, 101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, @@ -616,7 +616,7 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 0,99,111,109,98,105,110,101,0,1,11881,2049,5825,2049,5825,10,12031,12073,168,0, 0,0,200,200,0,102,105,110,100,45,101,110,100,0,2,2049,104,1,11881,2049, 104,18,67502597,17,10,12055,12099,168,0,0,0,200,200,0,99,108,101,97,110,0, - 2049,12073,1,0,4,16,10,11818,12129,168,16931,1672736740201773236,16560,200,200,0,115,58,114,101, + 2049,12073,1,0,4,16,10,11818,12129,168,16931,1672736740201773236,16560,200,200,58141,115,58,114,101, 112,108,97,99,101,45,97,108,108,0,1,3,1793,12152,2049,12026,2049,9377,2049,5500, 4,1793,12145,2049,12048,10,1,12142,2049,10485,2049,12099,10,1,12133,2049,4871,10,12106,12179, 168,0,0,0,200,200,0,99,117,114,114,101,110,116,45,108,105,110,101,0, @@ -625,7 +625,7 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 10,12185,12244,168,0,0,0,200,200,0,112,114,111,99,101,115,115,45,116,111, 107,101,110,115,0,1793,12272,1,32,2049,8708,4,1793,12265,2,2049,104,2049,3492,1, 439,1,17,2049,66,10,1,12253,2049,2889,2049,3953,10,1,12246,2049,3153,2049,439,10, - 12106,12299,168,16931,8246849872898570441,16486,200,21233,0,115,58,101,118,97,108,117,97,116,101,0, + 12106,12299,168,16931,8246849872898570441,16486,200,21233,56854,115,58,101,118,97,108,117,97,116,101,0, 2049,12179,2049,6805,2049,12179,2,2049,12207,2049,12244,10,12279,12323,156,0,0,0,200,200, 0,76,80,0,0,12311,12339,156,0,0,0,200,200,0,73,110,100,101,120,0, 0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, @@ -633,41 +633,41 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 0,110,101,120,116,0,3841,12323,1,12339,17,2049,4744,10,12371,12407,168,0,0,0, 200,200,0,112,114,101,112,0,1,12323,2049,4744,1,0,3841,12323,1,12339,17,16, 10,12393,12434,168,0,0,0,200,200,0,100,111,110,101,0,1,12323,2049,4765,10, - 12279,12450,168,16931,177646,15504,200,200,0,73,0,3841,12323,1,12339,17,15,10,12439,12468, - 168,16931,177647,15510,200,200,0,74,0,3841,12323,1,12339,17,2049,3971,15,10,12457,12488, - 168,16931,177648,15513,200,200,0,75,0,3841,12323,1,12339,17,1,2,18,15,10,12477, - 12521,168,16931,6047344052022463093,16188,200,200,0,105,110,100,101,120,101,100,45,116,105,109,101, + 12279,12450,168,16931,177646,15504,200,200,31774,73,0,3841,12323,1,12339,17,15,10,12439,12468, + 168,16931,177647,15510,200,200,31907,74,0,3841,12323,1,12339,17,2049,3971,15,10,12457,12488, + 168,16931,177648,15513,200,200,31997,75,0,3841,12323,1,12339,17,1,2,18,15,10,12477, + 12521,168,16931,6047344052022463093,16188,200,200,51973,105,110,100,101,120,101,100,45,116,105,109,101, 115,0,2049,12407,4,1793,12537,25,33886721,1,2053,1542,2049,12385,1,12526,7,10,1,12526, - 8,3,2049,12434,10,12498,12561,168,16931,229463062432404,16038,200,200,0,100,101,99,105,109,97, - 108,0,1,10,4097,265,10,12544,12582,168,16931,6953352993994,15760,200,200,0,98,105,110,97, - 114,121,0,1,2,4097,265,10,12566,12602,168,16931,210722874360,16330,200,200,0,111,99,116, - 97,108,0,1,8,4097,265,10,12587,12620,168,16931,193493706,16171,200,200,0,104,101,120, - 0,1,16,4097,265,10,12607,12640,168,16931,210731100046,16816,200,200,0,118,97,114,45,115, - 0,1,5557,2049,2889,2049,2726,10,12625,12669,168,16931,-2634409250251928459,16723,200,200,0,116,97,105, + 8,3,2049,12434,10,12498,12561,168,16931,229463062432404,16038,200,200,42851,100,101,99,105,109,97, + 108,0,1,10,4097,265,10,12544,12582,168,16931,6953352993994,15760,200,200,36413,98,105,110,97, + 114,121,0,1,2,4097,265,10,12566,12602,168,16931,210722874360,16330,200,200,54546,111,99,116, + 97,108,0,1,8,4097,265,10,12587,12620,168,16931,193493706,16171,200,200,51542,104,101,120, + 0,1,16,4097,265,10,12607,12640,168,16931,210731100046,16816,200,200,66612,118,97,114,45,115, + 0,1,5557,2049,2889,2049,2726,10,12625,12669,168,16931,-2634409250251928459,16723,200,200,62440,116,97,105, 108,45,114,101,99,117,114,115,101,0,1,1793,2049,2585,1,3,18,16,10,12647, - 12692,168,16931,6385224492,16089,200,200,0,102,105,108,108,0,1793,12700,2049,2873,16,2049,3953, - 10,1,12694,2049,3153,771,10,12678,12728,168,16931,-3171118726347914531,16195,200,200,0,105,111,58,101, - 110,117,109,101,114,97,116,101,0,27,10,12706,12748,168,16931,7572505472392333,16201,200,200,0, - 105,111,58,113,117,101,114,121,0,28,10,12730,12769,168,16931,249892680268169699,16198,200,200,0, + 12692,168,16931,6385224492,16089,200,200,50249,102,105,108,108,0,1793,12700,2049,2873,16,2049,3953, + 10,1,12694,2049,3153,771,10,12678,12728,168,16931,-3171118726347914531,16195,200,200,52254,105,111,58,101, + 110,117,109,101,114,97,116,101,0,27,10,12706,12748,168,16931,7572505472392333,16201,200,200,52330, + 105,111,58,113,117,101,114,121,0,28,10,12730,12769,168,16931,249892680268169699,16198,200,200,52288, 105,111,58,105,110,118,111,107,101,0,29,10,12750,12792,168,16931,-4568031882453442320,16206,200,200, - 0,105,111,58,115,99,97,110,45,102,111,114,0,1,-1,4,2049,12728,1793,12823, + 52409,105,111,58,115,99,97,110,45,102,111,114,0,1,-1,4,2049,12728,1793,12823, 2049,12450,2049,12748,772,67502597,11,1793,12819,1793,12814,3,2049,12450,10,1,12810,2049,2889,10, - 1,12808,9,10,1,12799,2049,12521,3,10,12771,12844,168,16931,210707166203,15834,200,200,0,99, + 1,12808,9,10,1,12799,2049,12521,3,10,12771,12844,168,16931,210707166203,15834,200,200,37759,99, 58,112,117,116,0,1793,12846,1,0,2049,12769,10,12829,12863,168,16931,5863647,16324,200,200, - 0,110,108,0,1,10,2049,12844,10,12851,12880,168,16931,5863816,16704,200,200,0,115,112, - 0,1,32,2049,12844,10,12868,12898,168,16931,193506620,16721,200,200,0,116,97,98,0,1, - 9,2049,12844,10,12885,12918,168,16931,210726140939,16551,200,200,0,115,58,112,117,116,0,1, - 12844,2049,5849,10,12903,12938,168,16931,210720211334,16296,200,200,0,110,58,112,117,116,0,2049, + 54494,110,108,0,1,10,2049,12844,10,12851,12880,168,16931,5863816,16704,200,200,62213,115,112, + 0,1,32,2049,12844,10,12868,12898,168,16931,193506620,16721,200,200,62413,116,97,98,0,1, + 9,2049,12844,10,12885,12918,168,16931,210726140939,16551,200,200,58075,115,58,112,117,116,0,1, + 12844,2049,5849,10,12903,12938,168,16931,210720211334,16296,200,200,54138,110,58,112,117,116,0,2049, 9636,2,2049,104,1,41,2049,2905,2049,3953,1793,12958,2,15,2049,12844,2049,3971,10,1, - 12951,2049,3153,3,10,12923,12979,168,16931,210726503048,16375,200,200,0,114,101,115,101,116,0, - 2049,2080,25,771,1,12979,7,10,12964,13007,168,16931,8246237009912977886,16058,200,200,0,100,117,109, + 12951,2049,3153,3,10,12923,12979,168,16931,210726503048,16375,200,200,55104,114,101,115,101,116,0, + 2049,2080,25,771,1,12979,7,10,12964,13007,168,16931,8246237009912977886,16058,200,200,43202,100,117,109, 112,45,115,116,97,99,107,0,2049,2080,25,134284547,13007,134283782,12938,2049,12880,10,12987,13030, - 168,16931,193470948,15525,200,200,0,84,73,66,0,1,7,15,10,1793,13073,2049,5525,69, + 168,16931,193470948,15525,200,200,32411,84,73,66,0,1,7,15,10,1793,13073,2049,5525,69, 82,82,79,82,58,32,87,111,114,100,32,78,111,116,32,70,111,117,110,100, 58,32,0,1,13038,2049,12918,2049,13030,2049,12918,2049,12863,10,1,13036,13017,13090,168,16931, - 210707155874,15823,200,200,0,99,58,103,101,116,0,1793,13092,1,1,2049,12792,2049,12769,10, - 13075,13112,168,16931,193487813,15785,200,200,0,98,121,101,0,26,10,13099,13132,156,16931,7571133383038306, - 15507,200,200,0,73,103,110,111,114,105,110,103,0,0,13114,13146,156,0,0,0, + 210707155874,15823,200,200,37603,99,58,103,101,116,0,1793,13092,1,1,2049,12792,2049,12769,10, + 13075,13112,168,16931,193487813,15785,200,200,37025,98,121,101,0,26,10,13099,13132,156,16931,7571133383038306, + 15507,200,200,31857,73,103,110,111,114,105,110,103,0,0,13114,13146,156,0,0,0, 200,200,0,69,79,84,0,0,13133,13164,168,0,0,0,200,200,0,118,101,114, 115,105,111,110,0,3841,4,1,100,20,10,13147,13185,168,0,0,0,200,200,0, 100,111,110,101,63,0,2,4097,13146,1793,13194,1,13,11,10,1,13190,1793,13202,1, @@ -690,66 +690,66 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 105,110,112,117,116,0,2049,13487,2049,13269,10,13510,13547,168,0,0,0,200,200,0, 112,114,111,99,101,115,115,0,3841,13132,1793,13565,771,2049,13231,1793,13561,1,13132,2049, 4827,10,1,13556,9,10,1,13551,2049,3638,1,439,1,17,2049,66,10,13114,13596,168, - 16931,8246849936849447419,16511,200,200,0,115,58,103,101,116,45,119,111,114,100,0,1793,13624,1, + 16931,8246849936849447419,16511,200,200,57268,115,58,103,101,116,45,119,111,114,100,0,1793,13624,1, 7,15,2049,5179,1793,13615,2049,13090,2,2049,5063,2049,13367,2049,13185,10,1,13605,2049,3093, - 2049,5017,2049,5660,10,1,13598,2049,5209,10,13576,13645,168,16931,6953343520347,15739,200,200,0,98, + 2049,5017,2049,5660,10,1,13598,2049,5209,10,13576,13645,168,16931,6953343520347,15739,200,200,36230,98, 97,110,110,101,114,0,2049,13164,2049,5525,82,69,84,82,79,32,49,50,32,40, 37,110,46,37,110,41,92,110,0,1,13649,2049,9899,2049,12918,2049,11115,2049,2061,2049, 11115,18,2049,2061,2049,5525,37,110,32,77,97,120,44,32,37,110,32,85,115,101, 100,44,32,37,110,32,70,114,101,101,92,110,0,1,13685,2049,9899,2049,12918,10, - 13629,13735,168,16931,6953744547860,16210,200,200,0,108,105,115,116,101,110,0,2049,13645,2049,13525, - 2049,13547,1,13737,7,10,13719,13770,156,16931,-213800119713087686,15977,200,200,0,100,58,72,97,115, + 13629,13735,168,16931,6953744547860,16210,200,200,53064,108,105,115,116,101,110,0,2049,13645,2049,13525, + 2049,13547,1,13737,7,10,13719,13770,156,16931,-213800119713087686,15977,200,200,41040,100,58,72,97,115, 104,45,70,117,110,99,116,105,111,110,0,5994,13745,13789,168,16931,7572226109254526,16026,200,200, - 0,100,58,114,101,104,97,115,104,0,1793,13807,1793,13799,2049,198,3841,13770,8,10, + 42400,100,58,114,101,104,97,115,104,0,1793,13807,1793,13799,2049,198,3841,13770,8,10, 1,13793,2049,2905,2049,188,16,10,1,13791,2049,10176,10,13771,2,156,16917,210668957237,15478,200, - 200,0,66,85,73,76,68,0,13812,13842,168,14399,210709067314,15938,200,200,0,99,111,109, - 109,97,0,2049,130,10,13827,13859,168,14399,6385123288,15955,200,200,0,99,111,110,115,0, + 200,30213,66,85,73,76,68,0,13812,13842,168,14399,210709067314,15938,200,200,39765,99,111,109, + 109,97,0,2049,130,10,13827,13859,168,14399,6385123288,15955,200,200,40261,99,111,110,115,0, 2049,2585,1793,13869,4,2049,13842,2049,13842,10,1,13863,2049,2889,10,13845,13887,168,14399,193488123, - 15876,200,200,0,99,97,114,0,10,13874,13901,168,14399,193488222,15902,200,200,0,99,100, - 114,0,2049,3953,10,13888,13918,168,14399,6385108123,15884,200,200,0,99,97,114,64,0,2049, - 13887,15,10,13904,13936,168,14399,6385108092,15880,200,200,0,99,97,114,33,0,2049,13887,16, - 10,13922,13954,168,14399,6385111390,15910,200,200,0,99,100,114,64,0,2049,13901,15,10,13940, - 13972,168,14399,6385111359,15906,200,200,0,99,100,114,33,0,2049,13901,16,10,13958,13989,168, - 14399,193454780,15490,200,200,0,69,78,68,0,10,13976,14010,168,14399,8246317064958091121,16098,200,200,0, + 15876,200,200,38284,99,97,114,0,10,13874,13901,168,14399,193488222,15902,200,200,38561,99,100, + 114,0,2049,3953,10,13888,13918,168,14399,6385108123,15884,200,200,38355,99,97,114,64,0,2049, + 13887,15,10,13904,13936,168,14399,6385108092,15880,200,200,38323,99,97,114,33,0,2049,13887,16, + 10,13922,13954,168,14399,6385111390,15910,200,200,38632,99,100,114,64,0,2049,13901,15,10,13940, + 13972,168,14399,6385111359,15906,200,200,38600,99,100,114,33,0,2049,13901,16,10,13958,13989,168, + 14399,193454780,15490,200,200,31257,69,78,68,0,10,13976,14010,168,14399,8246317064958091121,16098,200,200,50340, 102,108,108,58,99,114,101,97,116,101,0,1,13989,2049,13859,10,13990,14026,156,0, - 177687,0,200,200,0,114,0,26611,13990,14047,168,14399,8246317065617826724,16125,200,200,0,102,108,108, + 177687,0,200,200,0,114,0,26611,13990,14047,168,14399,8246317065617826724,16125,200,200,50668,102,108,108, 58,116,111,45,101,110,100,0,2,4097,14026,1793,14072,2049,13954,2,1,13989,12,2, 1793,14065,67502597,4097,14026,10,1,14061,1,2816,2049,66,10,1,14052,2049,3064,3841,14026,10, - 14027,14105,168,14399,4204933718218055169,16094,200,200,0,102,108,108,58,97,112,112,101,110,100,47, + 14027,14105,168,14399,4204933718218055169,16094,200,200,50310,102,108,108,58,97,112,112,101,110,100,47, 118,97,108,117,101,0,1,13989,2049,13859,4,2049,14047,2049,13972,10,14079,14137,168,14399, - -3325079438733587419,16129,200,200,0,102,108,108,58,116,111,45,105,110,100,101,120,0,1,13954, - 2049,3153,10,14115,14159,168,14399,229465928290674,16102,200,200,0,102,108,108,58,100,101,108,0, + -3325079438733587419,16129,200,200,50735,102,108,108,58,116,111,45,105,110,100,101,120,0,1,13954, + 2049,3153,10,14115,14159,168,14399,229465928290674,16102,200,200,50408,102,108,108,58,100,101,108,0, 2049,2873,2049,3971,2049,14137,1793,14172,2049,3953,2049,14137,10,1,14167,2049,2889,2049,13972,10, 14142,14195,156,0,6952054634723,0,200,200,0,65,99,116,105,111,110,0,14595,14142,14218,168, - 14399,-3325080032762929022,16109,200,200,0,102,108,108,58,102,111,114,45,101,97,99,104,0,4097, + 14399,-3325080032762929022,16109,200,200,50481,102,108,108,58,102,111,114,45,101,97,99,104,0,4097, 14195,1793,14241,1793,14230,2049,13918,3841,14195,8,10,1,14224,2049,2905,2049,13954,2,1,13989, - 12,10,1,14222,2049,3064,3,10,14196,14267,168,14399,8246317065295222655,16118,200,200,0,102,108,108, + 12,10,1,14222,2049,3064,3,10,14196,14267,168,14399,8246317065295222655,16118,200,200,50596,102,108,108, 58,108,101,110,103,116,104,0,1,0,4,1793,14276,3,2049,3953,10,1,14272,2049, - 14218,2049,3971,10,14247,14301,168,14399,7572375633606610,16106,200,200,0,102,108,108,58,100,114,111, + 14218,2049,3971,10,14247,14301,168,14399,7572375633606610,16106,200,200,50447,102,108,108,58,100,114,111, 112,0,2,2049,14267,2049,3971,2049,14137,1,13989,4,2049,13972,10,14283,14325,156,0,177678, - 0,200,200,0,105,0,0,14283,14346,168,14399,8246317065188343290,16113,200,200,0,102,108,108,58, + 0,200,200,0,105,0,0,14283,14346,168,14399,8246317065188343290,16113,200,200,50527,102,108,108,58, 105,110,106,101,99,116,0,2049,14010,4097,14325,2049,2873,2049,3971,2049,14137,1,14137,2049, - 2889,3841,14325,4,2049,13972,3841,14325,2049,13972,10,14326,14387,168,14399,229465928304278,16122,200,200,0, + 2889,3841,14325,4,2049,13972,3841,14325,2049,13972,10,14326,14387,168,14399,229465928304278,16122,200,200,50625, 102,108,108,58,112,117,116,0,1793,14394,2049,12938,2049,12880,10,1,14389,2049,14218,10, 105,110,116,101,114,102,97,99,101,47,108,108,46,114,101,116,114,111,0,105, - 110,105,116,0,14418,14692,14370,14447,156,14670,-2744922491217532500,16459,200,200,0,115,58,100,101,100, + 110,105,116,0,14418,14692,14370,14447,156,14670,-2744922491217532500,16459,200,200,56422,115,58,100,101,100, 117,112,46,100,97,116,97,0,14423,14425,14460,156,0,5863786,0,200,200,0,116,49, 0,517120,14448,14473,156,0,5863787,0,200,200,0,116,50,0,27662,14425,14500,168,14670,-1192507208876296873, - 16470,200,200,0,115,58,100,101,100,117,112,46,114,101,103,105,115,116,101,114, - 0,2049,5557,3841,14447,4,1,14105,2049,2905,10,14474,14536,168,14670,-1192507805573830048,16462,200,200,0, + 16470,200,200,56655,115,58,100,101,100,117,112,46,114,101,103,105,115,116,101,114, + 0,2049,5557,3841,14447,4,1,14105,2049,2905,10,14474,14536,168,14670,-1192507805573830048,16462,200,200,56475, 115,58,100,101,100,117,112,46,100,101,102,105,110,101,100,63,0,4097,14460,1, 0,4097,14473,3841,14447,1793,14556,3841,14460,2049,118,3841,14473,22,4097,14473,10,1,14546,2049, - 14218,3841,14473,10,14510,14585,168,14670,-2744922491217452109,16466,200,200,0,115,58,100,101,100,117,112, + 14218,3841,14473,10,14510,14585,168,14670,-2744922491217452109,16466,200,200,56530,115,58,100,101,100,117,112, 46,102,105,110,100,0,4097,14460,1,0,4097,14473,3841,14447,1793,14612,2,3841,14460,2049, 118,1793,14605,4097,14473,10,1,14602,1,17,2049,66,10,1,14595,2049,14218,3841,14473,10, - 14563,14636,168,14670,229480752663076,16455,200,200,0,115,58,100,101,100,117,112,0,2049,5466,2, - 2049,14536,1,14585,1,14500,2049,66,10,14619,14667,168,14670,249904561963058472,16638,200,200,0,115,58, + 14563,14636,168,14670,229480752663076,16455,200,200,56377,115,58,100,101,100,117,112,0,2049,5466,2, + 2049,14536,1,14585,1,14500,2049,66,10,14619,14667,168,14670,249904561963058472,16638,200,200,59589,115,58, 117,110,105,113,117,101,63,0,2049,14536,10,105,110,116,101,114,102,97,99,101, 47,100,101,100,117,112,46,114,101,116,114,111,0,14670,16915,14648,14708,168,0,6385683284, 0,200,200,0,115,97,118,101,0,2049,3953,2049,5660,2049,2585,4,2049,5557,1,17, 2049,174,1,2,17,2049,2178,1,4,18,16,10,14694,14755,168,0,3501352175510017786,0,200,200, 0,115,116,97,99,107,45,99,111,109,109,101,110,116,63,0,2,1,0,2049, - 5621,1,58,11,10,14648,14781,180,0,229482595734751,16671,200,200,0,115,105,103,105,108,58, + 5621,1,58,11,10,14648,14781,180,0,229482595734751,16671,200,200,60720,115,105,103,105,108,58, 40,0,2049,14755,1,14708,1,17,2049,66,10,14764,14810,168,0,8246153636752806788,14812,200,200,0, 100,58,100,101,115,99,114,105,98,101,0,2049,5525,115,45,0,1,14812,3,2049, 258,2049,12863,2,2049,5525,78,97,109,101,58,32,32,32,32,32,0,1,14825,2049, @@ -854,203 +854,203 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 45,0,97,113,45,0,97,113,45,0,115,45,0,110,115,45,0,115,115,45, 0,97,45,110,0,97,45,97,110,0,110,97,45,0,110,97,45,97,0,113, 40,45,102,41,45,0,109,110,45,111,0,45,0,45,0,45,97,0,45,0, - 15200,16881,168,16891,-3502357327552891667,0,200,200,0,100,58,115,101,116,45,115,111,117,114,99, + 15200,16881,168,16891,-3502357327552891667,0,200,200,42459,100,58,115,101,116,45,115,111,117,114,99, 101,0,1,14636,2049,2889,2049,258,2049,186,16,10,105,110,116,101,114,102,97,99, 101,47,115,111,117,114,99,101,115,46,114,101,116,114,111,0,16891,16929,98,117, 105,108,100,46,114,101,116,114,111,0,16917,16943,114,101,116,114,111,46,102,111, - 114,116,104,0,16931,17527,16859,0,156,17503,-2419379730924625824,16970,200,200,0,68,69,86,73,67, + 114,116,104,0,16931,17527,16859,0,156,17503,-2419379730924625824,16970,200,200,30889,68,69,86,73,67, 69,58,79,85,84,80,85,84,0,45,110,0,16945,1,156,17503,3179875372589939872,16998,200,200, - 0,68,69,86,73,67,69,58,75,69,89,66,79,65,82,68,0,45,110,0, - 16971,2,156,17503,-2419379731287713704,17024,200,200,0,68,69,86,73,67,69,58,70,76,79,65, - 84,83,0,45,110,0,16999,4,156,17503,-5104244739232646654,17049,200,200,0,68,69,86,73,67, - 69,58,70,73,76,69,83,0,45,110,0,17025,3,156,17503,-2419379731444253395,17075,200,200,0, + 30773,68,69,86,73,67,69,58,75,69,89,66,79,65,82,68,0,45,110,0, + 16971,2,156,17503,-2419379731287713704,17024,200,200,30658,68,69,86,73,67,69,58,70,76,79,65, + 84,83,0,45,110,0,16999,4,156,17503,-5104244739232646654,17049,200,200,30618,68,69,86,73,67, + 69,58,70,73,76,69,83,0,45,110,0,17025,3,156,17503,-2419379731444253395,17075,200,200,30462, 68,69,86,73,67,69,58,66,76,79,67,75,83,0,45,110,0,17050,5,156, - 17503,-5104244739236093413,17100,200,200,0,68,69,86,73,67,69,58,67,76,79,67,75,0,45, - 110,0,17076,6,156,17503,-5744567309556069531,17129,200,200,0,68,69,86,73,67,69,58,82,69, - 83,69,82,86,69,68,54,0,45,110,0,17101,7,156,17503,-2419379730775816680,17155,200,200,0, + 17503,-5104244739236093413,17100,200,200,30498,68,69,86,73,67,69,58,67,76,79,67,75,0,45, + 110,0,17076,6,156,17503,-5744567309556069531,17129,200,200,30985,68,69,86,73,67,69,58,82,69, + 83,69,82,86,69,68,54,0,45,110,0,17101,7,156,17503,-2419379730775816680,17155,200,200,31091, 68,69,86,73,67,69,58,83,79,67,75,69,84,0,45,110,0,17130,8,156, - 17503,-4626612040269427085,17179,200,200,0,68,69,86,73,67,69,58,85,78,73,88,0,45,110, - 0,17156,9,156,17503,-5744565989521702654,17208,200,200,0,68,69,86,73,67,69,58,83,67,82, - 73,80,84,73,78,71,0,45,110,0,17180,10,156,17503,8244683305011325430,17231,200,200,0,68, + 17503,-4626612040269427085,17179,200,200,31121,68,69,86,73,67,69,58,85,78,73,88,0,45,110, + 0,17156,9,156,17503,-5744565989521702654,17208,200,200,31051,68,69,86,73,67,69,58,83,67,82, + 73,80,84,73,78,71,0,45,110,0,17180,10,156,17503,8244683305011325430,17231,200,200,31005,68, 69,86,73,67,69,58,82,78,71,0,45,110,0,17209,11,156,17503,-5103280478254778479,17261,200, - 200,0,68,69,86,73,67,69,58,82,69,83,69,82,86,69,68,49,49,0, - 45,110,0,17232,12,156,17503,-5103280478254778478,17291,200,200,0,68,69,86,73,67,69,58,82, + 200,30925,68,69,86,73,67,69,58,82,69,83,69,82,86,69,68,49,49,0, + 45,110,0,17232,12,156,17503,-5103280478254778478,17291,200,200,30945,68,69,86,73,67,69,58,82, 69,83,69,82,86,69,68,49,50,0,45,110,0,17262,13,156,17503,-5103280478254778477,17321,200, - 200,0,68,69,86,73,67,69,58,82,69,83,69,82,86,69,68,49,51,0, - 45,110,0,17292,14,156,17503,-5104244739228882582,17346,200,200,0,68,69,86,73,67,69,58,73, - 79,67,84,76,0,45,110,0,17322,15,156,17503,-2419379731026907097,17372,200,200,0,68,69,86, + 200,30965,68,69,86,73,67,69,58,82,69,83,69,82,86,69,68,49,51,0, + 45,110,0,17292,14,156,17503,-5104244739228882582,17346,200,200,30730,68,69,86,73,67,69,58,73, + 79,67,84,76,0,45,110,0,17322,15,156,17503,-2419379731026907097,17372,200,200,30810,68,69,86, 73,67,69,58,77,65,76,76,79,67,0,45,110,0,17347,1000,156,17503,-5104244739228957070,17397, - 200,200,0,68,69,86,73,67,69,58,73,77,65,71,69,0,45,110,0,17373, - 1234,156,17503,-5104244739233502279,17422,200,200,0,68,69,86,73,67,69,58,69,82,82,79,82, - 0,45,110,0,17398,8000,156,17503,-5744573668168662717,17451,200,200,0,68,69,86,73,67,69,58, + 200,200,30695,68,69,86,73,67,69,58,73,77,65,71,69,0,45,110,0,17373, + 1234,156,17503,-5104244739233502279,17422,200,200,30532,68,69,86,73,67,69,58,69,82,82,79,82, + 0,45,110,0,17398,8000,156,17503,-5744573668168662717,17451,200,200,30849,68,69,86,73,67,69,58, 77,85,76,84,73,67,79,82,69,0,45,110,0,17423,8100,156,17503,8244683305011312100,17474,200, - 200,0,68,69,86,73,67,69,58,70,70,73,0,45,110,0,17452,8101,156,17503, - 3179875810170796684,17502,200,200,0,68,69,86,73,67,69,58,85,78,83,73,71,78,69,68, + 200,30569,68,69,86,73,67,69,58,70,70,73,0,45,110,0,17452,8101,156,17503, + 3179875810170796684,17502,200,200,31156,68,69,86,73,67,69,58,85,78,83,73,71,78,69,68, 0,45,110,0,105,110,116,101,114,102,97,99,101,47,100,101,118,105,99,101, - 115,46,114,101,116,114,111,0,17503,20972,17475,17554,168,20942,-6845980351726443322,17556,200,200,0,102, + 115,46,114,101,116,114,111,0,17503,20972,17475,17554,168,20942,-6845980351726443322,17556,200,200,50803,102, 108,111,97,116,58,111,112,101,114,97,116,105,111,110,0,2049,5525,110,45,0, 1,17556,3,1,2,2049,12792,2,2049,3517,1793,17620,3,2049,5525,69,114,114,111,114, 58,32,102,108,111,97,116,105,110,103,32,112,111,105,110,116,32,100,101,118, 105,99,101,32,110,111,116,32,102,111,117,110,100,0,1,17574,2049,12918,2049,12863, - 10,1,17571,2049,3638,2049,12769,10,17529,17647,168,20942,8246618443670464787,17649,200,21230,0,110,58,116, + 10,1,17571,2049,3638,2049,12769,10,17529,17647,168,20942,8246618443670464787,17649,200,21230,54322,110,58,116, 111,45,102,108,111,97,116,0,2049,5525,110,45,95,102,58,45,110,0,1,17649, - 3,1,0,2049,17554,10,17627,17685,168,20942,8246850501092474552,17687,200,21236,0,115,58,116,111,45, + 3,1,0,2049,17554,10,17627,17685,168,20942,8246850501092474552,17687,200,21236,58939,115,58,116,111,45, 102,108,111,97,116,0,2049,5525,115,45,95,102,58,45,110,0,1,17687,3,1, - 1,2049,17554,10,17665,17724,168,20942,-4575005096076366594,17726,200,21217,0,102,58,116,111,45,110,117, + 1,2049,17554,10,17665,17724,168,20942,-4575005096076366594,17726,200,21217,47825,102,58,116,111,45,110,117, 109,98,101,114,0,2049,5525,102,58,97,45,95,95,45,110,0,1,17726,3,1, - 2,2049,17554,10,17703,17764,168,20942,-4575005095881687956,17766,200,21220,0,102,58,116,111,45,115,116, + 2,2049,17554,10,17703,17764,168,20942,-4575005095881687956,17766,200,21220,47871,102,58,116,111,45,115,116, 114,105,110,103,0,2049,5525,102,58,110,45,95,95,45,115,0,1,17766,3,2049, - 5500,2,1,3,2049,17554,10,17743,17799,168,20942,193490032,17801,200,20982,0,102,58,43,0, + 5500,2,1,3,2049,17554,10,17743,17799,168,20942,193490032,17801,200,20982,44413,102,58,43,0, 2049,5525,102,58,97,98,45,99,0,1,17801,3,1,4,2049,17554,10,17786,17829,168, - 20942,193490034,17831,200,20987,0,102,58,45,0,2049,5525,102,58,97,98,45,99,0,1, - 17831,3,1,5,2049,17554,10,17816,17859,168,20942,193490031,17861,200,20977,0,102,58,42,0, + 20942,193490034,17831,200,20987,44467,102,58,45,0,2049,5525,102,58,97,98,45,99,0,1, + 17831,3,1,5,2049,17554,10,17816,17859,168,20942,193490031,17861,200,20977,44354,102,58,42,0, 2049,5525,102,58,97,98,45,99,0,1,17861,3,1,6,2049,17554,10,17846,17889,168, - 20942,193490036,17891,200,21002,0,102,58,47,0,2049,5525,102,58,97,98,45,99,0,1, - 17891,3,1,7,2049,17554,10,17876,17923,168,20942,229463966214663,17925,200,21087,0,102,58,102,108, + 20942,193490036,17891,200,21002,44736,102,58,47,0,2049,5525,102,58,97,98,45,99,0,1, + 17891,3,1,7,2049,17554,10,17876,17923,168,20942,229463966214663,17925,200,21087,46204,102,58,102,108, 111,111,114,0,2049,5525,102,58,97,98,45,99,0,1,17925,3,1,8,2049,17554, - 10,17906,17959,168,20942,249886255052186944,17961,200,21048,0,102,58,99,101,105,108,105,110,103,0, + 10,17906,17959,168,20942,249886255052186944,17961,200,21048,45578,102,58,99,101,105,108,105,110,103,0, 2049,5525,102,58,102,45,102,0,1,17961,3,1,9,2049,17554,10,17940,17991,168,20942, - 6953453994383,17993,200,21193,0,102,58,115,113,114,116,0,2049,5525,102,58,102,45,102,0, - 1,17993,3,1,10,2049,17554,10,17975,18022,168,20942,210710711802,18024,200,21080,0,102,58,101, + 6953453994383,17993,200,21193,47508,102,58,115,113,114,116,0,2049,5525,102,58,102,45,102,0, + 1,17993,3,1,10,2049,17554,10,17975,18022,168,20942,210710711802,18024,200,21080,46064,102,58,101, 113,63,0,2049,5525,102,58,97,98,45,99,0,1,18024,3,1,11,2049,17554,10, - 18007,18055,168,20942,6953451465639,18057,200,20995,0,102,58,45,101,113,63,0,2049,5525,102,58, + 18007,18055,168,20942,6953451465639,18057,200,20995,44559,102,58,45,101,113,63,0,2049,5525,102,58, 97,98,45,99,0,1,18057,3,1,12,2049,17554,10,18039,18087,168,20942,210710719524,18089,200, - 21113,0,102,58,108,116,63,0,2049,5525,102,58,97,98,45,99,0,1,18089,3, - 1,13,2049,17554,10,18072,18119,168,20942,210710714079,18121,200,21091,0,102,58,103,116,63,0, + 21113,46583,102,58,108,116,63,0,2049,5525,102,58,97,98,45,99,0,1,18089,3, + 1,13,2049,17554,10,18072,18119,168,20942,210710714079,18121,200,21091,46272,102,58,103,116,63,0, 2049,5525,102,58,97,98,45,99,0,1,18121,3,1,14,2049,17554,10,18104,18153,168, - 20942,229463963592506,18155,200,200,0,102,58,100,101,112,116,104,0,2049,5525,45,110,0,1, - 18155,3,1,15,2049,17554,10,18136,18181,168,20942,210710710894,18183,200,21067,0,102,58,100,117, + 20942,229463963592506,18155,200,200,45725,102,58,100,101,112,116,104,0,2049,5525,45,110,0,1, + 18155,3,1,15,2049,17554,10,18136,18181,168,20942,210710710894,18183,200,21067,45970,102,58,100,117, 112,0,2049,5525,102,58,97,45,97,97,0,1,18183,3,1,16,2049,17554,10,18166, - 18214,168,20942,6953453456314,18216,200,21060,0,102,58,100,114,111,112,0,2049,5525,102,58,97, - 45,0,1,18216,3,1,17,2049,17554,10,18198,18245,168,20942,6953454000352,18247,200,21204,0,102, + 18214,168,20942,6953453456314,18216,200,21060,45781,102,58,100,114,111,112,0,2049,5525,102,58,97, + 45,0,1,18216,3,1,17,2049,17554,10,18198,18245,168,20942,6953454000352,18247,200,21204,47668,102, 58,115,119,97,112,0,2049,5525,102,58,97,98,45,98,97,0,1,18247,3,1, - 18,2049,17554,10,18229,18278,168,20942,210710719399,18280,200,21108,0,102,58,108,111,103,0,2049, + 18,2049,17554,10,18229,18278,168,20942,210710719399,18280,200,21108,46529,102,58,108,111,103,0,2049, 5525,102,58,97,98,45,99,0,1,18280,3,1,19,2049,17554,10,18263,18312,168,20942, - 229463978190066,18314,200,21155,0,102,58,112,111,119,101,114,0,2049,5525,102,58,97,98,45, - 99,0,1,18314,3,1,20,2049,17554,10,18295,18344,168,20942,210710726831,18346,200,21189,0,102, + 229463978190066,18314,200,21155,47108,102,58,112,111,119,101,114,0,2049,5525,102,58,97,98,45, + 99,0,1,18314,3,1,20,2049,17554,10,18295,18344,168,20942,210710726831,18346,200,21189,47464,102, 58,115,105,110,0,2049,5525,102,58,102,45,102,0,1,18346,3,1,21,2049,17554, - 10,18329,18375,168,20942,210710727656,18377,200,21210,0,102,58,116,97,110,0,2049,5525,102,58, + 10,18329,18375,168,20942,210710727656,18377,200,21210,47731,102,58,116,97,110,0,2049,5525,102,58, 102,45,102,0,1,18377,3,1,22,2049,17554,10,18360,18406,168,20942,210710709610,18408,200,21052, - 0,102,58,99,111,115,0,2049,5525,102,58,102,45,102,0,1,18408,3,1,23, - 2049,17554,10,18391,18438,168,20942,6953453349392,18440,200,21030,0,102,58,97,115,105,110,0,2049, + 45659,102,58,99,111,115,0,2049,5525,102,58,102,45,102,0,1,18408,3,1,23, + 2049,17554,10,18391,18438,168,20942,6953453349392,18440,200,21030,45191,102,58,97,115,105,110,0,2049, 5525,102,58,102,45,102,0,1,18440,3,1,24,2049,17554,10,18422,18470,168,20942,6953453332171, - 18472,200,21026,0,102,58,97,99,111,115,0,2049,5525,102,58,102,45,102,0,1, - 18472,3,1,25,2049,17554,10,18454,18502,168,20942,6953453350217,18504,200,21034,0,102,58,97,116, + 18472,200,21026,45075,102,58,97,99,111,115,0,2049,5525,102,58,102,45,102,0,1, + 18472,3,1,25,2049,17554,10,18454,18502,168,20942,6953453350217,18504,200,21034,45239,102,58,97,116, 97,110,0,2049,5525,102,58,102,45,102,0,1,18504,3,1,26,2049,17554,10,18486, - 18534,168,20942,6953453890949,18536,200,21160,0,102,58,112,117,115,104,0,2049,5525,102,58,102, - 45,0,1,18536,3,1,27,2049,17554,10,18518,18564,168,20942,210710723764,18566,200,21149,0,102, + 18534,168,20942,6953453890949,18536,200,21160,47148,102,58,112,117,115,104,0,2049,5525,102,58,102, + 45,0,1,18536,3,1,27,2049,17554,10,18518,18564,168,20942,210710723764,18566,200,21149,46983,102, 58,112,111,112,0,2049,5525,102,58,45,102,0,1,18566,3,1,28,2049,17554,10, - 18549,18597,168,20942,7572310679561435,18599,200,200,0,102,58,97,100,101,112,116,104,0,2049,5525, - 45,110,0,1,18599,3,1,29,2049,17554,10,18579,18626,168,20942,6953453855649,18628,200,21142,0, + 18549,18597,168,20942,7572310679561435,18599,200,200,45125,102,58,97,100,101,112,116,104,0,2049,5525, + 45,110,0,1,18599,3,1,29,2049,17554,10,18579,18626,168,20942,6953453855649,18628,200,21142,46919, 102,58,111,118,101,114,0,2049,5525,102,58,97,98,45,97,98,97,0,1,18628, - 3,2049,18534,2049,18181,2049,18564,2049,18245,10,18610,18665,168,20942,6953454034172,18667,200,21223,0,102, + 3,2049,18534,2049,18181,2049,18564,2049,18245,10,18610,18665,168,20942,6953454034172,18667,200,21223,47917,102, 58,116,117,99,107,0,2049,5525,102,58,97,98,45,98,97,98,0,1,18667,3, - 2049,18181,2049,18534,2049,18245,2049,18564,10,18649,18703,168,20942,210710721388,18705,200,21137,0,102,58, + 2049,18181,2049,18534,2049,18245,2049,18564,10,18649,18703,168,20942,210710721388,18705,200,21137,46880,102,58, 110,105,112,0,2049,5525,102,58,97,98,45,98,0,1,18705,3,2049,18245,2049,18214, - 10,18688,18741,168,20942,-4575027385529052237,18743,200,21063,0,102,58,100,114,111,112,45,112,97,105, + 10,18688,18741,168,20942,-4575027385529052237,18743,200,21063,45831,102,58,100,114,111,112,45,112,97,105, 114,0,2049,5525,102,58,97,98,45,0,1,18743,3,2049,18214,2049,18214,10,18720,18777, - 168,20942,8246246480203571943,18779,200,21072,0,102,58,100,117,112,45,112,97,105,114,0,2049,5525, + 168,20942,8246246480203571943,18779,200,21072,46022,102,58,100,117,112,45,112,97,105,114,0,2049,5525, 102,58,97,98,45,97,98,97,98,0,1,18779,3,2049,18626,2049,18626,10,18757,18812, - 168,20942,210710725946,18814,200,21166,0,102,58,114,111,116,0,2049,5525,102,58,97,98,99, + 168,20942,210710725946,18814,200,21166,47234,102,58,114,111,116,0,2049,5525,102,58,97,98,99, 45,98,99,97,0,1,18814,3,2049,18534,2049,18245,2049,18564,2049,18245,10,18797,18853,180, - 20942,229482595734757,18855,200,21239,0,115,105,103,105,108,58,46,0,2049,5525,115,45,95,95, + 20942,229482595734757,18855,200,21239,60748,115,105,103,105,108,58,46,0,2049,5525,115,45,95,95, 102,58,45,97,0,1,18855,3,2049,2505,1,5557,1,5466,2049,66,1,17685,2049,168, - 10,18836,18898,168,20942,7572311399974070,18900,200,21197,0,102,58,115,113,117,97,114,101,0,2049, + 10,18836,18898,168,20942,7572311399974070,18900,200,21197,47559,102,58,115,113,117,97,114,101,0,2049, 5525,102,58,110,45,109,0,1,18900,3,2049,18181,2049,17859,10,18880,18935,168,20942,-4575010631505066633, - 18937,200,21152,0,102,58,112,111,115,105,116,105,118,101,63,0,2049,5525,45,102, + 18937,200,21152,47036,102,58,112,111,115,105,116,105,118,101,63,0,2049,5525,45,102, 95,95,102,58,97,45,0,1,18937,3,1,0,2049,17647,2049,18119,10,18914,18977,168, - 20942,-4575013886317431657,18979,200,21134,0,102,58,110,101,103,97,116,105,118,101,63,0,2049,5525, + 20942,-4575013886317431657,18979,200,21134,46811,102,58,110,101,103,97,116,105,118,101,63,0,2049,5525, 45,102,95,95,102,58,97,45,0,1,18979,3,1,0,2049,17647,2049,18087,10,18956, - 19016,168,20942,7572311189563001,19018,200,21130,0,102,58,110,101,103,97,116,101,0,2049,5525,102, + 19016,168,20942,7572311189563001,19018,200,21130,46766,102,58,110,101,103,97,116,101,0,2049,5525,102, 58,97,45,98,0,1,19018,3,1,-1,2049,17647,2049,17859,10,18998,19049,168,20942,210710707003, - 19051,200,21022,0,102,58,97,98,115,0,2049,5525,102,58,97,45,98,0,1,19051, - 3,2049,18181,2049,18977,1,19016,9,10,19034,19083,168,20942,210710723966,19085,200,21163,0,102,58, + 19051,200,21022,45021,102,58,97,98,115,0,2049,5525,102,58,97,45,98,0,1,19051, + 3,2049,18181,2049,18977,1,19016,9,10,19034,19083,168,20942,210710723966,19085,200,21163,47201,102,58, 112,117,116,0,2049,5525,102,58,97,45,0,1,19085,3,2049,17764,2049,12918,10,19068, - 19112,168,20942,6385172350,19114,200,21019,0,102,58,80,73,0,2049,5525,102,58,45,70,0, + 19112,168,20942,6385172350,19114,200,21019,44981,102,58,80,73,0,2049,5525,102,58,45,70,0, 1,19114,3,2049,5525,51,46,49,52,49,53,57,50,54,53,52,0,1,19124,2049, - 17685,10,19098,19154,168,20942,193490058,19156,200,21007,0,102,58,69,0,2049,5525,102,58,45, + 17685,10,19098,19154,168,20942,193490058,19156,200,21007,44774,102,58,69,0,2049,5525,102,58,45, 70,0,1,19156,3,2049,5525,50,46,55,49,56,50,56,49,56,50,56,0,1, - 19166,2049,17685,10,19141,19198,168,20942,210710685186,19200,200,21016,0,102,58,78,65,78,0,2049, + 19166,2049,17685,10,19141,19198,168,20942,210710685186,19200,200,21016,44945,102,58,78,65,78,0,2049, 5525,102,58,45,110,0,1,19200,3,2049,5525,48,0,1,19210,2049,17685,2049,5525,48, - 0,1,19218,2049,17685,2049,17889,10,19183,19242,168,20942,210710680162,19244,200,21013,0,102,58,73, + 0,1,19218,2049,17685,2049,17889,10,19183,19242,168,20942,210710680162,19244,200,21013,44895,102,58,73, 78,70,0,2049,5525,102,58,45,110,0,1,19244,3,2049,5525,49,46,48,0,1, 19254,2049,17685,2049,5525,48,0,1,19264,2049,17685,2049,17889,10,19227,19289,168,20942,6953451433999,19291, - 200,20992,0,102,58,45,73,78,70,0,2049,5525,102,58,45,110,0,1,19291,3, + 200,20992,44509,102,58,45,73,78,70,0,2049,5525,102,58,45,110,0,1,19291,3, 2049,5525,45,49,46,48,0,1,19301,2049,17685,2049,5525,48,0,1,19312,2049,17685,2049, - 17889,10,19273,19337,168,20942,6953453797089,19339,200,21127,0,102,58,110,97,110,63,0,2049,5525, + 17889,10,19273,19337,168,20942,6953453797089,19339,200,21127,46699,102,58,110,97,110,63,0,2049,5525, 102,58,110,45,44,45,102,0,1,19339,3,2049,18181,2049,18055,10,19321,19371,168,20942, - 6953453631297,19373,200,21099,0,102,58,105,110,102,63,0,2049,5525,102,58,110,45,44,45, - 102,0,1,19373,3,2049,19242,2049,18022,10,19355,19406,168,20942,229463898507918,19408,200,20999,0,102, + 6953453631297,19373,200,21099,46344,102,58,105,110,102,63,0,2049,5525,102,58,110,45,44,45, + 102,0,1,19373,3,2049,19242,2049,18022,10,19355,19406,168,20942,229463898507918,19408,200,20999,44668,102, 58,45,105,110,102,63,0,2049,5525,102,58,110,45,44,45,102,0,1,19408,3, - 2049,19289,2049,18022,10,19389,19441,168,20942,229463980560013,19443,200,21174,0,102,58,114,111,117,110, + 2049,19289,2049,18022,10,19389,19441,168,20942,229463980560013,19443,200,21174,47263,102,58,114,111,117,110, 100,0,2049,5525,45,124,102,58,97,45,98,0,1,19443,3,2049,18181,2049,18977,1793, 19475,2049,5525,48,46,53,0,1,19462,2049,17685,2049,17829,2049,17959,10,1,19460,1793,19494, 2049,5525,48,46,53,0,1,19481,2049,17685,2049,17799,2049,17923,10,1,19479,2049,66,10, - 19424,19514,168,20942,210710720297,19516,200,21122,0,102,58,109,105,110,0,2049,5525,102,58,110, + 19424,19514,168,20942,210710720297,19516,200,21122,46666,102,58,109,105,110,0,2049,5525,102,58,110, 110,45,110,0,1,19516,3,2049,18777,2049,18087,1,18214,1,18703,2049,66,10,19499,19552, - 168,20942,210710720043,19554,200,21117,0,102,58,109,97,120,0,2049,5525,102,58,110,110,45, + 168,20942,210710720043,19554,200,21117,46632,102,58,109,97,120,0,2049,5525,102,58,110,110,45, 110,0,1,19554,3,2049,18777,2049,18119,1,18214,1,18703,2049,66,10,19537,19592,168,20942, - 229463973220004,19594,200,21102,0,102,58,108,105,109,105,116,0,2049,5525,102,58,110,108,117, + 229463973220004,19594,200,21102,46411,102,58,108,105,109,105,116,0,2049,5525,102,58,110,108,117, 45,110,0,1,19594,3,2049,18245,2049,18534,2049,19514,2049,18564,2049,19552,10,19575,19636,168, - 20942,8246246374547107374,19638,200,21038,0,102,58,98,101,116,119,101,101,110,63,0,2049,5525,102, + 20942,8246246374547107374,19638,200,21038,45290,102,58,98,101,116,119,101,101,110,63,0,2049,5525,102, 58,110,108,117,45,110,0,1,19638,3,2049,18812,2049,18181,2049,18534,2049,18812,2049,18812, - 2049,19592,2049,18564,2049,18022,10,19616,19681,168,20942,210710716095,19683,200,21095,0,102,58,105,110, + 2049,19592,2049,18564,2049,18022,10,19616,19681,168,20942,210710716095,19683,200,21095,46324,102,58,105,110, 99,0,2049,5525,102,58,110,45,110,0,1,19683,3,2049,5525,49,0,1,19694,2049, - 17685,2049,17799,10,19666,19718,168,20942,210710710353,19720,200,21056,0,102,58,100,101,99,0,2049, + 17685,2049,17799,10,19666,19718,168,20942,210710710353,19720,200,21056,45705,102,58,100,101,99,0,2049, 5525,102,58,110,45,110,0,1,19720,3,2049,5525,49,0,1,19731,2049,17685,2049,17829, - 10,19703,19756,168,20942,6953453401985,19758,200,21043,0,102,58,99,97,115,101,0,2049,5525,102, + 10,19703,19756,168,20942,6953453401985,19758,200,21043,45414,102,58,99,97,115,101,0,2049,5525,102, 58,102,102,45,44,113,45,0,1,19758,3,2049,18626,2049,18022,1793,19782,2049,18214,8, 1,-1,10,1,19776,1793,19790,3,1,0,10,1,19786,2049,66,25,6,771,10,19740, - 19814,168,20942,6953453985302,19816,200,21178,0,102,58,115,105,103,110,0,2049,5525,45,110,124, + 19814,168,20942,6953453985302,19816,200,21178,47293,102,58,115,105,103,110,0,2049,5525,45,110,124, 102,58,97,45,0,1,19816,3,2049,18181,2049,5525,48,0,1,19831,2049,17685,2049,18022, 1793,19846,1,0,2049,18214,10,1,19841,2049,3638,2049,5525,48,0,1,19852,2049,17685,2049, 18119,1793,19865,1,1,10,1,19862,1793,19872,1,-1,10,1,19869,2049,66,10,19798,9223372036854775805, - 156,20942,210709498186,19894,200,200,0,101,58,77,65,88,0,45,110,0,19877,-9223372036854775805,156,20942, - 210709498440,19912,200,200,0,101,58,77,73,78,0,45,110,0,19895,-9223372036854775807,156,20942,210709499265,19930, - 200,200,0,101,58,78,65,78,0,45,110,0,19913,9223372036854775806,156,20942,210709494241,19948,200,200, - 0,101,58,73,78,70,0,45,110,0,19931,-9223372036854775806,156,20942,6953412298606,19967,200,200,0,101, - 58,45,73,78,70,0,45,110,0,19949,19982,168,20942,6385137393,19984,200,200,0,101,58, + 156,20942,210709498186,19894,200,200,43474,101,58,77,65,88,0,45,110,0,19877,-9223372036854775805,156,20942, + 210709498440,19912,200,200,43534,101,58,77,73,78,0,45,110,0,19895,-9223372036854775807,156,20942,210709499265,19930, + 200,200,43594,101,58,78,65,78,0,45,110,0,19913,9223372036854775806,156,20942,210709494241,19948,200,200, + 43419,101,58,73,78,70,0,45,110,0,19931,-9223372036854775806,156,20942,6953412298606,19967,200,200,43318,101, + 58,45,73,78,70,0,45,110,0,19949,19982,168,20942,6385137393,19984,200,200,43798,101,58, 110,63,0,2049,5525,117,45,102,0,1,19984,3,1,-9223372036854775805,2049,3953,1,9223372036854775805,2049,3971, - 2049,3994,10,19968,20018,168,20942,6953414626089,20020,200,200,0,101,58,109,97,120,63,0,2049, + 2049,3994,10,19968,20018,168,20942,6953414626089,20020,200,200,43732,101,58,109,97,120,63,0,2049, 5525,117,45,102,0,1,20020,3,1,9223372036854775805,11,10,20002,20047,168,20942,6953414634471,20049,200,200, - 0,101,58,109,105,110,63,0,2049,5525,117,45,102,0,1,20049,3,1,-9223372036854775805,11, - 10,20031,20077,168,20942,229462698216771,20079,200,200,0,101,58,122,101,114,111,63,0,2049,5525, - 117,45,102,0,1,20079,3,2049,3470,10,20060,20105,168,20942,6953414661696,20107,200,200,0,101, + 43765,101,58,109,105,110,63,0,2049,5525,117,45,102,0,1,20049,3,1,-9223372036854775805,11, + 10,20031,20077,168,20942,229462698216771,20079,200,200,43965,101,58,122,101,114,111,63,0,2049,5525, + 117,45,102,0,1,20079,3,2049,3470,10,20060,20105,168,20942,6953414661696,20107,200,200,43874,101, 58,110,97,110,63,0,2049,5525,117,45,102,0,1,20107,3,1,-9223372036854775807,11,10,20089, - 20134,168,20942,6953414495904,20136,200,200,0,101,58,105,110,102,63,0,2049,5525,117,45,102, - 0,1,20136,3,1,9223372036854775806,11,10,20118,20164,168,20942,229462607039949,20166,200,200,0,101,58,45, + 20134,168,20942,6953414495904,20136,200,200,43705,101,58,105,110,102,63,0,2049,5525,117,45,102, + 0,1,20136,3,1,9223372036854775806,11,10,20118,20164,168,20942,229462607039949,20166,200,200,43383,101,58,45, 105,110,102,63,0,2049,5525,117,45,102,0,1,20166,3,1,-9223372036854775806,11,10,20147,20193, - 168,20942,6953414278252,20195,200,200,0,101,58,99,108,105,112,0,2049,5525,117,45,117,0, - 1,20195,3,1,-9223372036854775805,1,9223372036854775805,2049,3930,10,20177,20223,168,20942,6385171963,20225,200,21010,0,102, + 168,20942,6953414278252,20195,200,200,43653,101,58,99,108,105,112,0,2049,5525,117,45,117,0, + 1,20195,3,1,-9223372036854775805,1,9223372036854775805,2049,3930,10,20177,20223,168,20942,6385171963,20225,200,21010,44826,102, 58,69,49,0,2049,5525,45,124,102,58,45,110,41,95,101,45,117,110,105,116, 95,105,110,95,102,108,111,97,0,1,20225,3,1793,20253,2049,5525,49,46,101,53, - 0,1,20255,2049,17685,10,20209,20288,168,20942,-1561378222854156682,20290,200,21181,0,102,58,115,105,103, + 0,1,20255,2049,17685,10,20209,20288,168,20942,-1561378222854156682,20290,200,21181,47367,102,58,115,105,103, 110,101,100,45,115,113,114,116,0,2049,5525,124,102,58,110,45,110,0,1,20290, 3,2049,18181,2049,19814,2049,19049,2049,17991,2049,17647,2049,17859,10,20265,20338,168,20942,-3240429906897787043,20340, - 200,21185,0,102,58,115,105,103,110,101,100,45,115,113,117,97,114,101,0,2049, + 200,21185,47418,102,58,115,105,103,110,101,100,45,115,113,117,97,114,101,0,2049, 5525,124,102,58,110,45,110,0,1,20340,3,2049,18181,2049,19814,2049,18181,2049,17859,2049, 17647,2049,17859,10,20313,20381,168,0,7572308662409552,0,200,200,0,102,58,45,115,104,105,102, 116,0,2049,20223,2049,17859,10,20363,20404,168,0,7572308584138766,0,200,200,0,102,58,43,115, 104,105,102,116,0,2049,20223,2049,17889,10,20386,20428,168,0,249886182735593054,0,200,200,0,102, 58,43,101,110,99,111,100,101,0,2049,20288,2049,20381,10,20409,20452,168,0,249886185318528992,0, 200,200,0,102,58,45,101,110,99,111,100,101,0,2049,18181,2049,19814,2049,20404,2049, - 18181,2049,17859,2049,17647,2049,17859,10,20313,20483,168,20942,6953454025850,20485,200,21214,0,102,58,116, + 18181,2049,17859,2049,17647,2049,17859,10,20313,20483,168,20942,6953454025850,20485,200,21214,47778,102,58,116, 111,45,101,0,2049,5525,45,101,124,102,58,110,45,0,1,20485,3,2049,18181,2049, 19337,1793,20507,2049,18214,1,-9223372036854775807,10,1,20502,2049,3638,2049,18181,2049,19371,1793,20522,2049,18214, 1,9223372036854775806,10,1,20517,2049,3638,2049,18181,2049,19406,1793,20537,2049,18214,1,-9223372036854775806,10,1,20532, 2049,3638,2049,20428,2049,19441,2049,17724,2049,20193,1,-9223372036854775805,1,18214,2049,3274,1,9223372036854775805,1,18214, - 2049,3274,10,20467,20578,168,20942,6953414890458,20580,200,20974,0,101,58,116,111,45,102,0,2049, + 2049,3274,10,20467,20578,168,20942,6953414890458,20580,200,20974,43925,101,58,116,111,45,102,0,2049, 5525,101,45,124,102,58,45,110,0,1,20580,3,1,-9223372036854775807,1,19198,2049,3274,1,9223372036854775806, 1,19242,2049,3274,1,-9223372036854775806,1,19289,2049,3274,2049,17647,2049,20452,10,20562,20631,168,20942,229463981919218, - 20633,200,21201,0,102,58,115,116,111,114,101,0,2049,5525,97,45,124,102,58,110, - 45,0,1,20633,3,1,20483,2049,2889,16,10,20614,20667,168,20942,229463965968143,20669,200,21084,0, + 20633,200,21201,47605,102,58,115,116,111,114,101,0,2049,5525,97,45,124,102,58,110, + 45,0,1,20633,3,1,20483,2049,2889,16,10,20614,20667,168,20942,229463965968143,20669,200,21084,46167, 102,58,102,101,116,99,104,0,2049,5525,97,45,124,102,58,45,110,0,1,20669, - 3,15,2049,20578,10,20650,20706,168,20942,-3401946998789110658,20708,200,200,0,102,58,100,117,109,112, + 3,15,2049,20578,10,20650,20706,168,20942,-3401946998789110658,20708,200,200,45923,102,58,100,117,109,112, 45,115,116,97,99,107,0,2049,5525,45,0,1,20708,3,2049,18153,2,1,18534,2049, 3153,1793,20731,2049,18564,2049,18181,2049,19083,2049,12880,10,1,20722,2049,3153,10,20684,20759,168, - 20942,-1583786518488284545,20761,200,200,0,102,58,100,117,109,112,45,97,115,116,97,99,107,0, + 20942,-1583786518488284545,20761,200,200,45866,102,58,100,117,109,112,45,97,115,116,97,99,107,0, 2049,5525,45,0,1,20761,3,2049,18597,2,1,18564,2049,3153,1793,20784,2049,18181,2049,19083, - 2049,12880,2049,18534,10,1,20775,2049,3153,10,20736,20804,168,20942,210709538045,20806,200,200,0,101, + 2049,12880,2049,18534,10,1,20775,2049,3153,10,20736,20804,168,20942,210709538045,20806,200,200,43898,101, 58,112,117,116,0,2049,5525,101,45,0,1,20806,3,1,9223372036854775805,1793,20829,2049,5525,101, 58,77,65,88,0,1,20818,2049,12918,10,1,20816,2049,3274,1,-9223372036854775805,1793,20850,2049,5525, 101,58,77,73,78,0,1,20839,2049,12918,10,1,20837,2049,3274,1,0,1793,20869,2049, @@ -1073,107 +1073,107 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 45,0,70,45,70,0,102,45,102,0,70,45,70,0,70,45,70,0,102,45, 102,0,110,45,0,70,71,45,71,70,0,70,45,70,0,110,45,0,70,45, 0,70,45,0,70,71,45,71,70,71,0,45,70,0,45,63,0,45,70,0, - 45,70,0,20789,21266,168,22400,8056574075740390096,21268,200,200,0,102,105,108,101,58,111,112,101, + 45,70,0,20789,21266,168,22400,8056574075740390096,21268,200,200,49086,102,105,108,101,58,111,112,101, 114,97,116,105,111,110,0,2049,5525,45,110,0,1,21268,3,1,4,2049,12792,2, 2049,3517,1793,21323,3,2049,5525,69,114,114,111,114,58,32,102,105,108,101,115,32, 100,101,118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1,21286,2049, - 12918,2049,12863,10,1,21283,2049,3638,2049,12769,10,21242,0,156,22400,6953509466161,21348,200,200,0, - 102,105,108,101,58,82,0,45,110,0,21330,1,156,22400,6953509466166,21367,200,200,0,102, - 105,108,101,58,87,0,45,110,0,21349,2,156,22400,6953509466144,21386,200,200,0,102,105, - 108,101,58,65,0,45,110,0,21368,3,156,22400,229465812383356,21406,200,200,0,102,105,108, - 101,58,82,43,0,45,110,0,21387,21426,168,22400,249888269686595441,21428,200,200,0,102,105,108, + 12918,2049,12863,10,1,21283,2049,3638,2049,12769,10,21242,0,156,22400,6953509466161,21348,200,200,48409, + 102,105,108,101,58,82,0,45,110,0,21330,1,156,22400,6953509466166,21367,200,200,48501,102, + 105,108,101,58,87,0,45,110,0,21349,2,156,22400,6953509466144,21386,200,200,48365,102,105, + 108,101,58,65,0,45,110,0,21368,3,156,22400,229465812383356,21406,200,200,48451,102,105,108, + 101,58,82,43,0,45,110,0,21387,21426,168,22400,249888269686595441,21428,200,200,48809,102,105,108, 101,58,111,112,101,110,0,2049,5525,115,109,45,104,0,1,21428,3,1,0,2049, - 21266,10,21407,21461,168,22400,8246312899643285909,21463,200,200,0,102,105,108,101,58,99,108,111,115, + 21266,10,21407,21461,168,22400,8246312899643285909,21463,200,200,48544,102,105,108,101,58,99,108,111,115, 101,0,2049,5525,104,45,0,1,21463,3,1,1,2049,21266,10,21441,21493,168,22400,249888269686691131, - 21495,200,200,0,102,105,108,101,58,114,101,97,100,0,2049,5525,104,45,99,0, - 1,21495,3,1,2,2049,21266,10,21474,21527,168,22400,8246312899667213450,21529,200,200,0,102,105,108, + 21495,200,200,49158,102,105,108,101,58,114,101,97,100,0,2049,5525,104,45,99,0, + 1,21495,3,1,2,2049,21266,10,21474,21527,168,22400,8246312899667213450,21529,200,200,49921,102,105,108, 101,58,119,114,105,116,101,0,2049,5525,99,104,45,0,1,21529,3,1,3,2049, - 21266,10,21507,21560,168,22400,249888269686763376,21562,200,200,0,102,105,108,101,58,116,101,108,108, + 21266,10,21507,21560,168,22400,249888269686763376,21562,200,200,49861,102,105,108,101,58,116,101,108,108, 0,2049,5525,104,45,110,0,1,21562,3,1,4,2049,21266,10,21541,21593,168,22400,249888269686727207, - 21595,200,200,0,102,105,108,101,58,115,101,101,107,0,2049,5525,110,104,45,0, - 1,21595,3,1,5,2049,21266,10,21574,21626,168,22400,249888269686732250,21628,200,200,0,102,105,108, + 21595,200,200,49542,102,105,108,101,58,115,101,101,107,0,2049,5525,110,104,45,0, + 1,21595,3,1,5,2049,21266,10,21574,21626,168,22400,249888269686732250,21628,200,200,49600,102,105,108, 101,58,115,105,122,101,0,2049,5525,104,45,110,0,1,21628,3,1,6,2049,21266, - 10,21607,21661,168,22400,-4572835417384127758,21663,200,200,0,102,105,108,101,58,100,101,108,101,116, + 10,21607,21661,168,22400,-4572835417384127758,21663,200,200,48581,102,105,108,101,58,100,101,108,101,116, 101,0,2049,5525,115,45,0,1,21663,3,1,7,2049,21266,10,21640,21694,168,22400,8246312899646850209, - 21696,200,200,0,102,105,108,101,58,102,108,117,115,104,0,2049,5525,102,45,0, - 1,21696,3,1,8,2049,21266,10,21674,21732,168,22400,7612651040925696305,21734,200,200,0,102,105,108, + 21696,200,200,48677,102,105,108,101,58,102,108,117,115,104,0,2049,5525,102,45,0, + 1,21696,3,1,8,2049,21266,10,21674,21732,168,22400,7612651040925696305,21734,200,200,49277,102,105,108, 101,58,114,101,97,100,47,98,121,116,101,115,0,2049,5525,112,110,102,45,0, - 1,21734,3,1,9,2049,21266,10,21707,21773,168,22400,-7028659436281878592,21775,200,200,0,102,105,108, + 1,21734,3,1,9,2049,21266,10,21707,21773,168,22400,-7028659436281878592,21775,200,200,49973,102,105,108, 101,58,119,114,105,116,101,47,98,121,116,101,115,0,2049,5525,112,110,102,45, - 0,1,21775,3,1,10,2049,21266,10,21747,21809,168,22400,-4572835416836630931,21811,200,200,0,102,105, + 0,1,21775,3,1,10,2049,21266,10,21747,21809,168,22400,-4572835416836630931,21811,200,200,49415,102,105, 108,101,58,114,101,97,100,47,99,0,2049,5525,104,45,99,0,1,21811,3,1, - 11,2049,21266,10,21788,21845,168,22400,-3329616158956188292,21847,200,200,0,102,105,108,101,58,119,114, + 11,2049,21266,10,21788,21845,168,22400,-3329616158956188292,21847,200,200,50089,102,105,108,101,58,119,114, 105,116,101,47,99,0,2049,5525,99,104,45,99,0,1,21847,3,1,12,2049,21266, - 10,21823,21882,168,22400,-3329616181967816770,21884,200,200,0,102,105,108,101,58,101,120,105,115,116, + 10,21823,21882,168,22400,-3329616181967816770,21884,200,200,48604,102,105,108,101,58,101,120,105,115,116, 115,63,0,2049,5525,115,45,102,0,1,21884,3,1,0,2049,21426,2,2049,3492,1793, 21905,2049,21461,2049,3239,10,1,21900,1793,21913,3,2049,3257,10,1,21909,2049,66,10,21860, - 21949,168,22400,-4283841618960457812,21951,200,200,0,102,105,108,101,58,111,112,101,110,45,102,111, + 21949,168,22400,-4283841618960457812,21951,200,200,48973,102,105,108,101,58,111,112,101,110,45,102,111, 114,45,114,101,97,100,105,110,103,0,2049,5525,115,45,110,110,0,1,21951,3, - 1,0,2049,21426,2,2049,21626,4,10,21918,21998,168,22400,2106155595587003402,22000,200,200,0,102,105, + 1,0,2049,21426,2,2049,21626,4,10,21918,21998,168,22400,2106155595587003402,22000,200,200,48895,102,105, 108,101,58,111,112,101,110,45,102,111,114,45,97,112,112,101,110,100,0,2049, 5525,115,45,110,110,0,1,22000,3,1,2,2049,21426,2,2049,21626,4,10,21968,22048, - 168,22400,-4283841611984295498,22050,200,200,0,102,105,108,101,58,111,112,101,110,45,102,111,114, + 168,22400,-4283841611984295498,22050,200,200,49041,102,105,108,101,58,111,112,101,110,45,102,111,114, 45,119,114,105,116,105,110,103,0,2049,5525,115,45,110,0,1,22050,3,1,1, 2049,21426,10,22017,22075,156,0,193455704,0,200,200,0,70,73,68,0,0,22062,22090,156, 0,6384542144,0,200,200,0,83,105,122,101,0,0,22076,22107,156,0,6952054634723,0,200,200, 0,65,99,116,105,111,110,0,0,22091,22123,168,0,210644670123,0,200,200,0,45,101, 111,102,63,0,3841,22075,2049,21560,3841,22090,13,10,22108,22149,168,0,7572809360530097,0,200,200, 0,112,114,101,115,101,114,118,101,0,1,22075,1793,22160,1,22090,1,27,2049,4871, - 10,1,22153,2049,4871,10,22017,22189,168,22400,8056577820387649264,22191,200,200,0,102,105,108,101,58, + 10,1,22153,2049,4871,10,22017,22189,168,22400,8056577820387649264,22191,200,200,49216,102,105,108,101,58, 114,101,97,100,45,108,105,110,101,0,2049,5525,102,45,115,0,1,22191,3,2049, - 2585,4,1,13,2049,21266,2049,2585,10,22165,22236,168,22400,-8859848394595038695,22238,200,200,0,102,105, + 2585,4,1,13,2049,21266,2049,2585,10,22165,22236,168,22400,-8859848394595038695,22238,200,200,48732,102,105, 108,101,58,102,111,114,45,101,97,99,104,45,108,105,110,101,0,2049,5525,115, 113,45,0,1,22238,3,1793,22276,4097,22107,2049,21949,4097,22075,4097,22090,1793,22267,3841,22075, 2049,22189,3841,22107,8,2049,22123,10,1,22257,2049,3064,3841,22075,2049,21461,10,1,22247,2049, 22149,10,22208,22294,156,0,193455704,0,200,200,0,70,73,68,0,0,22208,22315,168,22400, - 8246312899662267157,22317,200,200,0,102,105,108,101,58,115,108,117,114,112,0,2049,5525,97,115, + 8246312899662267157,22317,200,200,49661,102,105,108,101,58,115,108,117,114,112,0,2049,5525,97,115, 45,0,1,22317,3,1793,22351,4,2049,5179,2049,21949,4097,22294,1793,22342,3841,22294,2049,21493, 2049,5063,10,1,22335,2049,3153,3841,22294,2049,21461,10,1,22326,2049,5209,10,22295,22375,168, - 22400,249888269686739198,22377,200,200,0,102,105,108,101,58,115,112,101,119,0,2049,5525,115,115, + 22400,249888269686739198,22377,200,200,49755,102,105,108,101,58,115,112,101,119,0,2049,5525,115,115, 45,0,1,22377,3,2049,22048,4,1793,22393,67502597,2049,21527,10,1,22389,2049,5849,2049,21461, 10,105,110,116,101,114,102,97,99,101,47,102,105,108,101,115,121,115,116,101, - 109,46,114,101,116,114,111,0,22400,23466,22356,22454,168,23445,4299348465103751587,22456,200,200,0,105, + 109,46,114,101,116,114,111,0,22400,23466,22356,22454,168,23445,4299348465103751587,22456,200,200,52511,105, 111,58,117,110,105,120,45,115,121,115,99,97,108,108,0,2049,5525,110,45,0, 1,22456,3,1,8,2049,12792,2,2049,3517,1793,22510,3,2049,5525,69,114,114,111,114, 58,32,85,78,73,88,32,100,101,118,105,99,101,32,110,111,116,32,102,111, 117,110,100,0,1,22474,2049,12918,2049,12863,10,1,22471,2049,3638,2049,12769,10,22429,22538, - 168,23445,-4549633084047572696,22540,200,200,0,117,110,105,120,58,115,121,115,116,101,109,0,2049, + 168,23445,-4549633084047572696,22540,200,200,64570,117,110,105,120,58,115,121,115,116,101,109,0,2049, 5525,115,45,0,1,22540,3,1,0,2049,22454,10,22517,22570,168,23445,249909575776928405,22572,200,200, - 0,117,110,105,120,58,102,111,114,107,0,2049,5525,45,110,0,1,22572,3,1, - 1,2049,22454,10,22551,22603,168,23445,8247016000637760504,22605,200,200,0,117,110,105,120,58,101,120, + 63722,117,110,105,120,58,102,111,114,107,0,2049,5525,45,110,0,1,22572,3,1, + 1,2049,22454,10,22551,22603,168,23445,8247016000637760504,22605,200,200,62999,117,110,105,120,58,101,120, 101,99,48,0,2049,5525,115,45,0,1,22605,3,1,2,2049,22454,10,22583,22636,168, - 23445,8247016000637760505,22638,200,200,0,117,110,105,120,58,101,120,101,99,49,0,2049,5525,115, - 115,45,0,1,22638,3,1,3,2049,22454,10,22616,22670,168,23445,8247016000637760506,22672,200,200,0, + 23445,8247016000637760505,22638,200,200,63060,117,110,105,120,58,101,120,101,99,49,0,2049,5525,115, + 115,45,0,1,22638,3,1,3,2049,22454,10,22616,22670,168,23445,8247016000637760506,22672,200,200,63146, 117,110,105,120,58,101,120,101,99,50,0,2049,5525,115,115,115,45,0,1,22672, - 3,1,4,2049,22454,10,22650,22705,168,23445,8247016000637760507,22707,200,200,0,117,110,105,120,58, + 3,1,4,2049,22454,10,22650,22705,168,23445,8247016000637760507,22707,200,200,63237,117,110,105,120,58, 101,120,101,99,51,0,2049,5525,115,115,115,115,45,0,1,22707,3,1,5,2049, - 22454,10,22685,22740,168,23445,249909575776901981,22742,200,200,0,117,110,105,120,58,101,120,105,116, + 22454,10,22685,22740,168,23445,249909575776901981,22742,200,200,63480,117,110,105,120,58,101,120,105,116, 0,2049,5525,110,45,0,1,22742,3,1,6,2049,22454,10,22721,22774,168,23445,-4549633084540884128,22776, - 200,200,0,117,110,105,120,58,103,101,116,112,105,100,0,2049,5525,45,110,0, - 1,22776,3,1,7,2049,22454,10,22753,22806,168,23445,249909575777523800,22808,200,200,0,117,110,105, + 200,200,63877,117,110,105,120,58,103,101,116,112,105,100,0,2049,5525,45,110,0, + 1,22776,3,1,7,2049,22454,10,22753,22806,168,23445,249909575777523800,22808,200,200,64660,117,110,105, 120,58,119,97,105,116,0,2049,5525,45,110,0,1,22808,3,1,8,2049,22454,10, - 22787,22838,168,23445,249909575777101359,22840,200,200,0,117,110,105,120,58,107,105,108,108,0,2049, + 22787,22838,168,23445,249909575777101359,22840,200,200,63916,117,110,105,120,58,107,105,108,108,0,2049, 5525,110,110,45,0,1,22840,3,1,9,2049,22454,10,22819,22872,168,23445,8247016000650494309,22874,200, - 200,0,117,110,105,120,58,112,111,112,101,110,0,2049,5525,115,110,45,110,0, - 1,22874,3,1,10,2049,22454,10,22852,22908,168,23445,-4549633084191325687,22910,200,200,0,117,110,105, + 200,64124,117,110,105,120,58,112,111,112,101,110,0,2049,5525,115,110,45,110,0, + 1,22874,3,1,10,2049,22454,10,22852,22908,168,23445,-4549633084191325687,22910,200,200,63976,117,110,105, 120,58,112,99,108,111,115,101,0,2049,5525,110,45,0,1,22910,3,1,11,2049, - 22454,10,22887,22941,168,23445,8247016000634812845,22943,200,200,0,117,110,105,120,58,99,104,100,105, + 22454,10,22887,22941,168,23445,8247016000634812845,22943,200,200,62859,117,110,105,120,58,99,104,100,105, 114,0,2049,5525,115,45,0,1,22943,3,1,13,2049,22454,10,22921,22975,168,23445,-4549633084540895924, - 22977,200,200,0,117,110,105,120,58,103,101,116,101,110,118,0,2049,5525,115,97, - 45,0,1,22977,3,1,14,2049,22454,10,22954,23010,168,23445,-4549633084169702651,23012,200,200,0,117, + 22977,200,200,63800,117,110,105,120,58,103,101,116,101,110,118,0,2049,5525,115,97, + 45,0,1,22977,3,1,14,2049,22454,10,22954,23010,168,23445,-4549633084169702651,23012,200,200,64299,117, 110,105,120,58,112,117,116,101,110,118,0,2049,5525,115,45,0,1,23012,3,1, - 15,2049,22454,10,22989,23043,168,23445,8247016000653932284,23045,200,200,0,117,110,105,120,58,115,108, + 15,2049,22454,10,22989,23043,168,23445,8247016000653932284,23045,200,200,64397,117,110,105,120,58,115,108, 101,101,112,0,2049,5525,110,45,0,1,23045,3,1,16,2049,22454,10,23023,23078,168, - 23445,-2563939202030369066,23080,200,200,0,117,110,105,120,58,101,120,101,99,117,116,101,0,2049, + 23445,-2563939202030369066,23080,200,200,63333,117,110,105,120,58,101,120,101,99,117,116,101,0,2049, 5525,115,45,0,1,23080,3,1,17,2049,22454,10,23056,23110,168,23445,249909575777281169,23112,200,200, - 0,117,110,105,120,58,112,105,112,101,0,2049,5525,115,45,115,0,1,23112,3, - 1,0,2049,22872,1,22189,1,22908,2049,2923,10,23091,23152,168,23445,-2563939200175176882,23154,200,200,0, + 63990,117,110,105,120,58,112,105,112,101,0,2049,5525,115,45,115,0,1,23112,3, + 1,0,2049,22872,1,22189,1,22908,2049,2923,10,23091,23152,168,23445,-2563939200175176882,23154,200,200,63763, 117,110,105,120,58,103,101,116,45,99,119,100,0,2049,5525,45,115,41,0,1, 23154,3,2049,5525,112,119,100,0,1,23163,2049,23110,2049,8555,2049,5525,47,0,1,23175, - 2049,5825,10,23130,23215,168,23445,-2316844556017942917,23217,200,200,0,117,110,105,120,58,99,111,117, + 2049,5825,10,23130,23215,168,23445,-2316844556017942917,23217,200,200,62918,117,110,105,120,58,99,111,117, 110,116,45,102,105,108,101,115,45,105,110,45,99,119,100,0,2049,5525,45,110, 0,1,23217,3,2049,5525,108,115,32,45,49,32,124,32,119,99,32,45,108,0, - 1,23225,2049,23110,2049,8555,2049,288,10,23182,23276,168,23445,-4594486429310984907,23278,200,200,0,117,110, + 1,23225,2049,23110,2049,8555,2049,288,10,23182,23276,168,23445,-4594486429310984907,23278,200,200,63543,117,110, 105,120,58,102,111,114,45,101,97,99,104,45,102,105,108,101,0,2049,5525,113, 45,0,1,23278,3,2049,5525,108,115,32,45,49,32,45,112,0,1,23286,1,0, 2049,22872,2049,23215,1793,23319,1793,23314,2049,22189,2049,5466,67502597,8,10,1,23307,2049,2905,10, @@ -1181,41 +1181,41 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 114,116,0,4,2049,5179,1,0,2049,22872,10,23327,23364,168,0,6385651009,0,200,200,0, 114,101,97,100,0,2,2049,21493,2,2049,5063,2049,3470,10,23350,23389,168,0,6953509544294,0, 200,200,0,102,105,110,105,115,104,0,2049,22908,2049,5153,10,23248,23419,168,23445,1204178398703148788, - 23421,200,200,0,117,110,105,120,58,115,108,117,114,112,45,112,105,112,101,0, + 23421,200,200,64440,117,110,105,120,58,115,108,117,114,112,45,112,105,112,101,0, 2049,5525,97,115,45,110,0,1,23421,3,1793,23440,2049,23342,1,23364,2049,3093,2049,23389, 10,1,23431,2049,5209,10,105,110,116,101,114,102,97,99,101,47,117,110,105,120, - 46,114,101,116,114,111,0,23445,23568,23394,23486,168,23548,7572652289159374,23488,200,200,0,110,58, + 46,114,101,116,114,111,0,23445,23568,23394,23486,168,23548,7572652289159374,23488,200,200,54156,110,58, 114,97,110,100,111,109,0,2049,5525,45,110,0,1,23488,3,1,10,2049,12792,2, 2049,3517,1793,23541,3,2049,5525,69,114,114,111,114,58,32,82,78,71,32,100,101, 118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1,23506,2049,12918,2049, 12863,10,1,23503,2049,3638,2049,12769,10,105,110,116,101,114,102,97,99,101,47,114, - 110,103,46,114,101,116,114,111,0,23548,24147,23468,23595,168,24125,4482520117059041020,23597,200,200,0, + 110,103,46,114,101,116,114,111,0,23548,24147,23468,23595,168,24125,4482520117059041020,23597,200,200,39285, 99,108,111,99,107,58,111,112,101,114,97,116,105,111,110,0,2049,5525,110,45, 0,1,23597,3,1,5,2049,12792,2,2049,3517,1793,23652,3,2049,5525,69,114,114,111, 114,58,32,99,108,111,99,107,32,100,101,118,105,99,101,32,110,111,116,32, 102,111,117,110,100,0,1,23615,2049,12918,2049,12863,10,1,23612,2049,3638,2049,12769,10, - 23570,23684,168,24125,4482526860617352831,23686,200,200,0,99,108,111,99,107,58,116,105,109,101,115, + 23570,23684,168,24125,4482526860617352831,23686,200,200,39427,99,108,111,99,107,58,116,105,109,101,115, 116,97,109,112,0,2049,5525,45,110,0,1,23686,3,1,0,2049,23595,10,23659,23716, - 168,24125,249884182168395049,23718,200,200,0,99,108,111,99,107,58,100,97,121,0,2049,5525,45, - 110,0,1,23718,3,1,1,2049,23595,10,23697,23750,168,24125,-4577286724249897519,23752,200,200,0,99, + 168,24125,249884182168395049,23718,200,200,39045,99,108,111,99,107,58,100,97,121,0,2049,5525,45, + 110,0,1,23718,3,1,1,2049,23595,10,23697,23750,168,24125,-4577286724249897519,23752,200,200,39213,99, 108,111,99,107,58,109,111,110,116,104,0,2049,5525,45,110,0,1,23752,3,1, - 2,2049,23595,10,23729,23783,168,24125,8246178011557794972,23785,200,200,0,99,108,111,99,107,58,121, + 2,2049,23595,10,23729,23783,168,24125,8246178011557794972,23785,200,200,39740,99,108,111,99,107,58,121, 101,97,114,0,2049,5525,45,110,0,1,23785,3,1,3,2049,23595,10,23763,23816,168, - 24125,8246178011557195593,23818,200,200,0,99,108,111,99,107,58,104,111,117,114,0,2049,5525,45, - 110,0,1,23818,3,1,4,2049,23595,10,23796,23851,168,24125,-3476509310577319139,23853,200,200,0,99, + 24125,8246178011557195593,23818,200,200,39069,99,108,111,99,107,58,104,111,117,114,0,2049,5525,45, + 110,0,1,23818,3,1,4,2049,23595,10,23796,23851,168,24125,-3476509310577319139,23853,200,200,39140,99, 108,111,99,107,58,109,105,110,117,116,101,0,2049,5525,45,110,0,1,23853,3, - 1,5,2049,23595,10,23829,23886,168,24125,-3476509310347652505,23888,200,200,0,99,108,111,99,107,58, + 1,5,2049,23595,10,23829,23886,168,24125,-3476509310347652505,23888,200,200,39354,99,108,111,99,107,58, 115,101,99,111,110,100,0,2049,5525,45,110,0,1,23888,3,1,6,2049,23595,10, - 23864,23922,168,24125,-4044342796047171665,23924,200,200,0,99,108,111,99,107,58,117,116,99,58,100, + 23864,23922,168,24125,-4044342796047171665,23924,200,200,39544,99,108,111,99,107,58,117,116,99,58,100, 97,121,0,2049,5525,45,110,0,1,23924,3,1,7,2049,23595,10,23899,23960,168,24125, - 4482528721224061399,23962,200,200,0,99,108,111,99,107,58,117,116,99,58,109,111,110,116,104, + 4482528721224061399,23962,200,200,39641,99,108,111,99,107,58,117,116,99,58,109,111,110,116,104, 0,2049,5525,45,110,0,1,23962,3,1,8,2049,23595,10,23935,23997,168,24125,-4336103753589045278,23999, - 200,200,0,99,108,111,99,107,58,117,116,99,58,121,101,97,114,0,2049,5525, - 45,110,0,1,23999,3,1,9,2049,23595,10,23973,24034,168,24125,-4336103753589644657,24036,200,200,0, + 200,200,39708,99,108,111,99,107,58,117,116,99,58,121,101,97,114,0,2049,5525, + 45,110,0,1,23999,3,1,9,2049,23595,10,23973,24034,168,24125,-4336103753589644657,24036,200,200,39575, 99,108,111,99,107,58,117,116,99,58,104,111,117,114,0,2049,5525,45,110,0, - 1,24036,3,1,10,2049,23595,10,24010,24073,168,24125,349495210710499299,24075,200,200,0,99,108,111, + 1,24036,3,1,10,2049,23595,10,24010,24073,168,24125,349495210710499299,24075,200,200,39607,99,108,111, 99,107,58,117,116,99,58,109,105,110,117,116,101,0,2049,5525,45,110,0,1, - 24075,3,1,11,2049,23595,10,24047,24112,168,24125,349495210940165933,24114,200,200,0,99,108,111,99, + 24075,3,1,11,2049,23595,10,24047,24112,168,24125,349495210940165933,24114,200,200,39674,99,108,111,99, 107,58,117,116,99,58,115,101,99,111,110,100,0,2049,5525,45,110,0,1,24114, 3,1,12,2049,23595,10,105,110,116,101,114,102,97,99,101,47,99,108,111,99, 107,46,114,101,116,114,111,0,24125,24671,24086,24175,168,0,1976442044545254821,0,200,200,0,115, @@ -1223,29 +1223,29 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 2,2049,3517,1793,24228,3,2049,5525,69,114,114,111,114,58,32,115,99,114,105,112, 116,105,110,103,32,100,101,118,105,99,101,32,110,111,116,32,102,111,117,110, 100,0,1,24187,2049,12918,2049,12863,10,1,24184,2049,3638,2049,12769,10,24086,24261,168,24645, - 1976422442775525130,24263,200,200,0,115,99,114,105,112,116,58,97,114,103,117,109,101,110,116, + 1976422442775525130,24263,200,200,59744,115,99,114,105,112,116,58,97,114,103,117,109,101,110,116, 115,0,2049,5525,45,110,0,1,24263,3,1,0,2049,24175,10,24235,24303,168,24645,7012485947518414468, - 24305,200,200,0,115,99,114,105,112,116,58,103,101,116,45,97,114,103,117,109, + 24305,200,200,60160,115,99,114,105,112,116,58,103,101,116,45,97,114,103,117,109, 101,110,116,0,2049,5525,110,45,115,0,1,24305,3,2049,5500,4,1,1,2049,24175, - 10,24274,24337,168,24645,229469872107401,24339,200,200,0,105,110,99,108,117,100,101,0,2049,5525, - 115,45,0,1,24339,3,1,2,2049,24175,10,24320,24371,168,24645,-4553194680242110987,24373,200,200,0, + 10,24274,24337,168,24645,229469872107401,24339,200,200,51936,105,110,99,108,117,100,101,0,2049,5525, + 115,45,0,1,24339,3,1,2,2049,24175,10,24320,24371,168,24645,-4553194680242110987,24373,200,200,60328, 115,99,114,105,112,116,58,110,97,109,101,0,2049,5525,45,115,0,1,24373,3, - 2049,5500,1,3,2049,24175,10,24350,24415,168,24645,6834827170184619652,24417,200,200,0,115,99,114,105, + 2049,5500,1,3,2049,24175,10,24350,24415,168,24645,6834827170184619652,24417,200,200,59798,115,99,114,105, 112,116,58,99,117,114,114,101,110,116,45,102,105,108,101,0,2049,5525,45,115, - 0,1,24417,3,2049,5500,1,4,2049,24175,10,24386,24459,180,24645,6834827170184835340,24461,200,200,0, + 0,1,24417,3,2049,5500,1,4,2049,24175,10,24386,24459,180,24645,6834827170184835340,24461,200,200,59925, 115,99,114,105,112,116,58,99,117,114,114,101,110,116,45,108,105,110,101,0, 2049,5525,45,110,0,1,24461,3,1,5,2049,24175,2049,156,10,24430,24504,168,24645,-4964876483161304491, - 24506,200,200,0,115,99,114,105,112,116,58,105,103,110,111,114,101,45,116,111, + 24506,200,200,60219,115,99,114,105,112,116,58,105,103,110,111,114,101,45,116,111, 45,101,111,108,0,2049,5525,45,0,1,24506,3,1,6,2049,24175,10,24474,24546,168, - 24645,-112287744780050755,24548,200,200,0,115,99,114,105,112,116,58,97,98,111,114,116,45,105, + 24645,-112287744780050755,24548,200,200,59619,115,99,114,105,112,116,58,97,98,111,114,116,45,105, 110,99,108,117,100,101,0,2049,5525,45,0,1,24548,3,1,7,2049,24175,10,24516, - 24573,168,24645,210706230653,24575,200,200,0,97,98,111,114,116,0,2049,5525,45,0,1,24575, - 3,1,149,2049,4827,1,8,2049,24175,10,24558,24623,168,24645,-7741142524340576066,24625,200,200,0,115, + 24573,168,24645,210706230653,24575,200,200,35637,97,98,111,114,116,0,2049,5525,45,0,1,24575, + 3,1,149,2049,4827,1,8,2049,24175,10,24558,24623,168,24645,-7741142524340576066,24625,200,200,60082,115, 99,114,105,112,116,58,99,117,114,114,101,110,116,45,108,105,110,101,45,116, 101,120,116,0,2049,5525,45,115,0,1,24625,3,2049,5500,1793,24640,1,9,2049,24175, 10,1,24635,2049,2905,10,105,110,116,101,114,102,97,99,101,47,115,99,114,105, 112,116,105,110,103,46,114,101,116,114,111,0,24645,25277,24589,24699,168,25279,1183117598919957017,24701, - 200,200,0,115,111,99,107,101,116,58,111,112,101,114,97,116,105,111,110,0, + 200,200,61880,115,111,99,107,101,116,58,111,112,101,114,97,116,105,111,110,0, 2049,5525,110,45,0,1,24701,3,1,7,2049,12792,2,2049,3517,1793,24864,3,2049,5525, 69,114,114,111,114,58,32,115,111,99,107,101,116,32,100,101,118,105,99,101, 32,110,111,116,32,102,111,117,110,100,0,1,24719,2049,12918,2049,12863,2049,5525,83, @@ -1255,106 +1255,106 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 102,111,114,32,105,110,115,116,114,117,99,116,105,111,110,115,32,111,110,32, 101,110,97,98,108,105,110,103,32,115,111,99,107,101,116,115,46,0,1,24819, 2049,12918,2049,12863,10,1,24716,2049,3638,2049,12769,10,24673,24901,168,25253,-7671511728383126910,24903,200,200, - 0,115,111,99,107,101,116,58,103,101,116,104,111,115,116,98,121,110,97,109, + 61590,115,111,99,107,101,116,58,103,101,116,104,111,115,116,98,121,110,97,109, 101,0,2049,5525,97,115,45,0,1,24903,3,1,0,2049,24699,10,24871,24938,168,25253, - 4328757989659661596,24940,200,200,0,115,111,99,107,101,116,58,99,114,101,97,116,101,0,2049, + 4328757989659661596,24940,200,200,61569,115,111,99,107,101,116,58,99,114,101,97,116,101,0,2049, 5525,45,110,0,1,24940,3,1,1,2049,24699,10,24915,24972,168,25253,-4552658767528245371,24974,200,200, - 0,115,111,99,107,101,116,58,98,105,110,100,0,2049,5525,115,110,45,110,0, - 1,24974,3,1,2,2049,24699,10,24951,25010,168,25253,4328757990001730167,25012,200,200,0,115,111,99, + 61266,115,111,99,107,101,116,58,98,105,110,100,0,2049,5525,115,110,45,110,0, + 1,24974,3,1,2,2049,24699,10,24951,25010,168,25253,4328757990001730167,25012,200,200,61724,115,111,99, 107,101,116,58,108,105,115,116,101,110,0,2049,5525,110,110,45,110,110,0,1, - 25012,3,1,3,2049,24699,10,24987,25049,168,25253,4328757989563534360,25051,200,200,0,115,111,99,107, + 25012,3,1,3,2049,24699,10,24987,25049,168,25253,4328757989563534360,25051,200,200,61197,115,111,99,107, 101,116,58,97,99,99,101,112,116,0,2049,5525,110,45,110,110,0,1,25051,3, - 1,4,2049,24699,10,25026,25088,168,25253,-4724938931013862254,25090,200,200,0,115,111,99,107,101,116, + 1,4,2049,24699,10,25026,25088,168,25253,-4724938931013862254,25090,200,200,61480,115,111,99,107,101,116, 58,99,111,110,110,101,99,116,0,2049,5525,110,45,110,110,0,1,25090,3,1, - 5,2049,24699,10,25064,25124,168,25253,-4552658767527638798,25126,200,200,0,115,111,99,107,101,116,58, + 5,2049,24699,10,25064,25124,168,25253,-4552658767527638798,25126,200,200,62120,115,111,99,107,101,116,58, 115,101,110,100,0,2049,5525,115,110,45,110,110,0,1,25126,3,1,6,2049,24699, - 10,25103,25161,168,25253,-4552658767527675080,25163,200,200,0,115,111,99,107,101,116,58,114,101,99, + 10,25103,25161,168,25253,-4552658767527675080,25163,200,200,61950,115,111,99,107,101,116,58,114,101,99, 118,0,2049,5525,97,110,110,45,110,110,0,1,25163,3,1,7,2049,24699,10,25140, - 25200,168,25253,-2663786738754388898,25202,200,200,0,115,111,99,107,101,116,58,99,108,111,115,101, + 25200,168,25253,-2663786738754388898,25202,200,200,61379,115,111,99,107,101,116,58,99,108,111,115,101, 0,2049,5525,110,45,0,1,25202,3,1,8,2049,24699,10,25178,25239,168,25253,1183100690560715498,25241, - 200,200,0,115,111,99,107,101,116,58,99,111,110,102,105,103,117,114,101,0, + 200,200,61395,115,111,99,107,101,116,58,99,111,110,102,105,103,117,114,101,0, 2049,5525,115,115,45,0,1,25241,3,1,9,2049,24699,10,105,110,116,101,114,102, 97,99,101,47,115,111,99,107,101,116,115,46,114,101,116,114,111,0,25253,25296, 115,111,99,107,101,116,58,111,112,101,114,97,116,105,111,110,0,25279,25604,25213, - 25315,168,25578,229469862290528,25317,200,200,0,105,111,58,99,111,114,101,0,2049,5525,110,45, - 0,1,25317,3,1,8000,2049,12792,2049,12769,10,25298,25349,168,25578,249884313919988732,25351,200,200,0, + 25315,168,25578,229469862290528,25317,200,200,52182,105,111,58,99,111,114,101,0,2049,5525,110,45, + 0,1,25317,3,1,8000,2049,12792,2049,12769,10,25298,25349,168,25578,249884313919988732,25351,200,200,40447, 99,111,114,101,58,105,110,105,116,0,2049,5525,110,45,0,1,25351,3,1,0, - 2049,25315,10,25330,25382,168,25578,8246182359371694326,25384,200,200,0,99,111,114,101,58,115,116,97, + 2049,25315,10,25330,25382,168,25578,8246182359371694326,25384,200,200,40775,99,111,114,101,58,115,116,97, 114,116,0,2049,5525,97,110,45,0,1,25384,3,1,1,2049,25315,10,25362,25416,168, - 25578,8246182359367475558,25418,200,200,0,99,111,114,101,58,112,97,117,115,101,0,2049,5525,110, - 45,0,1,25418,3,1,2,2049,25315,10,25396,25457,168,25578,8337299194488917014,25459,200,200,0,99, + 25578,8246182359367475558,25418,200,200,40575,99,111,114,101,58,112,97,117,115,101,0,2049,5525,110, + 45,0,1,25418,3,1,2,2049,25315,10,25396,25457,168,25578,8337299194488917014,25459,200,200,40607,99, 111,114,101,58,112,97,117,115,101,45,99,117,114,114,101,110,116,0,2049,5525, - 45,0,1,25459,3,1,3,2049,25315,10,25429,25490,168,25578,-4577143246433635687,25492,200,200,0,99, + 45,0,1,25459,3,1,3,2049,25315,10,25429,25490,168,25578,-4577143246433635687,25492,200,200,40699,99, 111,114,101,58,114,101,115,117,109,101,0,2049,5525,110,45,0,1,25492,3,1, - 4,2049,25315,10,25469,25526,168,25578,-3888095465377135055,25528,200,200,0,99,111,114,101,58,114,101, + 4,2049,25315,10,25469,25526,168,25578,-3888095465377135055,25528,200,200,40647,99,111,114,101,58,114,101, 97,100,47,114,101,103,0,2049,5525,110,45,118,0,1,25528,3,1,5,2049,25315, - 10,25503,25564,168,25578,820065755623810592,25566,200,200,0,99,111,114,101,58,119,114,105,116,101, + 10,25503,25564,168,25578,820065755623810592,25566,200,200,40847,99,111,114,101,58,119,114,105,116,101, 47,114,101,103,0,2049,5525,118,110,45,0,1,25566,3,1,6,2049,25315,10,105, 110,116,101,114,102,97,99,101,47,109,117,108,116,105,99,111,114,101,46,114, - 101,116,114,111,0,25578,25813,25540,25629,168,25793,644988671245709381,25631,200,200,0,102,102,105,58, + 101,116,114,111,0,25578,25813,25540,25629,168,25793,644988671245709381,25631,200,200,48318,102,102,105,58, 111,112,101,114,97,116,105,111,110,0,2049,5525,110,45,63,0,1,25631,3,1, 8100,2049,12792,2,2049,3517,1793,25685,3,2049,5525,69,114,114,111,114,58,32,70,70, 73,32,100,101,118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1, 25650,2049,12918,2049,12863,10,1,25647,2049,3638,2049,12769,10,25606,25710,168,25793,7572367767785414,25712,200, - 200,0,102,102,105,58,111,112,101,110,0,2049,5525,115,45,110,0,1,25712,3, - 1,0,2049,25629,10,25692,25745,168,25793,-4572980637897979592,25747,200,200,0,102,102,105,58,109,97, + 200,48280,102,102,105,58,111,112,101,110,0,2049,5525,115,45,110,0,1,25712,3, + 1,0,2049,25629,10,25692,25745,168,25793,-4572980637897979592,25747,200,200,48203,102,102,105,58,109,97, 112,45,115,121,109,0,2049,5525,115,110,45,110,0,1,25747,3,1,1,2049,25629, - 10,25724,25780,168,25793,8246308498881747296,25782,200,200,0,102,102,105,58,105,110,118,111,107,101, + 10,25724,25780,168,25793,8246308498881747296,25782,200,200,48121,102,102,105,58,105,110,118,111,107,101, 0,2049,5525,110,45,0,1,25782,3,1,2,2049,25629,10,105,110,116,101,114,102, 97,99,101,47,102,102,105,46,114,101,116,114,111,0,25793,26303,25760,25835,168,26278, - 8247016409221251463,25837,200,200,0,117,110,115,105,103,110,101,100,58,43,0,2049,5525,110,110, + 8247016409221251463,25837,200,200,64929,117,110,115,105,103,110,101,100,58,43,0,2049,5525,110,110, 45,110,0,1,25837,3,1,0,1,8101,2049,12792,2049,12769,17,10,25815,25875,168,26278, - 8247016409221251465,25877,200,200,0,117,110,115,105,103,110,101,100,58,45,0,2049,5525,110,110, + 8247016409221251465,25877,200,200,64969,117,110,115,105,103,110,101,100,58,45,0,2049,5525,110,110, 45,110,0,1,25877,3,1,0,1,8101,2049,12792,2049,12769,18,10,25855,25915,168,26278, - 8247016409221251462,25917,200,200,0,117,110,115,105,103,110,101,100,58,42,0,2049,5525,110,110, + 8247016409221251462,25917,200,200,64782,117,110,115,105,103,110,101,100,58,42,0,2049,5525,110,110, 45,110,0,1,25917,3,1,0,1,8101,2049,12792,2049,12769,19,10,25895,25958,168,26278, - 7638409966457829387,25960,200,200,0,117,110,115,105,103,110,101,100,58,47,109,111,100,0,2049, + 7638409966457829387,25960,200,200,65110,117,110,115,105,103,110,101,100,58,47,109,111,100,0,2049, 5525,110,110,45,110,110,0,1,25960,3,1,0,1,8101,2049,12792,2049,12769,20,10, - 25935,26001,168,26278,-2563494254608726831,26003,200,200,0,117,110,115,105,103,110,101,100,58,101,113, + 25935,26001,168,26278,-2563494254608726831,26003,200,200,65187,117,110,115,105,103,110,101,100,58,101,113, 63,0,2049,5525,110,110,45,102,0,1,26003,3,1,0,1,8101,2049,12792,2049,12769, - 11,10,25979,26044,168,26278,7638409966457748830,26046,200,200,0,117,110,115,105,103,110,101,100,58, + 11,10,25979,26044,168,26278,7638409966457748830,26046,200,200,65016,117,110,115,105,103,110,101,100,58, 45,101,113,63,0,2049,5525,110,110,45,102,0,1,26046,3,1,0,1,8101,2049, - 12792,2049,12769,12,10,26021,26086,168,26278,-2563494254608719109,26088,200,200,0,117,110,115,105,103,110, + 12792,2049,12769,12,10,26021,26086,168,26278,-2563494254608719109,26088,200,200,65356,117,110,115,105,103,110, 101,100,58,108,116,63,0,2049,5525,110,110,45,102,0,1,26088,3,1,0,1, - 8101,2049,12792,2049,12769,13,10,26064,26128,168,26278,-2563494254608724554,26130,200,200,0,117,110,115,105, + 8101,2049,12792,2049,12769,13,10,26064,26128,168,26278,-2563494254608724554,26130,200,200,65275,117,110,115,105, 103,110,101,100,58,103,116,63,0,2049,5525,110,110,45,102,0,1,26130,3,1, - 0,1,8101,2049,12792,2049,12769,14,10,26106,26172,168,26278,-6186888138744896262,26174,200,200,0,117,110, + 0,1,8101,2049,12792,2049,12769,14,10,26106,26172,168,26278,-6186888138744896262,26174,200,200,65434,117,110, 115,105,103,110,101,100,58,115,104,105,102,116,0,2049,5525,110,110,45,110,0, 1,26174,3,1,0,1,8101,2049,12792,2049,12769,24,10,26148,26216,168,26278,-6186888138833512267,26218,200, - 200,0,117,110,115,105,103,110,101,100,58,42,47,109,111,100,0,2049,5525,110, + 200,64827,117,110,115,105,103,110,101,100,58,42,47,109,111,100,0,2049,5525,110, 110,110,45,110,110,0,1,26218,3,1,1,1,0,1,8101,2049,12792,2,2049,12769, - 2049,12769,10,26192,26257,168,26278,210639169918,26259,200,200,0,42,47,109,111,100,0,2049,5525, + 2049,12769,10,26192,26257,168,26278,210639169918,26259,200,200,27927,42,47,109,111,100,0,2049,5525, 110,110,110,45,110,110,0,1,26259,3,1,1,1,8101,2049,12792,2049,12769,10,105, 110,116,101,114,102,97,99,101,47,117,110,115,105,103,110,101,100,46,114,101, - 116,114,111,0,26278,26451,26242,26327,168,26428,-3502245454587251943,26329,200,200,0,100,58,117,115,101, + 116,114,111,0,26278,26451,26242,26327,168,26428,-3502245454587251943,26329,200,200,42625,100,58,117,115,101, 45,104,97,115,104,101,115,0,2049,5525,45,0,1,26329,3,1,29,1,258,1, 5,18,16,1793,26348,2049,188,15,10,1,26344,1,258,1,8,18,16,1,2049,1, - 258,16,1,5994,1,258,2049,3953,16,10,26305,26392,168,26428,-4893635544173424761,26394,200,200,0,100, + 258,16,1,5994,1,258,2049,3953,16,10,26305,26392,168,26428,-4893635544173424761,26394,200,200,42681,100, 58,117,115,101,45,115,116,114,105,110,103,115,0,2049,5525,45,0,1,26394,3, 1,118,1,258,1,5,18,16,1,198,1,258,1,8,18,16,1,0,1,258, 16,1,0,1,258,2049,3953,16,10,105,110,116,101,114,102,97,99,101,47,102, 117,116,117,114,101,46,114,101,116,114,111,0,26428,26611,26369,26475,168,0,-3527051417241377258,0, 200,200,0,98,108,111,99,107,58,105,110,118,111,107,101,0,1,3,2049,12792, - 2049,12769,10,26369,26502,168,26588,8246131600073141446,26504,200,200,0,98,108,111,99,107,58,114,101, + 2049,12769,10,26369,26502,168,26588,8246131600073141446,26504,200,200,36435,98,108,111,99,107,58,114,101, 97,100,0,2049,5525,110,97,45,0,1,26504,3,1,0,2049,26475,10,26482,26537,168, - 26588,-4578818303223200395,26539,200,200,0,98,108,111,99,107,58,119,114,105,116,101,0,2049,5525, + 26588,-4578818303223200395,26539,200,200,36558,98,108,111,99,107,58,119,114,105,116,101,0,2049,5525, 110,97,45,0,1,26539,3,1,1,2049,26475,10,26516,26575,168,26588,-4036225629868593021,26577,200,200, - 0,98,108,111,99,107,58,115,101,116,45,102,105,108,101,0,2049,5525,115,45, + 36511,98,108,111,99,107,58,115,101,116,45,102,105,108,101,0,2049,5525,115,45, 0,1,26577,3,1,2,2049,26475,10,105,110,116,101,114,102,97,99,101,47,98, 108,111,99,107,115,46,114,101,116,114,111,0,26588,27686,26551,26638,168,26904,4283726481136624767,26640, - 200,200,0,101,114,114,58,115,101,116,45,104,97,110,100,108,101,114,0,2049, + 200,200,44317,101,114,114,58,115,101,116,45,104,97,110,100,108,101,114,0,2049, 5525,110,110,45,0,1,26640,3,1,1234,2049,12792,2,2049,3517,1793,26705,3,2049,5525, 69,114,114,111,114,58,32,101,114,114,111,114,32,104,97,110,100,108,105,110, 103,32,100,101,118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1, 26659,2049,12918,2049,12863,10,1,26656,2049,3638,1,0,4,2049,12769,10,26613,26732,168,26904, - 229464878751060,26734,200,200,0,101,114,114,58,100,115,117,0,2049,5525,45,0,1,26734,3, + 229464878751060,26734,200,200,44149,101,114,114,58,100,115,117,0,2049,5525,45,0,1,26734,3, 2049,12979,2049,12863,2049,5525,69,82,82,79,82,58,32,68,83,85,58,32,68,65, 84,65,32,83,84,65,67,75,32,85,78,68,69,82,70,76,79,87,0,1, - 26745,2049,12918,2049,12863,2049,13112,10,26715,26804,168,26904,229464878751054,26806,200,200,0,101,114,114, + 26745,2049,12918,2049,12863,2049,13112,10,26715,26804,168,26904,229464878751054,26806,200,200,44111,101,114,114, 58,100,115,111,0,2049,5525,45,0,1,26806,3,2049,12979,2049,12863,2049,5525,69,82, 82,79,82,58,32,68,83,79,58,32,68,65,84,65,32,83,84,65,67,75, 32,79,86,69,82,70,76,79,87,0,1,26817,2049,12918,2049,12863,2049,13112,10,26787, - 26884,168,26904,-6210978877792005319,26886,200,200,0,101,114,114,58,115,101,116,45,100,101,102,97, + 26884,168,26904,-6210978877792005319,26886,200,200,44262,101,114,114,58,115,101,116,45,100,101,102,97, 117,108,116,115,0,2049,5525,45,0,1,26886,3,1,26732,1,1,2049,26638,1,26804, 1,2,2049,26638,10,105,110,116,101,114,102,97,99,101,47,101,114,114,111,114, 46,114,101,116,114,111,0,26858,26951,168,0,-1159954141530329845,26953,200,200,0,105,111,99,116, @@ -1373,106 +1373,2106 @@ CELL ngaImage[] = { 1793,13735,29229,29282,202409,439,411,1601,2048,0,13789,0,10 99,116,108,58,114,101,115,116,111,114,101,45,115,116,97,116,101,0,2049,5525, 45,0,1,27199,3,1,4,2049,26951,10,1793,27230,1,202,1,2,17,8,2049,2100, 2049,198,3841,13770,8,2049,2100,2049,188,16,10,1,27211,27168,27246,168,27662,6384117006,27248,200, - 200,0,72,79,77,69,0,2049,5525,45,115,0,1,27248,3,2049,2585,1,4096,17, + 200,31632,72,79,77,69,0,2049,5525,45,115,0,1,27248,3,2049,2585,1,4096,17, 10,37,115,47,46,99,111,110,102,105,103,47,114,101,116,114,111,102,111,114, 116,104,47,108,105,98,114,97,114,121,47,37,115,46,114,101,116,114,111,0, - 27232,27260,156,27662,6061648467740287960,27326,200,200,0,108,105,98,114,97,114,121,58,46,67,79, + 27232,27260,156,27662,6061648467740287960,27326,200,200,52581,108,105,98,114,97,114,121,58,46,67,79, 78,70,73,71,0,45,115,0,46,47,108,105,98,114,97,114,121,47,37,115, - 46,114,101,116,114,111,0,27299,27327,156,27662,-4563659402581934926,27369,200,200,0,108,105,98,114, - 97,114,121,58,67,87,68,0,45,115,0,27346,27391,168,27662,-4563659402581898990,27393,200,200,0, + 46,114,101,116,114,111,0,27299,27327,156,27662,-4563659402581934926,27369,200,200,52782,108,105,98,114, + 97,114,121,58,67,87,68,0,45,115,0,27346,27391,168,27662,-4563659402581898990,27393,200,200,52880, 108,105,98,114,97,114,121,58,99,119,100,0,2049,5525,115,45,115,0,1,27393, - 3,1,27327,2049,9899,10,27370,27430,168,27662,6061648469031755928,27432,200,200,0,108,105,98,114,97, + 3,1,27327,2049,9899,10,27370,27430,168,27662,6061648469031755928,27432,200,200,52664,108,105,98,114,97, 114,121,58,46,99,111,110,102,105,103,0,2049,5525,45,115,0,1,27432,3,2049, 5525,72,79,77,69,0,1,27440,2049,27246,2049,22975,2049,27246,1,27260,2049,9899,10,27405, - 27484,168,27662,-2879782938503308011,27486,200,200,0,108,105,98,114,97,114,121,58,102,105,108,101, + 27484,168,27662,-2879782938503308011,27486,200,200,52945,108,105,98,114,97,114,121,58,102,105,108,101, 110,97,109,101,0,2049,5525,115,45,115,0,1,27486,3,2,2049,27391,2,2049,21882, 1,2816,2049,3638,3,2049,27430,2,2049,21882,1793,27512,10,1,27511,2049,3638,3,2049,5500, - 10,27458,27547,168,27662,-2799120562421764174,27549,200,200,0,108,105,98,114,97,114,121,58,99,111, + 10,27458,27547,168,27662,-2799120562421764174,27549,200,200,52846,108,105,98,114,97,114,121,58,99,111, 110,116,97,105,110,115,63,0,2049,5525,115,45,102,0,1,27549,3,1,27391,1, - 27430,2049,2923,1,21882,2049,2961,22,10,27520,27590,168,27662,-3026807695525939020,27592,200,200,0,108,105, + 27430,2049,2923,1,21882,2049,2961,22,10,27520,27590,168,27662,-3026807695525939020,27592,200,200,53006,108,105, 98,114,97,114,121,58,108,111,97,100,0,2049,5525,115,45,0,1,27592,3,2, 2049,27547,1793,27608,2049,27484,2049,24337,10,1,27603,1793,27657,2049,5525,69,82,82,79,82, 58,32,76,105,98,114,97,114,121,32,96,37,115,96,32,119,97,115,32,110, 111,116,32,102,111,117,110,100,0,1,27614,2049,9899,2049,12918,2049,12863,10,1,27612, 2049,66,10,105,110,116,101,114,102,97,99,101,47,108,105,98,114,97,114,121, - 46,114,101,116,114,111,0,27662,13989,27568,27708,168,28027,8246457295145463473,27710,200,200,0,105,109, - 97,103,101,58,115,97,118,101,0,2049,5525,115,45,0,1,27710,3,1,1000,2049, - 12792,2049,12769,10,27688,27738,168,0,210711039690,0,200,200,0,101,100,105,116,63,0,2, - 1793,27745,1,8,11,10,1,27741,1793,27753,1,127,11,10,1,27749,2049,2923,22,10, - 27723,27775,168,0,6953475974244,0,200,200,0,101,110,100,101,100,63,0,2049,5153,3841,5274, - 2049,3411,10,27759,27795,168,0,193486030,0,200,200,0,97,100,100,0,2049,27775,1,17, - 1,5063,2049,66,10,27782,27820,168,0,6953539406400,0,200,200,0,103,97,116,104,101,114, - 0,2049,27738,1,17,1,27795,2049,66,10,27804,27844,168,0,210709415765,0,200,200,0,99, - 121,99,108,101,0,2049,13090,2049,2873,4,8,2049,3372,25,3,2049,27820,1,27844,7, - 10,27688,27881,168,28027,-4557881830897049127,27883,200,200,0,112,97,114,115,101,45,117,110,116,105, - 108,0,2049,5525,113,45,115,0,1,27883,3,1793,27902,2049,5500,2049,5179,2049,27844,771, - 2049,5017,10,1,27892,2049,5209,10,27860,27922,168,28027,210726130610,27924,200,200,0,115,58,103, - 101,116,0,2049,5525,45,115,0,1,27924,3,1793,27952,1793,27938,1,13,11,10,1, - 27934,1793,27946,1,10,11,10,1,27942,2049,2923,22,10,1,27932,2049,27881,10,27907,27972, - 168,28027,210708950412,27974,200,200,0,99,108,101,97,114,0,2049,5525,45,0,1,27974,3, - 2049,5525,92,94,91,50,74,92,94,91,48,59,48,72,0,1,27981,2049,9899,2049, - 12918,10,27957,28013,180,28027,5861507,28015,200,200,0,47,47,0,2049,5525,45,0,1,28015, - 3,2049,24504,1,13132,2049,4808,10,105,110,116,101,114,102,97,99,101,47,114,101, - 116,114,111,45,117,110,105,120,46,114,101,116,114,111,0,28001,28071,156,0,229441520490121, - 0,200,200,0,83,111,117,114,99,101,115,0,3,28322,28555,28853,0,0,0,0, + 46,114,101,116,114,111,0,27662,13989,27568,27715,168,0,3299315865315311456,27717,200,200,0,100,58, + 115,101,116,45,100,101,115,99,114,105,112,116,105,111,110,0,2049,5525,115,115, + 45,0,1,27717,3,2049,258,2,2049,3492,1793,27739,2049,196,1,5557,2049,2889,16,10, + 1,27731,1,2837,2049,66,10,82,101,116,117,114,110,32,65,83,67,73,73,58, + 78,85,76,32,40,48,41,46,0,82,101,116,117,114,110,32,97,110,32,101, + 109,112,116,121,32,115,116,114,105,110,103,46,0,80,114,111,118,105,100,101, + 32,97,32,118,105,115,117,97,108,32,105,110,100,105,99,97,116,105,111,110, + 32,111,102,32,97,32,99,111,100,101,32,103,114,111,117,112,46,0,80,114, + 111,118,105,100,101,32,97,32,118,105,115,117,97,108,32,105,110,100,105,99, + 97,116,105,111,110,32,111,102,32,97,32,99,111,100,101,32,103,114,111,117, + 112,46,0,77,117,108,116,105,112,108,121,32,96,110,49,96,32,98,121,32, + 96,110,50,96,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,32, + 114,101,115,117,108,116,46,0,77,117,108,116,105,112,108,121,32,96,120,96, + 32,98,121,32,96,121,96,32,97,110,100,32,116,104,101,110,32,100,105,118, + 105,100,101,32,98,121,32,96,122,96,32,97,110,100,32,114,101,116,117,114, + 110,32,116,104,101,32,105,110,116,101,103,101,114,32,112,97,114,116,32,111, + 102,32,116,104,101,32,113,117,111,116,105,101,110,116,32,97,110,100,32,114, + 101,109,97,105,110,100,101,114,46,0,65,100,100,32,96,110,49,96,32,116, + 111,32,96,110,50,96,32,97,110,100,32,114,101,116,117,114,110,32,116,104, + 101,32,114,101,115,117,108,116,46,0,83,116,111,114,101,32,116,104,101,32, + 115,112,101,99,105,102,105,101,100,32,118,97,108,117,101,32,105,110,116,111, + 32,116,104,101,32,109,101,109,111,114,121,32,97,116,32,96,104,101,114,101, + 96,32,97,110,100,32,105,110,99,114,101,109,101,110,116,32,96,72,101,97, + 112,96,32,98,121,32,49,46,0,83,117,98,116,114,97,99,116,32,96,110, + 50,96,32,102,114,111,109,32,96,110,49,96,32,97,110,100,32,114,101,116, + 117,114,110,32,116,104,101,32,114,101,115,117,108,116,46,0,83,119,105,116, + 99,104,32,116,111,32,116,104,101,32,101,120,112,111,115,101,100,32,40,112, + 117,98,108,105,99,41,32,112,111,114,116,105,111,110,32,111,102,32,97,32, + 108,101,120,105,99,97,108,32,110,97,109,101,115,112,97,99,101,46,0,67, + 111,109,112,97,114,101,32,116,119,111,32,118,97,108,117,101,115,32,102,111, + 114,32,105,110,101,113,117,97,108,105,116,121,46,32,82,101,116,117,114,110, + 115,32,96,84,82,85,69,96,32,105,102,32,116,104,101,121,32,97,114,101, + 32,110,111,116,32,101,113,117,97,108,32,111,114,32,96,70,65,76,83,69, + 96,32,111,116,104,101,114,119,105,115,101,46,0,69,120,101,99,117,116,101, + 32,116,104,101,32,113,117,111,116,97,116,105,111,110,32,105,102,32,116,104, + 101,32,102,108,97,103,32,105,115,32,96,70,65,76,83,69,96,46,0,69, + 120,101,99,117,116,101,32,116,104,101,32,113,117,111,116,97,116,105,111,110, + 32,105,102,32,116,104,101,32,102,108,97,103,32,105,115,32,96,70,65,76, + 83,69,96,46,32,73,102,32,102,97,108,115,101,44,32,97,108,115,111,32, + 101,120,105,116,32,116,104,101,32,119,111,114,100,46,0,68,105,118,105,100, + 101,32,96,110,96,32,98,121,32,96,109,96,32,97,110,100,32,114,101,116, + 117,114,110,32,116,104,101,32,105,110,116,101,103,101,114,32,112,97,114,116, + 32,111,102,32,116,104,101,32,113,117,111,116,105,101,110,116,46,0,68,105, + 118,105,100,101,32,96,110,96,32,98,121,32,96,109,96,32,97,110,100,32, + 114,101,116,117,114,110,32,116,104,101,32,105,110,116,101,103,101,114,32,112, + 97,114,116,32,111,102,32,116,104,101,32,113,117,111,116,105,101,110,116,32, + 97,110,100,32,114,101,109,97,105,110,100,101,114,46,0,73,102,32,96,110, + 96,32,105,115,32,122,101,114,111,44,32,100,114,111,112,32,96,110,96,32, + 97,110,100,32,101,120,105,116,32,116,104,101,32,99,117,114,114,101,110,116, + 32,119,111,114,100,46,32,73,102,32,110,111,110,45,122,101,114,111,44,32, + 108,101,97,118,101,32,96,110,96,32,97,108,111,110,101,32,97,110,100,32, + 97,108,108,111,119,32,101,120,101,99,117,116,105,111,110,32,116,111,32,99, + 111,110,116,105,110,117,101,46,0,69,110,100,32,116,104,101,32,99,117,114, + 114,101,110,116,32,100,101,102,105,110,105,116,105,111,110,46,0,68,117,112, + 108,105,99,97,116,101,32,116,111,112,32,118,97,108,117,101,32,111,110,32, + 115,116,97,99,107,32,105,102,32,110,111,116,32,122,101,114,111,46,32,73, + 102,32,122,101,114,111,44,32,100,111,32,110,111,116,104,105,110,103,46,0, + 67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115,32,116,111,32, + 115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99,111,100,101,46, + 0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115,32,116,111, + 32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99,111,100,101, + 46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115,32,116, + 111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99,111,100, + 101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115,32, + 116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99,111, + 100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115, + 32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99, + 111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114, + 115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32, + 99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101, + 114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73, + 32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102, + 101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73, + 73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101, + 102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67, + 73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82, + 101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83, + 67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32, + 82,101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65, + 83,67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46, + 32,82,101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32, + 65,83,67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116, + 46,32,82,101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99, + 32,65,83,67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110, + 116,46,32,82,101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105, + 99,32,65,83,67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97, + 110,116,46,32,82,101,102,101,114,115,32,116,111,32,115,112,101,99,105,102, + 105,99,32,65,83,67,73,73,32,99,111,100,101,46,0,67,111,110,115,116, + 97,110,116,46,32,82,101,102,101,114,115,32,116,111,32,115,112,101,99,105, + 102,105,99,32,65,83,67,73,73,32,99,111,100,101,46,0,67,111,110,115, + 116,97,110,116,46,32,82,101,102,101,114,115,32,116,111,32,115,112,101,99, + 105,102,105,99,32,65,83,67,73,73,32,99,111,100,101,46,0,67,111,110, + 115,116,97,110,116,46,32,82,101,102,101,114,115,32,116,111,32,115,112,101, + 99,105,102,105,99,32,65,83,67,73,73,32,99,111,100,101,46,0,67,111, + 110,115,116,97,110,116,46,32,82,101,102,101,114,115,32,116,111,32,115,112, + 101,99,105,102,105,99,32,65,83,67,73,73,32,99,111,100,101,46,0,67, + 111,110,115,116,97,110,116,46,32,82,101,102,101,114,115,32,116,111,32,115, + 112,101,99,105,102,105,99,32,65,83,67,73,73,32,99,111,100,101,46,0, + 67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115,32,116,111,32, + 115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99,111,100,101,46, + 0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115,32,116,111, + 32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99,111,100,101, + 46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115,32,116, + 111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99,111,100, + 101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115,32, + 116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99,111, + 100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114,115, + 32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32,99, + 111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101,114, + 115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73,32, + 99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102,101, + 114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73,73, + 32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101,102, + 101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67,73, + 73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82,101, + 102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83,67, + 73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32,82, + 101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65,83, + 67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46,32, + 82,101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32,65, + 83,67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116,46, + 32,82,101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99,32, + 65,83,67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110,116, + 46,32,82,101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105,99, + 32,65,83,67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97,110, + 116,46,32,82,101,102,101,114,115,32,116,111,32,115,112,101,99,105,102,105, + 99,32,65,83,67,73,73,32,99,111,100,101,46,0,67,111,110,115,116,97, + 110,116,46,32,82,101,116,117,114,110,32,97,32,98,117,105,108,100,32,105, + 100,101,110,116,105,102,105,101,114,46,32,85,115,101,32,97,108,111,110,103, + 32,119,105,116,104,32,118,101,114,115,105,111,110,32,116,111,32,105,100,101, + 110,116,105,102,121,32,97,110,32,105,109,97,103,101,46,0,86,97,114,105, + 97,98,108,101,46,32,72,111,108,100,115,32,116,104,101,32,99,117,114,114, + 101,110,116,32,110,117,109,101,114,105,99,32,98,97,115,101,46,32,66,97, + 115,101,32,109,117,115,116,32,98,101,32,105,110,32,116,104,101,32,114,97, + 110,103,101,32,111,102,32,50,45,49,54,46,0,86,97,114,105,97,98,108, + 101,46,32,72,111,108,100,115,32,116,104,101,32,99,111,109,112,105,108,101, + 114,32,115,116,97,116,101,46,32,73,102,32,84,82,85,69,44,32,116,104, + 101,32,99,111,109,112,105,108,101,114,32,105,115,32,97,99,116,105,118,101, + 46,32,73,102,32,70,65,76,83,69,44,32,105,116,32,105,115,32,110,111, + 116,46,0,82,101,116,117,114,110,32,100,101,118,105,99,101,32,73,68,32, + 102,111,114,32,98,108,111,99,107,32,115,117,112,112,111,114,116,46,0,82, + 101,116,117,114,110,32,100,101,118,105,99,101,32,73,68,32,102,111,114,32, + 99,108,111,99,107,32,119,111,114,100,115,46,0,82,101,116,117,114,110,32, + 100,101,118,105,99,101,32,73,68,32,102,111,114,32,101,114,114,111,114,32, + 104,97,110,100,108,101,114,115,46,0,82,101,116,117,114,110,32,100,101,118, + 105,99,101,32,73,68,32,102,111,114,32,102,111,114,101,105,103,110,32,102, + 117,110,99,116,105,111,110,32,105,110,116,101,114,102,97,99,101,46,0,82, + 101,116,117,114,110,32,100,101,118,105,99,101,32,73,68,32,102,111,114,32, + 102,105,108,101,115,121,115,116,101,109,32,97,99,99,101,115,115,46,0,82, + 101,116,117,114,110,32,100,101,118,105,99,101,32,73,68,32,102,111,114,32, + 102,108,111,97,116,105,110,103,32,112,111,105,110,116,46,0,82,101,116,117, + 114,110,32,100,101,118,105,99,101,32,73,68,32,102,111,114,32,105,109,97, + 103,101,32,119,114,105,116,101,114,46,0,82,101,116,117,114,110,32,100,101, + 118,105,99,101,32,73,68,32,102,111,114,32,85,110,105,120,32,73,79,67, + 84,76,32,105,110,116,101,114,102,97,99,101,46,0,82,101,116,117,114,110, + 32,100,101,118,105,99,101,32,73,68,32,102,111,114,32,75,101,121,98,111, + 97,114,100,32,105,110,112,117,116,46,0,82,101,116,117,114,110,32,100,101, + 118,105,99,101,32,73,68,32,102,111,114,32,109,101,109,111,114,121,32,97, + 108,108,111,99,97,116,111,114,46,0,82,101,116,117,114,110,32,100,101,118, + 105,99,101,32,73,68,32,102,111,114,32,109,117,108,116,105,99,111,114,101, + 32,115,117,112,112,111,114,116,46,0,82,101,116,117,114,110,32,100,101,118, + 105,99,101,32,73,68,32,102,111,114,32,79,117,116,112,117,116,32,100,101, + 118,105,99,101,46,0,82,101,115,101,114,118,101,100,32,100,101,118,105,99, + 101,32,73,68,46,0,82,101,115,101,114,118,101,100,32,100,101,118,105,99, + 101,32,73,68,46,0,82,101,115,101,114,118,101,100,32,100,101,118,105,99, + 101,32,73,68,46,0,82,101,115,101,114,118,101,100,32,100,101,118,105,99, + 101,32,73,68,46,0,82,101,116,117,114,110,32,100,101,118,105,99,101,32, + 73,68,32,102,111,114,32,114,97,110,100,111,109,32,110,117,109,98,101,114, + 32,103,101,110,101,114,97,116,111,114,46,0,82,101,116,117,114,110,32,100, + 101,118,105,99,101,32,73,68,32,102,111,114,32,115,99,114,105,112,116,105, + 110,103,32,115,117,112,112,111,114,116,46,0,82,101,116,117,114,110,32,100, + 101,118,105,99,101,32,73,68,32,102,111,114,32,115,111,99,107,101,116,115, + 46,0,82,101,116,117,114,110,32,100,101,118,105,99,101,32,73,68,32,102, + 111,114,32,117,110,105,120,32,115,121,115,99,97,108,108,46,0,82,101,116, + 117,114,110,32,100,101,118,105,99,101,32,73,68,32,102,111,114,32,117,110, + 115,105,103,110,101,100,32,109,97,116,104,115,46,0,86,97,114,105,97,98, + 108,101,46,32,72,111,108,100,115,32,97,32,112,111,105,110,116,101,114,32, + 116,111,32,116,104,101,32,109,111,115,116,32,114,101,99,101,110,116,32,100, + 105,99,116,105,111,110,97,114,121,32,104,101,97,100,101,114,46,0,85,115, + 101,100,32,116,111,32,100,101,110,111,116,101,32,116,104,101,32,101,110,100, + 32,111,102,32,97,32,108,105,110,107,101,100,32,108,105,115,116,46,32,84, + 104,101,32,108,97,115,116,32,99,111,110,115,32,119,105,108,108,32,104,97, + 118,101,32,116,104,101,32,99,100,114,32,112,111,105,110,116,32,116,111,32, + 116,104,105,115,32,97,100,100,114,101,115,115,46,0,67,111,110,115,116,97, + 110,116,46,32,82,101,116,117,114,110,115,32,116,104,101,32,108,97,115,116, + 32,97,100,100,114,101,115,115,97,98,108,101,32,109,101,109,111,114,121,32, + 97,100,100,114,101,115,115,46,0,82,101,116,117,114,110,115,32,96,48,96, + 44,32,116,104,101,32,118,97,108,117,101,32,117,115,101,100,32,116,111,32, + 105,110,100,105,99,97,116,101,32,97,32,70,65,76,83,69,32,114,101,115, + 117,108,116,46,0,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109, + 98,101,114,32,111,102,32,99,101,108,108,115,32,97,118,97,105,108,97,98, + 108,101,32,116,111,32,121,111,117,114,32,97,112,112,108,105,99,97,116,105, + 111,110,46,32,84,104,105,115,32,105,115,32,116,104,101,32,97,109,111,117, + 110,116,32,111,102,32,109,101,109,111,114,121,44,32,108,101,115,115,32,116, + 104,101,32,97,108,114,101,97,100,121,32,99,111,110,115,117,109,101,100,32, + 112,111,114,116,105,111,110,32,97,110,100,32,98,117,102,102,101,114,115,32, + 109,97,112,112,101,100,32,102,111,114,32,82,101,116,114,111,39,115,32,105, + 110,116,101,114,110,97,108,32,117,115,101,46,0,72,111,108,100,32,116,104, + 101,32,112,97,116,104,32,116,111,32,116,104,101,32,117,115,101,114,115,32, + 104,111,109,101,32,100,105,114,101,99,116,111,114,121,46,32,68,101,102,105, + 110,101,100,32,97,115,32,97,32,102,108,111,97,116,105,110,103,32,98,117, + 102,102,101,114,32,97,98,111,118,101,32,96,104,101,114,101,96,46,0,86, + 97,114,105,97,98,108,101,46,32,72,111,108,100,115,32,116,104,101,32,97, + 100,100,114,101,115,115,32,111,102,32,116,104,101,32,110,101,120,116,32,97, + 118,97,105,108,97,98,108,101,32,99,101,108,108,46,0,65,99,99,101,115, + 115,32,116,104,101,32,108,111,111,112,32,105,110,100,101,120,32,102,111,114, + 32,116,104,101,32,99,117,114,114,101,110,116,32,108,111,111,112,46,32,40, + 70,111,114,32,108,111,111,112,115,32,109,97,100,101,32,117,115,105,110,103, + 32,96,105,110,100,101,120,101,100,45,116,105,109,101,115,96,41,0,86,97, + 114,105,97,98,108,101,46,32,87,104,101,110,32,84,82,85,69,44,32,105, + 103,110,111,114,101,32,105,110,112,117,116,32,116,111,32,101,110,100,32,111, + 102,32,108,105,110,101,46,0,65,99,99,101,115,115,32,116,104,101,32,112, + 97,114,101,110,116,32,108,111,111,112,32,105,110,100,101,120,32,102,111,114, + 32,116,104,101,32,99,117,114,114,101,110,116,32,108,111,111,112,46,32,40, + 70,111,114,32,108,111,111,112,115,32,109,97,100,101,32,117,115,105,110,103, + 32,96,105,110,100,101,120,101,100,45,116,105,109,101,115,96,41,0,65,99, + 99,101,115,115,32,116,104,101,32,103,114,97,110,100,112,97,114,101,110,116, + 32,108,111,111,112,32,105,110,100,101,120,32,102,111,114,32,116,104,101,32, + 99,117,114,114,101,110,116,32,108,111,111,112,46,32,40,70,111,114,32,108, + 111,111,112,115,32,109,97,100,101,32,117,115,105,110,103,32,96,105,110,100, + 101,120,101,100,45,116,105,109,101,115,96,41,0,86,97,114,105,97,98,108, + 101,46,32,87,104,101,110,32,115,101,116,32,116,111,32,96,84,82,85,69, + 96,44,32,82,101,116,114,111,32,119,105,108,108,32,114,101,112,108,97,99, + 101,32,117,110,100,101,114,115,99,111,114,101,115,32,105,110,32,115,116,114, + 105,110,103,115,32,119,105,116,104,32,115,112,97,99,101,115,46,32,87,104, + 101,110,32,96,70,65,76,83,69,96,44,32,82,101,116,114,111,32,100,111, + 101,115,32,110,111,116,46,0,82,101,116,117,114,110,32,116,104,101,32,97, + 100,100,114,101,115,115,32,111,102,32,116,104,101,32,115,116,97,114,116,32, + 111,102,32,116,104,101,32,116,101,109,112,111,114,97,114,121,32,115,116,114, + 105,110,103,32,112,111,111,108,46,32,84,104,105,115,32,99,97,110,32,98, + 101,32,97,108,116,101,114,101,100,32,98,121,32,99,104,97,110,103,105,110, + 103,32,116,104,101,32,118,97,108,117,101,115,32,111,102,32,96,84,101,109, + 112,83,116,114,105,110,103,115,96,32,97,110,100,32,96,84,101,109,112,83, + 116,114,105,110,103,77,97,120,96,46,0,86,97,114,105,97,98,108,101,46, + 32,84,104,105,115,32,104,111,108,100,115,32,115,111,109,101,32,105,110,102, + 111,114,109,97,116,105,111,110,32,117,115,101,100,32,98,121,32,96,123,123, + 96,32,97,110,100,32,96,125,125,96,46,0,67,111,110,115,116,97,110,116, + 46,32,82,101,116,117,114,110,115,32,97,32,112,111,105,110,116,101,114,32, + 116,111,32,116,104,101,32,116,101,120,116,32,105,110,112,117,116,32,98,117, + 102,102,101,114,46,0,82,101,116,117,114,110,115,32,96,45,49,96,44,32, + 116,104,101,32,118,97,108,117,101,32,117,115,101,100,32,116,111,32,105,110, + 100,105,99,97,116,101,32,97,32,84,82,85,69,32,114,101,115,117,108,116, + 46,0,86,97,114,105,97,98,108,101,46,32,72,111,108,100,115,32,116,104, + 101,32,109,97,120,105,109,117,109,32,108,101,110,103,116,104,32,111,102,32, + 97,32,116,101,109,112,111,114,97,114,121,32,115,116,114,105,110,103,46,0, + 86,97,114,105,97,98,108,101,46,32,72,111,108,100,115,32,116,104,101,32, + 110,117,109,98,101,114,32,111,102,32,116,101,109,112,111,114,97,114,121,32, + 115,116,114,105,110,103,115,46,0,86,97,114,105,97,98,108,101,46,32,84, + 104,105,115,32,115,116,111,114,101,115,32,116,104,101,32,118,101,114,115,105, + 111,110,32,110,117,109,98,101,114,46,0,66,101,103,105,110,32,97,32,113, + 117,111,116,97,116,105,111,110,46,0,69,110,100,32,97,32,113,117,111,116, + 97,116,105,111,110,46,0,67,111,109,112,97,114,101,32,97,108,108,32,118, + 97,108,117,101,115,32,105,110,32,116,104,101,32,97,114,114,97,121,46,32, + 82,101,116,117,114,110,32,96,70,65,76,83,69,96,32,105,102,32,97,108, + 108,32,118,97,108,117,101,115,32,97,114,101,32,101,113,117,97,108,32,111, + 114,32,96,84,82,85,69,96,32,111,116,104,101,114,119,105,115,101,46,32, + 84,104,105,115,32,97,115,115,117,109,101,115,32,116,104,101,32,97,114,114, + 97,121,32,99,111,110,116,97,105,110,115,32,111,110,108,121,32,110,117,109, + 101,114,105,99,32,118,97,108,117,101,115,46,0,82,101,116,117,114,110,32, + 97,32,110,101,119,32,97,114,114,97,121,32,99,111,110,115,105,115,116,105, + 110,103,32,111,102,32,116,104,101,32,118,97,108,117,101,115,32,105,110,32, + 97,49,32,102,111,108,108,111,119,101,100,32,98,121,32,116,104,101,32,118, + 97,108,117,101,115,32,105,110,32,97,50,46,0,82,101,116,117,114,110,32, + 96,84,82,85,69,96,32,105,102,32,97,49,32,98,101,103,105,110,115,32, + 119,105,116,104,32,97,50,32,111,114,32,96,70,65,76,83,69,96,32,111, + 116,104,101,114,119,105,115,101,46,0,82,101,116,117,114,110,32,97,32,110, + 101,119,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32, + 97,108,108,32,98,117,116,32,116,104,101,32,108,97,115,116,32,118,97,108, + 117,101,32,105,110,32,116,104,101,32,115,111,117,114,99,101,32,97,114,114, + 97,121,46,0,82,101,116,117,114,110,32,96,84,82,85,69,96,32,105,102, + 32,116,104,101,32,115,116,114,105,110,103,32,118,97,108,117,101,32,105,115, + 32,105,110,32,116,104,101,32,97,114,114,97,121,32,111,114,32,96,70,65, + 76,83,69,96,32,111,116,104,101,114,119,105,115,101,46,0,82,101,116,117, + 114,110,32,96,84,82,85,69,96,32,105,102,32,116,104,101,32,118,97,108, + 117,101,32,105,115,32,105,110,32,116,104,101,32,97,114,114,97,121,32,111, + 114,32,96,70,65,76,83,69,96,32,111,116,104,101,114,119,105,115,101,46, + 0,67,111,112,121,32,97,110,32,97,114,114,97,121,32,40,97,49,41,32, + 116,111,32,97,32,100,101,115,116,105,110,97,116,105,111,110,32,40,97,50, + 41,46,0,82,117,110,32,97,32,113,117,111,116,101,32,97,110,100,32,99, + 111,110,115,116,114,117,99,116,32,97,32,110,101,119,32,97,114,114,97,121, + 32,102,114,111,109,32,116,104,101,32,114,101,116,117,114,110,101,100,32,118, + 97,108,117,101,115,46,32,84,104,101,32,113,117,111,116,101,32,115,104,111, + 117,108,100,32,114,101,116,117,114,110,32,116,104,101,32,118,97,108,117,101, + 115,32,97,110,100,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32, + 118,97,108,117,101,115,32,116,111,32,112,117,116,32,105,110,116,111,32,116, + 104,101,32,97,114,114,97,121,46,0,77,97,107,101,32,97,32,99,111,112, + 121,32,111,102,32,97,110,32,97,114,114,97,121,46,32,82,101,116,117,114, + 110,32,116,104,101,32,97,100,100,114,101,115,115,32,111,102,32,116,104,101, + 32,99,111,112,121,46,0,82,101,116,117,114,110,32,96,84,82,85,69,96, + 32,105,102,32,97,49,32,101,110,100,115,32,119,105,116,104,32,97,50,32, + 111,114,32,96,70,65,76,83,69,96,32,111,116,104,101,114,119,105,115,101, + 46,0,67,111,109,112,97,114,101,32,97,108,108,32,118,97,108,117,101,115, + 32,105,110,32,116,104,101,32,97,114,114,97,121,46,32,82,101,116,117,114, + 110,32,96,84,82,85,69,96,32,105,102,32,97,108,108,32,118,97,108,117, + 101,115,32,97,114,101,32,101,113,117,97,108,32,111,114,32,96,70,65,76, + 83,69,96,32,111,116,104,101,114,119,105,115,101,46,32,84,104,105,115,32, + 97,115,115,117,109,101,115,32,116,104,101,32,97,114,114,97,121,32,99,111, + 110,116,97,105,110,115,32,111,110,108,121,32,110,117,109,101,114,105,99,32, + 118,97,108,117,101,115,46,0,70,101,116,99,104,32,116,104,101,32,118,97, + 108,117,101,32,115,116,111,114,101,100,32,97,116,32,116,104,101,32,115,112, + 101,99,105,102,105,101,100,32,105,110,100,101,120,32,105,110,32,116,104,101, + 32,115,112,101,99,105,102,105,101,100,32,97,114,114,97,121,46,0,70,111, + 114,32,101,97,99,104,32,105,116,101,109,32,105,110,32,116,104,101,32,105, + 110,105,116,105,97,108,32,97,114,114,97,121,44,32,114,117,110,32,116,104, + 101,32,115,112,101,99,105,102,105,101,100,32,113,117,111,116,101,46,32,73, + 102,32,116,104,101,32,113,117,111,116,101,32,114,101,116,117,114,110,115,32, + 96,84,82,85,69,96,44,32,99,111,112,121,32,116,104,101,32,105,116,101, + 109,32,105,110,116,111,32,97,32,110,101,119,32,97,114,114,97,121,46,32, + 73,102,32,96,70,65,76,83,69,96,44,32,100,105,115,99,97,114,100,32, + 105,116,46,32,82,101,116,117,114,110,115,32,97,32,112,111,105,110,116,101, + 114,32,116,111,32,116,104,101,32,110,101,119,32,97,114,114,97,121,46,0, + 82,101,116,117,114,110,32,116,104,101,32,102,105,114,115,116,32,118,97,108, + 117,101,32,105,110,32,116,104,101,32,97,114,114,97,121,46,0,69,120,101, + 99,117,116,101,32,116,104,101,32,113,117,111,116,101,32,111,110,99,101,32, + 102,111,114,32,101,97,99,104,32,105,116,101,109,32,105,110,32,116,104,101, + 32,97,114,114,97,121,46,0,67,114,101,97,116,101,32,97,32,110,101,119, + 32,97,114,114,97,121,32,119,105,116,104,32,116,104,101,32,99,104,97,114, + 97,99,116,101,114,115,32,105,110,32,116,104,101,32,115,111,117,114,99,101, + 32,115,116,114,105,110,103,46,0,67,97,108,99,117,108,97,116,101,32,97, + 32,104,97,115,104,32,118,97,108,117,101,32,102,111,114,32,97,32,103,105, + 118,101,110,32,97,114,114,97,121,46,0,82,101,116,117,114,110,32,116,104, + 101,32,108,111,99,97,116,105,111,110,32,111,102,32,116,104,101,32,102,105, + 114,115,116,32,105,110,115,116,97,110,99,101,32,111,102,32,116,104,101,32, + 115,112,101,99,105,102,105,101,100,32,118,97,108,117,101,32,105,110,32,116, + 104,101,32,97,114,114,97,121,46,0,82,101,116,117,114,110,32,116,104,101, + 32,108,111,99,97,116,105,111,110,32,111,102,32,116,104,101,32,102,105,114, + 115,116,32,105,110,115,116,97,110,99,101,32,111,102,32,116,104,101,32,115, + 112,101,99,105,102,105,101,100,32,115,116,114,105,110,103,32,105,110,32,116, + 104,101,32,97,114,114,97,121,46,0,82,101,116,117,114,110,32,97,32,110, + 101,119,32,97,114,114,97,121,32,119,105,116,104,32,116,104,101,32,105,110, + 100,105,99,101,115,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32, + 118,97,108,117,101,32,119,97,115,32,102,111,117,110,100,32,97,116,32,105, + 110,32,116,104,101,32,111,114,105,103,105,110,97,108,32,97,114,114,97,121, + 46,0,82,101,116,117,114,110,32,97,32,110,101,119,32,97,114,114,97,121, + 32,119,105,116,104,32,116,104,101,32,105,110,100,105,99,101,115,32,111,102, + 32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,115,116,114,105,110, + 103,32,105,110,32,116,104,101,32,111,114,105,103,105,110,97,108,32,97,114, + 114,97,121,46,0,82,101,116,117,114,110,32,116,104,101,32,108,97,115,116, + 32,118,97,108,117,101,32,105,110,32,116,104,101,32,97,114,114,97,121,46, + 0,82,101,116,117,114,110,32,97,32,110,101,119,32,97,114,114,97,121,32, + 99,111,110,116,97,105,110,105,110,103,32,116,104,101,32,102,105,114,115,116, + 32,96,110,96,32,118,97,108,117,101,115,32,102,114,111,109,32,116,104,101, + 32,115,111,117,114,99,101,32,97,114,114,97,121,46,0,82,101,116,117,114, + 110,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,97,32,97,114, + 114,97,121,46,0,69,120,101,99,117,116,101,32,113,117,111,116,101,46,32, + 82,101,116,117,114,110,32,97,32,110,101,119,32,97,114,114,97,121,32,99, + 111,110,116,97,105,110,105,110,103,32,116,104,101,32,118,97,108,117,101,115, + 32,116,104,101,32,113,117,111,116,101,32,108,101,97,118,101,115,32,111,110, + 32,116,104,101,32,115,116,97,99,107,46,32,84,104,105,115,32,105,115,32, + 105,100,101,110,116,105,99,97,108,32,116,111,32,100,111,105,110,103,32,96, + 97,58,99,111,117,110,116,101,100,45,114,101,115,117,108,116,115,0,69,120, + 101,99,117,116,101,32,113,117,111,116,101,32,111,110,99,101,32,102,111,114, + 32,101,97,99,104,32,105,116,101,109,32,105,110,32,116,104,101,32,97,114, + 114,97,121,46,32,67,111,110,115,116,114,117,99,116,115,32,97,32,110,101, + 119,32,97,114,114,97,121,32,102,114,111,109,32,116,104,101,32,118,97,108, + 117,101,32,114,101,116,117,114,110,101,100,32,98,121,32,116,104,101,32,113, + 117,111,116,101,46,0,69,120,116,114,97,99,116,32,97,32,110,101,119,32, + 97,114,114,97,121,32,102,114,111,109,32,116,104,101,32,109,105,100,100,108, + 101,32,111,102,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,97, + 114,114,97,121,46,32,84,104,105,115,32,119,105,108,108,32,116,97,107,101, + 32,116,104,101,32,118,97,108,117,101,115,32,115,116,97,114,116,105,110,103, + 32,97,116,32,96,102,96,32,97,110,100,32,101,120,116,101,110,100,32,116, + 111,32,116,104,101,32,96,108,96,32,108,97,115,116,32,118,97,108,117,101, + 46,0,82,101,116,117,114,110,32,97,32,110,101,119,32,97,114,114,97,121, + 32,99,111,110,115,105,115,116,105,110,103,32,111,102,32,116,104,101,32,118, + 97,108,117,101,115,32,105,110,32,97,50,32,102,111,108,108,111,119,101,100, + 32,98,121,32,116,104,101,32,118,97,108,117,101,115,32,105,110,32,97,49, + 46,0,84,97,107,101,115,32,97,110,32,97,114,114,97,121,44,32,97,32, + 115,116,97,114,116,105,110,103,32,118,97,108,117,101,44,32,97,110,100,32, + 97,32,113,117,111,116,101,46,32,84,104,105,115,32,119,105,108,108,32,97, + 112,112,108,121,32,116,104,101,32,113,117,111,116,101,32,116,111,32,101,97, + 99,104,32,105,116,101,109,32,105,110,32,116,104,101,32,97,114,114,97,121, + 59,32,116,104,101,32,113,117,111,116,101,32,115,104,111,117,108,100,32,99, + 111,110,115,117,109,101,32,116,119,111,32,118,97,108,117,101,115,32,97,110, + 100,32,114,101,116,117,114,110,32,111,110,101,46,0,82,101,118,101,114,115, + 101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,105,116,101,109,115, + 32,105,110,32,97,32,97,114,114,97,121,46,32,84,104,105,115,32,119,105, + 108,108,32,114,101,116,117,114,110,32,97,32,110,101,119,32,97,114,114,97, + 121,46,0,82,101,116,117,114,110,32,97,32,110,101,119,32,97,114,114,97, + 121,32,99,111,110,116,97,105,110,105,110,103,32,116,104,101,32,115,112,101, + 99,105,102,105,101,100,32,110,117,109,98,101,114,32,111,102,32,118,97,108, + 117,101,115,32,102,114,111,109,32,116,104,101,32,114,105,103,104,116,32,115, + 105,100,101,32,111,102,32,116,104,101,32,97,114,114,97,121,46,0,83,116, + 111,114,101,32,97,32,118,97,108,117,101,32,105,110,116,111,32,116,104,101, + 32,97,114,114,97,121,32,97,116,32,116,104,101,32,115,112,101,99,105,102, + 105,101,100,32,105,110,100,101,120,46,0,77,97,107,101,32,97,32,99,111, + 112,121,32,111,102,32,116,104,101,32,97,114,114,97,121,32,105,110,32,97, + 32,114,111,116,97,116,105,110,103,32,115,101,116,32,111,102,32,116,101,109, + 112,111,114,97,114,121,32,98,117,102,102,101,114,115,46,0,82,101,116,117, + 114,110,32,116,104,101,32,97,99,116,117,97,108,32,97,100,100,114,101,115, + 115,32,111,102,32,116,104,101,32,96,110,96,116,104,32,105,116,101,109,32, + 105,110,32,116,104,101,32,97,114,114,97,121,46,0,67,114,101,97,116,101, + 32,97,32,110,101,119,32,115,116,114,105,110,103,32,102,114,111,109,32,116, + 104,101,32,112,114,111,118,105,100,101,100,32,97,114,114,97,121,32,111,102, + 32,99,104,97,114,97,99,116,101,114,32,118,97,108,117,101,115,46,32,84, + 104,105,115,32,115,116,114,105,110,103,32,119,105,108,108,32,98,101,32,115, + 116,111,114,101,100,32,105,110,32,116,104,101,32,116,101,109,112,111,114,97, + 108,32,115,116,114,105,110,103,32,98,117,102,102,101,114,115,46,0,65,98, + 111,114,116,32,101,120,101,99,117,116,105,111,110,46,0,67,108,111,115,101, + 32,97,110,32,117,110,99,111,110,100,105,116,105,111,110,97,108,32,108,111, + 111,112,46,32,66,114,97,110,99,104,101,115,32,98,97,99,107,32,116,111, + 32,116,104,101,32,112,114,105,111,114,32,96,114,101,112,101,97,116,96,46, + 0,65,108,108,111,99,97,116,101,32,116,104,101,32,115,112,101,99,105,102, + 105,101,100,32,110,117,109,98,101,114,32,111,102,32,99,101,108,108,115,32, + 102,114,111,109,32,116,104,101,32,96,72,101,97,112,96,46,0,80,101,114, + 102,111,114,109,32,97,32,98,105,116,119,105,115,101,32,65,78,68,32,111, + 112,101,114,97,116,105,111,110,32,98,101,116,119,101,101,110,32,116,104,101, + 32,116,119,111,32,112,114,111,118,105,100,101,100,32,118,97,108,117,101,115, + 46,0,70,101,116,99,104,32,116,104,101,32,56,45,98,105,116,32,118,97, + 108,117,101,32,115,116,111,114,101,100,32,97,116,32,116,104,101,32,115,112, + 101,99,105,102,105,101,100,32,97,100,100,114,101,115,115,46,32,65,100,100, + 114,101,115,115,105,110,103,32,102,111,114,32,116,104,105,115,32,105,115,32, + 105,110,32,56,45,98,105,116,32,117,110,105,116,115,46,0,70,101,116,99, + 104,32,116,104,101,32,118,97,108,117,101,32,115,116,111,114,101,100,32,97, + 116,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,97,100,100,114, + 101,115,115,46,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,120, + 116,32,97,100,100,114,101,115,115,32,97,110,100,32,116,104,101,32,118,97, + 108,117,101,46,0,83,116,111,114,101,32,97,110,32,56,45,98,105,116,32, + 118,97,108,117,101,32,105,110,116,111,32,116,104,101,32,115,112,101,99,105, + 102,105,101,100,32,97,100,100,114,101,115,115,46,32,65,100,100,114,101,115, + 115,105,110,103,32,102,111,114,32,116,104,105,115,32,105,115,32,105,110,32, + 56,45,98,105,116,32,117,110,105,116,115,46,0,83,116,111,114,101,32,97, + 32,118,97,108,117,101,32,105,110,116,111,32,116,104,101,32,115,112,101,99, + 105,102,105,101,100,32,97,100,100,114,101,115,115,32,97,110,100,32,114,101, + 116,117,114,110,32,116,104,101,32,110,101,120,116,32,97,100,100,114,101,115, + 115,46,0,84,114,97,110,115,108,97,116,101,32,97,32,112,104,121,115,105, + 99,97,108,32,97,100,100,114,101,115,115,32,116,111,32,97,32,98,121,116, + 101,32,97,100,100,114,101,115,115,46,0,68,105,115,112,108,97,121,32,97, + 32,119,101,108,99,111,109,101,32,109,101,115,115,97,103,101,32,111,110,32, + 115,116,97,114,116,117,112,46,0,69,120,101,99,117,116,101,32,113,49,32, + 97,103,97,105,110,115,116,32,120,44,32,116,104,101,110,32,101,120,101,99, + 117,116,101,32,113,50,32,97,103,97,105,110,115,116,32,97,32,99,111,112, + 121,32,111,102,32,120,46,0,69,120,101,99,117,116,101,32,113,49,32,97, + 103,97,105,110,115,116,32,120,32,97,110,100,32,113,50,32,97,103,97,105, + 110,115,116,32,121,46,0,69,120,101,99,117,116,101,32,113,32,97,103,97, + 105,110,115,116,32,120,44,32,116,104,101,110,32,101,120,101,99,117,116,101, + 32,113,32,97,103,97,105,110,115,116,32,121,46,0,83,101,116,32,96,66, + 97,115,101,96,32,116,111,32,98,105,110,97,114,121,46,0,82,101,97,100, + 32,49,48,50,52,32,99,101,108,108,115,32,102,114,111,109,32,98,108,111, + 99,107,32,110,32,105,110,32,116,104,101,32,98,108,111,99,107,32,115,116, + 111,114,97,103,101,32,105,110,116,111,32,109,101,109,111,114,121,32,97,116, + 32,97,100,100,114,101,115,115,32,97,46,0,83,101,116,32,116,104,101,32, + 102,105,108,101,32,110,97,109,101,32,111,102,32,116,104,101,32,98,108,111, + 99,107,32,115,116,111,114,97,103,101,32,100,101,118,105,99,101,46,0,83, + 97,118,101,32,116,104,101,32,49,48,50,52,32,99,101,108,108,115,32,97, + 116,32,97,100,100,114,101,115,115,32,97,32,116,111,32,98,108,111,99,107, + 32,110,32,105,110,32,116,104,101,32,98,108,111,99,107,32,115,116,111,114, + 97,103,101,46,0,65,112,112,101,110,100,32,97,32,118,97,108,117,101,32, + 116,111,32,116,104,101,32,99,117,114,114,101,110,116,32,98,117,102,102,101, + 114,46,0,82,101,115,101,116,32,116,104,101,32,99,117,114,114,101,110,116, + 32,98,117,102,102,101,114,32,116,111,32,97,110,32,101,109,112,116,121,32, + 115,116,97,116,101,46,0,82,101,116,117,114,110,32,97,32,112,111,105,110, + 116,101,114,32,116,111,32,116,104,101,32,99,117,114,114,101,110,116,32,101, + 110,100,32,111,102,32,116,104,101,32,97,99,116,105,118,101,32,98,117,102, + 102,101,114,46,0,82,101,109,111,118,101,32,116,104,101,32,108,97,115,116, + 32,118,97,108,117,101,32,102,114,111,109,32,116,104,101,32,99,117,114,114, + 101,110,116,32,98,117,102,102,101,114,46,0,83,97,118,101,32,97,110,100, + 32,114,101,115,116,111,114,101,32,116,104,101,32,99,117,114,114,101,110,116, + 32,98,117,102,102,101,114,32,98,101,102,111,114,101,32,97,110,100,32,97, + 102,116,101,114,32,101,120,101,99,117,116,105,110,103,32,116,104,101,32,115, + 112,101,99,105,102,105,101,100,32,113,117,111,116,101,46,0,65,115,115,105, + 103,110,32,97,32,110,101,119,32,98,117,102,102,101,114,32,97,115,32,116, + 104,101,32,99,117,114,114,101,110,116,32,111,110,101,46,0,82,101,116,117, + 114,110,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,99,101,108, + 108,115,32,105,110,32,116,104,101,32,98,117,102,102,101,114,46,0,82,101, + 116,117,114,110,32,116,104,101,32,115,116,97,114,116,32,97,100,100,114,101, + 115,115,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32,98,117, + 102,102,101,114,46,0,69,120,105,116,32,82,101,116,114,111,46,0,82,101, + 116,117,114,110,32,84,82,85,69,32,105,102,32,99,104,97,114,97,99,116, + 101,114,32,105,115,32,97,32,110,111,116,32,99,111,110,115,111,110,97,110, + 116,32,111,114,32,70,65,76,83,69,32,111,116,104,101,114,119,105,115,101, + 46,0,82,101,116,117,114,110,32,84,82,85,69,32,105,102,32,99,104,97, + 114,97,99,116,101,114,32,105,115,32,97,32,110,111,116,32,110,117,109,101, + 114,105,99,32,100,105,103,105,116,32,111,114,32,70,65,76,83,69,32,111, + 116,104,101,114,119,105,115,101,46,0,82,101,116,117,114,110,32,84,82,85, + 69,32,105,102,32,99,104,97,114,97,99,116,101,114,32,105,115,32,110,111, + 116,32,108,111,119,101,114,99,97,115,101,32,111,114,32,70,65,76,83,69, + 32,111,116,104,101,114,119,105,115,101,46,0,82,101,116,117,114,110,32,84, + 82,85,69,32,105,102,32,99,104,97,114,97,99,116,101,114,32,105,115,32, + 110,111,116,32,117,112,112,101,114,99,97,115,101,32,111,114,32,70,65,76, + 83,69,32,111,116,104,101,114,119,105,115,101,46,0,82,101,116,117,114,110, + 32,84,82,85,69,32,105,102,32,99,104,97,114,97,99,116,101,114,32,105, + 115,32,110,111,116,32,112,114,105,110,116,97,98,108,101,32,111,114,32,70, + 65,76,83,69,32,111,116,104,101,114,119,105,115,101,46,0,82,101,116,117, + 114,110,32,84,82,85,69,32,105,102,32,99,104,97,114,97,99,116,101,114, + 32,105,115,32,110,111,116,32,97,32,118,111,119,101,108,32,111,114,32,70, + 65,76,83,69,32,111,116,104,101,114,119,105,115,101,46,0,82,101,116,117, + 114,110,32,84,82,85,69,32,105,102,32,99,104,97,114,97,99,116,101,114, + 32,105,115,32,110,111,116,32,119,104,105,116,101,115,112,97,99,101,44,32, + 111,114,32,70,65,76,83,69,32,111,116,104,101,114,119,105,115,101,46,0, + 82,101,116,117,114,110,32,84,82,85,69,32,105,102,32,99,104,97,114,97, + 99,116,101,114,32,105,115,32,97,32,99,111,110,115,111,110,97,110,116,32, + 111,114,32,70,65,76,83,69,32,111,116,104,101,114,119,105,115,101,46,0, + 82,101,116,117,114,110,32,84,82,85,69,32,105,102,32,99,104,97,114,97, + 99,116,101,114,32,105,115,32,97,32,110,117,109,101,114,105,99,32,100,105, + 103,105,116,32,111,114,32,70,65,76,83,69,32,111,116,104,101,114,119,105, + 115,101,46,0,86,101,99,116,111,114,101,100,46,32,82,101,97,100,32,97, + 32,115,105,110,103,108,101,32,107,101,121,112,114,101,115,115,46,0,82,101, + 116,117,114,110,32,84,82,85,69,32,105,102,32,99,104,97,114,97,99,116, + 101,114,32,105,115,32,97,110,32,65,83,67,73,73,32,108,101,116,116,101, + 114,32,111,114,32,70,65,76,83,69,32,111,116,104,101,114,119,105,115,101, + 46,0,82,101,116,117,114,110,32,84,82,85,69,32,105,102,32,99,104,97, + 114,97,99,116,101,114,32,105,115,32,108,111,119,101,114,99,97,115,101,32, + 111,114,32,70,65,76,83,69,32,111,116,104,101,114,119,105,115,101,46,0, + 86,101,99,116,111,114,101,100,46,32,68,105,115,112,108,97,121,32,97,32, + 115,105,110,103,108,101,32,99,104,97,114,97,99,116,101,114,46,0,67,111, + 110,118,101,114,116,32,99,104,97,114,97,99,116,101,114,32,116,111,32,108, + 111,119,101,114,99,97,115,101,32,101,113,117,105,118,97,108,101,110,116,46, + 0,67,111,110,118,101,114,116,32,97,110,32,65,83,67,73,73,32,100,105, + 103,105,116,32,99,104,97,114,97,99,116,101,114,32,105,110,116,111,32,116, + 104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,100,101,99, + 105,109,97,108,32,118,97,108,117,101,0,67,111,110,118,101,114,116,32,99, + 104,97,114,97,99,116,101,114,32,105,110,116,111,32,97,32,115,116,114,105, + 110,103,46,0,67,111,110,118,101,114,116,32,99,104,97,114,97,99,116,101, + 114,32,116,111,32,117,112,112,101,114,99,97,115,101,32,101,113,117,105,118, + 97,108,101,110,116,46,0,67,111,110,118,101,114,116,32,97,110,32,65,83, + 67,73,73,32,99,104,97,114,97,99,116,101,114,32,116,111,32,116,104,101, + 32,111,112,112,111,115,105,116,101,32,99,97,115,101,46,0,82,101,116,117, + 114,110,32,84,82,85,69,32,105,102,32,99,104,97,114,97,99,116,101,114, + 32,105,115,32,117,112,112,101,114,99,97,115,101,32,111,114,32,70,65,76, + 83,69,32,111,116,104,101,114,119,105,115,101,46,0,82,101,116,117,114,110, + 32,84,82,85,69,32,105,102,32,99,104,97,114,97,99,116,101,114,32,105, + 115,32,112,114,105,110,116,97,98,108,101,32,111,114,32,70,65,76,83,69, + 32,111,116,104,101,114,119,105,115,101,46,0,82,101,116,117,114,110,32,84, + 82,85,69,32,105,102,32,99,104,97,114,97,99,116,101,114,32,105,115,32, + 97,32,118,111,119,101,108,32,111,114,32,70,65,76,83,69,32,111,116,104, + 101,114,119,105,115,101,46,0,82,101,116,117,114,110,32,84,82,85,69,32, + 105,102,32,99,104,97,114,97,99,116,101,114,32,105,115,32,119,104,105,116, + 101,115,112,97,99,101,44,32,111,114,32,70,65,76,83,69,32,111,116,104, + 101,114,119,105,115,101,46,0,67,97,108,108,32,97,32,102,117,110,99,116, + 105,111,110,46,0,82,101,116,117,114,110,32,97,32,112,111,105,110,116,101, + 114,32,116,111,32,116,104,101,32,99,97,114,32,111,102,32,99,111,110,115, + 32,97,46,0,83,116,111,114,101,32,110,32,105,110,116,111,32,116,104,101, + 32,99,97,114,32,111,102,32,99,111,110,115,32,97,46,0,82,101,116,117, + 114,110,32,116,104,101,32,99,111,110,116,101,110,116,115,32,111,102,32,116, + 104,101,32,99,97,114,32,111,102,32,99,111,110,115,32,97,46,0,73,102, + 32,96,110,96,32,105,115,32,101,113,117,97,108,32,116,111,32,96,109,96, + 44,32,100,114,111,112,32,98,111,116,104,32,97,110,100,32,101,120,101,99, + 117,116,101,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,113,117, + 111,116,101,32,98,101,102,111,114,101,32,101,120,105,116,105,110,103,32,116, + 104,101,32,99,97,108,108,105,110,103,32,119,111,114,100,46,32,73,102,32, + 110,111,116,32,101,113,117,97,108,44,32,108,101,97,118,101,32,96,110,96, + 32,111,110,32,116,104,101,32,115,116,97,99,107,32,97,110,100,32,108,101, + 116,32,101,120,101,99,117,116,105,111,110,32,99,111,110,116,105,110,117,101, + 46,0,82,101,116,117,114,110,32,97,32,112,111,105,110,116,101,114,32,116, + 111,32,116,104,101,32,99,100,114,32,111,102,32,99,111,110,115,32,97,46, + 0,83,116,111,114,101,32,110,32,105,110,116,111,32,116,104,101,32,99,100, + 114,32,111,102,32,99,111,110,115,32,97,46,0,82,101,116,117,114,110,32, + 116,104,101,32,99,111,110,116,101,110,116,115,32,111,102,32,116,104,101,32, + 99,100,114,32,111,102,32,99,111,110,115,32,97,46,0,69,120,101,99,117, + 116,101,32,113,49,32,105,102,32,116,104,101,32,102,108,97,103,32,105,115, + 32,116,114,117,101,32,40,45,49,41,32,111,114,32,113,50,32,105,102,32, + 116,104,101,32,102,108,97,103,32,105,115,32,102,97,108,115,101,32,40,48, + 41,46,32,79,110,108,121,32,116,104,101,115,101,32,102,108,97,103,115,32, + 97,114,101,32,118,97,108,105,100,32,119,104,101,110,32,117,115,105,110,103, + 32,96,99,104,111,111,115,101,96,59,32,112,97,115,115,105,110,103,32,111, + 116,104,101,114,32,118,97,108,117,101,115,32,97,115,32,102,108,97,103,115, + 32,119,105,108,108,32,114,101,115,117,108,116,32,105,110,32,109,101,109,111, + 114,121,32,99,111,114,114,117,112,116,105,111,110,46,0,67,108,97,115,115, + 32,104,97,110,100,108,101,114,32,102,111,114,32,100,97,116,97,32,115,116, + 114,117,99,116,117,114,101,115,46,0,67,108,97,115,115,32,104,97,110,100, + 108,101,114,32,102,111,114,32,99,111,109,112,105,108,101,114,32,109,97,99, + 114,111,115,32,40,105,109,109,101,100,105,97,116,101,32,119,111,114,100,115, + 41,0,67,108,97,115,115,32,104,97,110,100,108,101,114,32,102,111,114,32, + 112,114,105,109,105,116,105,118,101,32,119,111,114,100,115,32,40,119,111,114, + 100,115,32,119,104,105,99,104,32,109,97,112,32,116,111,32,78,103,97,32, + 105,110,115,116,114,117,99,116,105,111,110,115,41,0,67,108,97,115,115,32, + 104,97,110,100,108,101,114,32,102,111,114,32,110,111,114,109,97,108,32,119, + 111,114,100,115,46,0,82,101,116,117,114,110,32,116,104,101,32,99,117,114, + 114,101,110,116,32,100,97,121,46,0,82,101,116,117,114,110,32,116,104,101, + 32,99,117,114,114,101,110,116,32,104,111,117,114,46,32,84,104,105,115,32, + 119,105,108,108,32,98,101,32,105,110,32,116,104,101,32,114,97,110,103,101, + 32,111,102,32,48,45,50,51,44,32,105,110,99,108,117,115,105,118,101,46, + 0,82,101,116,117,114,110,32,116,104,101,32,99,117,114,114,101,110,116,32, + 109,105,110,117,116,101,46,32,84,104,105,115,32,119,105,108,108,32,98,101, + 32,105,110,32,116,104,101,32,114,97,110,103,101,32,111,102,32,48,45,53, + 57,44,32,105,110,99,108,117,115,105,118,101,46,0,82,101,116,117,114,110, + 32,116,104,101,32,99,117,114,114,101,110,116,32,109,111,110,116,104,46,32, + 84,104,105,115,32,119,105,108,108,32,98,101,32,105,110,32,116,104,101,32, + 114,97,110,103,101,32,111,102,32,49,45,49,50,44,32,105,110,99,108,117, + 115,105,118,101,46,0,84,114,105,103,103,101,114,32,97,32,99,108,111,99, + 107,32,111,112,101,114,97,116,105,111,110,46,32,84,104,105,115,32,105,115, + 32,110,111,116,32,105,110,116,101,110,100,101,100,32,116,111,32,98,101,32, + 117,115,101,100,32,100,105,114,101,99,116,108,121,46,0,82,101,116,117,114, + 110,32,116,104,101,32,99,117,114,114,101,110,116,32,115,101,99,111,110,100, + 46,32,84,104,105,115,32,119,105,108,108,32,98,101,32,105,110,32,116,104, + 101,32,114,97,110,103,101,32,111,102,32,48,45,53,57,44,32,105,110,99, + 108,117,115,105,118,101,46,0,82,101,116,117,114,110,32,97,32,104,111,115, + 116,32,115,112,101,99,105,102,105,99,32,116,105,109,101,115,116,97,109,112, + 46,32,73,110,32,116,104,101,32,115,116,97,110,100,97,114,100,32,115,121, + 115,116,101,109,44,32,116,104,105,115,32,105,115,32,97,32,51,50,45,98, + 105,116,32,85,110,105,120,32,116,105,109,101,115,116,97,109,112,44,32,98, + 117,116,32,116,104,105,115,32,105,115,32,110,111,116,32,114,101,113,117,105, + 114,101,100,46,0,82,101,116,117,114,110,32,116,104,101,32,99,117,114,114, + 101,110,116,32,100,97,121,32,105,110,32,85,84,67,46,0,82,101,116,117, + 114,110,32,116,104,101,32,99,117,114,114,101,110,116,32,104,111,117,114,32, + 105,110,32,85,84,67,46,0,82,101,116,117,114,110,32,116,104,101,32,99, + 117,114,114,101,110,116,32,109,105,110,117,116,101,32,105,110,32,85,84,67, + 46,0,82,101,116,117,114,110,32,116,104,101,32,99,117,114,114,101,110,116, + 32,109,111,110,116,104,32,105,110,32,85,84,67,46,0,82,101,116,117,114, + 110,32,116,104,101,32,99,117,114,114,101,110,116,32,115,101,99,111,110,100, + 32,105,110,32,85,84,67,46,0,82,101,116,117,114,110,32,116,104,101,32, + 99,117,114,114,101,110,116,32,121,101,97,114,32,105,110,32,85,84,67,46, + 0,82,101,116,117,114,110,32,116,104,101,32,99,117,114,114,101,110,116,32, + 121,101,97,114,46,0,83,116,111,114,101,32,116,104,101,32,115,112,101,99, + 105,102,105,101,100,32,118,97,108,117,101,32,105,110,116,111,32,116,104,101, + 32,109,101,109,111,114,121,32,97,116,32,96,104,101,114,101,96,32,97,110, + 100,32,105,110,99,114,101,109,101,110,116,32,96,72,101,97,112,96,32,98, + 121,32,49,46,32,73,100,101,110,116,105,99,97,108,32,116,111,32,96,44, + 96,44,32,116,104,105,115,32,105,115,32,112,114,111,118,105,100,101,100,32, + 102,111,114,32,99,111,109,112,97,116,105,98,105,108,105,116,121,32,119,105, + 116,104,32,116,104,101,32,82,101,116,114,111,70,111,114,116,104,32,111,110, + 32,105,108,111,32,97,110,100,32,110,97,112,105,97,46,0,67,111,109,112, + 105,108,101,32,97,32,99,97,108,108,32,116,111,32,116,104,101,32,115,112, + 101,99,105,102,105,101,100,32,97,100,100,114,101,115,115,32,105,110,116,111, + 32,116,104,101,32,99,117,114,114,101,110,116,32,100,101,102,105,110,105,116, + 105,111,110,46,0,67,111,109,112,105,108,101,32,97,32,106,117,109,112,32, + 116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,97,100,100, + 114,101,115,115,32,105,110,116,111,32,116,104,101,32,99,117,114,114,101,110, + 116,32,100,101,102,105,110,105,116,105,111,110,46,0,67,111,109,112,105,108, + 101,32,116,104,101,32,99,111,100,101,32,116,111,32,112,117,115,104,32,97, + 32,110,117,109,98,101,114,32,116,111,32,116,104,101,32,115,116,97,99,107, + 32,105,110,116,111,32,116,104,101,32,99,117,114,114,101,110,116,32,100,101, + 102,105,110,105,116,105,111,110,46,0,67,111,109,112,105,108,101,32,97,32, + 114,101,116,117,114,110,32,105,110,115,116,114,117,99,116,105,111,110,32,105, + 110,116,111,32,116,104,101,32,99,117,114,114,101,110,116,32,100,101,102,105, + 110,105,116,105,111,110,46,0,82,101,116,117,114,110,32,96,84,82,85,69, + 96,32,105,102,32,99,111,109,112,105,108,101,114,32,105,115,32,111,110,32, + 111,114,32,96,70,65,76,83,69,96,32,111,116,104,101,114,119,105,115,101, + 46,0,67,114,101,97,116,101,32,97,32,110,101,119,32,99,111,110,115,32, + 99,101,108,108,32,119,105,116,104,32,97,32,99,97,114,32,111,102,32,120, + 32,97,110,100,32,97,32,99,100,114,32,111,102,32,121,46,0,67,114,101, + 97,116,101,32,97,32,99,111,110,115,116,97,110,116,32,114,101,116,117,114, + 110,105,110,103,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,118, + 97,108,117,101,46,0,67,111,112,121,32,96,108,96,32,99,101,108,108,115, + 32,102,114,111,109,32,109,101,109,111,114,121,32,97,116,32,96,115,96,32, + 116,111,32,116,104,101,32,109,101,109,111,114,121,32,97,116,32,96,100,96, + 46,32,84,104,101,115,101,32,115,104,111,117,108,100,32,110,111,116,32,111, + 118,101,114,108,97,112,46,0,67,108,101,97,114,32,116,104,101,32,105,110, + 116,101,114,110,97,108,32,115,116,97,116,101,32,111,102,32,99,111,114,101, + 32,96,110,96,46,32,84,104,105,115,32,115,104,111,117,108,100,32,98,101, + 32,100,111,110,101,32,112,114,105,111,114,32,116,111,32,117,115,101,32,111, + 102,32,96,99,111,114,101,58,115,116,97,114,116,96,44,32,119,104,105,99, + 104,32,97,99,116,105,118,97,116,101,115,32,112,114,111,99,101,115,115,105, + 110,103,32,111,110,32,116,104,101,32,99,111,114,101,46,0,83,117,115,112, + 101,110,100,32,112,114,111,99,101,115,115,105,110,103,32,111,110,32,99,111, + 114,101,32,96,110,96,46,0,83,117,115,112,101,110,100,32,112,114,111,99, + 101,115,115,105,110,103,32,111,110,32,116,104,101,32,99,117,114,114,101,110, + 116,32,99,111,114,101,46,0,82,101,97,100,32,97,32,118,97,108,117,101, + 32,102,114,111,109,32,114,101,103,105,115,116,101,114,32,96,110,96,32,111, + 110,32,116,104,101,32,99,117,114,114,101,110,116,32,99,111,114,101,46,0, + 82,101,115,117,109,101,32,112,114,111,99,101,115,115,105,110,103,32,111,110, + 32,99,111,114,101,32,96,110,96,32,97,102,116,101,114,32,97,32,96,99, + 111,114,101,58,112,97,117,115,101,96,32,111,114,32,96,99,111,114,101,58, + 112,97,117,115,101,45,99,117,114,114,101,110,116,96,46,0,83,101,116,32, + 116,104,101,32,73,80,32,111,102,32,99,111,114,101,32,96,110,96,32,116, + 111,32,97,100,100,114,101,115,115,32,96,97,96,32,97,110,100,32,98,101, + 103,105,110,32,112,114,111,99,101,115,115,105,110,103,32,111,110,32,99,111, + 114,101,32,96,110,96,46,0,87,114,105,116,101,32,97,32,118,97,108,117, + 101,32,116,111,32,114,101,103,105,115,116,101,114,32,110,117,109,98,101,114, + 32,96,110,96,32,111,110,32,116,104,101,32,99,117,114,114,101,110,116,32, + 99,111,114,101,46,0,66,105,110,100,32,97,32,118,97,108,117,101,32,116, + 111,32,97,32,102,117,110,99,116,105,111,110,32,97,110,100,32,114,101,116, + 117,114,110,32,97,32,110,101,119,32,113,117,111,116,101,32,116,104,97,116, + 32,99,97,108,108,115,32,116,104,101,32,98,111,117,110,100,32,97,99,116, + 105,111,110,46,0,73,110,108,105,110,101,32,97,32,110,117,109,101,114,105, + 99,32,118,97,108,117,101,32,116,111,32,116,104,101,32,99,117,114,114,101, + 110,116,32,97,115,115,101,109,98,108,121,32,115,101,103,109,101,110,116,46, + 0,86,97,114,105,97,98,108,101,46,32,72,111,108,100,115,32,97,32,112, + 111,105,110,116,101,114,32,116,104,111,32,116,104,101,32,102,117,110,99,116, + 105,111,110,32,102,111,114,32,99,97,108,99,117,108,97,116,105,110,103,32, + 100,105,99,116,105,111,110,97,114,121,32,104,97,115,104,101,115,46,0,86, + 101,99,116,111,114,101,100,46,32,67,114,101,97,116,101,32,97,32,104,101, + 97,100,101,114,46,32,80,114,111,118,105,100,101,32,97,32,115,116,114,105, + 110,103,32,40,115,41,32,102,111,114,32,116,104,101,32,110,97,109,101,44, + 32,97,32,112,111,105,110,116,101,114,32,116,111,32,116,104,101,32,99,108, + 97,115,115,32,104,97,110,100,108,101,114,32,40,97,49,41,32,97,110,100, + 32,97,32,112,111,105,110,116,101,114,32,116,111,32,116,104,101,32,119,111, + 114,100,32,100,101,102,105,110,105,116,105,111,110,32,40,97,50,41,32,71, + 101,110,101,114,97,108,108,121,32,116,104,105,115,32,119,111,110,39,116,32, + 98,101,32,117,115,101,100,32,100,105,114,101,99,116,108,121,46,0,71,105, + 118,101,110,32,97,32,100,105,99,116,105,111,110,97,114,121,32,104,101,97, + 100,101,114,44,32,114,101,116,117,114,110,32,116,104,101,32,99,108,97,115, + 115,32,102,105,101,108,100,46,0,72,111,111,107,46,32,67,114,101,97,116, + 101,32,97,32,110,101,119,32,100,105,99,116,105,111,110,97,114,121,32,104, + 101,97,100,101,114,32,110,97,109,101,100,32,116,104,101,32,115,112,101,99, + 105,102,105,101,100,32,115,116,114,105,110,103,46,32,84,104,101,32,110,101, + 119,32,104,101,97,100,101,114,32,119,105,108,108,32,112,111,105,110,116,32, + 116,111,32,96,104,101,114,101,96,32,97,110,100,32,104,97,118,101,32,97, + 32,99,108,97,115,115,32,111,102,32,96,99,108,97,115,115,58,100,97,116, + 97,96,46,0,69,120,101,99,117,116,101,32,116,104,101,32,115,112,101,99, + 105,102,105,101,100,32,113,117,111,116,101,32,111,110,99,101,32,102,111,114, + 32,101,97,99,104,32,104,101,97,100,101,114,32,105,110,32,116,104,101,32, + 100,105,99,116,105,111,110,97,114,121,46,32,66,101,102,111,114,101,32,114, + 117,110,110,105,110,103,32,116,104,101,32,113,117,111,116,101,44,32,116,104, + 105,115,32,97,108,115,111,32,112,117,115,104,101,115,32,97,32,112,111,105, + 110,116,101,114,32,116,111,32,116,104,101,32,104,101,97,100,101,114,32,111, + 110,116,111,32,116,104,101,32,115,116,97,99,107,46,0,71,105,118,101,110, + 32,97,32,100,105,99,116,105,111,110,97,114,121,32,104,101,97,100,101,114, + 44,32,114,101,116,117,114,110,32,116,104,101,32,104,97,115,104,32,102,105, + 101,108,100,46,0,82,101,116,117,114,110,32,116,104,101,32,109,111,115,116, + 32,114,101,99,101,110,116,32,100,105,99,116,105,111,110,97,114,121,32,104, + 101,97,100,101,114,46,0,82,101,116,117,114,110,32,97,32,112,111,105,110, + 116,101,114,32,116,111,32,116,104,101,32,99,108,97,115,115,32,102,105,101, + 108,100,32,111,102,32,116,104,101,32,109,111,115,116,32,114,101,99,101,110, + 116,32,100,105,99,116,105,111,110,97,114,121,32,104,101,97,100,101,114,46, + 0,82,101,116,117,114,110,32,97,32,112,111,105,110,116,101,114,32,116,111, + 32,116,104,101,32,110,97,109,101,32,102,105,101,108,100,32,111,102,32,116, + 104,101,32,109,111,115,116,32,114,101,99,101,110,116,32,100,105,99,116,105, + 111,110,97,114,121,32,104,101,97,100,101,114,46,0,82,101,116,117,114,110, + 32,97,32,112,111,105,110,116,101,114,32,116,111,32,116,104,101,32,120,116, + 32,102,105,101,108,100,32,111,102,32,116,104,101,32,109,111,115,116,32,114, + 101,99,101,110,116,32,100,105,99,116,105,111,110,97,114,121,32,104,101,97, + 100,101,114,46,0,71,105,118,101,110,32,97,32,100,105,99,116,105,111,110, + 97,114,121,32,104,101,97,100,101,114,44,32,114,101,116,117,114,110,32,116, + 104,101,32,108,105,110,107,32,102,105,101,108,100,46,0,76,111,111,107,117, + 112,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,110,97,109,101, + 32,105,110,32,116,104,101,32,100,105,99,116,105,111,110,97,114,121,32,97, + 110,100,32,114,101,116,117,114,110,32,97,32,112,111,105,110,116,101,114,32, + 116,111,32,105,116,115,32,100,105,99,116,105,111,110,97,114,121,32,104,101, + 97,100,101,114,46,32,84,104,105,115,32,114,101,116,117,114,110,115,32,122, + 101,114,111,32,105,102,32,116,104,101,32,119,111,114,100,32,105,115,32,110, + 111,116,32,102,111,117,110,100,46,32,84,104,105,115,32,97,108,115,111,32, + 115,101,116,115,32,97,110,32,105,110,116,101,114,110,97,108,32,118,97,114, + 105,97,98,108,101,32,40,39,119,104,105,99,104,39,32,105,110,32,114,101, + 116,114,111,46,109,117,114,105,41,32,116,111,32,116,104,101,32,104,101,97, + 100,101,114,32,97,100,100,114,101,115,115,46,0,76,111,111,107,117,112,32, + 116,104,101,32,115,112,101,99,105,102,105,101,100,32,97,100,100,114,101,115, + 115,32,105,110,32,116,104,101,32,100,105,99,116,105,111,110,97,114,121,32, + 97,110,100,32,114,101,116,117,114,110,32,97,32,112,111,105,110,116,101,114, + 32,116,111,32,105,116,115,32,100,105,99,116,105,111,110,97,114,121,32,104, + 101,97,100,101,114,46,32,84,104,105,115,32,114,101,116,117,114,110,115,32, + 122,101,114,111,32,105,102,32,116,104,101,32,119,111,114,100,32,105,115,32, + 110,111,116,32,102,111,117,110,100,46,0,71,105,118,101,110,32,97,32,100, + 105,99,116,105,111,110,97,114,121,32,104,101,97,100,101,114,44,32,114,101, + 116,117,114,110,32,116,104,101,32,110,97,109,101,32,102,105,101,108,100,46, + 0,85,112,100,97,116,101,32,116,104,101,32,104,97,115,104,101,115,32,102, + 111,114,32,97,108,108,32,118,105,115,105,98,108,101,32,119,111,114,100,115, + 32,105,110,32,116,104,101,32,100,105,99,116,105,111,110,97,114,121,46,0, + 83,101,116,32,116,104,101,32,96,100,58,115,111,117,114,99,101,96,32,102, + 105,101,108,100,32,111,102,32,116,104,101,32,104,101,97,100,101,114,32,102, + 111,114,32,116,104,101,32,110,97,109,101,100,32,119,111,114,100,32,40,115, + 50,41,32,116,111,32,115,116,114,105,110,103,32,40,115,49,41,46,32,84, + 104,101,32,115,116,114,105,110,103,32,119,105,108,108,32,110,111,116,32,98, + 101,32,100,117,112,108,105,99,97,116,101,100,46,0,71,105,118,101,110,32, + 97,32,100,105,99,116,105,111,110,97,114,121,32,104,101,97,100,101,114,44, + 32,114,101,116,117,114,110,32,116,104,101,32,115,111,117,114,99,101,32,102, + 105,101,108,100,46,0,67,104,97,110,103,101,32,100,105,99,116,105,111,110, + 97,114,121,32,115,101,97,114,99,104,32,116,111,32,117,115,101,32,104,97, + 115,104,101,100,32,110,97,109,101,32,99,111,109,112,97,114,105,111,110,115, + 46,0,67,104,97,110,103,101,32,100,105,99,116,105,111,110,97,114,121,32, + 115,101,97,114,99,104,32,116,111,32,117,115,101,32,102,117,108,108,32,110, + 97,109,101,32,99,111,109,112,97,114,105,111,110,115,46,0,71,105,118,101, + 110,32,97,32,100,105,99,116,105,111,110,97,114,121,32,104,101,97,100,101, + 114,44,32,114,101,116,117,114,110,32,116,104,101,32,120,116,32,102,105,101, + 108,100,46,0,67,104,97,110,103,101,32,116,104,101,32,99,108,97,115,115, + 32,111,102,32,116,104,101,32,109,111,115,116,32,114,101,99,101,110,116,108, + 121,32,100,101,102,105,110,101,100,32,119,111,114,100,32,116,111,32,96,99, + 108,97,115,115,58,100,97,116,97,96,46,0,83,101,116,32,96,66,97,115, + 101,96,32,116,111,32,100,101,99,105,109,97,108,46,0,82,101,116,117,114, + 110,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,105,116,101,109, + 115,32,111,110,32,116,104,101,32,115,116,97,99,107,46,0,84,101,109,112, + 111,114,97,114,105,108,121,32,114,101,109,111,118,101,32,110,32,102,114,111, + 109,32,116,104,101,32,115,116,97,99,107,44,32,101,120,101,99,117,116,101, + 32,116,104,101,32,113,117,111,116,97,116,105,111,110,44,32,97,110,100,32, + 116,104,101,110,32,114,101,115,116,111,114,101,32,110,32,116,111,32,116,104, + 101,32,115,116,97,99,107,46,0,65,116,116,97,99,104,32,97,110,32,97, + 99,116,105,111,110,32,116,111,32,116,104,101,32,109,111,115,116,32,114,101, + 99,101,110,116,108,121,32,99,114,101,97,116,101,100,32,119,111,114,100,46, + 32,84,104,105,115,32,105,115,32,117,115,101,100,32,105,110,32,97,32,109, + 97,110,110,101,114,32,115,105,109,105,108,97,114,32,116,111,32,67,82,69, + 65,84,69,47,68,79,69,83,62,32,105,110,32,116,114,97,100,105,116,105, + 111,110,97,108,32,70,111,114,116,104,46,0,68,105,115,99,97,114,100,32, + 116,104,101,32,116,111,112,32,118,97,108,117,101,32,111,110,32,116,104,101, + 32,115,116,97,99,107,46,0,82,101,109,111,118,101,32,116,111,112,32,116, + 119,111,32,105,116,101,109,115,32,111,110,32,116,104,101,32,115,116,97,99, + 107,46,0,68,105,115,112,108,97,121,32,116,104,101,32,105,116,101,109,115, + 32,111,110,32,116,104,101,32,100,97,116,97,32,115,116,97,99,107,46,0, + 68,117,112,108,105,99,97,116,101,32,116,104,101,32,116,111,112,32,105,116, + 101,109,32,111,110,32,116,104,101,32,115,116,97,99,107,46,0,68,117,112, + 108,105,99,97,116,101,32,116,104,101,32,116,111,112,32,116,119,111,32,105, + 116,101,109,115,32,111,110,32,116,104,101,32,115,116,97,99,107,46,0,67, + 111,110,115,116,97,110,116,46,32,78,101,103,97,116,105,118,101,32,105,110, + 102,105,110,105,116,121,46,32,32,70,111,114,32,101,110,99,111,100,101,100, + 32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97,108,117, + 101,115,46,0,73,115,32,101,110,99,111,100,101,100,32,118,97,108,117,101, + 32,110,101,103,97,116,105,118,101,32,105,110,102,105,110,105,116,121,63,0, + 67,111,110,115,116,97,110,116,46,32,73,110,102,105,110,105,116,121,46,32, + 70,111,114,32,101,110,99,111,100,101,100,32,102,108,111,97,116,105,110,103, + 45,112,111,105,110,116,32,118,97,108,117,101,115,46,0,67,111,110,115,116, + 97,110,116,46,32,77,97,120,105,109,117,109,32,118,97,108,117,101,46,32, + 70,111,114,32,101,110,99,111,100,101,100,32,102,108,111,97,116,105,110,103, + 45,112,111,105,110,116,32,118,97,108,117,101,115,46,0,67,111,110,115,116, + 97,110,116,46,32,77,105,110,105,109,117,109,32,118,97,108,117,101,46,32, + 70,111,114,32,101,110,99,111,100,101,100,32,102,108,111,97,116,105,110,103, + 45,112,111,105,110,116,32,118,97,108,117,101,115,46,0,67,111,110,115,116, + 97,110,116,46,32,78,111,116,32,97,32,78,117,109,98,101,114,46,32,70, + 111,114,32,101,110,99,111,100,101,100,32,102,108,111,97,116,105,110,103,45, + 112,111,105,110,116,32,118,97,108,117,101,115,46,0,67,111,110,115,116,114, + 97,105,110,32,116,104,101,32,101,110,99,111,100,101,100,32,118,97,108,117, + 101,32,116,111,32,116,104,101,32,97,108,108,111,119,97,98,108,101,32,114, + 97,110,103,101,46,0,73,115,32,101,110,99,111,100,101,100,32,118,97,108, + 117,101,32,105,110,102,105,110,105,116,121,63,0,73,115,32,101,110,99,111, + 100,101,100,32,118,97,108,117,101,32,97,116,32,116,104,101,32,109,97,120, + 105,109,117,109,63,0,73,115,32,101,110,99,111,100,101,100,32,118,97,108, + 117,101,32,97,116,32,116,104,101,32,109,105,110,105,109,117,109,63,0,82, + 101,116,117,114,110,32,96,84,82,85,69,96,32,105,102,32,116,104,101,32, + 101,110,99,111,100,101,100,32,118,97,108,117,101,32,105,115,32,97,32,118, + 97,108,105,100,32,110,117,109,98,101,114,44,32,111,114,32,96,70,65,76, + 83,69,96,32,111,116,104,101,114,119,105,115,101,46,0,73,115,32,101,110, + 99,111,100,101,100,32,118,97,108,117,101,32,97,32,78,97,110,63,0,68, + 105,115,112,108,97,121,32,97,110,32,101,110,99,111,100,101,100,32,110,117, + 109,98,101,114,46,0,68,101,99,111,100,101,32,97,110,32,101,110,99,111, + 100,101,100,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118, + 97,108,117,101,46,0,82,101,116,117,114,110,32,96,84,82,85,69,96,32, + 105,102,32,116,104,101,32,118,97,108,117,101,32,105,115,32,122,101,114,111, + 44,32,111,114,32,96,70,65,76,83,69,96,32,111,116,104,101,114,119,105, + 115,101,46,0,67,111,109,112,97,114,101,32,116,119,111,32,118,97,108,117, + 101,115,32,102,111,114,32,101,113,117,97,108,105,116,121,46,32,82,101,116, + 117,114,110,115,32,96,84,82,85,69,96,32,105,102,32,116,104,101,121,32, + 97,114,101,32,101,113,117,97,108,32,111,114,32,96,70,65,76,83,69,96, + 32,111,116,104,101,114,119,105,115,101,46,0,69,114,114,111,114,32,104,97, + 110,100,108,101,114,32,102,111,114,32,100,97,116,97,32,115,116,97,99,107, + 32,111,118,101,114,102,108,111,119,0,69,114,114,111,114,32,104,97,110,100, + 108,101,114,32,102,111,114,32,100,97,116,97,32,115,116,97,99,107,32,117, + 110,100,101,114,102,108,111,119,46,0,86,101,99,116,111,114,101,100,46,32, + 69,114,114,111,114,32,104,97,110,100,108,101,114,46,32,67,97,108,108,101, + 100,32,119,104,101,110,32,97,32,119,111,114,100,32,105,115,32,110,111,116, + 32,102,111,117,110,100,32,98,121,32,96,105,110,116,101,114,112,114,101,116, + 96,46,0,83,101,116,32,116,104,101,32,100,101,102,97,117,108,116,32,101, + 114,114,111,114,32,104,97,110,100,108,101,114,115,32,102,111,114,32,118,97, + 114,105,111,117,115,32,99,111,110,100,105,116,105,111,110,115,46,0,83,101, + 116,32,101,114,114,111,114,32,104,97,110,100,108,101,114,32,102,111,114,32, + 101,114,114,111,114,32,99,111,100,101,32,78,46,32,0,77,117,108,116,105, + 112,108,121,32,116,119,111,32,102,108,111,97,116,105,110,103,45,112,111,105, + 110,116,32,110,117,109,98,101,114,115,44,32,114,101,116,117,114,110,105,110, + 103,32,116,104,101,32,114,101,115,117,108,116,46,0,65,100,100,32,116,119, + 111,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117,109, + 98,101,114,115,44,32,114,101,116,117,114,110,105,110,103,32,116,104,101,32, + 114,101,115,117,108,116,46,0,83,117,98,116,114,97,99,116,32,70,50,32, + 102,114,111,109,32,70,49,32,114,101,116,117,114,110,105,110,103,32,116,104, + 101,32,114,101,115,117,108,116,46,0,82,101,116,117,114,110,32,97,32,118, + 97,108,117,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116, + 111,32,110,101,103,97,116,105,118,101,32,105,110,102,105,110,105,116,121,0, + 67,111,109,112,97,114,101,32,116,119,111,32,102,108,111,97,116,105,110,103, + 45,112,111,105,110,116,32,118,97,108,117,101,115,32,102,111,114,32,105,110, + 101,113,117,97,108,105,116,121,46,32,82,101,116,117,114,110,115,32,96,84, + 82,85,69,96,32,105,102,32,116,104,101,121,32,97,114,101,32,110,111,116, + 32,101,113,117,97,108,32,111,114,32,96,70,65,76,83,69,96,32,111,116, + 104,101,114,119,105,115,101,46,0,82,101,116,117,114,110,32,96,84,82,85, + 69,96,32,105,102,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116, + 32,118,97,108,117,101,32,105,115,32,45,73,78,70,32,111,114,32,96,70, + 65,76,83,69,96,32,111,116,104,101,114,119,105,115,101,46,0,68,105,118, + 105,100,101,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118, + 97,108,117,101,32,70,49,32,98,121,32,70,50,46,0,82,101,116,117,114, + 110,32,116,104,101,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116, + 32,118,97,108,117,101,32,102,111,114,32,69,117,108,101,114,39,115,32,110, + 117,109,98,101,114,46,0,72,111,111,107,46,32,82,101,116,117,114,110,32, + 97,32,99,111,110,115,116,97,110,116,32,117,115,101,100,32,97,115,32,116, + 104,101,32,115,99,97,108,105,110,103,32,102,97,99,116,111,114,32,102,111, + 114,32,116,104,101,32,101,58,32,119,111,114,100,115,46,0,82,101,116,117, + 114,110,32,97,32,118,97,108,117,101,32,99,111,114,114,101,115,112,111,110, + 100,105,110,103,32,116,111,32,112,111,115,105,116,105,118,101,32,105,110,102, + 105,110,105,116,121,0,82,101,116,117,114,110,32,97,32,118,97,108,117,101, + 32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116,111,32,78,97, + 78,0,82,101,116,117,114,110,32,116,104,101,32,102,108,111,97,116,105,110, + 103,45,112,111,105,110,116,32,118,97,108,117,101,32,102,111,114,32,80,73, + 46,0,82,101,116,117,114,110,32,116,104,101,32,97,98,115,111,108,117,116, + 101,32,118,97,108,117,101,32,102,111,114,32,97,32,102,108,111,97,116,105, + 110,103,45,112,111,105,110,116,32,118,97,108,117,101,46,0,82,101,116,117, + 114,110,32,116,104,101,32,97,114,99,32,99,111,115,105,110,101,32,111,102, + 32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117, + 109,98,101,114,46,0,82,101,116,117,114,110,32,116,104,101,32,110,117,109, + 98,101,114,32,111,102,32,105,116,101,109,115,32,111,110,32,116,104,101,32, + 97,108,116,101,114,110,97,116,101,32,102,108,111,97,116,105,110,103,45,112, + 111,105,110,116,32,115,116,97,99,107,46,0,82,101,116,117,114,110,32,116, + 104,101,32,97,114,99,32,115,105,110,101,32,111,102,32,97,32,102,108,111, + 97,116,105,110,103,45,112,111,105,110,116,32,110,117,109,98,101,114,46,0, + 82,101,116,117,114,110,32,116,104,101,32,97,114,99,32,116,97,110,103,101, + 110,116,32,111,102,32,97,32,102,108,111,97,116,105,110,103,45,112,111,105, + 110,116,32,110,117,109,98,101,114,46,0,82,101,116,117,114,110,32,84,82, + 85,69,32,105,102,32,110,117,109,98,101,114,32,105,115,32,98,101,116,119, + 101,101,110,32,116,104,101,32,108,111,119,101,114,32,40,108,41,32,97,110, + 100,32,117,112,112,101,114,32,40,117,41,32,98,111,117,110,100,115,46,32, + 73,102,32,110,111,116,44,32,114,101,116,117,114,110,32,70,65,76,83,69, + 46,32,84,104,105,115,32,105,115,32,105,110,99,108,117,115,105,118,101,32, + 111,102,32,116,104,101,32,108,105,109,105,116,115,46,0,73,102,32,96,110, + 96,32,105,115,32,101,113,117,97,108,32,116,111,32,96,109,96,44,32,100, + 114,111,112,32,98,111,116,104,32,97,110,100,32,101,120,101,99,117,116,101, + 32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,113,117,111,116,101, + 32,98,101,102,111,114,101,32,101,120,105,116,105,110,103,32,116,104,101,32, + 99,97,108,108,105,110,103,32,119,111,114,100,46,32,73,102,32,110,111,116, + 32,101,113,117,97,108,44,32,108,101,97,118,101,32,96,110,96,32,111,110, + 32,116,104,101,32,115,116,97,99,107,32,97,110,100,32,108,101,116,32,101, + 120,101,99,117,116,105,111,110,32,99,111,110,116,105,110,117,101,46,0,82, + 101,116,117,114,110,32,116,104,101,32,115,109,97,108,108,101,115,116,32,105, + 110,116,101,103,114,97,108,32,118,97,108,117,101,32,103,114,101,97,116,101, + 114,32,116,104,97,110,32,111,114,32,101,113,117,97,108,32,116,111,32,116, + 104,101,32,115,112,101,99,105,102,105,101,100,32,118,97,108,117,101,46,0, + 82,101,116,117,114,110,32,116,104,101,32,99,111,115,105,110,101,32,111,102, + 32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117, + 109,98,101,114,46,0,68,101,99,114,101,109,101,110,116,32,110,32,98,121, + 32,111,110,101,46,0,82,101,116,117,114,110,32,116,104,101,32,110,117,109, + 98,101,114,32,111,102,32,105,116,101,109,115,32,111,110,32,116,104,101,32, + 102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,115,116,97,99,107, + 46,0,68,105,115,99,97,114,100,32,116,104,101,32,116,111,112,32,105,116, + 101,109,32,111,110,32,116,104,101,32,102,108,111,97,116,105,110,103,45,112, + 111,105,110,116,32,115,116,97,99,107,46,0,82,101,109,111,118,101,32,116, + 111,112,32,116,119,111,32,105,116,101,109,115,32,111,110,32,116,104,101,32, + 115,116,97,99,107,46,0,68,105,115,112,108,97,121,32,116,104,101,32,105, + 116,101,109,115,32,111,110,32,116,104,101,32,97,108,116,101,114,110,97,116, + 101,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,115,116,97, + 99,107,46,0,68,105,115,112,108,97,121,32,116,104,101,32,105,116,101,109, + 115,32,111,110,32,116,104,101,32,102,108,111,97,116,105,110,103,45,112,111, + 105,110,116,32,115,116,97,99,107,46,0,68,117,112,108,105,99,97,116,101, + 32,116,104,101,32,116,111,112,32,105,116,101,109,32,111,110,32,116,104,101, + 32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,115,116,97,99, + 107,46,0,68,117,112,108,105,99,97,116,101,32,116,104,101,32,116,111,112, + 32,116,119,111,32,105,116,101,109,115,32,111,110,32,116,104,101,32,115,116, + 97,99,107,46,0,67,111,109,112,97,114,101,32,116,119,111,32,102,108,111, + 97,116,105,110,103,45,112,111,105,110,116,32,118,97,108,117,101,115,32,102, + 111,114,32,101,113,117,97,108,105,116,121,46,32,82,101,116,117,114,110,115, + 32,96,84,82,85,69,96,32,105,102,32,116,104,101,121,32,97,114,101,32, + 101,113,117,97,108,32,111,114,32,96,70,65,76,83,69,96,32,111,116,104, + 101,114,119,105,115,101,46,0,70,101,116,99,104,32,97,32,115,116,111,114, + 101,100,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97, + 108,117,101,46,0,80,101,114,102,111,114,109,32,97,32,109,97,116,104,101, + 109,97,116,105,99,97,108,32,102,108,111,111,114,32,111,112,101,114,97,116, + 105,111,110,32,111,110,32,116,104,101,32,102,108,111,97,116,105,110,103,45, + 112,111,105,110,116,32,118,97,108,117,101,46,0,67,111,109,112,97,114,101, + 32,116,119,111,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32, + 118,97,108,117,101,115,32,102,111,114,32,103,114,101,97,116,101,114,32,116, + 104,97,110,46,0,73,110,99,114,101,109,101,110,116,32,110,32,98,121,32, + 111,110,101,46,0,82,101,116,117,114,110,32,96,84,82,85,69,96,32,105, + 102,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97,108, + 117,101,32,105,115,32,73,78,70,32,111,114,32,96,70,65,76,83,69,96, + 32,111,116,104,101,114,119,105,115,101,46,0,82,101,116,117,114,110,32,110, + 32,105,102,32,105,116,32,105,115,32,119,105,116,104,105,110,32,116,104,101, + 32,108,111,119,101,114,32,40,108,41,32,97,110,100,32,117,112,112,101,114, + 32,40,117,41,32,98,111,117,110,100,115,46,32,73,102,32,111,117,116,115, + 105,100,101,32,116,104,101,32,98,111,117,110,100,115,44,32,114,101,116,117, + 114,110,32,116,104,101,32,99,108,111,115,101,115,32,98,111,117,110,100,97, + 114,121,32,118,97,108,117,101,46,0,82,101,116,117,114,110,32,108,111,103, + 40,70,49,41,32,102,111,114,32,98,97,115,101,32,70,50,32,102,111,114, + 32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97,108,117, + 101,115,46,0,67,111,109,112,97,114,101,32,116,119,111,32,102,108,111,97, + 116,105,110,103,45,112,111,105,110,116,32,118,97,108,117,101,115,32,102,111, + 114,32,108,101,115,115,32,116,104,97,110,46,0,82,101,116,117,114,110,32, + 116,104,101,32,103,114,101,97,116,101,114,32,111,102,32,116,119,111,32,118, + 97,108,117,101,115,46,0,82,101,116,117,114,110,32,116,104,101,32,108,101, + 115,115,101,114,32,111,102,32,116,119,111,32,118,97,108,117,101,115,46,0, + 82,101,116,117,114,110,32,96,84,82,85,69,96,32,105,102,32,102,108,111, + 97,116,105,110,103,45,112,111,105,110,116,32,118,97,108,117,101,32,105,115, + 32,78,97,78,32,111,114,32,96,70,65,76,83,69,96,32,111,116,104,101, + 114,119,105,115,101,46,0,73,110,118,101,114,116,32,116,104,101,32,115,105, + 103,110,32,111,102,32,116,104,101,32,102,108,111,97,116,105,110,103,45,112, + 111,105,110,116,32,118,97,108,117,101,46,0,82,101,116,117,114,110,32,96, + 84,82,85,69,96,32,105,102,32,102,108,111,97,116,105,110,103,45,112,111, + 105,110,116,32,118,97,108,117,101,32,105,115,32,110,101,103,97,116,105,118, + 101,32,111,114,32,96,70,65,76,83,69,96,32,105,102,32,110,111,116,46, + 0,82,101,109,111,118,101,32,116,104,101,32,115,101,99,111,110,100,32,105, + 116,101,109,32,102,114,111,109,32,116,104,101,32,115,116,97,99,107,46,0, + 80,117,116,32,97,32,99,111,112,121,32,111,102,32,116,104,101,32,115,101, + 99,111,110,100,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32, + 118,97,108,117,101,32,111,118,101,114,32,116,104,101,32,116,111,112,32,111, + 110,101,46,0,80,111,112,32,97,32,102,108,111,97,116,105,110,103,45,112, + 111,105,110,116,32,118,97,108,117,101,32,102,114,111,109,32,116,104,101,32, + 97,108,116,101,114,110,97,116,101,32,115,116,97,99,107,46,0,82,101,116, + 117,114,110,32,96,84,82,85,69,96,32,105,102,32,102,108,111,97,116,105, + 110,103,45,112,111,105,110,116,32,118,97,108,117,101,32,105,115,32,112,111, + 115,105,116,105,118,101,32,111,114,32,96,70,65,76,83,69,96,32,111,116, + 104,101,114,119,105,115,101,46,0,82,101,116,117,114,110,32,70,49,94,70, + 50,32,102,111,114,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116, + 32,118,97,108,117,101,115,46,0,80,117,115,104,32,97,32,102,108,111,97, + 116,105,110,103,45,112,111,105,110,116,32,118,97,108,117,101,32,116,111,32, + 97,110,32,97,108,116,101,114,110,97,116,105,118,101,32,115,116,97,99,107, + 46,0,68,105,115,112,108,97,121,32,97,32,102,108,111,97,116,105,110,103, + 45,112,111,105,110,116,32,110,117,109,98,101,114,46,0,82,111,116,97,116, + 101,32,116,104,101,32,116,111,112,32,116,104,114,101,101,32,118,97,108,117, + 101,115,46,0,82,111,117,110,100,32,97,32,102,108,111,97,116,105,110,103, + 45,112,111,105,110,116,32,118,97,108,117,101,46,0,82,101,116,117,114,110, + 32,49,32,105,102,32,116,104,101,32,102,108,111,97,116,105,110,103,45,112, + 111,105,110,116,32,118,97,108,117,101,32,105,115,32,112,111,115,105,116,105, + 118,101,32,111,114,32,45,49,32,105,102,32,105,116,32,105,115,32,110,101, + 103,97,116,105,118,101,46,0,82,101,116,117,114,110,32,116,104,101,32,115, + 113,117,97,114,101,32,114,111,111,116,32,111,102,32,97,32,102,108,111,97, + 116,105,110,103,45,112,111,105,110,116,32,110,117,109,98,101,114,46,0,82, + 101,116,117,114,110,32,116,104,101,32,115,113,117,97,114,101,32,111,102,32, + 97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117,109, + 98,101,114,46,0,82,101,116,117,114,110,32,116,104,101,32,115,105,110,101, + 32,111,102,32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116, + 32,110,117,109,98,101,114,46,0,82,101,116,117,114,110,32,116,104,101,32, + 115,113,117,97,114,101,32,114,111,111,116,32,111,102,32,97,32,102,108,111, + 97,116,105,110,103,45,112,111,105,110,116,32,110,117,109,98,101,114,46,0, + 82,101,116,117,114,110,32,116,104,101,32,115,113,117,97,114,101,32,111,102, + 32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117, + 109,98,101,114,46,0,83,116,111,114,101,32,97,32,102,108,111,97,116,105, + 110,103,45,112,111,105,110,116,32,118,97,108,117,101,32,116,111,32,116,104, + 101,32,115,112,101,99,105,102,105,101,100,32,109,101,109,111,114,121,32,108, + 111,99,97,116,105,111,110,46,0,69,120,99,104,97,110,103,101,32,116,104, + 101,32,116,111,112,32,97,110,100,32,115,101,99,111,110,100,32,105,116,101, + 109,115,32,111,110,32,116,104,101,32,102,108,111,97,116,105,110,103,45,112, + 111,105,110,116,32,115,116,97,99,107,46,0,82,101,116,117,114,110,32,116, + 104,101,32,116,97,110,103,101,110,116,32,111,102,32,97,32,102,108,111,97, + 116,105,110,103,45,112,111,105,110,116,32,110,117,109,98,101,114,46,0,69, + 110,99,111,100,101,32,116,104,101,32,102,108,111,97,116,105,110,103,45,112, + 111,105,110,116,32,118,97,108,117,101,32,116,111,32,97,110,32,105,110,116, + 101,103,101,114,46,0,67,111,110,118,101,114,116,32,97,32,102,108,111,97, + 116,105,110,103,45,112,111,105,110,116,32,118,97,108,117,101,32,105,110,116, + 111,32,97,32,110,117,109,98,101,114,46,0,67,111,110,118,101,114,116,32, + 97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97,108, + 117,101,32,105,110,116,111,32,97,32,115,116,114,105,110,103,46,0,84,117, + 99,107,32,97,32,99,111,112,121,32,111,102,32,116,104,101,32,116,111,112, + 32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97,108,117, + 101,32,117,110,100,101,114,32,116,104,101,32,115,101,99,111,110,100,32,111, + 110,101,46,0,70,101,116,99,104,32,116,104,101,32,118,97,108,117,101,32, + 115,116,111,114,101,100,32,97,116,32,116,104,101,32,115,112,101,99,105,102, + 105,101,100,32,97,100,100,114,101,115,115,46,0,70,101,116,99,104,32,116, + 104,101,32,118,97,108,117,101,32,115,116,111,114,101,100,32,97,116,32,116, + 104,101,32,115,112,101,99,105,102,105,101,100,32,97,100,100,114,101,115,115, + 46,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,120,116,32,97, + 100,100,114,101,115,115,32,97,110,100,32,116,104,101,32,118,97,108,117,101, + 46,0,73,110,118,111,107,101,32,97,110,32,70,70,73,32,102,117,110,99, + 116,105,111,110,46,32,83,101,116,32,116,104,101,32,115,116,97,99,107,32, + 97,115,32,110,101,101,100,101,100,44,32,97,110,100,32,112,97,115,115,32, + 116,104,101,32,70,70,73,32,104,97,110,100,108,101,32,116,111,32,116,104, + 105,115,46,0,77,97,112,32,105,110,32,97,32,115,121,109,98,111,108,32, + 102,114,111,109,32,97,32,115,104,97,114,101,100,32,108,105,98,114,97,114, + 121,32,111,114,32,111,98,106,101,99,116,32,102,105,108,101,46,32,82,101, + 116,117,114,110,115,32,97,110,32,70,70,73,32,104,97,110,100,108,101,46, + 0,79,112,101,110,32,97,32,115,104,97,114,101,100,32,108,105,98,114,97, + 114,121,32,111,114,32,111,98,106,101,99,116,32,102,105,108,101,46,0,84, + 114,105,103,103,101,114,32,97,110,32,105,47,111,32,111,112,101,114,97,116, + 105,111,110,32,117,115,105,110,103,32,116,104,101,32,70,70,73,32,100,101, + 118,105,99,101,46,0,67,111,110,115,116,97,110,116,32,102,111,114,32,111, + 112,101,110,105,110,103,32,97,32,102,105,108,101,32,105,110,32,65,80,80, + 69,78,68,32,109,111,100,101,46,0,67,111,110,115,116,97,110,116,32,102, + 111,114,32,111,112,101,110,105,110,103,32,97,32,102,105,108,101,32,105,110, + 32,82,69,65,68,32,109,111,100,101,46,0,67,111,110,115,116,97,110,116, + 32,102,111,114,32,111,112,101,110,105,110,103,32,97,32,102,105,108,101,32, + 105,110,32,82,69,65,68,32,38,32,87,82,73,84,69,32,109,111,100,101, + 46,0,67,111,110,115,116,97,110,116,32,102,111,114,32,111,112,101,110,105, + 110,103,32,97,32,102,105,108,101,32,105,110,32,87,82,73,84,69,32,109, + 111,100,101,46,0,71,105,118,101,110,32,97,32,102,105,108,101,32,104,97, + 110,100,108,101,44,32,99,108,111,115,101,32,116,104,101,32,102,105,108,101, + 46,0,68,101,108,101,116,101,32,116,104,101,32,110,97,109,101,100,32,102, + 105,108,101,46,0,71,105,118,101,110,32,97,32,102,105,108,101,32,110,97, + 109,101,44,32,114,101,116,117,114,110,32,96,84,82,85,69,96,32,105,102, + 32,105,116,32,101,120,105,115,116,115,32,111,114,32,96,70,65,76,83,69, + 96,32,105,102,32,105,116,32,100,111,101,115,32,110,111,116,46,0,71,105, + 118,101,110,32,97,32,102,105,108,101,32,104,97,110,100,108,101,44,32,102, + 108,117,115,104,32,97,110,121,32,112,101,110,100,105,110,103,32,119,114,105, + 116,101,115,32,116,111,32,100,105,115,107,46,0,71,105,118,101,110,32,97, + 32,102,105,108,101,32,110,97,109,101,44,32,111,112,101,110,32,105,116,32, + 97,110,100,32,114,117,110,32,116,104,101,32,113,117,111,116,101,32,111,110, + 99,101,32,102,111,114,32,101,97,99,104,32,108,105,110,101,32,105,110,32, + 116,104,101,32,102,105,108,101,46,0,79,112,101,110,32,97,32,110,97,109, + 101,100,32,102,105,108,101,32,40,115,41,32,119,105,116,104,32,116,104,101, + 32,103,105,118,101,110,32,109,111,100,101,32,40,109,41,46,32,82,101,116, + 117,114,110,115,32,97,32,104,97,110,100,108,101,32,105,100,101,110,116,105, + 102,121,105,110,103,32,116,104,101,32,102,105,108,101,46,0,79,112,101,110, + 32,97,32,102,105,108,101,32,102,111,114,32,114,101,97,100,105,110,103,32, + 38,32,119,114,105,116,105,110,103,46,32,82,101,116,117,114,110,115,32,116, + 104,101,32,115,105,122,101,32,40,78,79,83,41,32,97,110,100,32,97,32, + 102,105,108,101,32,73,68,32,40,84,79,83,41,0,79,112,101,110,32,97, + 32,102,105,108,101,32,102,111,114,32,114,101,97,100,105,110,103,46,32,82, + 101,116,117,114,110,115,32,116,104,101,32,115,105,122,101,32,40,78,79,83, + 41,32,97,110,100,32,97,32,102,105,108,101,32,73,68,32,40,84,79,83, + 41,0,79,112,101,110,32,97,32,102,105,108,101,32,102,111,114,32,119,114, + 105,116,105,110,103,46,32,82,101,116,117,114,110,115,32,116,104,101,32,102, + 105,108,101,32,73,68,0,84,114,105,103,103,101,114,32,97,32,102,105,108, + 101,32,73,47,79,32,111,112,101,114,97,116,105,111,110,46,32,84,104,105, + 115,32,105,115,32,110,111,116,32,105,110,116,101,110,100,101,100,32,116,111, + 32,98,101,32,117,115,101,100,32,100,105,114,101,99,116,108,121,46,0,71, + 105,118,101,110,32,97,32,102,105,108,101,32,104,97,110,100,108,101,44,32, + 114,101,97,100,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,32, + 110,101,120,116,32,98,121,116,101,32,105,110,32,105,116,46,0,71,105,118, + 101,110,32,97,32,102,105,108,101,32,104,97,110,100,108,101,44,32,114,101, + 97,100,32,97,32,108,105,110,101,32,97,110,100,32,114,101,116,117,114,110, + 32,97,32,112,111,105,110,116,101,114,32,116,111,32,105,116,46,0,71,105, + 118,101,110,32,97,32,112,111,105,110,116,101,114,44,32,97,32,99,111,117, + 110,116,44,32,97,110,100,32,97,32,102,105,108,101,32,104,97,110,100,108, + 101,44,32,114,101,97,100,32,97,110,100,32,115,116,111,114,101,32,116,104, + 101,32,114,101,113,117,101,115,116,101,100,32,110,117,109,98,101,114,32,111, + 102,32,98,121,116,101,115,32,105,110,116,111,32,109,101,109,111,114,121,44, + 32,115,116,97,114,116,105,110,103,32,97,116,32,116,104,101,32,115,112,101, + 99,105,102,105,101,100,32,97,100,100,114,101,115,115,46,0,71,105,118,101, + 110,32,97,32,102,105,108,101,32,104,97,110,100,108,101,44,32,114,101,97, + 100,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,32,110,101,120, + 116,32,99,104,97,114,97,99,116,101,114,32,105,110,32,105,116,46,32,73, + 102,32,99,111,109,112,105,108,101,100,32,119,105,116,104,32,85,84,70,51, + 50,32,115,117,112,112,111,114,116,32,116,104,105,115,32,119,105,108,108,32, + 114,101,97,100,32,97,110,100,32,99,111,110,118,101,114,116,32,85,84,70, + 56,46,0,77,111,118,101,32,116,104,101,32,99,117,114,114,101,110,116,32, + 111,102,102,115,101,116,32,105,110,116,111,32,97,32,102,105,108,101,32,116, + 111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,111,110,101,46, + 0,71,105,118,101,110,32,97,32,102,105,108,101,32,104,97,110,100,108,101, + 44,32,114,101,116,117,114,110,32,116,104,101,32,115,105,122,101,32,111,102, + 32,116,104,101,32,102,105,108,101,32,40,105,110,32,98,121,116,101,115,41, + 46,0,71,105,118,101,110,32,97,110,32,97,100,100,114,101,115,115,32,97, + 110,100,32,97,32,102,105,108,101,32,110,97,109,101,44,32,114,101,97,100, + 32,116,104,101,32,102,105,108,101,32,99,111,110,116,101,110,116,115,32,105, + 110,116,111,32,109,101,109,111,114,121,32,115,116,97,114,116,105,110,103,32, + 97,116,32,116,104,101,32,97,100,100,114,101,115,115,46,0,71,105,118,101, + 110,32,97,32,115,116,114,105,110,103,32,40,115,49,41,32,97,110,100,32, + 97,32,102,105,108,101,32,110,97,109,101,32,40,115,50,41,44,32,119,114, + 105,116,101,32,116,104,101,32,115,116,114,105,110,103,32,105,110,116,111,32, + 116,104,101,32,102,105,108,101,44,32,114,101,112,108,97,99,105,110,103,32, + 97,110,121,32,101,120,105,115,116,105,110,103,32,99,111,110,116,101,110,116, + 46,0,71,105,118,101,110,32,97,32,102,105,108,101,32,104,97,110,100,108, + 101,44,32,114,101,116,117,114,110,32,116,104,101,32,99,117,114,114,101,110, + 116,32,111,102,102,115,101,116,32,105,110,32,116,104,101,32,102,105,108,101, + 46,0,87,114,105,116,101,32,97,32,98,121,116,101,32,116,111,32,116,104, + 101,32,102,105,108,101,32,114,101,112,114,101,115,101,110,116,101,100,32,98, + 121,32,116,104,101,32,104,97,110,100,108,101,46,0,87,114,105,116,101,32, + 110,32,98,121,116,101,115,32,116,111,32,116,104,101,32,102,105,108,101,32, + 114,101,112,114,101,115,101,110,116,101,100,32,98,121,32,116,104,101,32,104, + 97,110,100,108,101,46,32,66,121,116,101,115,32,97,114,101,32,116,97,107, + 101,110,32,102,114,111,109,32,109,101,109,111,114,121,44,32,115,116,97,114, + 116,105,110,103,32,97,116,32,116,104,101,32,112,114,111,118,105,100,101,100, + 32,97,100,100,114,101,115,115,46,0,87,114,105,116,101,32,97,32,99,104, + 97,114,97,99,116,101,114,32,116,111,32,116,104,101,32,102,105,108,101,32, + 114,101,112,114,101,115,101,110,116,101,100,32,98,121,32,116,104,101,32,104, + 97,110,100,108,101,46,32,73,102,32,98,117,105,108,116,32,119,105,116,104, + 32,85,84,70,51,50,32,115,117,112,112,111,114,116,44,32,116,104,105,115, + 32,119,105,108,108,32,116,114,97,110,115,108,97,116,101,32,116,104,101,32, + 99,104,97,114,97,99,116,101,114,32,98,97,99,107,32,116,111,32,97,32, + 85,84,70,56,32,115,101,113,117,101,110,99,101,32,98,101,102,111,114,101, + 32,119,114,105,116,105,110,103,46,0,70,105,108,108,32,109,101,109,111,114, + 121,32,115,116,97,114,116,105,110,103,32,97,116,32,34,112,34,32,119,105, + 116,104,32,118,97,108,117,101,32,34,118,34,46,32,70,105,108,108,115,32, + 34,110,34,32,99,101,108,108,115,46,0,65,112,112,101,110,100,32,97,32, + 99,111,110,115,32,99,101,108,108,32,116,111,32,97,32,108,105,115,116,46, + 0,67,114,101,97,116,101,32,97,32,110,101,119,32,108,105,115,116,32,119, + 105,116,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117,101,32,97, + 115,32,116,104,101,32,99,97,114,32,111,102,32,116,104,101,32,102,105,114, + 115,116,32,110,111,100,101,46,0,82,101,109,111,118,101,32,116,104,101,32, + 115,112,101,99,105,102,105,101,100,32,99,111,110,115,32,102,114,111,109,32, + 97,32,108,105,115,116,46,0,82,101,109,111,118,101,32,116,104,101,32,108, + 97,115,116,32,99,111,110,115,32,102,114,111,109,32,97,32,108,105,115,116, + 46,0,82,117,110,32,97,32,113,117,111,116,97,116,105,111,110,32,97,103, + 97,105,110,115,116,32,101,97,99,104,32,118,97,108,117,101,32,105,110,32, + 97,32,108,105,115,116,46,0,73,110,115,101,114,116,32,97,32,110,101,119, + 32,99,111,110,115,32,40,118,41,32,105,110,116,111,32,116,104,101,32,108, + 105,115,116,32,40,112,41,44,32,97,116,32,116,104,101,32,115,112,101,99, + 105,102,105,101,100,32,105,110,100,101,120,32,40,110,41,46,0,82,101,116, + 117,114,110,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,97,32, + 108,105,115,116,46,0,68,105,115,112,108,97,121,32,116,104,101,32,40,97, + 115,32,110,117,109,98,101,114,115,41,32,118,97,108,117,101,115,32,105,110, + 32,97,32,108,105,115,116,46,0,71,105,118,101,110,32,97,32,112,111,105, + 110,116,101,114,32,116,111,32,97,32,108,105,115,116,44,32,114,101,116,117, + 114,110,32,97,32,112,111,105,110,116,101,114,32,116,111,32,116,104,101,32, + 108,97,115,116,32,99,111,110,115,32,99,101,108,108,46,0,71,105,118,101, + 110,32,97,32,110,111,100,101,32,110,117,109,98,101,114,44,32,114,101,116, + 117,114,110,32,97,32,112,111,105,110,116,101,114,32,116,111,32,116,104,101, + 32,99,111,110,115,32,99,101,108,108,32,105,110,32,116,104,101,32,108,105, + 115,116,46,0,84,114,105,103,103,101,114,32,97,32,102,108,111,97,116,105, + 110,103,45,112,111,105,110,116,32,111,112,101,114,97,116,105,111,110,46,32, + 84,104,105,115,32,105,115,32,110,111,116,32,105,110,116,101,110,100,101,100, + 32,116,111,32,98,101,32,117,115,101,100,32,100,105,114,101,99,116,108,121, + 46,0,82,117,110,32,113,117,111,116,97,116,105,111,110,32,105,110,32,97, + 110,32,101,110,100,108,101,115,115,32,108,111,111,112,46,0,83,97,118,101, + 32,118,97,108,117,101,32,111,102,32,96,72,101,97,112,96,44,32,114,117, + 110,32,116,104,101,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105, + 100,101,100,44,32,116,104,101,110,32,114,101,115,116,111,114,101,32,96,72, + 101,97,112,96,46,0,67,111,109,112,97,114,101,32,110,49,32,97,110,100, + 32,110,50,46,32,82,101,116,117,114,110,32,96,84,82,85,69,96,32,105, + 102,32,110,49,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110, + 32,110,50,44,32,111,114,32,96,70,65,76,83,69,96,32,111,116,104,101, + 114,119,105,115,101,46,0,67,111,109,112,97,114,101,32,110,49,32,97,110, + 100,32,110,50,46,32,82,101,116,117,114,110,32,96,84,82,85,69,96,32, + 105,102,32,110,49,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97, + 110,32,111,114,32,101,113,117,97,108,32,116,111,32,110,50,44,32,111,114, + 32,96,70,65,76,83,69,96,32,111,116,104,101,114,119,105,115,101,46,0, + 70,101,116,99,104,32,116,104,101,32,49,54,45,98,105,116,32,118,97,108, + 117,101,32,115,116,111,114,101,100,32,97,116,32,116,104,101,32,115,112,101, + 99,105,102,105,101,100,32,97,100,100,114,101,115,115,46,32,65,100,100,114, + 101,115,115,105,110,103,32,102,111,114,32,116,104,105,115,32,105,115,32,105, + 110,32,56,45,98,105,116,32,117,110,105,116,115,46,0,70,101,116,99,104, + 32,116,104,101,32,118,97,108,117,101,32,115,116,111,114,101,100,32,97,116, + 32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,97,100,100,114,101, + 115,115,46,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,120,116, + 32,97,100,100,114,101,115,115,32,97,110,100,32,116,104,101,32,118,97,108, + 117,101,46,0,83,116,111,114,101,32,97,110,32,49,54,45,98,105,116,32, + 118,97,108,117,101,32,105,110,116,111,32,116,104,101,32,115,112,101,99,105, + 102,105,101,100,32,97,100,100,114,101,115,115,46,32,65,100,100,114,101,115, + 115,105,110,103,32,102,111,114,32,116,104,105,115,32,105,115,32,105,110,32, + 56,45,98,105,116,32,117,110,105,116,115,46,0,83,116,111,114,101,32,97, + 32,118,97,108,117,101,32,105,110,116,111,32,116,104,101,32,115,112,101,99, + 105,102,105,101,100,32,97,100,100,114,101,115,115,32,97,110,100,32,114,101, + 116,117,114,110,32,116,104,101,32,110,101,120,116,32,97,100,100,114,101,115, + 115,46,0,82,101,116,117,114,110,32,116,104,101,32,110,101,120,116,32,102, + 114,101,101,32,97,100,100,114,101,115,115,32,105,110,32,109,101,109,111,114, + 121,46,0,83,101,116,32,96,66,97,115,101,96,32,116,111,32,104,101,120, + 97,100,101,99,105,109,97,108,46,0,65,100,100,32,97,32,104,111,111,107, + 32,112,111,105,110,116,32,105,110,116,111,32,116,104,101,32,99,117,114,114, + 101,110,116,32,119,111,114,100,46,32,84,104,105,115,32,115,104,111,117,108, + 100,32,111,110,108,121,32,98,101,32,117,115,101,100,32,97,115,32,116,104, + 101,32,102,105,114,115,116,32,119,111,114,100,32,105,110,32,97,32,100,101, + 102,105,110,105,116,105,111,110,46,0,65,115,115,101,109,98,108,101,32,116, + 104,101,32,105,110,115,116,114,117,99,116,105,111,110,115,32,115,112,101,99, + 105,102,105,101,100,32,98,121,32,116,104,101,32,115,116,114,105,110,103,32, + 105,110,116,111,32,116,104,101,32,99,117,114,114,101,110,116,32,97,115,115, + 101,109,98,108,121,32,115,99,111,112,101,46,0,69,120,101,99,117,116,101, + 32,116,104,101,32,113,117,111,116,101,32,105,102,32,116,104,101,32,102,108, + 97,103,32,105,115,32,96,84,82,85,69,96,46,0,69,120,101,99,117,116, + 101,32,116,104,101,32,113,117,111,116,97,116,105,111,110,32,105,102,32,116, + 104,101,32,102,108,97,103,32,105,115,32,96,84,82,85,69,96,46,32,73, + 102,32,116,114,117,101,44,32,97,108,115,111,32,101,120,105,116,32,116,104, + 101,32,119,111,114,100,46,0,67,104,97,110,103,101,32,116,104,101,32,99, + 108,97,115,115,32,111,102,32,116,104,101,32,109,111,115,116,32,114,101,99, + 101,110,116,108,121,32,100,101,102,105,110,101,100,32,119,111,114,100,32,116, + 111,32,96,99,108,97,115,115,58,109,97,99,114,111,96,46,0,82,117,110, + 32,116,104,101,32,99,111,100,101,32,105,110,32,116,104,101,32,115,112,101, + 99,105,102,105,101,100,32,102,105,108,101,46,32,0,82,117,110,32,97,32, + 113,117,111,116,101,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32, + 110,117,109,98,101,114,32,111,102,32,116,105,109,101,115,44,32,116,114,97, + 99,107,105,110,103,32,116,104,101,32,108,111,111,112,32,105,110,100,101,120, + 32,105,110,32,96,73,96,46,32,84,104,105,115,32,105,115,32,108,101,115, + 115,32,101,102,102,105,99,105,101,110,116,32,116,104,97,110,32,96,116,105, + 109,101,115,96,44,32,115,111,32,105,102,32,116,104,101,32,105,110,100,101, + 120,32,105,115,32,110,111,116,32,110,101,101,100,101,100,44,32,116,104,105, + 115,32,115,104,111,117,108,100,32,98,101,32,97,118,111,105,100,101,100,46, + 0,86,101,99,116,111,114,101,100,46,32,73,110,116,101,114,112,114,101,116, + 32,97,32,115,105,110,103,108,101,32,105,110,112,117,116,32,116,111,107,101, + 110,46,0,84,114,105,103,103,101,114,32,97,110,32,73,47,79,32,111,112, + 101,114,97,116,105,111,110,32,105,110,118,111,108,118,105,110,103,32,109,117, + 108,116,105,99,111,114,101,32,115,117,112,112,111,114,116,46,32,85,110,105, + 120,32,115,121,115,116,101,109,32,99,97,108,108,46,0,82,101,116,117,114, + 110,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,73,47,79,32, + 100,101,118,105,99,101,115,46,0,73,110,118,111,107,101,32,97,110,32,105, + 110,116,101,114,97,99,116,105,111,110,32,119,105,116,104,32,97,110,32,73, + 47,79,32,100,101,118,105,99,101,46,0,65,115,107,32,97,110,32,73,47, + 79,32,100,101,118,105,99,101,32,116,111,32,105,100,101,110,116,105,102,121, + 32,105,116,115,101,108,102,46,32,82,101,116,117,114,110,115,32,97,32,118, + 101,114,115,105,111,110,32,40,109,41,32,97,110,100,32,100,101,118,105,99, + 101,32,73,68,32,40,78,41,46,0,83,99,97,110,32,116,104,101,32,73, + 47,79,32,100,101,118,105,99,101,115,32,102,111,114,32,97,32,100,101,118, + 105,99,101,32,119,105,116,104,32,97,32,115,112,101,99,105,102,105,101,100, + 32,73,68,46,32,82,101,116,117,114,110,115,32,116,104,101,32,100,101,118, + 105,99,101,32,110,117,109,98,101,114,44,32,111,114,32,45,49,32,105,102, + 32,110,111,116,32,102,111,117,110,100,46,0,84,114,105,103,103,101,114,32, + 97,32,85,110,105,120,32,115,121,115,116,101,109,32,99,97,108,108,46,32, + 84,104,105,115,32,105,115,32,110,111,116,32,105,110,116,101,110,100,101,100, + 32,116,111,32,98,101,32,117,115,101,100,32,100,105,114,101,99,116,108,121, + 46,0,68,97,116,97,46,32,82,101,116,117,114,110,32,97,32,116,101,109, + 112,108,97,116,101,32,102,111,114,32,97,32,108,105,98,114,97,114,121,32, + 102,105,108,101,32,110,97,109,101,32,105,110,32,96,126,47,46,99,111,110, + 102,105,103,47,114,101,116,114,111,102,111,114,116,104,47,108,105,98,114,97, + 114,121,96,46,0,70,105,110,100,32,116,104,101,32,117,115,101,114,115,32, + 104,111,109,101,32,100,105,114,101,99,116,111,114,121,32,97,110,100,32,99, + 111,110,115,116,114,117,99,116,32,97,32,102,105,108,101,110,97,109,101,32, + 102,111,114,32,97,32,108,105,98,114,97,114,121,32,105,110,32,116,104,101, + 32,96,126,47,46,99,111,110,102,105,103,47,114,101,116,114,111,102,111,114, + 116,104,47,108,105,98,114,97,114,121,96,32,100,105,114,101,99,116,111,114, + 121,46,0,68,97,116,97,46,32,82,101,116,117,114,110,32,97,32,116,101, + 109,112,108,97,116,101,32,102,111,114,32,97,32,108,105,98,114,97,114,121, + 32,102,105,108,101,32,110,97,109,101,32,105,110,32,96,46,47,108,105,98, + 114,97,114,121,96,46,0,67,104,101,99,107,32,116,111,32,115,101,101,32, + 105,102,32,97,32,108,105,98,114,97,114,121,32,101,120,105,115,116,115,46, + 0,67,111,110,115,116,114,117,99,116,32,97,32,102,105,108,101,110,97,109, + 101,32,102,111,114,32,97,32,108,105,98,114,97,114,121,32,105,110,32,116, + 104,101,32,96,126,47,108,105,98,114,97,114,121,96,32,100,105,114,101,99, + 116,111,114,121,46,0,71,105,118,101,110,32,97,32,108,105,98,114,97,114, + 121,32,110,97,109,101,44,32,99,111,110,115,116,114,117,99,116,32,116,104, + 101,32,97,99,116,117,97,108,32,102,105,108,101,110,97,109,101,32,116,111, + 32,108,111,97,100,46,0,76,111,97,100,32,97,32,108,105,98,114,97,114, + 121,46,32,84,104,105,115,32,119,105,108,108,32,108,111,97,100,32,116,104, + 101,32,115,116,114,105,110,103,44,32,119,105,116,104,32,34,46,114,101,116, + 114,111,34,46,0,34,82,117,110,32,105,110,116,101,114,97,99,116,105,118, + 101,32,34,34,108,105,115,116,101,110,101,114,34,34,32,40,97,32,82,69, + 80,76,41,46,34,0,67,111,109,112,97,114,101,32,110,49,32,97,110,100, + 32,110,50,46,32,82,101,116,117,114,110,32,96,84,82,85,69,96,32,105, + 102,32,110,49,32,105,115,32,108,101,115,115,32,116,104,97,110,32,110,50, + 44,32,111,114,32,96,70,65,76,83,69,96,32,111,116,104,101,114,119,105, + 115,101,46,0,67,111,109,112,97,114,101,32,110,49,32,97,110,100,32,110, + 50,46,32,82,101,116,117,114,110,32,96,84,82,85,69,96,32,105,102,32, + 110,49,32,105,115,32,108,101,115,115,32,116,104,97,110,32,111,114,32,101, + 113,117,97,108,32,116,111,32,110,50,44,32,111,114,32,96,70,65,76,83, + 69,96,32,111,116,104,101,114,119,105,115,101,46,0,68,105,118,105,100,101, + 32,96,110,96,32,98,121,32,96,109,96,32,97,110,100,32,114,101,116,117, + 114,110,32,116,104,101,32,114,101,109,97,105,110,100,101,114,46,0,82,101, + 116,117,114,110,32,96,84,82,85,69,96,32,105,102,32,110,117,109,98,101, + 114,32,105,115,32,110,111,116,32,122,101,114,111,44,32,111,114,32,96,70, + 65,76,83,69,96,32,111,116,104,101,114,119,105,115,101,46,0,82,101,116, + 117,114,110,32,116,104,101,32,109,97,120,105,109,117,109,32,118,97,108,117, + 101,32,116,104,97,116,32,119,105,108,108,32,102,105,116,32,105,110,32,97, + 32,99,101,108,108,46,0,82,101,116,117,114,110,32,116,104,101,32,109,105, + 110,105,109,117,109,32,118,97,108,117,101,32,116,104,97,116,32,119,105,108, + 108,32,102,105,116,32,105,110,32,97,32,99,101,108,108,46,0,82,101,116, + 117,114,110,32,116,104,101,32,97,98,115,111,108,117,116,101,32,118,97,108, + 117,101,32,111,102,32,97,32,110,117,109,98,101,114,46,0,82,101,116,117, + 114,110,32,84,82,85,69,32,105,102,32,110,117,109,98,101,114,32,105,115, + 32,98,101,116,119,101,101,110,32,116,104,101,32,108,111,119,101,114,32,40, + 108,41,32,97,110,100,32,117,112,112,101,114,32,40,117,41,32,98,111,117, + 110,100,115,46,32,73,102,32,110,111,116,44,32,114,101,116,117,114,110,32, + 70,65,76,83,69,46,32,84,104,105,115,32,105,115,32,105,110,99,108,117, + 115,105,118,101,32,111,102,32,116,104,101,32,108,105,109,105,116,115,46,0, + 68,101,99,114,101,109,101,110,116,32,110,32,98,121,32,111,110,101,46,0, + 82,101,116,117,114,110,32,96,84,82,85,69,96,32,105,102,32,110,117,109, + 98,101,114,32,105,115,32,101,118,101,110,44,32,111,114,32,96,70,65,76, + 83,69,96,32,105,102,32,110,111,116,46,0,73,110,99,114,101,109,101,110, + 116,32,110,32,98,121,32,111,110,101,46,0,82,101,116,117,114,110,32,110, + 32,105,102,32,105,116,32,105,115,32,119,105,116,104,105,110,32,116,104,101, + 32,108,111,119,101,114,32,40,108,41,32,97,110,100,32,117,112,112,101,114, + 32,40,117,41,32,98,111,117,110,100,115,46,32,73,102,32,111,117,116,115, + 105,100,101,32,116,104,101,32,98,111,117,110,100,115,44,32,114,101,116,117, + 114,110,32,116,104,101,32,99,108,111,115,101,115,32,98,111,117,110,100,97, + 114,121,32,118,97,108,117,101,46,0,82,101,116,117,114,110,32,116,104,101, + 32,103,114,101,97,116,101,114,32,111,102,32,116,119,111,32,118,97,108,117, + 101,115,46,0,82,101,116,117,114,110,32,116,104,101,32,108,101,115,115,101, + 114,32,111,102,32,116,119,111,32,118,97,108,117,101,115,46,0,73,110,118, + 101,114,116,32,116,104,101,32,115,105,103,110,32,111,102,32,97,32,110,117, + 109,98,101,114,46,0,82,101,116,117,114,110,32,96,84,82,85,69,96,32, + 105,102,32,110,117,109,98,101,114,32,105,115,32,110,101,103,97,116,105,118, + 101,44,32,111,114,32,96,70,65,76,83,69,96,32,105,102,32,110,111,116, + 46,0,82,101,116,117,114,110,32,96,84,82,85,69,96,32,105,102,32,110, + 117,109,98,101,114,32,105,115,32,111,100,100,44,32,111,114,32,96,70,65, + 76,83,69,96,32,105,102,32,110,111,116,46,0,82,101,116,117,114,110,32, + 96,84,82,85,69,96,32,105,102,32,110,117,109,98,101,114,32,105,115,32, + 112,111,115,105,116,105,118,101,44,32,111,114,32,96,70,65,76,83,69,96, + 32,105,102,32,110,111,116,46,0,82,101,116,117,114,110,32,98,97,115,101, + 32,40,98,41,32,116,111,32,112,111,119,101,114,32,40,112,41,46,0,68, + 105,115,112,108,97,121,32,97,32,110,117,109,98,101,114,46,0,82,101,116, + 117,114,110,32,97,32,114,97,110,100,111,109,32,110,117,109,98,101,114,46, + 0,82,101,116,117,114,110,32,116,104,101,32,115,113,117,97,114,101,32,114, + 111,111,116,32,111,102,32,97,32,110,117,109,98,101,114,46,0,82,101,116, + 117,114,110,32,116,104,101,32,115,113,117,97,114,101,32,111,102,32,97,32, + 110,117,109,98,101,114,46,0,82,101,116,117,114,110,32,84,82,85,69,32, + 105,102,32,110,117,109,98,101,114,32,105,115,32,103,114,101,97,116,101,114, + 32,116,104,97,110,32,122,101,114,111,32,111,114,32,70,65,76,83,69,32, + 105,102,32,105,116,32,105,115,32,122,101,114,111,32,111,114,32,108,101,115, + 115,46,0,67,111,110,118,101,114,116,32,97,32,110,117,109,98,101,114,32, + 105,110,116,111,32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110, + 116,32,118,97,108,117,101,46,0,67,111,110,118,101,114,116,32,97,32,110, + 117,109,98,101,114,32,105,110,116,111,32,97,32,115,116,114,105,110,103,46, + 0,82,101,116,117,114,110,32,96,84,82,85,69,96,32,105,102,32,110,117, + 109,98,101,114,32,105,115,32,122,101,114,111,44,32,111,114,32,96,70,65, + 76,83,69,96,32,111,116,104,101,114,119,105,115,101,46,0,82,101,109,111, + 118,101,32,116,104,101,32,115,101,99,111,110,100,32,105,116,101,109,32,102, + 114,111,109,32,116,104,101,32,115,116,97,99,107,46,0,68,105,115,112,108, + 97,121,32,97,32,110,101,119,108,105,110,101,46,0,80,101,114,102,111,114, + 109,32,97,32,108,111,103,105,99,97,108,32,78,79,84,32,111,112,101,114, + 97,116,105,111,110,46,0,83,101,116,32,96,66,97,115,101,96,32,116,111, + 32,111,99,116,97,108,46,0,80,101,114,102,111,114,109,32,97,32,98,105, + 116,119,105,115,101,32,79,82,32,98,101,116,119,101,101,110,32,116,104,101, + 32,112,114,111,118,105,100,101,100,32,118,97,108,117,101,115,46,0,80,117, + 116,32,97,32,99,111,112,121,32,111,102,32,110,32,111,118,101,114,32,109, + 46,0,80,97,99,107,32,102,111,117,114,32,56,45,98,105,116,32,118,97, + 108,117,101,115,32,105,110,116,111,32,97,32,51,50,45,98,105,116,32,118, + 97,108,117,101,46,0,77,111,118,101,32,97,32,118,97,108,117,101,32,102, + 114,111,109,32,116,104,101,32,114,101,116,117,114,110,32,115,116,97,99,107, + 32,116,111,32,116,104,101,32,100,97,116,97,32,115,116,97,99,107,46,0, + 67,104,97,110,103,101,32,116,104,101,32,99,108,97,115,115,32,111,102,32, + 116,104,101,32,109,111,115,116,32,114,101,99,101,110,116,108,121,32,100,101, + 102,105,110,101,100,32,119,111,114,100,32,116,111,32,96,99,108,97,115,115, + 58,112,114,105,109,105,116,105,118,101,96,46,0,77,111,118,101,32,97,32, + 118,97,108,117,101,32,102,114,111,109,32,116,104,101,32,100,97,116,97,32, + 115,116,97,99,107,32,116,111,32,116,104,101,32,114,101,116,117,114,110,32, + 115,116,97,99,107,46,0,76,111,111,107,117,112,32,97,32,114,101,102,101, + 114,101,110,99,101,32,98,121,32,110,97,109,101,32,97,110,100,32,105,110, + 108,105,110,101,32,105,116,115,32,112,111,105,110,116,101,114,32,116,111,32, + 116,104,101,32,99,117,114,114,101,110,116,32,97,115,115,101,109,98,108,121, + 32,115,101,103,109,101,110,116,46,0,67,104,97,110,103,101,32,116,104,101, + 32,99,108,97,115,115,32,104,97,110,100,108,101,114,32,111,102,32,116,104, + 101,32,109,111,115,116,32,114,101,99,101,110,116,108,121,32,100,101,102,105, + 110,101,100,32,119,111,114,100,32,116,111,32,116,104,101,32,115,112,101,99, + 105,102,105,101,100,32,111,110,101,46,0,82,101,115,116,114,117,99,116,117, + 114,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,105,116,101,109, + 115,32,111,110,32,116,104,101,32,115,116,97,99,107,46,0,66,101,103,105, + 110,32,97,110,32,117,110,99,111,110,100,105,116,105,111,110,97,108,32,108, + 111,111,112,46,0,82,101,109,111,118,101,32,97,108,108,32,105,116,101,109, + 115,32,102,114,111,109,32,116,104,101,32,115,116,97,99,107,46,0,82,111, + 116,97,116,101,32,116,104,101,32,116,111,112,32,116,104,114,101,101,32,118, + 97,108,117,101,115,46,0,67,111,109,112,105,108,101,32,116,104,101,32,99, + 111,100,101,32,110,101,101,100,101,100,32,116,111,32,112,117,115,104,32,97, + 32,115,116,114,105,110,103,32,112,111,105,110,116,101,114,32,116,111,32,116, + 104,101,32,115,116,97,99,107,32,97,110,100,32,105,110,108,105,110,101,32, + 116,104,101,32,115,116,114,105,110,103,32,100,97,116,97,32,105,110,116,111, + 32,116,104,101,32,99,117,114,114,101,110,116,32,100,101,102,105,110,105,116, + 105,111,110,46,0,67,111,110,115,116,97,110,116,46,32,82,101,116,117,114, + 110,115,32,97,32,115,116,114,105,110,103,32,111,102,32,116,104,101,32,65, + 83,67,73,73,32,108,101,116,116,101,114,115,32,40,117,112,112,101,114,32, + 97,110,100,32,108,111,119,101,114,32,99,97,115,101,41,0,67,111,110,115, + 116,97,110,116,46,32,82,101,116,117,114,110,115,32,97,32,115,116,114,105, + 110,103,32,111,102,32,116,104,101,32,65,83,67,73,73,32,108,101,116,116, + 101,114,115,32,105,110,32,108,111,119,101,114,99,97,115,101,0,67,111,110, + 115,116,97,110,116,46,32,82,101,116,117,114,110,115,32,97,32,115,116,114, + 105,110,103,32,111,102,32,116,104,101,32,65,83,67,73,73,32,108,101,116, + 116,101,114,115,32,105,110,32,117,112,112,101,114,99,97,115,101,0,67,111, + 110,115,116,97,110,116,46,32,82,101,116,117,114,110,32,97,32,115,116,114, + 105,110,103,32,111,102,32,99,104,97,114,97,99,116,101,114,115,32,114,101, + 99,111,103,110,105,122,101,100,32,97,115,32,110,117,109,101,114,105,99,32, + 100,105,103,105,116,115,46,0,67,111,110,115,116,97,110,116,46,32,82,101, + 116,117,114,110,32,97,32,115,116,114,105,110,103,32,111,102,32,99,104,97, + 114,97,99,116,101,114,115,32,114,101,99,111,103,110,105,122,101,100,32,97, + 115,32,112,117,110,99,116,117,97,116,105,111,110,46,0,67,111,110,115,116, + 97,110,116,46,32,82,101,116,117,114,110,115,32,97,32,115,116,114,105,110, + 103,32,111,102,32,99,104,97,114,97,99,116,101,114,115,32,114,101,99,111, + 103,110,105,122,101,100,32,97,115,32,119,104,105,116,101,115,112,97,99,101, + 46,0,82,101,116,117,114,110,32,97,32,110,101,119,32,115,116,114,105,110, + 103,32,99,111,110,115,105,115,116,105,110,103,32,111,102,32,115,49,32,102, + 111,108,108,111,119,101,100,32,98,121,32,115,50,46,0,82,101,116,117,114, + 110,32,96,84,82,85,69,96,32,105,102,32,115,49,32,98,101,103,105,110, + 115,32,119,105,116,104,32,115,50,32,111,114,32,96,70,65,76,83,69,96, + 32,111,116,104,101,114,119,105,115,101,46,0,73,102,32,116,104,101,32,96, + 115,96,32,109,97,116,99,104,101,115,32,96,83,96,44,32,100,105,115,99, + 97,114,100,32,96,115,96,32,97,110,100,32,114,117,110,32,116,104,101,32, + 113,117,111,116,101,32,98,101,102,111,114,101,32,101,120,105,116,105,110,103, + 32,116,104,101,32,99,97,108,108,101,114,46,32,73,102,32,116,104,101,121, + 32,100,111,32,110,111,116,32,109,97,116,99,104,44,32,100,105,115,99,97, + 114,100,32,116,104,101,32,113,117,111,116,101,32,97,110,100,32,108,101,97, + 118,101,32,96,115,96,32,111,110,32,116,104,101,32,115,116,97,99,107,46, + 0,82,101,109,111,118,101,32,116,104,101,32,108,97,115,116,32,99,104,97, + 114,97,99,116,101,114,32,102,114,111,109,32,97,32,115,116,114,105,110,103, + 46,32,82,101,116,117,114,110,115,32,97,32,110,101,119,32,115,116,114,105, + 110,103,46,0,67,114,101,97,116,101,32,97,32,99,111,110,115,116,97,110, + 116,32,110,97,109,101,100,32,115,50,44,32,114,101,116,117,114,110,105,110, + 103,32,97,32,112,111,105,110,116,101,114,32,116,111,32,115,49,46,32,84, + 104,105,115,32,119,105,108,108,32,117,115,101,32,96,115,58,107,101,101,112, + 96,32,116,111,32,112,114,101,115,101,114,118,101,32,116,104,101,32,111,114, + 105,103,105,110,97,108,32,115,116,114,105,110,103,46,0,82,101,116,117,114, + 110,32,96,84,82,85,69,96,32,105,102,32,116,104,101,32,99,104,97,114, + 97,99,116,101,114,32,105,115,32,112,114,101,115,101,110,116,32,105,110,32, + 116,104,101,32,115,116,114,105,110,103,32,111,114,32,96,70,65,76,83,69, + 96,32,111,116,104,101,114,119,105,115,101,46,0,82,101,116,117,114,110,32, + 96,84,82,85,69,96,32,105,102,32,116,104,101,32,115,101,99,111,110,100, + 32,115,116,114,105,110,103,32,105,115,32,112,114,101,115,101,110,116,32,105, + 110,32,116,104,101,32,102,105,114,115,116,32,115,116,114,105,110,103,32,111, + 114,32,96,70,65,76,83,69,96,32,111,116,104,101,114,119,105,115,101,46, + 0,67,111,112,121,32,97,32,115,116,114,105,110,103,32,40,115,41,32,116, + 111,32,97,32,100,101,115,116,105,110,97,116,105,111,110,32,40,97,41,46, + 32,84,104,105,115,32,119,105,108,108,32,105,110,99,108,117,100,101,32,116, + 104,101,32,116,101,114,109,105,110,97,116,111,114,32,99,104,97,114,97,99, + 116,101,114,32,119,104,101,110,32,99,111,112,121,105,110,103,46,0,82,101, + 116,117,114,110,32,97,32,100,101,100,117,112,108,105,99,97,116,101,100,32, + 118,101,114,115,105,111,110,32,111,102,32,116,104,101,32,115,116,114,105,110, + 103,46,0,86,97,114,105,97,98,108,101,46,32,72,111,108,100,115,32,97, + 32,112,111,105,110,116,101,114,32,116,111,32,116,104,101,32,100,101,100,117, + 112,108,105,99,97,116,105,111,110,32,108,105,115,116,46,0,67,104,101,99, + 107,32,116,111,32,115,101,101,32,105,102,32,97,32,115,116,114,105,110,103, + 32,105,115,32,105,110,32,116,104,101,32,100,101,100,117,112,108,105,99,97, + 116,105,111,110,32,108,105,115,116,46,0,82,101,116,117,114,110,32,97,32, + 112,111,105,110,116,101,114,32,116,111,32,97,32,100,101,100,117,112,108,105, + 99,97,116,101,100,32,99,111,112,121,32,111,102,32,97,32,115,116,114,105, + 110,103,46,32,73,102,32,116,104,101,32,115,116,114,105,110,103,32,105,115, + 32,110,111,116,32,105,110,32,116,104,101,32,100,101,100,117,112,108,105,99, + 97,116,105,111,110,32,108,105,115,116,44,32,116,104,105,115,32,119,105,108, + 108,32,99,97,117,115,101,32,101,114,114,111,114,115,46,0,65,100,100,32, + 97,32,115,116,114,105,110,103,32,116,111,32,116,104,101,32,100,101,100,117, + 112,108,105,99,97,116,105,111,110,32,108,105,115,116,46,0,82,101,116,117, + 114,110,32,97,110,32,101,109,112,116,121,32,115,116,114,105,110,103,46,0, + 82,101,116,117,114,110,32,96,84,82,85,69,96,32,105,102,32,115,49,32, + 101,110,100,115,32,119,105,116,104,32,115,50,32,111,114,32,96,70,65,76, + 83,69,96,32,111,116,104,101,114,119,105,115,101,46,0,67,111,109,112,97, + 114,101,32,116,119,111,32,115,116,114,105,110,103,115,32,102,111,114,32,101, + 113,117,97,108,105,116,121,46,32,82,101,116,117,114,110,32,96,84,82,85, + 69,96,32,105,102,32,105,100,101,110,116,105,99,97,108,32,111,114,32,96, + 70,65,76,83,69,96,32,105,102,32,110,111,116,46,0,69,118,97,108,117, + 97,116,101,32,115,116,114,105,110,103,32,97,115,32,105,102,32,105,116,32, + 119,97,115,32,116,121,112,101,100,32,105,110,116,111,32,116,104,101,32,105, + 110,116,101,114,112,114,101,116,101,114,46,0,70,101,116,99,104,32,116,104, + 101,32,99,104,97,114,97,99,116,101,114,32,118,97,108,117,101,32,115,116, + 111,114,101,100,32,97,116,32,116,104,101,32,115,112,101,99,105,102,105,101, + 100,32,105,110,100,101,120,32,105,110,32,116,104,101,32,115,116,114,105,110, + 103,46,0,69,120,101,99,117,116,101,32,116,104,101,32,113,117,111,116,101, + 32,111,110,99,101,32,102,111,114,32,101,97,99,104,32,118,97,108,117,101, + 32,105,110,32,116,104,101,32,115,116,114,105,110,103,46,32,73,102,32,116, + 104,101,32,113,117,111,116,101,32,114,101,116,117,114,110,115,32,96,84,82, + 85,69,96,44,32,97,112,112,101,110,100,32,116,104,101,32,118,97,108,117, + 101,32,105,110,116,111,32,97,32,110,101,119,32,115,116,114,105,110,103,46, + 32,73,102,32,96,70,65,76,83,69,96,32,116,104,101,32,118,97,108,117, + 101,32,119,105,108,108,32,98,101,32,100,105,115,99,97,114,100,101,100,46, + 0,69,120,101,99,117,116,101,32,116,104,101,32,113,117,111,116,101,32,111, + 110,99,101,32,102,111,114,32,101,97,99,104,32,118,97,108,117,101,32,105, + 110,32,116,104,101,32,115,116,114,105,110,103,46,0,67,111,110,115,116,114, + 117,99,116,32,97,32,110,101,119,32,115,116,114,105,110,103,32,117,115,105, + 110,103,32,116,104,101,32,116,101,109,112,108,97,116,101,32,112,97,115,115, + 101,100,32,97,110,100,32,105,116,101,109,115,32,102,114,111,109,32,116,104, + 101,32,115,116,97,99,107,46,0,82,101,97,100,32,105,110,112,117,116,32, + 102,114,111,109,32,115,116,97,110,100,97,114,100,32,105,110,32,40,118,105, + 97,32,96,99,58,103,101,116,96,41,32,117,110,116,105,108,32,97,32,119, + 104,105,116,101,115,112,97,99,101,32,105,115,32,101,110,99,111,117,110,116, + 101,114,101,100,46,32,82,101,116,117,114,110,115,32,97,32,115,116,114,105, + 110,103,46,0,67,97,108,99,117,108,97,116,101,32,97,32,104,97,115,104, + 32,118,97,108,117,101,32,102,111,114,32,97,32,115,116,114,105,110,103,46, + 32,84,104,105,115,32,117,115,101,115,32,116,104,101,32,100,106,98,50,32, + 97,108,103,111,114,105,116,104,109,46,0,82,101,116,117,114,110,32,116,104, + 101,32,108,111,99,97,116,105,111,110,32,111,102,32,116,104,101,32,102,105, + 114,115,116,32,105,110,115,116,97,110,99,101,32,111,102,32,116,104,101,32, + 115,112,101,99,105,102,105,101,100,32,99,104,97,114,97,99,116,101,114,32, + 105,110,32,116,104,101,32,115,116,114,105,110,103,46,0,82,101,116,117,114, + 110,32,116,104,101,32,108,111,99,97,116,105,111,110,32,111,102,32,116,104, + 101,32,102,105,114,115,116,32,105,110,115,116,97,110,99,101,32,111,102,32, + 116,104,101,32,115,112,101,99,105,102,105,101,100,32,115,117,98,115,116,114, + 105,110,103,32,40,115,50,41,32,105,110,32,116,104,101,32,115,116,114,105, + 110,103,32,40,115,49,41,46,32,82,101,116,117,114,110,115,32,45,49,32, + 105,102,32,110,111,116,32,102,111,117,110,100,46,0,83,116,111,114,101,32, + 97,32,115,116,114,105,110,103,32,105,110,116,111,32,116,104,101,32,104,101, + 97,112,32,97,110,100,32,114,101,116,117,114,110,32,97,32,112,111,105,110, + 116,101,114,32,116,111,32,116,104,101,32,115,116,97,114,116,32,111,102,32, + 105,116,46,0,82,101,116,117,114,110,32,97,32,110,101,119,32,115,116,114, + 105,110,103,32,99,111,110,116,97,105,110,105,110,103,32,116,104,101,32,102, + 105,114,115,116,32,96,110,96,32,99,104,97,114,97,99,116,101,114,115,32, + 102,114,111,109,32,116,104,101,32,115,111,117,114,99,101,32,115,116,114,105, + 110,103,46,0,82,101,116,117,114,110,32,116,104,101,32,110,117,109,98,101, + 114,32,111,102,32,99,104,97,114,97,99,116,101,114,115,32,105,110,32,97, + 32,115,116,114,105,110,103,44,32,101,120,99,108,117,100,105,110,103,32,116, + 104,101,32,78,85,76,76,32,116,101,114,109,105,110,97,116,111,114,46,0, + 69,120,101,99,117,116,101,32,116,104,101,32,115,112,101,99,105,102,105,101, + 100,32,113,117,111,116,101,32,111,110,99,101,32,102,111,114,32,101,97,99, + 104,32,99,104,97,114,97,99,116,101,114,32,105,110,32,116,104,101,32,115, + 116,114,105,110,103,46,32,66,117,105,108,100,115,32,97,32,110,101,119,32, + 115,116,114,105,110,103,32,102,114,111,109,32,116,104,101,32,114,101,116,117, + 114,110,32,118,97,108,117,101,32,111,102,32,116,104,101,32,113,117,111,116, + 101,46,32,84,104,101,32,113,117,111,116,101,32,115,104,111,117,108,100,32, + 114,101,116,117,114,110,32,111,110,108,121,32,111,110,101,32,118,97,108,117, + 101,46,0,82,101,116,117,114,110,32,97,32,110,101,119,32,115,116,114,105, + 110,103,32,99,111,110,115,105,115,116,105,110,103,32,111,102,32,115,50,32, + 102,111,108,108,111,119,101,100,32,98,121,32,115,49,46,0,68,105,115,112, + 108,97,121,32,97,32,115,116,114,105,110,103,46,0,82,101,112,108,97,99, + 101,32,116,104,101,32,102,105,114,115,116,32,105,110,115,116,97,110,99,101, + 32,111,102,32,115,50,32,105,110,32,115,49,32,119,105,116,104,32,115,51, + 46,0,82,101,112,108,97,99,101,32,97,108,108,32,105,110,115,116,97,110, + 99,101,115,32,111,102,32,115,50,32,105,110,32,115,49,32,119,105,116,104, + 32,115,51,46,0,82,101,118,101,114,115,101,32,116,104,101,32,111,114,100, + 101,114,32,111,102,32,65,83,67,73,73,32,99,104,97,114,97,99,116,101, + 114,115,32,105,110,32,97,32,115,116,114,105,110,103,46,0,82,101,116,117, + 114,110,32,97,32,110,101,119,32,115,116,114,105,110,103,32,99,111,110,116, + 97,105,110,105,110,103,32,116,104,101,32,115,112,101,99,105,102,105,101,100, + 32,110,117,109,98,101,114,32,111,102,32,99,104,97,114,97,99,116,101,114, + 115,32,102,114,111,109,32,116,104,101,32,114,105,103,104,116,32,115,105,100, + 101,32,111,102,32,116,104,101,32,115,116,114,105,110,103,46,0,73,110,116, + 101,114,110,97,108,32,104,101,108,112,101,114,32,102,117,110,99,116,105,111, + 110,32,117,115,101,100,32,116,111,32,115,107,105,112,32,111,118,101,114,32, + 97,32,115,116,114,105,110,103,32,105,110,32,97,32,100,101,102,105,110,105, + 116,105,111,110,46,0,83,112,108,105,116,32,97,32,115,116,114,105,110,103, + 32,111,110,32,116,104,101,32,102,105,114,115,116,32,111,99,99,117,114,114, + 101,110,99,101,32,111,102,32,116,104,101,32,115,112,101,99,105,102,105,101, + 100,32,99,104,97,114,97,99,116,101,114,46,0,83,112,108,105,116,32,97, + 32,115,116,114,105,110,103,32,111,110,32,116,104,101,32,102,105,114,115,116, + 32,111,99,99,117,114,114,101,110,99,101,32,111,102,32,116,104,101,32,115, + 112,101,99,105,102,105,101,100,32,115,116,114,105,110,103,46,32,65,102,116, + 101,114,32,116,104,101,32,115,112,108,105,116,44,32,116,104,101,32,116,111, + 112,32,115,116,97,99,107,32,105,116,101,109,32,119,105,108,108,32,98,101, + 32,116,104,101,32,112,97,114,116,32,111,102,32,116,104,101,32,115,116,114, + 105,110,103,32,98,101,102,111,114,101,32,116,104,101,32,115,112,101,99,105, + 102,105,101,100,32,115,117,98,115,116,114,105,110,103,44,32,97,110,100,32, + 116,104,101,32,115,101,99,111,110,100,32,105,116,101,109,32,119,105,108,108, + 32,98,101,32,116,104,101,32,114,101,115,116,32,111,102,32,116,104,101,32, + 111,114,105,103,105,110,97,108,32,115,116,114,105,110,103,46,0,83,116,111, + 114,101,32,97,32,99,104,97,114,97,99,116,101,114,32,118,97,108,117,101, + 32,105,110,116,111,32,116,104,101,32,115,116,114,105,110,103,32,97,116,32, + 116,104,101,32,115,112,101,99,105,102,105,101,100,32,105,110,100,101,120,46, + 0,69,120,116,114,97,99,116,32,97,32,115,117,98,115,116,114,105,110,103, + 32,102,114,111,109,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32, + 115,116,114,105,110,103,46,32,84,104,105,115,32,119,105,108,108,32,116,97, + 107,101,32,116,104,101,32,99,104,97,114,97,99,116,101,114,115,32,115,116, + 97,114,116,105,110,103,32,97,116,32,96,102,96,32,97,110,100,32,101,120, + 116,101,110,100,32,96,108,96,32,99,104,97,114,97,99,116,101,114,115,32, + 105,110,32,108,101,110,103,116,104,46,0,77,111,118,101,32,97,32,115,116, + 114,105,110,103,32,105,110,116,111,32,116,104,101,32,116,101,109,112,111,114, + 97,114,121,32,115,116,114,105,110,103,32,98,117,102,102,101,114,115,46,0, + 67,111,110,118,101,114,116,32,97,32,115,116,114,105,110,103,32,114,101,112, + 114,101,115,101,110,116,97,116,105,111,110,32,105,110,116,111,32,97,32,102, + 108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97,108,117,101,46, + 0,67,111,110,118,101,114,116,32,117,112,112,101,114,99,97,115,101,32,65, + 83,67,73,73,32,99,104,97,114,97,99,116,101,114,115,32,105,110,32,97, + 32,115,116,114,105,110,103,32,116,111,32,108,111,119,101,114,99,97,115,101, + 46,0,67,111,110,118,101,114,116,32,97,32,115,116,114,105,110,103,32,116, + 111,32,97,32,110,117,109,98,101,114,46,0,67,111,110,118,101,114,116,32, + 108,111,119,101,114,99,97,115,101,32,65,83,67,73,73,32,99,104,97,114, + 97,99,116,101,114,115,32,105,110,32,97,32,115,116,114,105,110,103,32,116, + 111,32,117,112,112,101,114,99,97,115,101,46,0,84,97,107,101,115,32,97, + 32,115,116,114,105,110,103,32,97,110,100,32,97,32,99,104,97,114,97,99, + 116,101,114,32,116,111,32,117,115,101,32,97,115,32,97,32,115,101,112,97, + 114,97,116,111,114,46,32,73,116,32,115,112,108,105,116,115,32,116,104,101, + 32,115,116,114,105,110,103,32,105,110,116,111,32,115,117,98,115,116,114,105, + 110,103,115,32,97,110,100,32,114,101,116,117,114,110,115,32,97,110,32,97, + 114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,112,111,105,110, + 116,101,114,115,32,116,111,32,101,97,99,104,32,111,102,32,116,104,101,109, + 46,0,84,97,107,101,115,32,97,32,115,116,114,105,110,103,32,40,115,49, + 41,32,97,110,100,32,97,32,115,117,98,115,116,114,105,110,103,32,40,115, + 50,41,32,32,117,115,101,32,97,115,32,97,32,115,101,112,97,114,97,116, + 111,114,46,32,73,116,32,115,112,108,105,116,115,32,116,104,101,32,115,116, + 114,105,110,103,32,105,110,116,111,32,115,117,98,115,116,114,105,110,103,115, + 32,97,110,100,32,114,101,116,117,114,110,115,32,97,115,32,97,114,114,97, + 121,32,99,111,110,116,97,105,110,105,110,103,32,112,111,105,110,116,101,114, + 115,32,116,111,32,101,97,99,104,32,111,102,32,116,104,101,109,46,0,84, + 114,105,109,32,108,101,97,100,105,110,103,32,97,110,100,32,116,114,97,105, + 108,105,110,103,32,119,104,105,116,101,115,112,97,99,101,32,102,114,111,109, + 32,97,32,115,116,114,105,110,103,46,0,84,114,105,109,32,108,101,97,100, + 105,110,103,32,119,104,105,116,101,115,112,97,99,101,32,102,114,111,109,32, + 97,32,115,116,114,105,110,103,46,0,84,114,105,109,32,116,114,97,105,108, + 105,110,103,32,119,104,105,116,101,115,112,97,99,101,32,102,114,111,109,32, + 97,32,115,116,114,105,110,103,46,0,65,108,105,97,115,32,102,111,114,32, + 96,115,58,100,101,100,117,112,46,100,101,102,105,110,101,100,63,96,46,0, + 68,105,115,99,97,114,100,32,114,101,109,97,105,110,105,110,103,32,116,111, + 107,101,110,115,32,111,110,32,116,104,101,32,99,117,114,114,101,110,116,32, + 108,105,110,101,32,98,101,105,110,103,32,101,118,97,108,117,97,116,101,100, + 46,32,84,104,105,115,32,111,110,108,121,32,119,111,114,107,115,32,119,104, + 101,110,32,105,110,99,108,117,100,105,110,103,32,97,32,102,105,108,101,44, + 32,110,111,116,32,97,116,32,116,104,101,32,105,110,116,101,114,112,114,101, + 116,101,114,46,0,82,101,116,117,114,110,32,116,104,101,32,110,117,109,98, + 101,114,32,111,102,32,97,114,103,117,109,101,110,116,115,32,112,97,115,115, + 101,100,32,116,111,32,116,104,101,32,112,114,111,103,114,97,109,46,0,82, + 101,116,117,114,110,32,116,104,101,32,102,105,108,101,110,97,109,101,32,111, + 102,32,116,104,101,32,102,105,108,101,32,98,101,105,110,103,32,112,114,111, + 99,101,115,115,101,100,32,98,121,32,116,104,101,32,99,117,114,114,101,110, + 116,32,96,105,110,99,108,117,100,101,96,44,32,111,114,32,96,47,100,101, + 118,47,115,116,100,105,110,96,32,105,102,32,116,104,101,32,105,110,112,117, + 116,32,115,111,117,114,99,101,32,105,115,32,116,104,101,32,116,101,114,109, + 105,110,97,108,46,0,82,101,116,117,114,110,32,116,104,101,32,99,117,114, + 114,101,110,116,32,108,105,110,101,32,110,117,109,98,101,114,32,111,102,32, + 116,104,101,32,102,105,108,101,32,98,101,105,110,103,32,112,114,111,99,101, + 115,115,101,100,32,98,121,32,116,104,101,32,99,117,114,114,101,110,116,32, + 96,105,110,99,108,117,100,101,96,44,32,111,114,32,96,48,96,32,105,102, + 32,116,104,101,32,105,110,112,117,116,32,115,111,117,114,99,101,32,105,115, + 32,116,104,101,32,116,101,114,109,105,110,97,108,46,32,76,105,110,101,32, + 110,117,109,98,101,114,105,110,103,32,115,116,97,114,116,115,32,97,116,32, + 49,46,0,82,101,116,117,114,110,32,116,104,101,32,116,101,120,116,32,111, + 102,32,116,104,101,32,99,117,114,114,101,110,116,32,108,105,110,101,32,98, + 101,105,110,103,32,112,114,111,99,101,115,115,101,100,32,98,121,32,116,104, + 101,32,99,117,114,114,101,110,116,32,96,105,110,99,108,117,100,101,96,46, + 0,71,105,118,101,110,32,97,110,32,97,114,103,117,109,101,110,116,32,110, + 117,109,98,101,114,44,32,114,101,116,117,114,110,32,116,104,101,32,97,114, + 103,117,109,101,110,116,32,97,115,32,97,32,115,116,114,105,110,103,46,0, + 68,105,115,99,97,114,100,32,114,101,109,97,105,110,105,110,103,32,116,111, + 107,101,110,115,32,105,110,32,116,104,101,32,99,117,114,114,101,110,116,32, + 108,105,110,101,46,32,84,104,105,115,32,111,110,108,121,32,119,111,114,107, + 115,32,119,104,101,110,32,105,110,99,108,117,100,105,110,103,32,97,32,102, + 105,108,101,44,32,110,111,116,32,97,116,32,116,104,101,32,105,110,116,101, + 114,112,114,101,116,101,114,46,0,82,101,116,117,114,110,32,116,104,101,32, + 102,105,108,101,110,97,109,101,32,111,102,32,116,104,101,32,112,114,111,103, + 114,97,109,32,98,101,105,110,103,32,114,117,110,46,0,80,97,116,99,104, + 32,116,104,101,32,104,111,111,107,32,112,111,105,110,116,32,105,110,32,97, + 50,32,116,111,32,112,111,105,110,116,32,116,111,32,97,49,46,0,80,101, + 102,111,114,109,32,97,32,98,105,116,119,105,115,101,32,115,104,105,102,116, + 32,111,102,32,109,32,98,121,32,110,32,98,105,116,115,46,32,73,102,32, + 110,32,105,115,32,112,111,115,105,116,105,118,101,44,32,115,104,105,102,116, + 32,114,105,103,104,116,46,32,73,102,32,110,101,103,97,116,105,118,101,44, + 32,116,104,101,32,115,104,105,102,116,32,119,105,108,108,32,98,101,32,116, + 111,32,116,104,101,32,108,101,102,116,46,0,83,116,111,114,101,32,97,32, + 118,97,108,117,101,32,105,110,116,111,32,97,32,118,97,114,105,97,98,108, + 101,46,0,80,114,111,99,101,115,115,32,116,111,107,101,110,32,97,115,32, + 97,32,110,117,109,98,101,114,46,0,80,114,111,99,101,115,115,32,116,111, + 107,101,110,32,97,115,32,97,110,32,65,83,67,73,73,32,99,104,97,114, + 97,99,116,101,114,46,0,82,101,116,117,114,110,32,97,32,112,111,105,110, + 116,101,114,32,116,111,32,97,32,110,97,109,101,100,32,105,116,101,109,46, + 32,73,102,32,110,97,109,101,32,105,115,32,110,111,116,32,102,111,117,110, + 100,44,32,114,101,116,117,114,110,115,32,48,46,0,80,114,111,99,101,115, + 115,32,116,111,107,101,110,32,97,115,32,97,32,115,116,114,105,110,103,46, + 0,80,114,111,99,101,115,115,32,116,111,107,101,110,32,97,115,32,97,32, + 99,111,109,109,101,110,116,46,0,73,110,116,101,114,112,114,101,116,32,116, + 105,109,101,58,32,99,111,110,118,101,114,116,32,115,116,114,105,110,103,32, + 116,111,32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32, + 118,97,108,117,101,46,32,67,111,109,112,105,108,101,32,116,105,109,101,58, + 32,99,111,110,118,101,114,116,32,115,116,114,105,110,103,32,116,111,32,97, + 32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97,108,117, + 101,32,97,110,100,32,99,111,109,112,105,108,101,32,99,111,100,101,32,116, + 111,32,112,117,115,104,32,116,104,105,115,32,118,97,108,117,101,32,116,111, + 32,116,104,101,32,102,108,111,97,116,32,115,116,97,99,107,46,0,72,111, + 111,107,46,32,80,114,111,99,101,115,115,32,116,111,107,101,110,32,97,115, + 32,97,32,110,101,119,32,100,101,102,105,110,105,116,105,111,110,46,0,70, + 101,116,99,104,32,102,114,111,109,32,97,32,115,116,111,114,101,100,32,118, + 97,114,105,97,98,108,101,46,0,80,114,111,99,101,115,115,32,116,111,107, + 101,110,32,97,115,32,97,110,32,105,110,115,116,114,117,99,116,105,111,110, + 32,98,117,110,100,108,101,46,0,80,114,111,99,101,115,115,32,116,111,107, + 101,110,32,97,115,32,97,32,102,117,110,99,116,105,111,110,32,114,101,102, + 101,114,101,110,99,101,46,0,80,114,111,99,101,115,115,32,116,111,107,101, + 110,32,97,115,32,97,32,98,121,116,101,99,111,100,101,46,0,80,79,83, + 84,80,79,78,69,32,101,113,117,105,118,97,108,101,110,116,46,0,82,117, + 110,32,113,117,111,116,101,46,32,65,102,116,101,114,32,101,120,101,99,117, + 116,105,111,110,32,99,111,109,112,108,101,116,101,115,44,32,112,117,116,32, + 97,32,99,111,112,121,32,111,102,32,110,32,98,97,99,107,32,111,110,32, + 116,111,112,32,111,102,32,116,104,101,32,115,116,97,99,107,46,0,66,101, + 103,105,110,32,97,99,99,101,112,116,105,110,103,32,99,111,110,110,101,99, + 116,105,111,110,115,46,32,82,101,116,117,114,110,115,32,97,32,110,101,119, + 32,115,111,99,107,101,116,32,97,110,100,32,97,110,32,101,114,114,111,114, + 32,99,111,100,101,46,0,66,105,110,100,32,97,32,115,111,99,107,101,116, + 32,116,111,32,97,32,112,111,114,116,46,32,84,104,101,32,112,111,114,116, + 32,115,104,111,117,108,100,32,98,101,32,97,32,115,116,114,105,110,103,46, + 32,82,101,116,117,114,110,115,32,48,32,105,102,32,115,117,99,99,101,115, + 115,102,117,108,32,111,114,32,45,49,32,111,116,104,101,114,119,105,115,101, + 32,97,110,100,32,97,110,32,101,114,114,111,114,32,99,111,100,101,46,0, + 67,108,111,115,101,32,97,32,115,111,99,107,101,116,46,0,67,111,110,102, + 105,103,117,114,101,32,105,110,116,101,114,110,97,108,32,115,101,116,116,105, + 110,103,115,32,102,111,114,32,97,32,104,111,115,116,32,40,115,49,41,32, + 97,110,100,32,112,111,114,116,32,40,115,50,41,46,32,85,115,101,32,98, + 101,102,111,114,101,32,96,115,111,99,107,101,116,58,98,105,110,100,96,46, + 0,67,111,110,110,101,99,116,32,116,111,32,97,32,115,101,114,118,101,114, + 46,32,80,114,111,118,105,100,101,32,97,32,115,111,99,107,101,116,44,32, + 116,104,105,115,32,119,105,108,108,32,114,101,116,117,114,110,32,97,32,115, + 116,97,116,117,115,32,102,108,97,103,32,97,110,100,32,97,110,32,101,114, + 114,111,114,32,99,111,100,101,46,0,79,98,116,97,105,110,32,97,32,110, + 101,119,32,115,111,99,107,101,116,46,0,71,101,116,32,116,104,101,32,104, + 111,115,116,32,73,80,32,105,110,32,100,111,116,116,101,100,32,110,111,116, + 97,116,105,111,110,46,32,84,104,101,32,104,111,115,116,32,105,115,32,115, + 112,101,99,105,102,105,101,100,32,98,121,32,116,104,101,32,115,116,114,105, + 110,103,32,97,110,100,32,116,104,101,32,97,100,100,114,101,115,115,32,105, + 115,32,116,104,101,32,115,116,97,114,116,32,111,102,32,116,104,101,32,98, + 117,102,102,101,114,32,102,111,114,32,116,104,101,32,100,111,116,116,101,100, + 32,73,80,46,0,80,114,101,112,97,114,101,32,97,32,115,111,99,107,101, + 116,32,102,111,114,32,97,99,99,101,112,116,105,110,103,32,105,110,99,111, + 109,105,110,103,32,99,111,110,110,101,99,116,105,111,110,115,46,32,84,97, + 107,101,115,32,97,32,98,97,99,107,108,111,103,32,99,111,117,110,116,32, + 40,110,49,41,32,97,110,100,32,97,32,115,111,99,107,101,116,32,40,110, + 50,41,46,32,82,101,116,117,114,110,115,32,97,32,102,108,97,103,32,40, + 48,32,115,117,99,99,101,115,115,44,32,45,49,32,102,97,105,108,101,100, + 41,32,97,110,100,32,97,110,32,101,114,114,111,114,32,99,111,100,101,46, + 0,84,114,105,103,103,101,114,32,97,32,115,111,99,107,101,116,32,111,112, + 101,114,97,116,105,111,110,46,32,84,104,105,115,32,105,115,32,110,111,116, + 32,105,110,116,101,110,100,101,100,32,116,111,32,98,101,32,117,115,101,100, + 32,100,105,114,101,99,116,108,121,46,0,82,101,99,101,105,118,101,32,100, + 97,116,97,32,102,114,111,109,32,97,32,115,111,99,107,101,116,46,32,84, + 104,105,115,32,119,105,108,108,32,114,101,97,100,32,105,110,116,111,32,109, + 101,109,111,114,121,32,115,116,97,114,116,105,110,103,32,97,116,32,97,100, + 100,114,101,115,115,32,42,97,42,44,32,117,112,32,116,111,32,42,110,49, + 42,32,98,121,116,101,115,46,32,42,110,50,42,32,105,115,32,116,104,101, + 32,115,111,99,107,101,116,46,32,82,101,116,117,114,110,115,32,116,104,101, + 32,110,117,109,98,101,114,32,111,102,32,98,121,116,101,115,32,114,101,97, + 100,32,97,110,100,32,97,110,32,101,114,114,111,114,32,99,111,100,101,46, + 0,83,101,110,100,32,97,32,115,116,114,105,110,103,32,116,111,32,97,32, + 115,111,99,107,101,116,46,32,84,104,105,115,32,119,105,108,108,32,114,101, + 116,117,114,110,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,99, + 104,97,114,97,99,116,101,114,115,32,115,101,110,116,32,97,110,100,32,97, + 110,32,101,114,114,111,114,32,99,111,100,101,46,0,68,105,115,112,108,97, + 121,32,97,32,115,112,97,99,101,32,40,96,65,83,67,73,73,58,83,80, + 65,67,69,96,41,0,83,116,111,114,101,32,97,32,118,97,108,117,101,32, + 105,110,116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,97, + 100,100,114,101,115,115,46,0,83,116,111,114,101,32,97,32,118,97,108,117, + 101,32,105,110,116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100, + 32,97,100,100,114,101,115,115,32,97,110,100,32,114,101,116,117,114,110,32, + 116,104,101,32,110,101,120,116,32,97,100,100,114,101,115,115,46,0,69,120, + 99,104,97,110,103,101,32,116,104,101,32,112,111,115,105,116,105,111,110,32, + 111,102,32,116,104,101,32,116,111,112,32,116,119,111,32,105,116,101,109,115, + 32,111,110,32,116,104,101,32,115,116,97,99,107,0,68,105,115,112,108,97, + 121,32,97,32,116,97,98,32,40,96,65,83,67,73,73,58,72,84,96,41, + 0,67,111,110,118,101,114,116,32,97,32,99,97,108,108,32,98,101,102,111, + 114,101,32,116,104,101,32,115,101,109,105,99,111,108,111,110,32,116,111,32, + 97,32,106,117,109,112,46,0,82,117,110,32,116,104,101,32,115,112,101,99, + 105,102,105,101,100,32,113,117,111,116,101,32,116,104,101,32,115,112,101,99, + 105,102,105,101,100,32,110,117,109,98,101,114,32,111,102,32,116,105,109,101, + 115,46,0,65,112,112,108,121,32,113,49,32,97,103,97,105,110,115,116,32, + 120,44,32,116,104,101,110,32,113,50,32,97,103,97,105,110,115,116,32,97, + 32,99,111,112,121,32,111,102,32,120,44,32,97,110,100,32,102,105,110,97, + 108,108,121,32,113,51,32,97,103,97,105,110,115,116,32,97,110,111,116,104, + 101,114,32,99,111,112,121,32,111,102,32,120,46,0,65,112,112,108,121,32, + 113,49,32,97,103,97,105,110,115,116,32,120,44,32,113,50,32,97,103,97, + 105,110,115,116,32,121,44,32,97,110,100,32,113,51,32,97,103,97,105,110, + 115,116,32,122,46,0,65,112,112,108,121,32,113,32,97,103,97,105,110,115, + 116,32,120,44,32,116,104,101,110,32,97,103,97,105,110,115,116,32,121,44, + 32,97,110,100,32,102,105,110,97,108,108,121,32,97,103,97,105,110,115,116, + 32,122,46,0,80,117,116,32,97,32,99,111,112,121,32,111,102,32,116,104, + 101,32,116,111,112,32,105,116,101,109,32,111,110,32,116,104,101,32,115,116, + 97,99,107,32,117,110,100,101,114,32,116,104,101,32,115,101,99,111,110,100, + 32,111,110,101,46,0,82,101,115,101,116,32,116,104,101,32,104,111,111,107, + 32,112,111,105,110,116,32,105,110,32,97,49,32,116,111,32,116,104,101,32, + 100,101,102,97,117,108,116,32,100,101,102,105,110,105,116,105,111,110,46,0, + 67,104,97,110,103,101,32,116,104,101,32,99,117,114,114,101,110,116,32,119, + 111,114,107,105,110,103,32,100,105,114,101,99,116,111,114,121,32,116,111,32, + 116,104,101,32,115,112,101,99,105,102,105,101,100,32,111,110,101,46,0,82, + 101,116,117,114,110,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32, + 102,105,108,101,115,32,40,97,110,100,32,115,117,98,100,105,114,101,99,116, + 111,114,105,101,115,41,32,105,110,32,116,104,101,32,99,117,114,114,101,110, + 116,32,119,111,114,107,105,110,103,32,100,105,114,101,99,116,111,114,121,0, + 69,120,101,99,117,116,101,32,97,32,112,114,111,99,101,115,115,32,98,121, + 32,114,117,110,110,105,110,103,32,116,104,101,32,97,112,112,108,105,99,97, + 116,105,111,110,32,115,112,101,99,105,102,105,101,100,32,98,121,32,115,46, + 0,69,120,101,99,117,116,101,32,97,32,112,114,111,99,101,115,115,32,98, + 121,32,114,117,110,110,105,110,103,32,116,104,101,32,97,112,112,108,105,99, + 97,116,105,111,110,32,115,112,101,99,105,102,105,101,100,32,98,121,32,115, + 49,46,32,80,97,115,115,32,115,50,32,97,115,32,97,110,32,97,114,103, + 117,109,101,110,116,46,0,69,120,101,99,117,116,101,32,97,32,112,114,111, + 99,101,115,115,32,98,121,32,114,117,110,110,105,110,103,32,116,104,101,32, + 97,112,112,108,105,99,97,116,105,111,110,32,115,112,101,99,105,102,105,101, + 100,32,98,121,32,115,49,46,32,80,97,115,115,32,115,50,32,97,110,100, + 32,115,51,32,97,115,32,97,114,103,117,109,101,110,116,115,46,0,69,120, + 101,99,117,116,101,32,97,32,112,114,111,99,101,115,115,32,98,121,32,114, + 117,110,110,105,110,103,32,116,104,101,32,97,112,112,108,105,99,97,116,105, + 111,110,32,115,112,101,99,105,102,105,101,100,32,98,121,32,115,49,46,32, + 80,97,115,115,32,115,50,44,32,115,51,44,32,97,110,100,32,115,52,32, + 97,115,32,97,114,103,117,109,101,110,116,115,46,0,82,117,110,115,32,97, + 110,111,116,104,101,114,32,97,112,112,108,105,99,97,116,105,111,110,32,97, + 110,100,32,114,101,116,117,114,110,32,97,102,116,101,114,32,101,120,101,99, + 117,116,105,111,110,32,105,115,32,99,111,109,112,108,101,116,101,100,46,32, + 84,104,105,115,32,100,111,101,115,32,110,111,116,32,105,110,118,111,107,101, + 32,116,104,101,32,115,104,101,108,108,32,108,105,107,101,32,96,117,110,105, + 120,58,115,121,115,116,101,109,96,32,97,110,100,32,100,111,101,115,32,110, + 111,116,32,115,117,112,112,111,114,116,32,103,108,111,98,98,105,110,103,46, + 0,69,120,105,116,32,116,104,101,32,99,117,114,114,101,110,116,32,112,114, + 111,99,101,115,115,44,32,114,101,116,117,114,110,105,110,103,32,116,104,101, + 32,115,112,101,99,105,102,105,101,100,32,114,101,116,117,114,110,32,99,111, + 100,101,46,0,82,117,110,32,97,32,113,117,111,116,101,32,111,110,99,101, + 32,102,111,114,32,101,97,99,104,32,102,105,108,101,32,111,114,32,115,117, + 98,100,105,114,101,99,116,111,114,121,32,105,110,32,116,104,101,32,99,117, + 114,114,101,110,116,32,100,105,114,101,99,116,111,114,121,46,32,84,104,101, + 32,113,117,111,116,101,32,119,105,108,108,32,114,101,99,101,105,118,101,32, + 116,104,101,32,102,105,108,101,32,110,97,109,101,32,97,115,32,97,32,115, + 116,114,105,110,103,32,97,110,100,32,115,104,111,117,108,100,32,99,111,110, + 115,117,109,101,32,116,104,105,115,32,97,110,100,32,114,101,116,117,114,110, + 32,110,111,116,104,105,110,103,32,111,110,32,116,104,101,32,115,116,97,99, + 107,46,0,70,111,114,107,32,116,104,101,32,99,117,114,114,101,110,116,32, + 112,114,111,99,101,115,115,46,32,82,101,116,117,114,110,115,32,97,32,80, + 73,68,46,0,82,101,116,117,114,110,32,116,104,101,32,99,117,114,114,101, + 110,116,32,119,111,114,107,105,110,103,32,100,105,114,101,99,116,111,114,121, + 0,71,101,116,32,97,110,32,101,110,118,105,114,111,110,109,101,110,116,32, + 118,97,114,105,97,98,108,101,46,32,80,114,111,118,105,100,101,32,116,104, + 101,32,110,97,109,101,32,97,110,100,32,97,110,32,97,100,100,114,101,115, + 115,32,116,111,32,115,116,111,114,101,32,105,116,32,105,110,46,0,82,101, + 116,117,114,110,32,116,104,101,32,80,73,68,32,111,102,32,116,104,101,32, + 99,117,114,114,101,110,116,32,112,114,111,99,101,115,115,46,0,84,101,114, + 109,105,110,97,116,101,115,32,97,32,112,114,111,99,101,115,115,46,32,84, + 97,107,101,115,32,97,32,112,114,111,99,101,115,115,32,97,110,100,32,97, + 32,115,105,103,110,97,108,32,116,111,32,115,101,110,100,46,0,67,108,111, + 115,101,32,97,32,112,105,112,101,46,0,84,97,107,101,115,32,97,32,115, + 116,114,105,110,103,32,119,105,116,104,32,97,32,85,110,105,120,32,99,111, + 109,109,97,110,100,32,108,105,110,101,32,97,110,100,32,114,117,110,32,105, + 116,32,105,110,32,97,32,112,105,112,101,44,32,114,101,116,117,114,110,105, + 110,103,32,97,32,110,101,119,32,115,116,114,105,110,103,32,119,105,116,104, + 32,116,104,101,32,102,105,114,115,116,32,108,105,110,101,32,111,102,32,116, + 104,101,32,111,117,116,112,117,116,32,102,114,111,109,32,116,104,101,32,112, + 105,112,101,46,0,79,112,101,110,32,97,32,112,105,112,101,46,32,84,97, + 107,101,115,32,97,32,99,111,109,109,97,110,100,32,116,111,32,114,117,110, + 44,32,97,110,100,32,97,32,102,105,108,101,32,109,111,100,101,32,40,96, + 102,105,108,101,58,82,96,32,111,114,32,96,102,105,108,101,58,87,96,59, + 32,96,102,105,108,101,58,82,43,96,32,109,97,121,32,119,111,114,107,32, + 111,110,32,115,111,109,101,32,115,121,115,116,101,109,115,41,46,32,82,101, + 116,117,114,110,115,32,97,32,102,105,108,101,32,73,68,32,117,115,97,98, + 108,101,32,119,105,116,104,32,119,111,114,100,115,32,105,110,32,116,104,101, + 32,96,102,105,108,101,58,96,32,110,97,109,101,115,112,97,99,101,46,0, + 84,97,107,101,115,32,97,32,115,116,114,105,110,103,32,105,110,32,116,104, + 101,32,102,111,114,109,32,96,110,97,109,101,61,118,97,108,117,101,96,32, + 97,110,100,32,115,101,116,115,32,97,110,32,101,110,118,105,114,111,110,109, + 101,110,116,32,118,97,114,105,97,98,108,101,32,110,97,109,101,100,32,96, + 110,97,109,101,96,32,116,111,32,96,118,97,108,117,101,96,46,0,83,108, + 101,101,112,32,102,111,114,32,116,104,101,32,115,112,101,99,105,102,105,101, + 100,32,110,117,109,98,101,114,32,111,102,32,115,101,99,111,110,100,115,46, + 0,79,112,101,110,32,97,32,112,105,112,101,46,32,82,101,97,100,32,97, + 108,108,32,111,117,116,112,117,116,32,102,114,111,109,32,116,104,101,32,112, + 105,112,101,32,40,117,110,116,105,108,32,65,83,67,73,73,58,78,85,76, + 76,41,32,97,110,100,32,115,116,111,114,101,32,105,110,32,116,104,101,32, + 115,112,101,99,105,102,105,101,100,32,98,117,102,102,101,114,46,32,82,101, + 116,117,114,110,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,98, + 121,116,101,115,32,114,101,97,100,46,0,82,117,110,115,32,97,110,111,116, + 104,101,114,32,97,112,112,108,105,99,97,116,105,111,110,32,117,115,105,110, + 103,32,116,104,101,32,115,121,115,116,101,109,32,115,104,101,108,108,32,97, + 110,100,32,114,101,116,117,114,110,115,32,97,102,116,101,114,32,101,120,101, + 99,117,116,105,111,110,32,105,115,32,99,111,109,112,108,101,116,101,100,46, + 0,87,97,105,116,115,32,102,111,114,32,97,32,99,104,105,108,100,32,112, + 114,111,99,101,115,115,32,116,111,32,99,111,109,112,108,101,116,101,46,32, + 84,104,105,115,32,109,97,112,115,32,116,111,32,116,104,101,32,119,97,105, + 116,40,41,32,115,121,115,116,101,109,32,99,97,108,108,46,0,85,110,112, + 97,99,107,32,97,32,51,50,45,98,105,116,32,118,97,108,117,101,32,105, + 110,116,111,32,102,111,117,114,32,56,45,98,105,116,32,118,97,108,117,101, + 115,46,0,77,117,108,116,105,112,108,121,32,96,110,49,96,32,98,121,32, + 96,110,50,96,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,32, + 114,101,115,117,108,116,46,0,77,117,108,116,105,112,108,121,32,96,120,96, + 32,98,121,32,96,121,96,32,97,110,100,32,116,104,101,110,32,100,105,118, + 105,100,101,32,98,121,32,96,122,96,32,97,110,100,32,114,101,116,117,114, + 110,32,116,104,101,32,105,110,116,101,103,101,114,32,112,97,114,116,32,111, + 102,32,116,104,101,32,113,117,111,116,105,101,110,116,32,97,110,100,32,114, + 101,109,97,105,110,100,101,114,46,0,65,100,100,32,96,110,49,96,32,116, + 111,32,96,110,50,96,32,97,110,100,32,114,101,116,117,114,110,32,116,104, + 101,32,114,101,115,117,108,116,46,0,83,117,98,116,114,97,99,116,32,96, + 110,50,96,32,102,114,111,109,32,96,110,49,96,32,97,110,100,32,114,101, + 116,117,114,110,32,116,104,101,32,114,101,115,117,108,116,46,0,67,111,109, + 112,97,114,101,32,116,119,111,32,118,97,108,117,101,115,32,102,111,114,32, + 105,110,101,113,117,97,108,105,116,121,46,32,82,101,116,117,114,110,115,32, + 96,84,82,85,69,96,32,105,102,32,116,104,101,121,32,97,114,101,32,110, + 111,116,32,101,113,117,97,108,32,111,114,32,96,70,65,76,83,69,96,32, + 111,116,104,101,114,119,105,115,101,46,0,68,105,118,105,100,101,32,96,110, + 96,32,98,121,32,96,109,96,32,97,110,100,32,114,101,116,117,114,110,32, + 116,104,101,32,105,110,116,101,103,101,114,32,112,97,114,116,32,111,102,32, + 116,104,101,32,113,117,111,116,105,101,110,116,32,97,110,100,32,114,101,109, + 97,105,110,100,101,114,46,0,67,111,109,112,97,114,101,32,116,119,111,32, + 118,97,108,117,101,115,32,102,111,114,32,101,113,117,97,108,105,116,121,46, + 32,82,101,116,117,114,110,115,32,96,84,82,85,69,96,32,105,102,32,116, + 104,101,121,32,97,114,101,32,101,113,117,97,108,32,111,114,32,96,70,65, + 76,83,69,96,32,111,116,104,101,114,119,105,115,101,46,0,67,111,109,112, + 97,114,101,32,110,49,32,97,110,100,32,110,50,46,32,82,101,116,117,114, + 110,32,96,84,82,85,69,96,32,105,102,32,110,49,32,105,115,32,103,114, + 101,97,116,101,114,32,116,104,97,110,32,110,50,44,32,111,114,32,96,70, + 65,76,83,69,96,32,111,116,104,101,114,119,105,115,101,46,0,67,111,109, + 112,97,114,101,32,110,49,32,97,110,100,32,110,50,46,32,82,101,116,117, + 114,110,32,96,84,82,85,69,96,32,105,102,32,110,49,32,105,115,32,108, + 101,115,115,32,116,104,97,110,32,110,50,44,32,111,114,32,96,70,65,76, + 83,69,96,32,111,116,104,101,114,119,105,115,101,46,0,80,101,102,111,114, + 109,32,97,32,98,105,116,119,105,115,101,32,115,104,105,102,116,32,111,102, + 32,109,32,98,121,32,110,32,98,105,116,115,46,32,73,102,32,110,32,105, + 115,32,112,111,115,105,116,105,118,101,44,32,115,104,105,102,116,32,114,105, + 103,104,116,46,32,73,102,32,110,101,103,97,116,105,118,101,44,32,116,104, + 101,32,115,104,105,102,116,32,119,105,108,108,32,98,101,32,116,111,32,116, + 104,101,32,108,101,102,116,46,0,69,120,101,99,117,116,101,32,113,117,111, + 116,101,32,114,101,112,101,97,116,101,100,108,121,32,119,104,105,108,101,32, + 116,104,101,32,113,117,111,116,101,32,114,101,116,117,114,110,115,32,97,32, + 118,97,108,117,101,32,111,102,32,96,70,65,76,83,69,96,46,32,84,104, + 101,32,113,117,111,116,101,32,115,104,111,117,108,100,32,114,101,116,117,114, + 110,32,97,32,102,108,97,103,32,111,102,32,101,105,116,104,101,114,32,96, + 84,82,85,69,96,32,111,114,32,96,70,65,76,83,69,96,44,32,116,104, + 111,117,103,104,32,96,117,110,116,105,108,96,32,119,105,108,108,32,116,114, + 101,97,116,32,97,110,121,32,110,111,110,45,122,101,114,111,32,118,97,108, + 117,101,32,97,115,32,96,84,82,85,69,96,46,0,68,101,99,114,101,109, + 101,110,116,32,116,104,101,32,118,97,108,117,101,32,115,116,111,114,101,100, + 32,97,116,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,97,100, + 100,114,101,115,115,32,98,121,32,49,46,0,68,101,99,114,101,109,101,110, + 116,32,116,104,101,32,118,97,108,117,101,32,115,116,111,114,101,100,32,97, + 116,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,97,100,100,114, + 101,115,115,32,98,121,32,116,104,101,32,115,112,101,99,105,102,105,101,100, + 32,118,97,108,117,101,46,0,73,110,99,114,101,109,101,110,116,32,116,104, + 101,32,118,97,108,117,101,32,115,116,111,114,101,100,32,97,116,32,116,104, + 101,32,115,112,101,99,105,102,105,101,100,32,97,100,100,114,101,115,115,32, + 98,121,32,49,46,0,73,110,99,114,101,109,101,110,116,32,116,104,101,32, + 118,97,108,117,101,32,115,116,111,114,101,100,32,97,116,32,116,104,101,32, + 115,112,101,99,105,102,105,101,100,32,97,100,100,114,101,115,115,32,98,121, + 32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,118,97,108,117,101, + 46,0,70,101,116,99,104,32,116,104,101,32,118,97,108,117,101,32,115,116, + 111,114,101,100,32,97,116,32,116,104,101,32,97,100,100,114,101,115,115,44, + 32,116,104,101,110,32,114,117,110,32,96,110,58,108,105,109,105,116,96,32, + 97,103,97,105,110,115,116,32,105,116,44,32,117,115,105,110,103,32,116,104, + 101,32,115,112,101,99,105,102,105,101,100,32,108,111,119,101,114,32,97,110, + 100,32,117,112,112,101,114,32,98,111,117,110,100,115,46,32,84,104,101,110, + 32,115,116,111,114,101,32,116,104,101,32,114,101,115,117,108,116,105,110,103, + 32,118,97,108,117,101,32,98,97,99,107,32,116,111,32,116,104,101,32,111, + 114,105,103,105,110,97,108,32,97,100,100,114,101,115,115,46,0,83,101,116, + 32,97,32,118,97,114,105,97,98,108,101,32,116,111,32,48,46,0,83,101, + 116,32,97,32,118,97,114,105,97,98,108,101,32,116,111,32,45,49,46,0, + 77,97,107,101,32,97,32,99,111,112,121,32,111,102,32,116,104,101,32,118, + 97,108,117,101,32,97,116,32,116,104,101,32,97,100,100,114,101,115,115,44, + 32,116,104,101,110,32,114,117,110,32,116,104,101,32,113,117,111,116,101,46, + 32,79,110,99,101,32,116,104,101,32,113,117,111,116,101,32,99,111,109,112, + 108,101,116,101,115,44,32,114,101,115,116,111,114,101,32,116,104,101,32,97, + 100,100,114,101,115,115,32,116,111,32,116,104,101,32,115,112,101,99,105,102, + 105,101,100,32,118,97,108,117,101,46,0,70,101,116,99,104,32,97,32,118, + 97,108,117,101,32,102,114,111,109,32,116,104,101,32,115,112,101,99,105,102, + 105,101,100,32,97,100,100,114,101,115,115,44,32,116,104,101,110,32,114,117, + 110,32,116,104,101,32,113,117,111,116,97,116,105,111,110,32,119,105,116,104, + 32,116,104,105,115,32,118,97,108,117,101,32,111,110,32,116,104,101,32,115, + 116,97,99,107,46,32,65,102,116,101,114,119,97,114,100,115,44,32,115,116, + 111,114,101,32,116,104,101,32,114,101,116,117,114,110,101,100,32,118,97,108, + 117,101,32,97,116,32,116,104,101,32,111,114,105,103,105,110,97,108,32,97, + 100,100,114,101,115,115,46,0,67,114,101,97,116,101,32,97,32,118,97,114, + 105,97,98,108,101,46,32,84,104,101,32,118,97,114,105,97,98,108,101,32, + 105,115,32,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,48,46, + 0,67,114,101,97,116,101,32,97,32,118,97,114,105,97,98,108,101,32,119, + 105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,105,110, + 105,116,105,97,108,32,118,97,108,117,101,46,0,67,114,101,97,116,101,32, + 97,32,118,97,114,105,97,98,108,101,32,119,105,116,104,32,116,104,101,32, + 115,112,101,99,105,102,105,101,100,32,105,110,105,116,105,97,108,32,118,97, + 108,117,101,46,0,70,101,116,99,104,32,116,104,101,32,51,50,45,98,105, + 116,32,118,97,108,117,101,32,115,116,111,114,101,100,32,97,116,32,116,104, + 101,32,115,112,101,99,105,102,105,101,100,32,97,100,100,114,101,115,115,46, + 32,65,100,100,114,101,115,115,105,110,103,32,102,111,114,32,116,104,105,115, + 32,105,115,32,105,110,32,56,45,98,105,116,32,117,110,105,116,115,46,32, + 84,104,101,32,97,100,100,114,101,115,115,32,109,117,115,116,32,98,101,32, + 97,108,105,103,110,101,100,32,111,110,32,97,32,102,111,117,114,32,98,121, + 116,101,32,98,111,117,110,100,97,114,121,46,0,70,101,116,99,104,32,116, + 104,101,32,118,97,108,117,101,32,115,116,111,114,101,100,32,97,116,32,116, + 104,101,32,115,112,101,99,105,102,105,101,100,32,97,100,100,114,101,115,115, + 46,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,120,116,32,97, + 100,100,114,101,115,115,32,97,110,100,32,116,104,101,32,118,97,108,117,101, + 46,0,83,116,111,114,101,32,97,110,32,51,50,45,98,105,116,32,118,97, + 108,117,101,32,105,110,116,111,32,116,104,101,32,115,112,101,99,105,102,105, + 101,100,32,97,100,100,114,101,115,115,46,32,65,100,100,114,101,115,115,105, + 110,103,32,102,111,114,32,116,104,105,115,32,105,115,32,105,110,32,56,45, + 98,105,116,32,117,110,105,116,115,46,32,84,104,101,32,97,100,100,114,101, + 115,115,32,109,117,115,116,32,98,101,32,97,108,105,103,110,101,100,32,111, + 110,32,97,32,102,111,117,114,32,98,121,116,101,32,98,111,117,110,100,97, + 114,121,46,0,83,116,111,114,101,32,97,32,118,97,108,117,101,32,105,110, + 116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,97,100,100, + 114,101,115,115,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,32, + 110,101,120,116,32,97,100,100,114,101,115,115,46,0,69,120,101,99,117,116, + 101,32,113,117,111,116,101,32,114,101,112,101,97,116,101,100,108,121,32,119, + 104,105,108,101,32,116,104,101,32,113,117,111,116,101,32,114,101,116,117,114, + 110,115,32,97,32,96,84,82,85,69,96,32,118,97,108,117,101,46,32,84, + 104,101,32,113,117,111,116,101,32,115,104,111,117,108,100,32,114,101,116,117, + 114,110,32,97,32,102,108,97,103,32,111,102,32,101,105,116,104,101,114,32, + 96,84,82,85,69,96,32,111,114,32,96,70,65,76,83,69,96,44,32,116, + 104,111,117,103,104,32,96,119,104,105,108,101,96,32,119,105,108,108,32,116, + 114,101,97,116,32,97,110,121,32,110,111,110,45,122,101,114,111,32,118,97, + 108,117,101,32,97,115,32,96,84,82,85,69,96,46,0,80,101,114,102,111, + 114,109,32,97,32,98,105,116,119,105,115,101,32,88,79,82,32,111,112,101, + 114,97,116,105,111,110,46,0,66,101,103,105,110,32,97,110,32,97,114,114, + 97,121,46,32,84,104,105,115,32,105,115,32,105,110,116,101,110,100,101,100, + 32,116,111,32,109,97,107,101,32,99,114,101,97,116,105,110,103,32,97,114, + 114,97,121,115,32,97,32,98,105,116,32,99,108,101,97,110,101,114,32,116, + 104,97,110,32,117,115,105,110,103,32,97,32,113,117,111,116,97,116,105,111, + 110,32,97,110,100,32,96,97,58,99,111,117,110,116,101,100,45,114,101,115, + 117,108,116,115,96,46,0,66,101,103,105,110,32,97,32,108,101,120,105,99, + 97,108,108,121,32,115,99,111,112,101,100,32,97,114,101,97,46,0,67,111, + 109,112,108,101,116,101,32,97,110,32,97,114,114,97,121,32,98,101,103,117, + 110,32,98,121,32,96,123,96,46,32,82,101,116,117,114,110,115,32,97,32, + 112,111,105,110,116,101,114,32,116,111,32,116,104,101,32,100,97,116,97,46, + 0,69,110,100,32,97,32,108,101,120,105,99,97,108,108,121,32,115,99,111, + 112,101,100,32,97,114,101,97,46,32,84,104,105,115,32,119,105,108,108,32, + 104,105,100,101,32,97,110,121,32,104,101,97,100,101,114,115,32,98,101,116, + 119,101,101,110,32,96,123,123,96,32,97,110,100,32,96,45,45,45,114,101, + 118,101,97,108,45,45,45,96,44,32,108,101,97,118,105,110,103,32,111,110, + 108,121,32,104,101,97,100,101,114,115,32,98,101,116,119,101,101,110,32,96, + 45,45,45,114,101,118,101,97,108,45,45,45,96,32,97,110,100,32,116,104, + 101,32,96,125,125,96,32,118,105,115,105,98,108,101,46,0,27688,67715,168,68034, + 8246457295145463473,67717,200,200,0,105,109,97,103,101,58,115,97,118,101,0,2049,5525,115,45, + 0,1,67717,3,1,1000,2049,12792,2049,12769,10,67695,67745,168,0,210711039690,0,200,200,0, + 101,100,105,116,63,0,2,1793,67752,1,8,11,10,1,67748,1793,67760,1,127,11, + 10,1,67756,2049,2923,22,10,67730,67782,168,0,6953475974244,0,200,200,0,101,110,100,101, + 100,63,0,2049,5153,3841,5274,2049,3411,10,67766,67802,168,0,193486030,0,200,200,0,97, + 100,100,0,2049,67782,1,17,1,5063,2049,66,10,67789,67827,168,0,6953539406400,0,200,200, + 0,103,97,116,104,101,114,0,2049,67745,1,17,1,67802,2049,66,10,67811,67851,168, + 0,210709415765,0,200,200,0,99,121,99,108,101,0,2049,13090,2049,2873,4,8,2049,3372, + 25,3,2049,67827,1,67851,7,10,67695,67888,168,68034,-4557881830897049127,67890,200,200,0,112,97,114, + 115,101,45,117,110,116,105,108,0,2049,5525,113,45,115,0,1,67890,3,1793,67909, + 2049,5500,2049,5179,2049,67851,771,2049,5017,10,1,67899,2049,5209,10,67867,67929,168,68034,210726130610, + 67931,200,200,0,115,58,103,101,116,0,2049,5525,45,115,0,1,67931,3,1793,67959, + 1793,67945,1,13,11,10,1,67941,1793,67953,1,10,11,10,1,67949,2049,2923,22,10, + 1,67939,2049,67888,10,67914,67979,168,68034,210708950412,67981,200,200,0,99,108,101,97,114,0, + 2049,5525,45,0,1,67981,3,2049,5525,92,94,91,50,74,92,94,91,48,59,48, + 72,0,1,67988,2049,9899,2049,12918,10,67964,68020,180,68034,5861507,68022,200,200,0,47,47, + 0,2049,5525,45,0,1,68022,3,2049,24504,1,13132,2049,4808,10,105,110,116,101,114, + 102,97,99,101,47,114,101,116,114,111,45,117,110,105,120,46,114,101,116,114, + 111,0,68008,68078,156,0,229441520490121,0,200,200,0,83,111,117,114,99,101,115,0,3, + 68329,68562,68860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 28054,28215,168,0,6953711201841,0,200,200,0,107,110,111,119,110,63,0,2,1,28071,2049, - 10843,10,28199,28236,168,0,210716136861,0,200,200,0,105,110,100,101,120,0,1,28071,4, - 2049,11579,1,28071,4,2049,11005,10,28221,28263,168,0,6953974036516,0,200,200,0,114,101,99, - 111,114,100,0,2049,5557,2,1,28071,2049,4744,3841,28071,1,28071,17,16,10,1793,28320, - 2049,24415,2049,28215,1,28236,1,28263,2049,66,1793,28298,1,202,1,2,17,8,10,1, - 28291,2049,2889,2049,2100,2049,186,16,2049,2100,2049,198,3841,13770,8,2049,2100,2049,188,16, - 10,1,28279,100,105,99,116,45,119,111,114,100,115,45,108,105,115,116,105,110, - 103,46,102,111,114,116,104,0,28001,28364,168,28322,229461403550098,28366,200,200,0,100,58,119, - 111,114,100,115,0,2049,5525,45,0,1,28366,3,1793,28380,2049,198,2049,12918,2049,12880, - 10,1,28373,2049,10176,10,28347,28407,168,28322,-3502157631813457253,28409,200,200,0,100,58,119,111,114, - 100,115,45,119,105,116,104,0,2049,5525,115,45,0,1,28409,3,2049,2585,2049,6805, - 1793,28446,2049,198,2,2049,2585,2049,6473,1793,28435,2049,12918,2049,12880,10,1,28430,1793,28441, - 3,10,1,28439,2049,66,10,1,28421,2049,10176,10,28385,28476,168,28322,2818131571306626127,0,200,200, - 0,100,105,115,112,108,97,121,45,105,102,45,108,101,102,116,0,2,2049,2585, - 2049,6743,1793,28488,2049,12918,2049,12880,10,1,28483,1793,28494,3,10,1,28492,2049,66,10, - 28385,28531,168,28322,2947807019553410009,28533,200,200,0,100,58,119,111,114,100,115,45,98,101,103, - 105,110,110,105,110,103,45,119,105,116,104,0,2049,5525,115,45,0,1,28533,3, - 2049,2585,2049,6805,1793,28550,2049,198,2049,28476,10,1,28545,2049,10176,10,101,120,116,101, - 110,115,105,111,110,115,47,100,111,117,98,108,101,46,114,101,116,114,111,0, - 28499,28599,168,28555,8246228896775126019,28601,200,200,0,100,111,117,98,108,101,58,118,97,114,0, - 2049,5525,110,110,115,45,0,1,28601,3,2049,2695,4,2049,130,2049,130,10,28579,28639, - 168,28555,-3421095308458227740,28641,200,200,0,100,111,117,98,108,101,58,102,101,116,99,104,0, - 2049,5525,97,45,110,110,0,1,28641,3,2049,58,4,15,10,28617,28676,168,28555,-3421095308442276665, - 28678,200,200,0,100,111,117,98,108,101,58,115,116,111,114,101,0,2049,5525,110, - 110,97,45,0,1,28678,3,1,19,2049,2889,2049,61,16,10,28654,28716,168,28555,-3421095308461432127, - 28718,200,200,0,100,111,117,98,108,101,58,99,111,110,115,116,0,2049,5525,110, - 110,115,45,0,1,28718,3,2049,28599,1,28639,2049,10141,10,28694,28754,168,28555,-4575607512064199915,28756, - 200,200,0,100,111,117,98,108,101,58,115,119,97,112,0,2049,5525,110,110,109, - 109,45,109,109,110,110,0,1,28756,3,67503109,5,67503109,6,10,28733,28794,168,28555,8246228896775106679, - 28796,200,200,0,100,111,117,98,108,101,58,100,105,112,0,2049,5525,109,110,113, - 45,109,110,0,1,28796,3,67503109,67503109,5,5,8,6,6,10,28774,28834,168,28555,8246228896775123014, - 28836,200,200,0,100,111,117,98,108,101,58,115,105,112,0,2049,5525,109,110,113, - 45,109,110,0,1,28836,3,1,2873,2049,2889,2049,28794,10,101,120,116,101,110,115, - 105,111,110,115,47,109,97,108,108,111,99,46,114,101,116,114,111,0,28814,28897, - 168,28853,8246632143337714634,0,200,200,0,109,101,109,58,105,110,118,111,107,101,0,1,15, - 2049,12792,2049,12769,10,28877,0,156,28853,210667451248,0,200,200,0,65,76,76,79,67,0, - 28904,1,156,28853,6384048135,0,200,200,0,70,82,69,69,0,28919,2,156,28853,210689088690,0, - 200,200,0,83,84,79,82,69,0,28933,3,156,28853,210673137615,0,200,200,0,70,69, - 84,67,72,0,28948,4,156,28853,6952683137271,0,200,200,0,82,69,83,73,90,69,0, - 28814,28998,168,28853,249897943727936361,29000,200,200,0,109,101,109,58,97,108,108,111,99,0,2049, - 5525,110,45,45,97,0,1,29000,3,1,0,2049,28897,10,28979,29032,168,28853,249897943749573803,29034, - 200,200,0,109,101,109,58,115,116,111,114,101,0,2049,5525,97,110,45,45,0, - 1,29034,3,1,2,2049,28897,10,29013,29066,168,28853,249897943733622728,29068,200,200,0,109,101,109, - 58,102,101,116,99,104,0,2049,5525,97,45,45,110,0,1,29068,3,1,3,2049, - 28897,10,29047,29099,168,28853,7572664961638592,29101,200,200,0,109,101,109,58,102,114,101,101,0, - 2049,5525,97,45,45,0,1,29101,3,1,1,2049,28897,10,29081,29133,168,28853,8246632143679146032,29135, - 200,200,0,109,101,109,58,114,101,115,105,122,101,0,2049,5525,97,110,45,45, - 0,1,29135,3,1,4,2049,28897,10,29113,29167,168,28853,249897943730056489,29169,200,200,0,109,101, - 109,58,99,101,108,108,43,0,2049,5525,110,110,45,110,0,1,29169,3,1,8, - 19,17,10,29148,29208,168,28853,1050530996183190288,29210,200,200,0,109,101,109,58,102,101,116,99, - 104,45,100,111,117,98,108,101,0,2049,5525,110,45,110,110,0,1,29210,3,2, - 1,1,2049,29167,15,5,2049,29066,6,10,29182,29255,168,28853,1730340976492540563,29257,200,200,0,109, - 101,109,58,115,116,111,114,101,45,100,111,117,98,108,101,0,2049,5525,97,110, - 110,45,110,110,0,1,29257,3,5,5,2049,2873,1,1,2049,29167,6,2049,29032,6, - 2049,29032,10,0 }; + 0,0,0,0,0,0,0,68061,68222,168,0,6953711201841,0,200,200,0,107,110,111,119, + 110,63,0,2,1,68078,2049,10843,10,68206,68243,168,0,210716136861,0,200,200,0,105,110, + 100,101,120,0,1,68078,4,2049,11579,1,68078,4,2049,11005,10,68228,68270,168,0,6953974036516, + 0,200,200,0,114,101,99,111,114,100,0,2049,5557,2,1,68078,2049,4744,3841,68078, + 1,68078,17,16,10,1793,68327,2049,24415,2049,68222,1,68243,1,68270,2049,66,1793,68305,1, + 202,1,2,17,8,10,1,68298,2049,2889,2049,2100,2049,186,16,2049,2100,2049,198,3841, + 13770,8,2049,2100,2049,188,16,10,1,68286,100,105,99,116,45,119,111,114,100,115, + 45,108,105,115,116,105,110,103,46,102,111,114,116,104,0,68008,68371,168,68329,229461403550098, + 68373,200,200,0,100,58,119,111,114,100,115,0,2049,5525,45,0,1,68373,3,1793, + 68387,2049,198,2049,12918,2049,12880,10,1,68380,2049,10176,10,68354,68414,168,68329,-3502157631813457253,68416,200, + 200,0,100,58,119,111,114,100,115,45,119,105,116,104,0,2049,5525,115,45,0, + 1,68416,3,2049,2585,2049,6805,1793,68453,2049,198,2,2049,2585,2049,6473,1793,68442,2049,12918, + 2049,12880,10,1,68437,1793,68448,3,10,1,68446,2049,66,10,1,68428,2049,10176,10,68392, + 68483,168,68329,2818131571306626127,0,200,200,0,100,105,115,112,108,97,121,45,105,102,45,108, + 101,102,116,0,2,2049,2585,2049,6743,1793,68495,2049,12918,2049,12880,10,1,68490,1793,68501, + 3,10,1,68499,2049,66,10,68392,68538,168,68329,2947807019553410009,68540,200,200,0,100,58,119,111, + 114,100,115,45,98,101,103,105,110,110,105,110,103,45,119,105,116,104,0,2049, + 5525,115,45,0,1,68540,3,2049,2585,2049,6805,1793,68557,2049,198,2049,68483,10,1,68552, + 2049,10176,10,101,120,116,101,110,115,105,111,110,115,47,100,111,117,98,108,101, + 46,114,101,116,114,111,0,68506,68606,168,68562,8246228896775126019,68608,200,200,0,100,111,117,98, + 108,101,58,118,97,114,0,2049,5525,110,110,115,45,0,1,68608,3,2049,2695,4, + 2049,130,2049,130,10,68586,68646,168,68562,-3421095308458227740,68648,200,200,0,100,111,117,98,108,101, + 58,102,101,116,99,104,0,2049,5525,97,45,110,110,0,1,68648,3,2049,58,4, + 15,10,68624,68683,168,68562,-3421095308442276665,68685,200,200,0,100,111,117,98,108,101,58,115,116, + 111,114,101,0,2049,5525,110,110,97,45,0,1,68685,3,1,19,2049,2889,2049,61, + 16,10,68661,68723,168,68562,-3421095308461432127,68725,200,200,0,100,111,117,98,108,101,58,99,111, + 110,115,116,0,2049,5525,110,110,115,45,0,1,68725,3,2049,68606,1,68646,2049,10141, + 10,68701,68761,168,68562,-4575607512064199915,68763,200,200,0,100,111,117,98,108,101,58,115,119,97, + 112,0,2049,5525,110,110,109,109,45,109,109,110,110,0,1,68763,3,67503109,5,67503109, + 6,10,68740,68801,168,68562,8246228896775106679,68803,200,200,0,100,111,117,98,108,101,58,100,105, + 112,0,2049,5525,109,110,113,45,109,110,0,1,68803,3,67503109,67503109,5,5,8,6, + 6,10,68781,68841,168,68562,8246228896775123014,68843,200,200,0,100,111,117,98,108,101,58,115,105, + 112,0,2049,5525,109,110,113,45,109,110,0,1,68843,3,1,2873,2049,2889,2049,68801, + 10,101,120,116,101,110,115,105,111,110,115,47,109,97,108,108,111,99,46,114, + 101,116,114,111,0,68821,68904,168,68860,8246632143337714634,0,200,200,0,109,101,109,58,105,110, + 118,111,107,101,0,1,15,2049,12792,2049,12769,10,68884,0,156,68860,210667451248,0,200,200, + 0,65,76,76,79,67,0,68911,1,156,68860,6384048135,0,200,200,0,70,82,69,69, + 0,68926,2,156,68860,210689088690,0,200,200,0,83,84,79,82,69,0,68940,3,156,68860, + 210673137615,0,200,200,0,70,69,84,67,72,0,68955,4,156,68860,6952683137271,0,200,200,0, + 82,69,83,73,90,69,0,68821,69005,168,68860,249897943727936361,69007,200,200,0,109,101,109,58, + 97,108,108,111,99,0,2049,5525,110,45,45,97,0,1,69007,3,1,0,2049,68904, + 10,68986,69039,168,68860,249897943749573803,69041,200,200,0,109,101,109,58,115,116,111,114,101,0, + 2049,5525,97,110,45,45,0,1,69041,3,1,2,2049,68904,10,69020,69073,168,68860,249897943733622728, + 69075,200,200,0,109,101,109,58,102,101,116,99,104,0,2049,5525,97,45,45,110, + 0,1,69075,3,1,3,2049,68904,10,69054,69106,168,68860,7572664961638592,69108,200,200,0,109,101, + 109,58,102,114,101,101,0,2049,5525,97,45,45,0,1,69108,3,1,1,2049,68904, + 10,69088,69140,168,68860,8246632143679146032,69142,200,200,0,109,101,109,58,114,101,115,105,122,101, + 0,2049,5525,97,110,45,45,0,1,69142,3,1,4,2049,68904,10,69120,69174,168,68860, + 249897943730056489,69176,200,200,0,109,101,109,58,99,101,108,108,43,0,2049,5525,110,110,45, + 110,0,1,69176,3,1,8,19,17,10,69155,69215,168,68860,1050530996183190288,69217,200,200,0,109, + 101,109,58,102,101,116,99,104,45,100,111,117,98,108,101,0,2049,5525,110,45, + 110,110,0,1,69217,3,2,1,1,2049,69174,15,5,2049,69073,6,10,69189,69262,168, + 68860,1730340976492540563,69264,200,200,0,109,101,109,58,115,116,111,114,101,45,100,111,117,98, + 108,101,0,2049,5525,97,110,110,45,110,110,0,1,69264,3,5,5,2049,2873,1, + 1,2049,69174,6,2049,69039,6,2049,69039,10,0 };