├── .gitignore ├── .gitmodules ├── ChangeLog.md ├── Makefile ├── NS_README.md ├── README.md ├── libcss ├── .github │ └── workflows │ │ ├── build.yaml │ │ └── static-analysis.yaml ├── COPYING ├── Makefile ├── Makefile.config ├── README ├── build │ └── mkprops.pl ├── docs │ ├── API │ ├── API-ABI-Changes │ ├── Bytecode │ ├── Colour │ ├── Doxyfile │ ├── Grammar │ ├── Lexer │ ├── Representation │ └── Tokens ├── examples │ └── example1.c ├── include │ └── libcss │ │ ├── computed.h │ │ ├── errors.h │ │ ├── font_face.h │ │ ├── fpmath.h │ │ ├── functypes.h │ │ ├── hint.h │ │ ├── libcss.h │ │ ├── properties.h │ │ ├── select.h │ │ ├── stylesheet.h │ │ ├── types.h │ │ └── unit.h ├── libcss.pc.in ├── src │ ├── Makefile │ ├── bytecode │ │ ├── Makefile │ │ ├── bytecode.h │ │ └── opcodes.h │ ├── charset │ │ ├── Makefile │ │ ├── detect.c │ │ └── detect.h │ ├── lex │ │ ├── Makefile │ │ ├── lex.c │ │ └── lex.h │ ├── parse │ │ ├── Makefile │ │ ├── font_face.c │ │ ├── font_face.h │ │ ├── important.c │ │ ├── important.h │ │ ├── language.c │ │ ├── language.h │ │ ├── mq.c │ │ ├── mq.h │ │ ├── parse.c │ │ ├── parse.h │ │ ├── properties │ │ │ ├── Makefile │ │ │ ├── azimuth.c │ │ │ ├── background.c │ │ │ ├── background_position.c │ │ │ ├── border.c │ │ │ ├── border_color.c │ │ │ ├── border_spacing.c │ │ │ ├── border_style.c │ │ │ ├── border_width.c │ │ │ ├── clip.c │ │ │ ├── column_rule.c │ │ │ ├── columns.c │ │ │ ├── content.c │ │ │ ├── css_property_parser_gen.c │ │ │ ├── cue.c │ │ │ ├── cursor.c │ │ │ ├── elevation.c │ │ │ ├── fill_opacity.c │ │ │ ├── flex.c │ │ │ ├── flex_flow.c │ │ │ ├── font.c │ │ │ ├── font_family.c │ │ │ ├── font_weight.c │ │ │ ├── list_style.c │ │ │ ├── list_style_type.c │ │ │ ├── margin.c │ │ │ ├── opacity.c │ │ │ ├── outline.c │ │ │ ├── overflow.c │ │ │ ├── padding.c │ │ │ ├── pause.c │ │ │ ├── play_during.c │ │ │ ├── properties.c │ │ │ ├── properties.gen │ │ │ ├── properties.h │ │ │ ├── quotes.c │ │ │ ├── stroke_opacity.c │ │ │ ├── text_decoration.c │ │ │ ├── utils.c │ │ │ ├── utils.h │ │ │ └── voice_family.c │ │ ├── propstrings.c │ │ └── propstrings.h │ ├── select │ │ ├── Makefile │ │ ├── arena.c │ │ ├── arena.h │ │ ├── arena_hash.h │ │ ├── assets.py │ │ ├── autogenerated_computed.h │ │ ├── autogenerated_propget.h │ │ ├── autogenerated_propset.h │ │ ├── bloom.h │ │ ├── computed.c │ │ ├── computed.h │ │ ├── dispatch.c │ │ ├── dispatch.h │ │ ├── font_face.c │ │ ├── font_face.h │ │ ├── format_list_style.c │ │ ├── hash.c │ │ ├── hash.h │ │ ├── helpers.h │ │ ├── mq.h │ │ ├── overrides.py │ │ ├── properties │ │ │ ├── Makefile │ │ │ ├── align_content.c │ │ │ ├── align_items.c │ │ │ ├── align_self.c │ │ │ ├── azimuth.c │ │ │ ├── background_attachment.c │ │ │ ├── background_color.c │ │ │ ├── background_image.c │ │ │ ├── background_position.c │ │ │ ├── background_repeat.c │ │ │ ├── border_bottom_color.c │ │ │ ├── border_bottom_style.c │ │ │ ├── border_bottom_width.c │ │ │ ├── border_collapse.c │ │ │ ├── border_left_color.c │ │ │ ├── border_left_style.c │ │ │ ├── border_left_width.c │ │ │ ├── border_right_color.c │ │ │ ├── border_right_style.c │ │ │ ├── border_right_width.c │ │ │ ├── border_spacing.c │ │ │ ├── border_top_color.c │ │ │ ├── border_top_style.c │ │ │ ├── border_top_width.c │ │ │ ├── bottom.c │ │ │ ├── box_sizing.c │ │ │ ├── break_after.c │ │ │ ├── break_before.c │ │ │ ├── break_inside.c │ │ │ ├── caption_side.c │ │ │ ├── clear.c │ │ │ ├── clip.c │ │ │ ├── color.c │ │ │ ├── column_count.c │ │ │ ├── column_fill.c │ │ │ ├── column_gap.c │ │ │ ├── column_rule_color.c │ │ │ ├── column_rule_style.c │ │ │ ├── column_rule_width.c │ │ │ ├── column_span.c │ │ │ ├── column_width.c │ │ │ ├── content.c │ │ │ ├── counter_increment.c │ │ │ ├── counter_reset.c │ │ │ ├── cue_after.c │ │ │ ├── cue_before.c │ │ │ ├── cursor.c │ │ │ ├── direction.c │ │ │ ├── display.c │ │ │ ├── elevation.c │ │ │ ├── empty_cells.c │ │ │ ├── fill_opacity.c │ │ │ ├── flex_basis.c │ │ │ ├── flex_direction.c │ │ │ ├── flex_grow.c │ │ │ ├── flex_shrink.c │ │ │ ├── flex_wrap.c │ │ │ ├── float.c │ │ │ ├── font_family.c │ │ │ ├── font_size.c │ │ │ ├── font_style.c │ │ │ ├── font_variant.c │ │ │ ├── font_weight.c │ │ │ ├── height.c │ │ │ ├── helpers.c │ │ │ ├── helpers.h │ │ │ ├── justify_content.c │ │ │ ├── left.c │ │ │ ├── letter_spacing.c │ │ │ ├── line_height.c │ │ │ ├── list_style_image.c │ │ │ ├── list_style_position.c │ │ │ ├── list_style_type.c │ │ │ ├── margin_bottom.c │ │ │ ├── margin_left.c │ │ │ ├── margin_right.c │ │ │ ├── margin_top.c │ │ │ ├── max_height.c │ │ │ ├── max_width.c │ │ │ ├── min_height.c │ │ │ ├── min_width.c │ │ │ ├── opacity.c │ │ │ ├── order.c │ │ │ ├── orphans.c │ │ │ ├── outline_color.c │ │ │ ├── outline_style.c │ │ │ ├── outline_width.c │ │ │ ├── overflow_x.c │ │ │ ├── overflow_y.c │ │ │ ├── padding_bottom.c │ │ │ ├── padding_left.c │ │ │ ├── padding_right.c │ │ │ ├── padding_top.c │ │ │ ├── page_break_after.c │ │ │ ├── page_break_before.c │ │ │ ├── page_break_inside.c │ │ │ ├── pause_after.c │ │ │ ├── pause_before.c │ │ │ ├── pitch.c │ │ │ ├── pitch_range.c │ │ │ ├── play_during.c │ │ │ ├── position.c │ │ │ ├── properties.h │ │ │ ├── quotes.c │ │ │ ├── richness.c │ │ │ ├── right.c │ │ │ ├── speak.c │ │ │ ├── speak_header.c │ │ │ ├── speak_numeral.c │ │ │ ├── speak_punctuation.c │ │ │ ├── speech_rate.c │ │ │ ├── stress.c │ │ │ ├── stroke_opacity.c │ │ │ ├── table_layout.c │ │ │ ├── text_align.c │ │ │ ├── text_decoration.c │ │ │ ├── text_indent.c │ │ │ ├── text_transform.c │ │ │ ├── top.c │ │ │ ├── unicode_bidi.c │ │ │ ├── vertical_align.c │ │ │ ├── visibility.c │ │ │ ├── voice_family.c │ │ │ ├── volume.c │ │ │ ├── white_space.c │ │ │ ├── widows.c │ │ │ ├── width.c │ │ │ ├── word_spacing.c │ │ │ ├── writing_mode.c │ │ │ └── z_index.c │ │ ├── propget.h │ │ ├── propset.h │ │ ├── select.c │ │ ├── select.h │ │ ├── select_config.py │ │ ├── select_generator.py │ │ ├── strings.c │ │ ├── strings.h │ │ ├── unit.c │ │ └── unit.h │ ├── stylesheet.c │ ├── stylesheet.h │ └── utils │ │ ├── Makefile │ │ ├── errors.c │ │ ├── parserutilserror.h │ │ ├── utils.c │ │ └── utils.h └── test │ ├── INDEX │ ├── Makefile │ ├── README │ ├── csdetect.c │ ├── css21.c │ ├── data │ ├── csdetect │ │ ├── INDEX │ │ ├── bom-charset.dat │ │ └── bom.dat │ ├── css │ │ ├── INDEX │ │ ├── allzengarden.css │ │ ├── badcomment.css │ │ ├── blocks.css │ │ ├── color.css │ │ ├── fontface.css │ │ ├── malformed.css │ │ └── simple.css │ ├── lex │ │ ├── INDEX │ │ ├── regression.dat │ │ ├── tests1.dat │ │ └── tests2.dat │ ├── number │ │ ├── INDEX │ │ └── number.dat │ ├── parse │ │ ├── INDEX │ │ ├── README │ │ ├── atrules.dat │ │ ├── colours-hsl.dat │ │ ├── colours.dat │ │ ├── makefixed.pl │ │ ├── makeopv.pl │ │ ├── nth.dat │ │ ├── properties.dat │ │ ├── selectors.dat │ │ └── tests1.dat │ ├── parse2 │ │ ├── INDEX │ │ ├── README │ │ ├── au.dat │ │ ├── bg.dat │ │ ├── bgpos.dat │ │ ├── border.dat │ │ ├── comments.dat │ │ ├── dodgy-media-block.dat │ │ ├── eof.dat │ │ ├── flexbox.dat │ │ ├── font.dat │ │ ├── illegal-values.dat │ │ ├── list.dat │ │ ├── malformed-declarations.dat │ │ ├── margin.dat │ │ ├── mq.dat │ │ ├── multicol.dat │ │ ├── outline.dat │ │ ├── overflow.dat │ │ ├── padding.dat │ │ ├── selectors.dat │ │ ├── svg.dat │ │ ├── tests1.dat │ │ ├── units.dat │ │ └── unknown-properties.dat │ └── select │ │ ├── INDEX │ │ ├── defaulting.dat │ │ └── tests1.dat │ ├── dump.h │ ├── dump_computed.h │ ├── lex-auto.c │ ├── lex.c │ ├── number.c │ ├── parse-auto.c │ ├── parse.c │ ├── parse2-auto.c │ ├── select.c │ └── testutils.h ├── libdom ├── .clang-format ├── .github │ └── workflows │ │ ├── build.yaml │ │ └── static-analysis.yaml ├── COPYING ├── Makefile ├── Makefile.config ├── README ├── bindings │ ├── Makefile │ ├── hubbub │ │ ├── Makefile │ │ ├── README │ │ ├── errors.h │ │ ├── parser.c │ │ ├── parser.h │ │ └── utils.h │ └── xml │ │ ├── Makefile │ │ ├── README │ │ ├── expat_xmlparser.c │ │ ├── libxml_xmlparser.c │ │ ├── utils.h │ │ ├── xmlerror.h │ │ └── xmlparser.h ├── docs │ ├── Doxyfile │ ├── RefCnt │ ├── TestSuite │ └── Todo ├── examples │ ├── dom-structure-dump.c │ ├── example.mk │ └── files │ │ └── test.html ├── gdb │ └── libdom.py ├── include │ └── dom │ │ ├── core │ │ ├── attr.h │ │ ├── cdatasection.h │ │ ├── characterdata.h │ │ ├── comment.h │ │ ├── doc_fragment.h │ │ ├── document.h │ │ ├── document_type.h │ │ ├── element.h │ │ ├── entity_ref.h │ │ ├── exceptions.h │ │ ├── implementation.h │ │ ├── namednodemap.h │ │ ├── node.h │ │ ├── nodelist.h │ │ ├── pi.h │ │ ├── string.h │ │ ├── text.h │ │ ├── tokenlist.h │ │ └── typeinfo.h │ │ ├── dom.h │ │ ├── events │ │ ├── custom_event.h │ │ ├── document_event.h │ │ ├── event.h │ │ ├── event_listener.h │ │ ├── event_target.h │ │ ├── events.h │ │ ├── keyboard_event.h │ │ ├── mouse_event.h │ │ ├── mouse_multi_wheel_event.h │ │ ├── mouse_wheel_event.h │ │ ├── mutation_event.h │ │ ├── mutation_name_event.h │ │ ├── text_event.h │ │ └── ui_event.h │ │ ├── functypes.h │ │ ├── html │ │ ├── html_anchor_element.h │ │ ├── html_applet_element.h │ │ ├── html_area_element.h │ │ ├── html_base_element.h │ │ ├── html_basefont_element.h │ │ ├── html_body_element.h │ │ ├── html_br_element.h │ │ ├── html_button_element.h │ │ ├── html_canvas_element.h │ │ ├── html_collection.h │ │ ├── html_directory_element.h │ │ ├── html_div_element.h │ │ ├── html_dlist_element.h │ │ ├── html_document.h │ │ ├── html_element.h │ │ ├── html_elements.h │ │ ├── html_fieldset_element.h │ │ ├── html_font_element.h │ │ ├── html_form_element.h │ │ ├── html_frame_element.h │ │ ├── html_frameset_element.h │ │ ├── html_head_element.h │ │ ├── html_heading_element.h │ │ ├── html_hr_element.h │ │ ├── html_html_element.h │ │ ├── html_iframe_element.h │ │ ├── html_image_element.h │ │ ├── html_input_element.h │ │ ├── html_isindex_element.h │ │ ├── html_label_element.h │ │ ├── html_legend_element.h │ │ ├── html_li_element.h │ │ ├── html_link_element.h │ │ ├── html_map_element.h │ │ ├── html_menu_element.h │ │ ├── html_meta_element.h │ │ ├── html_mod_element.h │ │ ├── html_object_element.h │ │ ├── html_olist_element.h │ │ ├── html_opt_group_element.h │ │ ├── html_option_element.h │ │ ├── html_options_collection.h │ │ ├── html_paragraph_element.h │ │ ├── html_param_element.h │ │ ├── html_pre_element.h │ │ ├── html_quote_element.h │ │ ├── html_script_element.h │ │ ├── html_select_element.h │ │ ├── html_style_element.h │ │ ├── html_table_element.h │ │ ├── html_tablecaption_element.h │ │ ├── html_tablecell_element.h │ │ ├── html_tablecol_element.h │ │ ├── html_tablerow_element.h │ │ ├── html_tablesection_element.h │ │ ├── html_text_area_element.h │ │ ├── html_title_element.h │ │ └── html_ulist_element.h │ │ ├── inttypes.h │ │ └── walk.h ├── libdom.pc.in ├── src │ ├── Makefile │ ├── core │ │ ├── Makefile │ │ ├── attr.c │ │ ├── attr.h │ │ ├── cdatasection.c │ │ ├── cdatasection.h │ │ ├── characterdata.c │ │ ├── characterdata.h │ │ ├── comment.c │ │ ├── comment.h │ │ ├── doc_fragment.c │ │ ├── doc_fragment.h │ │ ├── document.c │ │ ├── document.h │ │ ├── document_type.c │ │ ├── document_type.h │ │ ├── element.c │ │ ├── element.h │ │ ├── entity_ref.c │ │ ├── entity_ref.h │ │ ├── implementation.c │ │ ├── namednodemap.c │ │ ├── namednodemap.h │ │ ├── node.c │ │ ├── node.h │ │ ├── nodelist.c │ │ ├── nodelist.h │ │ ├── pi.c │ │ ├── pi.h │ │ ├── string.c │ │ ├── string.h │ │ ├── text.c │ │ ├── text.h │ │ ├── tokenlist.c │ │ ├── tokenlist.h │ │ └── typeinfo.c │ ├── events │ │ ├── Makefile │ │ ├── custom_event.c │ │ ├── custom_event.h │ │ ├── dispatch.c │ │ ├── dispatch.h │ │ ├── document_event.c │ │ ├── document_event.h │ │ ├── event.c │ │ ├── event.h │ │ ├── event_listener.c │ │ ├── event_listener.h │ │ ├── event_target.c │ │ ├── event_target.h │ │ ├── keyboard_event.c │ │ ├── keyboard_event.h │ │ ├── mouse_event.c │ │ ├── mouse_event.h │ │ ├── mouse_multi_wheel_event.c │ │ ├── mouse_multi_wheel_event.h │ │ ├── mouse_wheel_event.c │ │ ├── mouse_wheel_event.h │ │ ├── mutation_event.c │ │ ├── mutation_event.h │ │ ├── mutation_name_event.c │ │ ├── mutation_name_event.h │ │ ├── text_event.c │ │ ├── text_event.h │ │ ├── ui_event.c │ │ └── ui_event.h │ ├── html │ │ ├── Makefile │ │ ├── TODO │ │ ├── html_anchor_element.c │ │ ├── html_anchor_element.h │ │ ├── html_applet_element.c │ │ ├── html_applet_element.h │ │ ├── html_area_element.c │ │ ├── html_area_element.h │ │ ├── html_base_element.c │ │ ├── html_base_element.h │ │ ├── html_basefont_element.c │ │ ├── html_basefont_element.h │ │ ├── html_body_element.c │ │ ├── html_body_element.h │ │ ├── html_br_element.c │ │ ├── html_br_element.h │ │ ├── html_button_element.c │ │ ├── html_button_element.h │ │ ├── html_canvas_element.c │ │ ├── html_canvas_element.h │ │ ├── html_collection.c │ │ ├── html_collection.h │ │ ├── html_directory_element.c │ │ ├── html_directory_element.h │ │ ├── html_div_element.c │ │ ├── html_div_element.h │ │ ├── html_dlist_element.c │ │ ├── html_dlist_element.h │ │ ├── html_document.c │ │ ├── html_document.h │ │ ├── html_document_strings.h │ │ ├── html_element.c │ │ ├── html_element.h │ │ ├── html_fieldset_element.c │ │ ├── html_fieldset_element.h │ │ ├── html_font_element.c │ │ ├── html_font_element.h │ │ ├── html_form_element.c │ │ ├── html_form_element.h │ │ ├── html_frame_element.c │ │ ├── html_frame_element.h │ │ ├── html_frameset_element.c │ │ ├── html_frameset_element.h │ │ ├── html_head_element.c │ │ ├── html_head_element.h │ │ ├── html_heading_element.c │ │ ├── html_heading_element.h │ │ ├── html_hr_element.c │ │ ├── html_hr_element.h │ │ ├── html_html_element.c │ │ ├── html_html_element.h │ │ ├── html_iframe_element.c │ │ ├── html_iframe_element.h │ │ ├── html_image_element.c │ │ ├── html_image_element.h │ │ ├── html_input_element.c │ │ ├── html_input_element.h │ │ ├── html_isindex_element.c │ │ ├── html_isindex_element.h │ │ ├── html_label_element.c │ │ ├── html_label_element.h │ │ ├── html_legend_element.c │ │ ├── html_legend_element.h │ │ ├── html_li_element.c │ │ ├── html_li_element.h │ │ ├── html_link_element.c │ │ ├── html_link_element.h │ │ ├── html_map_element.c │ │ ├── html_map_element.h │ │ ├── html_menu_element.c │ │ ├── html_menu_element.h │ │ ├── html_meta_element.c │ │ ├── html_meta_element.h │ │ ├── html_mod_element.c │ │ ├── html_mod_element.h │ │ ├── html_object_element.c │ │ ├── html_object_element.h │ │ ├── html_olist_element.c │ │ ├── html_olist_element.h │ │ ├── html_opt_group_element.c │ │ ├── html_opt_group_element.h │ │ ├── html_option_element.c │ │ ├── html_option_element.h │ │ ├── html_options_collection.c │ │ ├── html_options_collection.h │ │ ├── html_paragraph_element.c │ │ ├── html_paragraph_element.h │ │ ├── html_param_element.c │ │ ├── html_param_element.h │ │ ├── html_pre_element.c │ │ ├── html_pre_element.h │ │ ├── html_quote_element.c │ │ ├── html_quote_element.h │ │ ├── html_script_element.c │ │ ├── html_script_element.h │ │ ├── html_select_element.c │ │ ├── html_select_element.h │ │ ├── html_style_element.c │ │ ├── html_style_element.h │ │ ├── html_table_element.c │ │ ├── html_table_element.h │ │ ├── html_tablecaption_element.c │ │ ├── html_tablecaption_element.h │ │ ├── html_tablecell_element.c │ │ ├── html_tablecell_element.h │ │ ├── html_tablecol_element.c │ │ ├── html_tablecol_element.h │ │ ├── html_tablerow_element.c │ │ ├── html_tablerow_element.h │ │ ├── html_tablesection_element.c │ │ ├── html_tablesection_element.h │ │ ├── html_text_area_element.c │ │ ├── html_text_area_element.h │ │ ├── html_title_element.c │ │ ├── html_title_element.h │ │ ├── html_ulist_element.c │ │ └── html_ulist_element.h │ └── utils │ │ ├── Makefile │ │ ├── character_valid.c │ │ ├── character_valid.h │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── list.h │ │ ├── namespace.c │ │ ├── namespace.h │ │ ├── utils.h │ │ ├── validate.c │ │ ├── validate.h │ │ └── walk.c └── test │ ├── DOMTSHandler.pm │ ├── Makefile │ ├── build-test.sh │ ├── dom1-interfaces.xml │ ├── dom2-core-interface.xml │ ├── dom2-events-interface.xml │ ├── dom3-core-interface.xml │ ├── dom3-events-interface.xml │ ├── leak-test.sh │ ├── run-single-test.sh │ ├── run-test.sh │ ├── testcases │ └── tests │ │ ├── CVS │ │ ├── Entries │ │ ├── Repository │ │ ├── Root │ │ └── Template │ │ ├── level1 │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ ├── Root │ │ │ └── Template │ │ ├── core │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── alltests.xml │ │ │ ├── attrcreatedocumentfragment.xml │ │ │ ├── attrcreatetextnode.xml │ │ │ ├── attrcreatetextnode2.xml │ │ │ ├── attrdefaultvalue.xml │ │ │ ├── attreffectivevalue.xml │ │ │ ├── attrentityreplacement.xml.notimpl │ │ │ ├── attrname.xml │ │ │ ├── attrnextsiblingnull.xml │ │ │ ├── attrnotspecifiedvalue.xml.kfail │ │ │ ├── attrparentnodenull.xml │ │ │ ├── attrprevioussiblingnull.xml │ │ │ ├── attrremovechild1.xml.kfail │ │ │ ├── attrreplacechild1.xml.kfail │ │ │ ├── attrsetvaluenomodificationallowederr.xml.notimpl │ │ │ ├── attrsetvaluenomodificationallowederrEE.xml.notimpl │ │ │ ├── attrspecifiedvalue.xml │ │ │ ├── attrspecifiedvaluechanged.xml │ │ │ ├── attrspecifiedvalueremove.xml.kfail │ │ │ ├── cdatasectiongetdata.xml │ │ │ ├── cdatasectionnormalize.xml.notimpl │ │ │ ├── characterdataappenddata.xml │ │ │ ├── characterdataappenddatagetdata.xml │ │ │ ├── characterdataappenddatanomodificationallowederr.xml.kfail │ │ │ ├── characterdataappenddatanomodificationallowederrEE.xml.kfail │ │ │ ├── characterdatadeletedatabegining.xml │ │ │ ├── characterdatadeletedataend.xml │ │ │ ├── characterdatadeletedataexceedslength.xml │ │ │ ├── characterdatadeletedatagetlengthanddata.xml │ │ │ ├── characterdatadeletedatamiddle.xml │ │ │ ├── characterdatadeletedatanomodificationallowederr.xml.kfail │ │ │ ├── characterdatadeletedatanomodificationallowederrEE.xml.kfail │ │ │ ├── characterdatagetdata.xml │ │ │ ├── characterdatagetlength.xml │ │ │ ├── characterdataindexsizeerrdeletedatacountnegative.xml │ │ │ ├── characterdataindexsizeerrdeletedataoffsetgreater.xml │ │ │ ├── characterdataindexsizeerrdeletedataoffsetnegative.xml │ │ │ ├── characterdataindexsizeerrinsertdataoffsetgreater.xml │ │ │ ├── characterdataindexsizeerrinsertdataoffsetnegative.xml │ │ │ ├── characterdataindexsizeerrreplacedatacountnegative.xml │ │ │ ├── characterdataindexsizeerrreplacedataoffsetgreater.xml │ │ │ ├── characterdataindexsizeerrreplacedataoffsetnegative.xml │ │ │ ├── characterdataindexsizeerrsubstringcountnegative.xml │ │ │ ├── characterdataindexsizeerrsubstringnegativeoffset.xml │ │ │ ├── characterdataindexsizeerrsubstringoffsetgreater.xml │ │ │ ├── characterdatainsertdatabeginning.xml │ │ │ ├── characterdatainsertdataend.xml │ │ │ ├── characterdatainsertdatamiddle.xml │ │ │ ├── characterdatainsertdatanomodificationallowederr.xml.kfail │ │ │ ├── characterdatainsertdatanomodificationallowederrEE.xml.kfail │ │ │ ├── characterdatareplacedatabegining.xml │ │ │ ├── characterdatareplacedataend.xml.kfail │ │ │ ├── characterdatareplacedataexceedslengthofarg.xml │ │ │ ├── characterdatareplacedataexceedslengthofdata.xml.kfail │ │ │ ├── characterdatareplacedatamiddle.xml.kfail │ │ │ ├── characterdatareplacedatanomodificationallowederr.xml.kfail │ │ │ ├── characterdatareplacedatanomodificationallowederrEE.xml.kfail │ │ │ ├── characterdatasetdatanomodificationallowederr.xml.kfail │ │ │ ├── characterdatasetdatanomodificationallowederrEE.xml.kfail │ │ │ ├── characterdatasetnodevalue.xml │ │ │ ├── characterdatasubstringexceedsvalue.xml │ │ │ ├── characterdatasubstringvalue.xml │ │ │ ├── commentgetcomment.xml │ │ │ ├── documentcreateattribute.xml │ │ │ ├── documentcreatecdatasection.xml │ │ │ ├── documentcreatecomment.xml │ │ │ ├── documentcreatedocumentfragment.xml.int-broken │ │ │ ├── documentcreateelement.xml │ │ │ ├── documentcreateelementcasesensitive.xml │ │ │ ├── documentcreateelementdefaultattr.xml.kfail │ │ │ ├── documentcreateentityreference.xml │ │ │ ├── documentcreateentityreferenceknown.xml.kfail │ │ │ ├── documentcreateprocessinginstruction.xml │ │ │ ├── documentcreatetextnode.xml │ │ │ ├── documentgetdoctype.xml │ │ │ ├── documentgetdoctypenodtd.xml │ │ │ ├── documentgetelementsbytagnamelength.xml │ │ │ ├── documentgetelementsbytagnametotallength.xml │ │ │ ├── documentgetelementsbytagnamevalue.xml │ │ │ ├── documentgetimplementation.xml.kfail │ │ │ ├── documentgetrootnode.xml │ │ │ ├── documentinvalidcharacterexceptioncreateattribute.xml │ │ │ ├── documentinvalidcharacterexceptioncreateelement.xml │ │ │ ├── documentinvalidcharacterexceptioncreateentref.xml │ │ │ ├── documentinvalidcharacterexceptioncreateentref1.xml │ │ │ ├── documentinvalidcharacterexceptioncreatepi.xml │ │ │ ├── documentinvalidcharacterexceptioncreatepi1.xml │ │ │ ├── documenttypegetdoctype.xml │ │ │ ├── documenttypegetentities.xml.kfail │ │ │ ├── documenttypegetentitieslength.xml.kfail │ │ │ ├── documenttypegetentitiestype.xml.kfail │ │ │ ├── documenttypegetnotations.xml.kfail │ │ │ ├── documenttypegetnotationstype.xml.kfail │ │ │ ├── domimplementationfeaturenoversion.xml.kfail │ │ │ ├── domimplementationfeaturenull.xml.kfail │ │ │ ├── domimplementationfeaturexml.xml.kfail │ │ │ ├── elementaddnewattribute.xml │ │ │ ├── elementassociatedattribute.xml │ │ │ ├── elementchangeattributevalue.xml │ │ │ ├── elementcreatenewattribute.xml │ │ │ ├── elementgetattributenode.xml │ │ │ ├── elementgetattributenodenull.xml │ │ │ ├── elementgetelementempty.xml │ │ │ ├── elementgetelementsbytagname.xml │ │ │ ├── elementgetelementsbytagnameaccessnodelist.xml │ │ │ ├── elementgetelementsbytagnamenomatch.xml │ │ │ ├── elementgetelementsbytagnamespecialvalue.xml │ │ │ ├── elementgettagname.xml │ │ │ ├── elementinuseattributeerr.xml │ │ │ ├── elementinvalidcharacterexception.xml │ │ │ ├── elementnormalize.xml.notimpl │ │ │ ├── elementnotfounderr.xml │ │ │ ├── elementremoveattribute.xml.kfail │ │ │ ├── elementremoveattributeaftercreate.xml │ │ │ ├── elementremoveattributenode.xml │ │ │ ├── elementremoveattributenodenomodificationallowederr.xml.kfail │ │ │ ├── elementremoveattributenodenomodificationallowederrEE.xml.kfail │ │ │ ├── elementremoveattributenomodificationallowederr.xml.kfail │ │ │ ├── elementremoveattributenomodificationallowederrEE.xml.kfail │ │ │ ├── elementremoveattributerestoredefaultvalue.xml.kfail │ │ │ ├── elementreplaceattributewithself.xml │ │ │ ├── elementreplaceexistingattribute.xml │ │ │ ├── elementreplaceexistingattributegevalue.xml │ │ │ ├── elementretrieveallattributes.xml │ │ │ ├── elementretrieveattrvalue.xml │ │ │ ├── elementretrievetagname.xml │ │ │ ├── elementsetattributenodenomodificationallowederr.xml.kfail │ │ │ ├── elementsetattributenodenomodificationallowederrEE.xml.kfail │ │ │ ├── elementsetattributenodenull.xml │ │ │ ├── elementsetattributenomodificationallowederr.xml.kfail │ │ │ ├── elementsetattributenomodificationallowederrEE.xml.kfail │ │ │ ├── elementwrongdocumenterr.xml │ │ │ ├── entitygetentityname.xml.notimpl │ │ │ ├── entitygetpublicid.xml.notimpl │ │ │ ├── entitygetpublicidnull.xml.notimpl │ │ │ ├── files │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ ├── Root │ │ │ │ │ └── Template │ │ │ │ ├── hc_nodtdstaff.html │ │ │ │ ├── hc_nodtdstaff.svg │ │ │ │ ├── hc_nodtdstaff.xhtml │ │ │ │ ├── hc_nodtdstaff.xml │ │ │ │ ├── hc_staff.html │ │ │ │ ├── hc_staff.svg │ │ │ │ ├── hc_staff.xhtml │ │ │ │ ├── hc_staff.xml │ │ │ │ ├── staff.dtd │ │ │ │ ├── staff.svg │ │ │ │ ├── staff.xml │ │ │ │ ├── svgtest.js │ │ │ │ ├── svgunit.js │ │ │ │ └── xhtml1-strict.dtd │ │ │ ├── hc_attrappendchild1.xml │ │ │ ├── hc_attrappendchild2.xml │ │ │ ├── hc_attrappendchild3.xml │ │ │ ├── hc_attrappendchild4.xml │ │ │ ├── hc_attrappendchild5.xml │ │ │ ├── hc_attrappendchild6.xml │ │ │ ├── hc_attrchildnodes1.xml │ │ │ ├── hc_attrchildnodes2.xml │ │ │ ├── hc_attrclonenode1.xml │ │ │ ├── hc_attrcreatedocumentfragment.xml │ │ │ ├── hc_attrcreatetextnode.xml │ │ │ ├── hc_attrcreatetextnode2.xml │ │ │ ├── hc_attreffectivevalue.xml │ │ │ ├── hc_attrfirstchild.xml │ │ │ ├── hc_attrgetvalue1.xml │ │ │ ├── hc_attrgetvalue2.xml.kfail │ │ │ ├── hc_attrhaschildnodes.xml │ │ │ ├── hc_attrinsertbefore1.xml │ │ │ ├── hc_attrinsertbefore2.xml │ │ │ ├── hc_attrinsertbefore3.xml │ │ │ ├── hc_attrinsertbefore4.xml │ │ │ ├── hc_attrinsertbefore5.xml │ │ │ ├── hc_attrinsertbefore6.xml │ │ │ ├── hc_attrinsertbefore7.xml │ │ │ ├── hc_attrlastchild.xml │ │ │ ├── hc_attrname.xml │ │ │ ├── hc_attrnextsiblingnull.xml │ │ │ ├── hc_attrnormalize.xml.notimpl │ │ │ ├── hc_attrparentnodenull.xml │ │ │ ├── hc_attrprevioussiblingnull.xml │ │ │ ├── hc_attrremovechild1.xml │ │ │ ├── hc_attrremovechild2.xml │ │ │ ├── hc_attrreplacechild1.xml │ │ │ ├── hc_attrreplacechild2.xml │ │ │ ├── hc_attrsetvalue1.xml │ │ │ ├── hc_attrsetvalue2.xml │ │ │ ├── hc_attrspecifiedvalue.xml │ │ │ ├── hc_attrspecifiedvaluechanged.xml │ │ │ ├── hc_characterdataappenddata.xml │ │ │ ├── hc_characterdataappenddatagetdata.xml │ │ │ ├── hc_characterdatadeletedatabegining.xml.kfail │ │ │ ├── hc_characterdatadeletedataend.xml.kfail │ │ │ ├── hc_characterdatadeletedataexceedslength.xml.kfail │ │ │ ├── hc_characterdatadeletedatagetlengthanddata.xml.kfail │ │ │ ├── hc_characterdatadeletedatamiddle.xml.kfail │ │ │ ├── hc_characterdatagetdata.xml │ │ │ ├── hc_characterdatagetlength.xml │ │ │ ├── hc_characterdataindexsizeerrdeletedatacountnegative.xml │ │ │ ├── hc_characterdataindexsizeerrdeletedataoffsetgreater.xml │ │ │ ├── hc_characterdataindexsizeerrdeletedataoffsetnegative.xml │ │ │ ├── hc_characterdataindexsizeerrinsertdataoffsetgreater.xml │ │ │ ├── hc_characterdataindexsizeerrinsertdataoffsetnegative.xml │ │ │ ├── hc_characterdataindexsizeerrreplacedatacountnegative.xml │ │ │ ├── hc_characterdataindexsizeerrreplacedataoffsetgreater.xml │ │ │ ├── hc_characterdataindexsizeerrreplacedataoffsetnegative.xml │ │ │ ├── hc_characterdataindexsizeerrsubstringcountnegative.xml │ │ │ ├── hc_characterdataindexsizeerrsubstringnegativeoffset.xml │ │ │ ├── hc_characterdataindexsizeerrsubstringoffsetgreater.xml │ │ │ ├── hc_characterdatainsertdatabeginning.xml │ │ │ ├── hc_characterdatainsertdataend.xml │ │ │ ├── hc_characterdatainsertdatamiddle.xml │ │ │ ├── hc_characterdatareplacedatabegining.xml │ │ │ ├── hc_characterdatareplacedataend.xml.kfail │ │ │ ├── hc_characterdatareplacedataexceedslengthofarg.xml │ │ │ ├── hc_characterdatareplacedataexceedslengthofdata.xml.kfail │ │ │ ├── hc_characterdatareplacedatamiddle.xml.kfail │ │ │ ├── hc_characterdatasetnodevalue.xml │ │ │ ├── hc_characterdatasubstringexceedsvalue.xml │ │ │ ├── hc_characterdatasubstringvalue.xml │ │ │ ├── hc_commentgetcomment.xml │ │ │ ├── hc_documentcreateattribute.xml │ │ │ ├── hc_documentcreatecomment.xml │ │ │ ├── hc_documentcreatedocumentfragment.xml.int-broken │ │ │ ├── hc_documentcreateelement.xml │ │ │ ├── hc_documentcreateelementcasesensitive.xml │ │ │ ├── hc_documentcreatetextnode.xml │ │ │ ├── hc_documentgetdoctype.xml │ │ │ ├── hc_documentgetelementsbytagnamelength.xml │ │ │ ├── hc_documentgetelementsbytagnametotallength.xml │ │ │ ├── hc_documentgetelementsbytagnamevalue.xml │ │ │ ├── hc_documentgetimplementation.xml.kfail │ │ │ ├── hc_documentgetrootnode.xml │ │ │ ├── hc_documentinvalidcharacterexceptioncreateattribute.xml.not-for-html5 │ │ │ ├── hc_documentinvalidcharacterexceptioncreateattribute1.xml.not-for-html5 │ │ │ ├── hc_documentinvalidcharacterexceptioncreateelement.xml.not-for-html5 │ │ │ ├── hc_documentinvalidcharacterexceptioncreateelement1.xml.not-for-html5 │ │ │ ├── hc_domimplementationfeaturenoversion.xml.kfail │ │ │ ├── hc_domimplementationfeaturenull.xml.kfail │ │ │ ├── hc_domimplementationfeaturexml.xml.kfail │ │ │ ├── hc_elementaddnewattribute.xml │ │ │ ├── hc_elementassociatedattribute.xml │ │ │ ├── hc_elementchangeattributevalue.xml │ │ │ ├── hc_elementcreatenewattribute.xml │ │ │ ├── hc_elementgetattributenode.xml │ │ │ ├── hc_elementgetattributenodenull.xml │ │ │ ├── hc_elementgetelementempty.xml │ │ │ ├── hc_elementgetelementsbytagname.xml │ │ │ ├── hc_elementgetelementsbytagnameaccessnodelist.xml │ │ │ ├── hc_elementgetelementsbytagnamenomatch.xml │ │ │ ├── hc_elementgetelementsbytagnamespecialvalue.xml │ │ │ ├── hc_elementgettagname.xml │ │ │ ├── hc_elementinuseattributeerr.xml │ │ │ ├── hc_elementinvalidcharacterexception.xml │ │ │ ├── hc_elementinvalidcharacterexception1.xml │ │ │ ├── hc_elementnormalize.xml.notimpl │ │ │ ├── hc_elementnormalize2.xml.notimpl │ │ │ ├── hc_elementnotfounderr.xml │ │ │ ├── hc_elementremoveattribute.xml │ │ │ ├── hc_elementremoveattributeaftercreate.xml │ │ │ ├── hc_elementremoveattributenode.xml │ │ │ ├── hc_elementreplaceattributewithself.xml │ │ │ ├── hc_elementreplaceexistingattribute.xml │ │ │ ├── hc_elementreplaceexistingattributegevalue.xml │ │ │ ├── hc_elementretrieveallattributes.xml.kfail │ │ │ ├── hc_elementretrieveattrvalue.xml │ │ │ ├── hc_elementretrievetagname.xml │ │ │ ├── hc_elementsetattributenodenull.xml │ │ │ ├── hc_elementwrongdocumenterr.xml │ │ │ ├── hc_entitiesremovenameditem1.xml.kfail │ │ │ ├── hc_entitiessetnameditem1.xml.notimpl │ │ │ ├── hc_namednodemapchildnoderange.xml.kfail │ │ │ ├── hc_namednodemapgetnameditem.xml │ │ │ ├── hc_namednodemapinuseattributeerr.xml.kfail │ │ │ ├── hc_namednodemapnotfounderr.xml │ │ │ ├── hc_namednodemapnumberofnodes.xml.kfail │ │ │ ├── hc_namednodemapremovenameditem.xml │ │ │ ├── hc_namednodemapreturnattrnode.xml.kfail │ │ │ ├── hc_namednodemapreturnfirstitem.xml.kfail │ │ │ ├── hc_namednodemapreturnlastitem.xml.kfail │ │ │ ├── hc_namednodemapreturnnull.xml │ │ │ ├── hc_namednodemapsetnameditem.xml │ │ │ ├── hc_namednodemapsetnameditemreturnvalue.xml │ │ │ ├── hc_namednodemapsetnameditemthatexists.xml │ │ │ ├── hc_namednodemapsetnameditemwithnewvalue.xml │ │ │ ├── hc_namednodemapwrongdocumenterr.xml │ │ │ ├── hc_nodeappendchild.xml │ │ │ ├── hc_nodeappendchildchildexists.xml │ │ │ ├── hc_nodeappendchilddocfragment.xml │ │ │ ├── hc_nodeappendchildgetnodename.xml │ │ │ ├── hc_nodeappendchildinvalidnodetype.xml │ │ │ ├── hc_nodeappendchildnewchilddiffdocument.xml │ │ │ ├── hc_nodeappendchildnodeancestor.xml │ │ │ ├── hc_nodeattributenodeattribute.xml │ │ │ ├── hc_nodeattributenodename.xml │ │ │ ├── hc_nodeattributenodetype.xml │ │ │ ├── hc_nodeattributenodevalue.xml │ │ │ ├── hc_nodechildnodes.xml │ │ │ ├── hc_nodechildnodesappendchild.xml │ │ │ ├── hc_nodechildnodesempty.xml.int-broken │ │ │ ├── hc_nodecloneattributescopied.xml.kfail │ │ │ ├── hc_nodeclonefalsenocopytext.xml │ │ │ ├── hc_nodeclonegetparentnull.xml │ │ │ ├── hc_nodeclonenodefalse.xml.int-broken │ │ │ ├── hc_nodeclonenodetrue.xml.kfail │ │ │ ├── hc_nodeclonetruecopytext.xml │ │ │ ├── hc_nodecommentnodeattributes.xml │ │ │ ├── hc_nodecommentnodename.xml │ │ │ ├── hc_nodecommentnodetype.xml │ │ │ ├── hc_nodecommentnodevalue.xml │ │ │ ├── hc_nodedocumentfragmentnodename.xml │ │ │ ├── hc_nodedocumentfragmentnodetype.xml │ │ │ ├── hc_nodedocumentfragmentnodevalue.xml │ │ │ ├── hc_nodedocumentnodeattribute.xml │ │ │ ├── hc_nodedocumentnodename.xml │ │ │ ├── hc_nodedocumentnodetype.xml │ │ │ ├── hc_nodedocumentnodevalue.xml │ │ │ ├── hc_nodeelementnodeattributes.xml.kfail │ │ │ ├── hc_nodeelementnodename.xml │ │ │ ├── hc_nodeelementnodetype.xml │ │ │ ├── hc_nodeelementnodevalue.xml │ │ │ ├── hc_nodegetfirstchild.xml │ │ │ ├── hc_nodegetfirstchildnull.xml │ │ │ ├── hc_nodegetlastchild.xml │ │ │ ├── hc_nodegetlastchildnull.xml │ │ │ ├── hc_nodegetnextsibling.xml │ │ │ ├── hc_nodegetnextsiblingnull.xml │ │ │ ├── hc_nodegetownerdocument.xml │ │ │ ├── hc_nodegetownerdocumentnull.xml │ │ │ ├── hc_nodegetprevioussibling.xml │ │ │ ├── hc_nodegetprevioussiblingnull.xml │ │ │ ├── hc_nodehaschildnodes.xml │ │ │ ├── hc_nodehaschildnodesfalse.xml │ │ │ ├── hc_nodeinsertbefore.xml │ │ │ ├── hc_nodeinsertbeforedocfragment.xml │ │ │ ├── hc_nodeinsertbeforeinvalidnodetype.xml │ │ │ ├── hc_nodeinsertbeforenewchilddiffdocument.xml │ │ │ ├── hc_nodeinsertbeforenewchildexists.xml │ │ │ ├── hc_nodeinsertbeforenodeancestor.xml │ │ │ ├── hc_nodeinsertbeforenodename.xml │ │ │ ├── hc_nodeinsertbeforerefchildnonexistent.xml │ │ │ ├── hc_nodeinsertbeforerefchildnull.xml │ │ │ ├── hc_nodelistindexequalzero.xml.int-broken │ │ │ ├── hc_nodelistindexgetlength.xml.int-broken │ │ │ ├── hc_nodelistindexgetlengthofemptylist.xml.int-broken │ │ │ ├── hc_nodelistindexnotzero.xml │ │ │ ├── hc_nodelistreturnfirstitem.xml │ │ │ ├── hc_nodelistreturnlastitem.xml.int-broken │ │ │ ├── hc_nodelisttraverselist.xml │ │ │ ├── hc_nodeparentnode.xml │ │ │ ├── hc_nodeparentnodenull.xml │ │ │ ├── hc_noderemovechild.xml │ │ │ ├── hc_noderemovechildgetnodename.xml │ │ │ ├── hc_noderemovechildnode.xml │ │ │ ├── hc_noderemovechildoldchildnonexistent.xml │ │ │ ├── hc_nodereplacechild.xml │ │ │ ├── hc_nodereplacechildinvalidnodetype.xml │ │ │ ├── hc_nodereplacechildnewchilddiffdocument.xml │ │ │ ├── hc_nodereplacechildnewchildexists.xml │ │ │ ├── hc_nodereplacechildnodeancestor.xml │ │ │ ├── hc_nodereplacechildnodename.xml │ │ │ ├── hc_nodereplacechildoldchildnonexistent.xml │ │ │ ├── hc_nodetextnodeattribute.xml │ │ │ ├── hc_nodetextnodename.xml │ │ │ ├── hc_nodetextnodetype.xml │ │ │ ├── hc_nodetextnodevalue.xml │ │ │ ├── hc_nodevalue01.xml │ │ │ ├── hc_nodevalue02.xml │ │ │ ├── hc_nodevalue03.xml │ │ │ ├── hc_nodevalue04.xml │ │ │ ├── hc_nodevalue05.xml │ │ │ ├── hc_nodevalue06.xml │ │ │ ├── hc_nodevalue07.xml.kfail │ │ │ ├── hc_nodevalue08.xml.kfail │ │ │ ├── hc_notationsremovenameditem1.xml.kfail │ │ │ ├── hc_notationssetnameditem1.xml.notimpl │ │ │ ├── hc_textindexsizeerrnegativeoffset.xml │ │ │ ├── hc_textindexsizeerroffsetoutofbounds.xml │ │ │ ├── hc_textparseintolistofelements.xml.int-broken │ │ │ ├── hc_textsplittextfour.xml.kfail │ │ │ ├── hc_textsplittextone.xml.kfail │ │ │ ├── hc_textsplittextthree.xml.kfail │ │ │ ├── hc_textsplittexttwo.xml.kfail │ │ │ ├── hc_textwithnomarkup.xml │ │ │ ├── metadata.xml │ │ │ ├── namednodemapchildnoderange.xml.int-broken │ │ │ ├── namednodemapgetnameditem.xml │ │ │ ├── namednodemapinuseattributeerr.xml.kfail │ │ │ ├── namednodemapnotfounderr.xml │ │ │ ├── namednodemapnumberofnodes.xml.int-broken │ │ │ ├── namednodemapremovenameditem.xml.kfail │ │ │ ├── namednodemapremovenameditemgetvalue.xml.kfail │ │ │ ├── namednodemapremovenameditemreturnnodevalue.xml │ │ │ ├── namednodemapreturnattrnode.xml.kfail │ │ │ ├── namednodemapreturnfirstitem.xml │ │ │ ├── namednodemapreturnlastitem.xml │ │ │ ├── namednodemapreturnnull.xml │ │ │ ├── namednodemapsetnameditem.xml │ │ │ ├── namednodemapsetnameditemreturnvalue.xml │ │ │ ├── namednodemapsetnameditemthatexists.xml │ │ │ ├── namednodemapsetnameditemwithnewvalue.xml │ │ │ ├── namednodemapwrongdocumenterr.xml │ │ │ ├── nodeappendchild.xml │ │ │ ├── nodeappendchildchildexists.xml │ │ │ ├── nodeappendchilddocfragment.xml │ │ │ ├── nodeappendchildgetnodename.xml │ │ │ ├── nodeappendchildinvalidnodetype.xml │ │ │ ├── nodeappendchildnewchilddiffdocument.xml │ │ │ ├── nodeappendchildnodeancestor.xml │ │ │ ├── nodeappendchildnomodificationallowederr.xml.kfail │ │ │ ├── nodeappendchildnomodificationallowederrEE.xml │ │ │ ├── nodeattributenodeattribute.xml │ │ │ ├── nodeattributenodename.xml │ │ │ ├── nodeattributenodetype.xml │ │ │ ├── nodeattributenodevalue.xml │ │ │ ├── nodecdatasectionnodeattribute.xml │ │ │ ├── nodecdatasectionnodename.xml │ │ │ ├── nodecdatasectionnodetype.xml │ │ │ ├── nodecdatasectionnodevalue.xml │ │ │ ├── nodechildnodes.xml │ │ │ ├── nodechildnodesappendchild.xml.int-broken │ │ │ ├── nodechildnodesempty.xml │ │ │ ├── nodecloneattributescopied.xml.kfail │ │ │ ├── nodeclonefalsenocopytext.xml │ │ │ ├── nodeclonegetparentnull.xml │ │ │ ├── nodeclonenodefalse.xml.int-broken │ │ │ ├── nodeclonenodetrue.xml.int-broken │ │ │ ├── nodeclonetruecopytext.xml │ │ │ ├── nodecommentnodeattributes.xml │ │ │ ├── nodecommentnodename.xml │ │ │ ├── nodecommentnodetype.xml │ │ │ ├── nodecommentnodevalue.xml │ │ │ ├── nodedocumentfragmentnodename.xml │ │ │ ├── nodedocumentfragmentnodetype.xml │ │ │ ├── nodedocumentfragmentnodevalue.xml │ │ │ ├── nodedocumentnodeattribute.xml │ │ │ ├── nodedocumentnodename.xml │ │ │ ├── nodedocumentnodetype.xml │ │ │ ├── nodedocumentnodevalue.xml │ │ │ ├── nodedocumenttypenodename.xml │ │ │ ├── nodedocumenttypenodetype.xml │ │ │ ├── nodedocumenttypenodevalue.xml │ │ │ ├── nodeelementnodeattributes.xml │ │ │ ├── nodeelementnodename.xml │ │ │ ├── nodeelementnodetype.xml │ │ │ ├── nodeelementnodevalue.xml │ │ │ ├── nodeentitynodeattributes.xml.kfail │ │ │ ├── nodeentitynodename.xml.kfail │ │ │ ├── nodeentitynodetype.xml.kfail │ │ │ ├── nodeentitynodevalue.xml.kfail │ │ │ ├── nodeentityreferencenodeattributes.xml │ │ │ ├── nodeentityreferencenodename.xml │ │ │ ├── nodeentityreferencenodetype.xml │ │ │ ├── nodeentityreferencenodevalue.xml │ │ │ ├── nodeentitysetnodevalue.xml.kfail │ │ │ ├── nodegetfirstchild.xml │ │ │ ├── nodegetfirstchildnull.xml │ │ │ ├── nodegetlastchild.xml │ │ │ ├── nodegetlastchildnull.xml │ │ │ ├── nodegetnextsibling.xml │ │ │ ├── nodegetnextsiblingnull.xml │ │ │ ├── nodegetownerdocument.xml │ │ │ ├── nodegetownerdocumentnull.xml │ │ │ ├── nodegetprevioussibling.xml │ │ │ ├── nodegetprevioussiblingnull.xml │ │ │ ├── nodehaschildnodes.xml │ │ │ ├── nodehaschildnodesfalse.xml │ │ │ ├── nodeinsertbefore.xml.int-broken │ │ │ ├── nodeinsertbeforedocfragment.xml │ │ │ ├── nodeinsertbeforeinvalidnodetype.xml │ │ │ ├── nodeinsertbeforenewchilddiffdocument.xml │ │ │ ├── nodeinsertbeforenewchildexists.xml.int-broken │ │ │ ├── nodeinsertbeforenodeancestor.xml │ │ │ ├── nodeinsertbeforenodename.xml │ │ │ ├── nodeinsertbeforenomodificationallowederr.xml.kfail │ │ │ ├── nodeinsertbeforenomodificationallowederrEE.xml │ │ │ ├── nodeinsertbeforerefchildnonexistent.xml │ │ │ ├── nodeinsertbeforerefchildnull.xml │ │ │ ├── nodelistindexequalzero.xml │ │ │ ├── nodelistindexgetlength.xml.int-broken │ │ │ ├── nodelistindexgetlengthofemptylist.xml │ │ │ ├── nodelistindexnotzero.xml.int-broken │ │ │ ├── nodelistreturnfirstitem.xml.int-broken │ │ │ ├── nodelistreturnlastitem.xml.int-broken │ │ │ ├── nodelisttraverselist.xml.int-broken │ │ │ ├── nodenotationnodeattributes.xml.kfail │ │ │ ├── nodenotationnodename.xml.kfail │ │ │ ├── nodenotationnodetype.xml.notimpl │ │ │ ├── nodenotationnodevalue.xml.kfail │ │ │ ├── nodeparentnode.xml │ │ │ ├── nodeparentnodenull.xml │ │ │ ├── nodeprocessinginstructionnodeattributes.xml │ │ │ ├── nodeprocessinginstructionnodename.xml.kfail │ │ │ ├── nodeprocessinginstructionnodetype.xml.kfail │ │ │ ├── nodeprocessinginstructionnodevalue.xml.kfail │ │ │ ├── nodeprocessinginstructionsetnodevalue.xml.notimpl │ │ │ ├── noderemovechild.xml │ │ │ ├── noderemovechildgetnodename.xml.int-broken │ │ │ ├── noderemovechildnode.xml.int-broken │ │ │ ├── noderemovechildnomodificationallowederr.xml.kfail │ │ │ ├── noderemovechildnomodificationallowederrEE.xml.kfail │ │ │ ├── noderemovechildoldchildnonexistent.xml │ │ │ ├── nodereplacechild.xml │ │ │ ├── nodereplacechildinvalidnodetype.xml │ │ │ ├── nodereplacechildnewchilddiffdocument.xml │ │ │ ├── nodereplacechildnewchildexists.xml.int-broken │ │ │ ├── nodereplacechildnodeancestor.xml │ │ │ ├── nodereplacechildnodename.xml.int-broken │ │ │ ├── nodereplacechildnomodificationallowederr.xml │ │ │ ├── nodereplacechildnomodificationallowederrEE.xml │ │ │ ├── nodereplacechildoldchildnonexistent.xml │ │ │ ├── nodesetnodevaluenomodificationallowederr.xml.kfail │ │ │ ├── nodesetnodevaluenomodificationallowederrEE.xml.kfail │ │ │ ├── nodetextnodeattribute.xml │ │ │ ├── nodetextnodename.xml │ │ │ ├── nodetextnodetype.xml │ │ │ ├── nodetextnodevalue.xml │ │ │ ├── nodevalue01.xml │ │ │ ├── nodevalue02.xml │ │ │ ├── nodevalue03.xml │ │ │ ├── nodevalue04.xml │ │ │ ├── nodevalue05.xml │ │ │ ├── nodevalue06.xml │ │ │ ├── nodevalue07.xml.kfail │ │ │ ├── nodevalue08.xml.kfail │ │ │ ├── nodevalue09.xml │ │ │ ├── notationgetnotationname.xml.notimpl │ │ │ ├── notationgetpublicid.xml.notimpl │ │ │ ├── notationgetpublicidnull.xml.notimpl │ │ │ ├── notationgetsystemid.xml.notimpl │ │ │ ├── notationgetsystemidnull.xml.notimpl │ │ │ ├── processinginstructiongetdata.xml.notimpl │ │ │ ├── processinginstructiongettarget.xml.notimpl │ │ │ ├── processinginstructionsetdatanomodificationallowederr.xml.notimpl │ │ │ ├── processinginstructionsetdatanomodificationallowederrEE.xml.notimpl │ │ │ ├── textindexsizeerrnegativeoffset.xml │ │ │ ├── textindexsizeerroffsetoutofbounds.xml │ │ │ ├── textparseintolistofelements.xml.kfail │ │ │ ├── textsplittextfour.xml.kfail │ │ │ ├── textsplittextnomodificationallowederr.xml.kfail │ │ │ ├── textsplittextnomodificationallowederrEE.xml.kfail │ │ │ ├── textsplittextone.xml.kfail │ │ │ ├── textsplittextthree.xml.kfail │ │ │ ├── textsplittexttwo.xml.kfail │ │ │ └── textwithnomarkup.xml │ │ └── html │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ ├── Root │ │ │ └── Template │ │ │ ├── HTMLAnchorElement01.xml │ │ │ ├── HTMLAnchorElement02.xml │ │ │ ├── HTMLAnchorElement03.xml │ │ │ ├── HTMLAnchorElement04.xml │ │ │ ├── HTMLAnchorElement05.xml │ │ │ ├── HTMLAnchorElement06.xml │ │ │ ├── HTMLAnchorElement07.xml │ │ │ ├── HTMLAnchorElement08.xml │ │ │ ├── HTMLAnchorElement09.xml │ │ │ ├── HTMLAnchorElement10.xml │ │ │ ├── HTMLAnchorElement11.xml │ │ │ ├── HTMLAnchorElement12.xml │ │ │ ├── HTMLAnchorElement13.xml │ │ │ ├── HTMLAnchorElement14.xml │ │ │ ├── HTMLAppletElement01.xml │ │ │ ├── HTMLAppletElement02.xml │ │ │ ├── HTMLAppletElement03.xml │ │ │ ├── HTMLAppletElement04.xml │ │ │ ├── HTMLAppletElement05.xml │ │ │ ├── HTMLAppletElement06.xml │ │ │ ├── HTMLAppletElement07.xml.kfail │ │ │ ├── HTMLAppletElement08.xml │ │ │ ├── HTMLAppletElement09.xml.kfail │ │ │ ├── HTMLAppletElement10.xml │ │ │ ├── HTMLAppletElement11.xml │ │ │ ├── HTMLAreaElement01.xml │ │ │ ├── HTMLAreaElement02.xml │ │ │ ├── HTMLAreaElement03.xml │ │ │ ├── HTMLAreaElement04.xml │ │ │ ├── HTMLAreaElement05.xml │ │ │ ├── HTMLAreaElement06.xml │ │ │ ├── HTMLAreaElement07.xml │ │ │ ├── HTMLAreaElement08.xml │ │ │ ├── HTMLBRElement01.xml │ │ │ ├── HTMLBaseElement01.xml │ │ │ ├── HTMLBaseElement02.xml │ │ │ ├── HTMLBaseFontElement01.xml │ │ │ ├── HTMLBaseFontElement02.xml │ │ │ ├── HTMLBaseFontElement03.xml.kfail │ │ │ ├── HTMLBodyElement01.xml │ │ │ ├── HTMLBodyElement02.xml │ │ │ ├── HTMLBodyElement03.xml │ │ │ ├── HTMLBodyElement04.xml │ │ │ ├── HTMLBodyElement05.xml │ │ │ ├── HTMLBodyElement06.xml │ │ │ ├── HTMLButtonElement01.xml │ │ │ ├── HTMLButtonElement02.xml │ │ │ ├── HTMLButtonElement03.xml │ │ │ ├── HTMLButtonElement04.xml │ │ │ ├── HTMLButtonElement05.xml │ │ │ ├── HTMLButtonElement06.xml │ │ │ ├── HTMLButtonElement07.xml │ │ │ ├── HTMLButtonElement08.xml │ │ │ ├── HTMLCollection04.xml │ │ │ ├── HTMLCollection05.xml │ │ │ ├── HTMLCollection06.xml │ │ │ ├── HTMLCollection07.xml │ │ │ ├── HTMLCollection08.xml │ │ │ ├── HTMLCollection09.xml │ │ │ ├── HTMLCollection10.xml │ │ │ ├── HTMLCollection11.xml │ │ │ ├── HTMLCollection12.xml │ │ │ ├── HTMLDirectoryElement01.xml │ │ │ ├── HTMLDivElement01.xml │ │ │ ├── HTMLDlistElement01.xml │ │ │ ├── HTMLDocument01.xml │ │ │ ├── HTMLDocument02.xml.kfail │ │ │ ├── HTMLDocument03.xml.kfail │ │ │ ├── HTMLDocument04.xml.kfail │ │ │ ├── HTMLDocument05.xml │ │ │ ├── HTMLDocument07.xml │ │ │ ├── HTMLDocument08.xml.kfail │ │ │ ├── HTMLDocument09.xml │ │ │ ├── HTMLDocument10.xml │ │ │ ├── HTMLDocument11.xml │ │ │ ├── HTMLDocument12.xml.kfail │ │ │ ├── HTMLDocument13.xml.kfail │ │ │ ├── HTMLDocument14.xml.kfail │ │ │ ├── HTMLDocument15.xml │ │ │ ├── HTMLDocument16.xml │ │ │ ├── HTMLDocument17.xml.kfail │ │ │ ├── HTMLDocument18.xml.kfail │ │ │ ├── HTMLDocument19.xml.kfail │ │ │ ├── HTMLDocument20.xml.kfail │ │ │ ├── HTMLDocument21.xml.kfail │ │ │ ├── HTMLElement01.xml │ │ │ ├── HTMLElement02.xml │ │ │ ├── HTMLElement03.xml │ │ │ ├── HTMLElement04.xml │ │ │ ├── HTMLElement05.xml │ │ │ ├── HTMLElement06.xml │ │ │ ├── HTMLElement07.xml │ │ │ ├── HTMLElement08.xml │ │ │ ├── HTMLElement09.xml │ │ │ ├── HTMLElement10.xml │ │ │ ├── HTMLElement100.xml │ │ │ ├── HTMLElement101.xml │ │ │ ├── HTMLElement102.xml │ │ │ ├── HTMLElement103.xml │ │ │ ├── HTMLElement104.xml │ │ │ ├── HTMLElement105.xml │ │ │ ├── HTMLElement106.xml │ │ │ ├── HTMLElement107.xml │ │ │ ├── HTMLElement108.xml │ │ │ ├── HTMLElement109.xml │ │ │ ├── HTMLElement11.xml │ │ │ ├── HTMLElement110.xml │ │ │ ├── HTMLElement111.xml │ │ │ ├── HTMLElement112.xml │ │ │ ├── HTMLElement113.xml │ │ │ ├── HTMLElement114.xml │ │ │ ├── HTMLElement115.xml │ │ │ ├── HTMLElement116.xml │ │ │ ├── HTMLElement117.xml │ │ │ ├── HTMLElement118.xml │ │ │ ├── HTMLElement119.xml │ │ │ ├── HTMLElement12.xml │ │ │ ├── HTMLElement120.xml │ │ │ ├── HTMLElement121.xml │ │ │ ├── HTMLElement122.xml │ │ │ ├── HTMLElement123.xml │ │ │ ├── HTMLElement124.xml │ │ │ ├── HTMLElement125.xml │ │ │ ├── HTMLElement126.xml │ │ │ ├── HTMLElement127.xml │ │ │ ├── HTMLElement128.xml │ │ │ ├── HTMLElement129.xml │ │ │ ├── HTMLElement13.xml │ │ │ ├── HTMLElement130.xml │ │ │ ├── HTMLElement131.xml │ │ │ ├── HTMLElement132.xml │ │ │ ├── HTMLElement133.xml │ │ │ ├── HTMLElement134.xml │ │ │ ├── HTMLElement135.xml │ │ │ ├── HTMLElement136.xml │ │ │ ├── HTMLElement137.xml │ │ │ ├── HTMLElement138.xml │ │ │ ├── HTMLElement139.xml │ │ │ ├── HTMLElement14.xml │ │ │ ├── HTMLElement140.xml │ │ │ ├── HTMLElement141.xml │ │ │ ├── HTMLElement142.xml │ │ │ ├── HTMLElement143.xml │ │ │ ├── HTMLElement144.xml │ │ │ ├── HTMLElement145.xml │ │ │ ├── HTMLElement15.xml │ │ │ ├── HTMLElement16.xml │ │ │ ├── HTMLElement17.xml │ │ │ ├── HTMLElement18.xml │ │ │ ├── HTMLElement19.xml │ │ │ ├── HTMLElement20.xml │ │ │ ├── HTMLElement21.xml │ │ │ ├── HTMLElement22.xml │ │ │ ├── HTMLElement23.xml │ │ │ ├── HTMLElement24.xml │ │ │ ├── HTMLElement25.xml │ │ │ ├── HTMLElement26.xml │ │ │ ├── HTMLElement27.xml │ │ │ ├── HTMLElement28.xml │ │ │ ├── HTMLElement29.xml │ │ │ ├── HTMLElement30.xml │ │ │ ├── HTMLElement31.xml │ │ │ ├── HTMLElement32.xml │ │ │ ├── HTMLElement33.xml │ │ │ ├── HTMLElement34.xml │ │ │ ├── HTMLElement35.xml │ │ │ ├── HTMLElement36.xml │ │ │ ├── HTMLElement37.xml │ │ │ ├── HTMLElement38.xml │ │ │ ├── HTMLElement39.xml │ │ │ ├── HTMLElement40.xml │ │ │ ├── HTMLElement41.xml │ │ │ ├── HTMLElement42.xml │ │ │ ├── HTMLElement43.xml │ │ │ ├── HTMLElement44.xml │ │ │ ├── HTMLElement45.xml │ │ │ ├── HTMLElement46.xml │ │ │ ├── HTMLElement47.xml │ │ │ ├── HTMLElement48.xml │ │ │ ├── HTMLElement49.xml │ │ │ ├── HTMLElement50.xml │ │ │ ├── HTMLElement51.xml │ │ │ ├── HTMLElement52.xml │ │ │ ├── HTMLElement53.xml │ │ │ ├── HTMLElement54.xml │ │ │ ├── HTMLElement55.xml │ │ │ ├── HTMLElement56.xml │ │ │ ├── HTMLElement57.xml │ │ │ ├── HTMLElement58.xml │ │ │ ├── HTMLElement59.xml │ │ │ ├── HTMLElement60.xml │ │ │ ├── HTMLElement61.xml │ │ │ ├── HTMLElement62.xml │ │ │ ├── HTMLElement63.xml │ │ │ ├── HTMLElement64.xml │ │ │ ├── HTMLElement65.xml │ │ │ ├── HTMLElement66.xml │ │ │ ├── HTMLElement67.xml │ │ │ ├── HTMLElement68.xml │ │ │ ├── HTMLElement69.xml │ │ │ ├── HTMLElement70.xml │ │ │ ├── HTMLElement71.xml │ │ │ ├── HTMLElement72.xml │ │ │ ├── HTMLElement73.xml │ │ │ ├── HTMLElement74.xml │ │ │ ├── HTMLElement75.xml │ │ │ ├── HTMLElement76.xml │ │ │ ├── HTMLElement77.xml │ │ │ ├── HTMLElement78.xml │ │ │ ├── HTMLElement79.xml │ │ │ ├── HTMLElement80.xml │ │ │ ├── HTMLElement81.xml │ │ │ ├── HTMLElement82.xml │ │ │ ├── HTMLElement83.xml │ │ │ ├── HTMLElement84.xml │ │ │ ├── HTMLElement85.xml │ │ │ ├── HTMLElement86.xml │ │ │ ├── HTMLElement87.xml │ │ │ ├── HTMLElement88.xml │ │ │ ├── HTMLElement89.xml │ │ │ ├── HTMLElement90.xml │ │ │ ├── HTMLElement91.xml │ │ │ ├── HTMLElement92.xml │ │ │ ├── HTMLElement93.xml │ │ │ ├── HTMLElement94.xml │ │ │ ├── HTMLElement95.xml │ │ │ ├── HTMLElement96.xml │ │ │ ├── HTMLElement97.xml │ │ │ ├── HTMLElement98.xml │ │ │ ├── HTMLElement99.xml │ │ │ ├── HTMLFieldSetElement01.xml │ │ │ ├── HTMLFieldSetElement02.xml │ │ │ ├── HTMLFontElement01.xml │ │ │ ├── HTMLFontElement02.xml │ │ │ ├── HTMLFontElement03.xml │ │ │ ├── HTMLFormElement01.xml │ │ │ ├── HTMLFormElement02.xml │ │ │ ├── HTMLFormElement03.xml │ │ │ ├── HTMLFormElement04.xml │ │ │ ├── HTMLFormElement05.xml │ │ │ ├── HTMLFormElement06.xml │ │ │ ├── HTMLFormElement07.xml │ │ │ ├── HTMLFormElement08.xml │ │ │ ├── HTMLFormElement09.xml │ │ │ ├── HTMLFormElement10.xml │ │ │ ├── HTMLFrameElement01.xml │ │ │ ├── HTMLFrameElement02.xml │ │ │ ├── HTMLFrameElement03.xml │ │ │ ├── HTMLFrameElement04.xml │ │ │ ├── HTMLFrameElement05.xml │ │ │ ├── HTMLFrameElement06.xml │ │ │ ├── HTMLFrameElement07.xml │ │ │ ├── HTMLFrameElement08.xml │ │ │ ├── HTMLFrameSetElement01.xml │ │ │ ├── HTMLFrameSetElement02.xml │ │ │ ├── HTMLHRElement01.xml │ │ │ ├── HTMLHRElement02.xml │ │ │ ├── HTMLHRElement03.xml │ │ │ ├── HTMLHRElement04.xml │ │ │ ├── HTMLHeadElement01.xml │ │ │ ├── HTMLHeadingElement01.xml │ │ │ ├── HTMLHeadingElement02.xml │ │ │ ├── HTMLHeadingElement03.xml │ │ │ ├── HTMLHeadingElement04.xml │ │ │ ├── HTMLHeadingElement05.xml │ │ │ ├── HTMLHeadingElement06.xml │ │ │ ├── HTMLHtmlElement01.xml │ │ │ ├── HTMLIFrameElement01.xml │ │ │ ├── HTMLIFrameElement02.xml │ │ │ ├── HTMLIFrameElement03.xml │ │ │ ├── HTMLIFrameElement04.xml │ │ │ ├── HTMLIFrameElement05.xml │ │ │ ├── HTMLIFrameElement06.xml │ │ │ ├── HTMLIFrameElement07.xml │ │ │ ├── HTMLIFrameElement08.xml │ │ │ ├── HTMLIFrameElement09.xml │ │ │ ├── HTMLIFrameElement10.xml │ │ │ ├── HTMLImageElement01.xml │ │ │ ├── HTMLImageElement02.xml │ │ │ ├── HTMLImageElement03.xml │ │ │ ├── HTMLImageElement04.xml │ │ │ ├── HTMLImageElement05.xml.kfail │ │ │ ├── HTMLImageElement06.xml.kfail │ │ │ ├── HTMLImageElement07.xml │ │ │ ├── HTMLImageElement08.xml │ │ │ ├── HTMLImageElement09.xml │ │ │ ├── HTMLImageElement10.xml │ │ │ ├── HTMLImageElement11.xml.kfail │ │ │ ├── HTMLImageElement12.xml.kfail │ │ │ ├── HTMLImageElement14.xml.kfail │ │ │ ├── HTMLInputElement01.xml │ │ │ ├── HTMLInputElement02.xml │ │ │ ├── HTMLInputElement03.xml │ │ │ ├── HTMLInputElement04.xml │ │ │ ├── HTMLInputElement05.xml │ │ │ ├── HTMLInputElement06.xml │ │ │ ├── HTMLInputElement07.xml │ │ │ ├── HTMLInputElement08.xml │ │ │ ├── HTMLInputElement09.xml │ │ │ ├── HTMLInputElement10.xml │ │ │ ├── HTMLInputElement11.xml │ │ │ ├── HTMLInputElement12.xml │ │ │ ├── HTMLInputElement13.xml.kfail │ │ │ ├── HTMLInputElement14.xml │ │ │ ├── HTMLInputElement15.xml │ │ │ ├── HTMLInputElement16.xml │ │ │ ├── HTMLInputElement17.xml │ │ │ ├── HTMLInputElement18.xml │ │ │ ├── HTMLInputElement19.xml │ │ │ ├── HTMLInputElement20.xml │ │ │ ├── HTMLInputElement21.xml │ │ │ ├── HTMLInputElement22.xml │ │ │ ├── HTMLIsIndexElement01.xml.kfail │ │ │ ├── HTMLIsIndexElement02.xml.kfail │ │ │ ├── HTMLIsIndexElement03.xml.kfail │ │ │ ├── HTMLLIElement01.xml │ │ │ ├── HTMLLIElement02.xml │ │ │ ├── HTMLLabelElement01.xml │ │ │ ├── HTMLLabelElement02.xml │ │ │ ├── HTMLLabelElement03.xml │ │ │ ├── HTMLLabelElement04.xml │ │ │ ├── HTMLLegendElement01.xml │ │ │ ├── HTMLLegendElement02.xml │ │ │ ├── HTMLLegendElement03.xml │ │ │ ├── HTMLLegendElement04.xml │ │ │ ├── HTMLLinkElement01.xml │ │ │ ├── HTMLLinkElement02.xml │ │ │ ├── HTMLLinkElement03.xml │ │ │ ├── HTMLLinkElement04.xml │ │ │ ├── HTMLLinkElement05.xml │ │ │ ├── HTMLLinkElement06.xml │ │ │ ├── HTMLLinkElement07.xml │ │ │ ├── HTMLLinkElement08.xml │ │ │ ├── HTMLLinkElement09.xml │ │ │ ├── HTMLMapElement02.xml │ │ │ ├── HTMLMenuElement01.xml │ │ │ ├── HTMLMetaElement01.xml │ │ │ ├── HTMLMetaElement02.xml │ │ │ ├── HTMLMetaElement03.xml │ │ │ ├── HTMLMetaElement04.xml │ │ │ ├── HTMLModElement01.xml │ │ │ ├── HTMLModElement02.xml │ │ │ ├── HTMLModElement03.xml │ │ │ ├── HTMLModElement04.xml │ │ │ ├── HTMLOListElement01.xml │ │ │ ├── HTMLOListElement02.xml │ │ │ ├── HTMLOListElement03.xml │ │ │ ├── HTMLObjectElement01.xml │ │ │ ├── HTMLObjectElement02.xml │ │ │ ├── HTMLObjectElement03.xml │ │ │ ├── HTMLObjectElement04.xml │ │ │ ├── HTMLObjectElement05.xml │ │ │ ├── HTMLObjectElement06.xml │ │ │ ├── HTMLObjectElement07.xml │ │ │ ├── HTMLObjectElement08.xml │ │ │ ├── HTMLObjectElement09.xml │ │ │ ├── HTMLObjectElement10.xml │ │ │ ├── HTMLObjectElement11.xml.kfail │ │ │ ├── HTMLObjectElement12.xml │ │ │ ├── HTMLObjectElement13.xml │ │ │ ├── HTMLObjectElement14.xml │ │ │ ├── HTMLObjectElement15.xml │ │ │ ├── HTMLObjectElement16.xml.kfail │ │ │ ├── HTMLObjectElement17.xml │ │ │ ├── HTMLObjectElement18.xml │ │ │ ├── HTMLObjectElement19.xml │ │ │ ├── HTMLOptGroupElement01.xml │ │ │ ├── HTMLOptGroupElement02.xml │ │ │ ├── HTMLOptionElement01.xml │ │ │ ├── HTMLOptionElement02.xml │ │ │ ├── HTMLOptionElement03.xml │ │ │ ├── HTMLOptionElement04.xml │ │ │ ├── HTMLOptionElement05.xml │ │ │ ├── HTMLOptionElement06.xml │ │ │ ├── HTMLOptionElement07.xml │ │ │ ├── HTMLOptionElement08.xml │ │ │ ├── HTMLOptionElement09.xml │ │ │ ├── HTMLParagraphElement01.xml │ │ │ ├── HTMLParamElement01.xml │ │ │ ├── HTMLParamElement02.xml │ │ │ ├── HTMLParamElement03.xml │ │ │ ├── HTMLParamElement04.xml │ │ │ ├── HTMLPreElement01.xml │ │ │ ├── HTMLQuoteElement01.xml │ │ │ ├── HTMLQuoteElement02.xml │ │ │ ├── HTMLScriptElement01.xml │ │ │ ├── HTMLScriptElement02.xml │ │ │ ├── HTMLScriptElement03.xml │ │ │ ├── HTMLScriptElement04.xml │ │ │ ├── HTMLScriptElement05.xml │ │ │ ├── HTMLScriptElement06.xml │ │ │ ├── HTMLScriptElement07.xml │ │ │ ├── HTMLSelectElement01.xml │ │ │ ├── HTMLSelectElement02.xml │ │ │ ├── HTMLSelectElement03.xml │ │ │ ├── HTMLSelectElement04.xml │ │ │ ├── HTMLSelectElement05.xml │ │ │ ├── HTMLSelectElement06.xml │ │ │ ├── HTMLSelectElement07.xml │ │ │ ├── HTMLSelectElement08.xml │ │ │ ├── HTMLSelectElement09.xml │ │ │ ├── HTMLSelectElement10.xml │ │ │ ├── HTMLSelectElement11.xml │ │ │ ├── HTMLSelectElement12.xml │ │ │ ├── HTMLSelectElement13.xml │ │ │ ├── HTMLSelectElement14.xml │ │ │ ├── HTMLSelectElement15.xml │ │ │ ├── HTMLSelectElement16.xml │ │ │ ├── HTMLSelectElement17.xml │ │ │ ├── HTMLSelectElement18.xml │ │ │ ├── HTMLSelectElement19.xml │ │ │ ├── HTMLStyleElement01.xml │ │ │ ├── HTMLStyleElement02.xml │ │ │ ├── HTMLStyleElement03.xml │ │ │ ├── HTMLTableCaptionElement01.xml │ │ │ ├── HTMLTableCellElement01.xml │ │ │ ├── HTMLTableCellElement02.xml │ │ │ ├── HTMLTableCellElement03.xml │ │ │ ├── HTMLTableCellElement04.xml │ │ │ ├── HTMLTableCellElement05.xml │ │ │ ├── HTMLTableCellElement06.xml │ │ │ ├── HTMLTableCellElement07.xml │ │ │ ├── HTMLTableCellElement08.xml │ │ │ ├── HTMLTableCellElement09.xml │ │ │ ├── HTMLTableCellElement10.xml │ │ │ ├── HTMLTableCellElement11.xml │ │ │ ├── HTMLTableCellElement12.xml │ │ │ ├── HTMLTableCellElement13.xml │ │ │ ├── HTMLTableCellElement14.xml │ │ │ ├── HTMLTableCellElement15.xml │ │ │ ├── HTMLTableCellElement16.xml │ │ │ ├── HTMLTableCellElement17.xml │ │ │ ├── HTMLTableCellElement18.xml │ │ │ ├── HTMLTableCellElement19.xml │ │ │ ├── HTMLTableCellElement20.xml │ │ │ ├── HTMLTableCellElement21.xml │ │ │ ├── HTMLTableCellElement22.xml │ │ │ ├── HTMLTableCellElement23.xml │ │ │ ├── HTMLTableCellElement24.xml │ │ │ ├── HTMLTableCellElement25.xml │ │ │ ├── HTMLTableCellElement26.xml │ │ │ ├── HTMLTableCellElement27.xml │ │ │ ├── HTMLTableCellElement28.xml │ │ │ ├── HTMLTableCellElement29.xml │ │ │ ├── HTMLTableCellElement30.xml │ │ │ ├── HTMLTableColElement01.xml │ │ │ ├── HTMLTableColElement02.xml │ │ │ ├── HTMLTableColElement03.xml │ │ │ ├── HTMLTableColElement04.xml │ │ │ ├── HTMLTableColElement05.xml │ │ │ ├── HTMLTableColElement06.xml │ │ │ ├── HTMLTableColElement07.xml │ │ │ ├── HTMLTableColElement08.xml │ │ │ ├── HTMLTableColElement09.xml │ │ │ ├── HTMLTableColElement10.xml │ │ │ ├── HTMLTableColElement11.xml │ │ │ ├── HTMLTableColElement12.xml │ │ │ ├── HTMLTableElement01.xml │ │ │ ├── HTMLTableElement02.xml │ │ │ ├── HTMLTableElement03.xml │ │ │ ├── HTMLTableElement04.xml │ │ │ ├── HTMLTableElement05.xml │ │ │ ├── HTMLTableElement06.xml │ │ │ ├── HTMLTableElement07.xml │ │ │ ├── HTMLTableElement08.xml │ │ │ ├── HTMLTableElement09.xml │ │ │ ├── HTMLTableElement10.xml │ │ │ ├── HTMLTableElement11.xml │ │ │ ├── HTMLTableElement12.xml │ │ │ ├── HTMLTableElement13.xml │ │ │ ├── HTMLTableElement14.xml │ │ │ ├── HTMLTableElement15.xml │ │ │ ├── HTMLTableElement16.xml │ │ │ ├── HTMLTableElement17.xml │ │ │ ├── HTMLTableElement18.xml │ │ │ ├── HTMLTableElement19.xml │ │ │ ├── HTMLTableElement20.xml │ │ │ ├── HTMLTableElement21.xml │ │ │ ├── HTMLTableElement22.xml │ │ │ ├── HTMLTableElement23.xml │ │ │ ├── HTMLTableElement24.xml │ │ │ ├── HTMLTableElement25.xml │ │ │ ├── HTMLTableElement26.xml │ │ │ ├── HTMLTableElement27.xml │ │ │ ├── HTMLTableElement28.xml │ │ │ ├── HTMLTableElement29.xml │ │ │ ├── HTMLTableElement30.xml │ │ │ ├── HTMLTableElement31.xml │ │ │ ├── HTMLTableElement32.xml │ │ │ ├── HTMLTableElement33.xml │ │ │ ├── HTMLTableRowElement01.xml │ │ │ ├── HTMLTableRowElement02.xml │ │ │ ├── HTMLTableRowElement03.xml │ │ │ ├── HTMLTableRowElement04.xml │ │ │ ├── HTMLTableRowElement05.xml │ │ │ ├── HTMLTableRowElement06.xml │ │ │ ├── HTMLTableRowElement07.xml │ │ │ ├── HTMLTableRowElement08.xml │ │ │ ├── HTMLTableRowElement09.xml │ │ │ ├── HTMLTableRowElement10.xml │ │ │ ├── HTMLTableRowElement11.xml │ │ │ ├── HTMLTableRowElement12.xml │ │ │ ├── HTMLTableRowElement13.xml │ │ │ ├── HTMLTableRowElement14.xml │ │ │ ├── HTMLTableSectionElement01.xml │ │ │ ├── HTMLTableSectionElement02.xml │ │ │ ├── HTMLTableSectionElement03.xml │ │ │ ├── HTMLTableSectionElement04.xml │ │ │ ├── HTMLTableSectionElement05.xml │ │ │ ├── HTMLTableSectionElement06.xml │ │ │ ├── HTMLTableSectionElement07.xml │ │ │ ├── HTMLTableSectionElement08.xml │ │ │ ├── HTMLTableSectionElement09.xml │ │ │ ├── HTMLTableSectionElement10.xml │ │ │ ├── HTMLTableSectionElement11.xml │ │ │ ├── HTMLTableSectionElement12.xml │ │ │ ├── HTMLTableSectionElement13.xml │ │ │ ├── HTMLTableSectionElement14.xml │ │ │ ├── HTMLTableSectionElement15.xml │ │ │ ├── HTMLTableSectionElement16.xml │ │ │ ├── HTMLTableSectionElement17.xml │ │ │ ├── HTMLTableSectionElement18.xml │ │ │ ├── HTMLTableSectionElement19.xml │ │ │ ├── HTMLTableSectionElement20.xml │ │ │ ├── HTMLTableSectionElement21.xml │ │ │ ├── HTMLTableSectionElement22.xml │ │ │ ├── HTMLTableSectionElement23.xml │ │ │ ├── HTMLTableSectionElement24.xml │ │ │ ├── HTMLTextAreaElement01.xml │ │ │ ├── HTMLTextAreaElement02.xml │ │ │ ├── HTMLTextAreaElement03.xml │ │ │ ├── HTMLTextAreaElement04.xml │ │ │ ├── HTMLTextAreaElement05.xml │ │ │ ├── HTMLTextAreaElement06.xml │ │ │ ├── HTMLTextAreaElement07.xml │ │ │ ├── HTMLTextAreaElement08.xml │ │ │ ├── HTMLTextAreaElement09.xml │ │ │ ├── HTMLTextAreaElement10.xml │ │ │ ├── HTMLTextAreaElement11.xml │ │ │ ├── HTMLTextAreaElement12.xml │ │ │ ├── HTMLTextAreaElement13.xml │ │ │ ├── HTMLTextAreaElement14.xml │ │ │ ├── HTMLTextAreaElement15.xml │ │ │ ├── HTMLTitleElement01.xml │ │ │ ├── HTMLUListElement01.xml │ │ │ ├── HTMLUListElement02.xml │ │ │ ├── alltests.xml │ │ │ ├── anchor01.xml │ │ │ ├── anchor02.xml │ │ │ ├── anchor03.xml │ │ │ ├── anchor04.xml.kfail │ │ │ ├── anchor05.xml │ │ │ ├── anchor06.xml │ │ │ ├── area01.xml │ │ │ ├── area02.xml │ │ │ ├── area03.xml │ │ │ ├── area04.xml │ │ │ ├── basefont01.xml │ │ │ ├── body01.xml │ │ │ ├── button01.xml │ │ │ ├── button02.xml │ │ │ ├── button03.xml │ │ │ ├── button04.xml │ │ │ ├── button05.xml │ │ │ ├── button06.xml │ │ │ ├── button07.xml │ │ │ ├── button08.xml │ │ │ ├── button09.xml │ │ │ ├── dlist01.xml │ │ │ ├── doc01.xml │ │ │ ├── files │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── anchor.html │ │ │ ├── anchor.xhtml │ │ │ ├── anchor.xml │ │ │ ├── anchor2.html │ │ │ ├── anchor2.xhtml │ │ │ ├── anchor2.xml │ │ │ ├── applet.html │ │ │ ├── applet.xhtml │ │ │ ├── applet.xml │ │ │ ├── applet2.html │ │ │ ├── applet2.xhtml │ │ │ ├── applet2.xml │ │ │ ├── area.html │ │ │ ├── area.xhtml │ │ │ ├── area.xml │ │ │ ├── area2.html │ │ │ ├── area2.xhtml │ │ │ ├── area2.xml │ │ │ ├── base.html │ │ │ ├── base.xhtml │ │ │ ├── base.xml │ │ │ ├── base2.html │ │ │ ├── base2.xhtml │ │ │ ├── base2.xml │ │ │ ├── basefont.html │ │ │ ├── basefont.xhtml │ │ │ ├── basefont.xml │ │ │ ├── body.html │ │ │ ├── body.xhtml │ │ │ ├── body.xml │ │ │ ├── br.html │ │ │ ├── br.xhtml │ │ │ ├── br.xml │ │ │ ├── button.html │ │ │ ├── button.xhtml │ │ │ ├── button.xml │ │ │ ├── collection.html │ │ │ ├── collection.xhtml │ │ │ ├── collection.xml │ │ │ ├── directory.html │ │ │ ├── directory.xhtml │ │ │ ├── directory.xml │ │ │ ├── div.html │ │ │ ├── div.xhtml │ │ │ ├── div.xml │ │ │ ├── dl.html │ │ │ ├── dl.xhtml │ │ │ ├── dl.xml │ │ │ ├── document.html │ │ │ ├── document.xhtml │ │ │ ├── document.xml │ │ │ ├── element.html │ │ │ ├── element.xhtml │ │ │ ├── element.xml │ │ │ ├── fieldset.html │ │ │ ├── fieldset.xhtml │ │ │ ├── fieldset.xml │ │ │ ├── font.html │ │ │ ├── font.xhtml │ │ │ ├── font.xml │ │ │ ├── form.html │ │ │ ├── form.xhtml │ │ │ ├── form.xml │ │ │ ├── form2.html │ │ │ ├── form2.xhtml │ │ │ ├── form2.xml │ │ │ ├── form3.html │ │ │ ├── form3.xhtml │ │ │ ├── form3.xml │ │ │ ├── frame.html │ │ │ ├── frame.xhtml │ │ │ ├── frame.xml │ │ │ ├── frameset.html │ │ │ ├── frameset.xhtml │ │ │ ├── frameset.xml │ │ │ ├── head.html │ │ │ ├── head.xhtml │ │ │ ├── head.xml │ │ │ ├── heading.html │ │ │ ├── heading.xhtml │ │ │ ├── heading.xml │ │ │ ├── hr.html │ │ │ ├── hr.xhtml │ │ │ ├── hr.xml │ │ │ ├── html.html │ │ │ ├── html.xhtml │ │ │ ├── html.xml │ │ │ ├── iframe.html │ │ │ ├── iframe.xhtml │ │ │ ├── iframe.xml │ │ │ ├── img.html │ │ │ ├── img.xhtml │ │ │ ├── img.xml │ │ │ ├── input.html │ │ │ ├── input.xhtml │ │ │ ├── input.xml │ │ │ ├── isindex.html │ │ │ ├── isindex.xhtml │ │ │ ├── isindex.xml │ │ │ ├── label.html │ │ │ ├── label.xhtml │ │ │ ├── label.xml │ │ │ ├── legend.html │ │ │ ├── legend.xhtml │ │ │ ├── legend.xml │ │ │ ├── li.html │ │ │ ├── li.xhtml │ │ │ ├── li.xml │ │ │ ├── link.html │ │ │ ├── link.xhtml │ │ │ ├── link.xml │ │ │ ├── link2.html │ │ │ ├── link2.xhtml │ │ │ ├── link2.xml │ │ │ ├── map.html │ │ │ ├── map.xhtml │ │ │ ├── map.xml │ │ │ ├── menu.html │ │ │ ├── menu.xhtml │ │ │ ├── menu.xml │ │ │ ├── meta.html │ │ │ ├── meta.xhtml │ │ │ ├── meta.xml │ │ │ ├── mod.html │ │ │ ├── mod.xhtml │ │ │ ├── mod.xml │ │ │ ├── object.html │ │ │ ├── object.xhtml │ │ │ ├── object.xml │ │ │ ├── object2.html │ │ │ ├── object2.xhtml │ │ │ ├── object2.xml │ │ │ ├── olist.html │ │ │ ├── olist.xhtml │ │ │ ├── olist.xml │ │ │ ├── optgroup.html │ │ │ ├── optgroup.xhtml │ │ │ ├── optgroup.xml │ │ │ ├── option.html │ │ │ ├── option.xhtml │ │ │ ├── option.xml │ │ │ ├── paragraph.html │ │ │ ├── paragraph.xhtml │ │ │ ├── paragraph.xml │ │ │ ├── param.html │ │ │ ├── param.xhtml │ │ │ ├── param.xml │ │ │ ├── pre.html │ │ │ ├── pre.xhtml │ │ │ ├── pre.xml │ │ │ ├── quote.html │ │ │ ├── quote.xhtml │ │ │ ├── quote.xml │ │ │ ├── right.png │ │ │ ├── script.html │ │ │ ├── script.xhtml │ │ │ ├── script.xml │ │ │ ├── select.html │ │ │ ├── select.xhtml │ │ │ ├── select.xml │ │ │ ├── style.html │ │ │ ├── style.xhtml │ │ │ ├── style.xml │ │ │ ├── table.html │ │ │ ├── table.xhtml │ │ │ ├── table.xml │ │ │ ├── table1.html │ │ │ ├── table1.xhtml │ │ │ ├── table1.xml │ │ │ ├── tablecaption.html │ │ │ ├── tablecaption.xhtml │ │ │ ├── tablecaption.xml │ │ │ ├── tablecell.html │ │ │ ├── tablecell.xhtml │ │ │ ├── tablecell.xml │ │ │ ├── tablecol.html │ │ │ ├── tablecol.xhtml │ │ │ ├── tablecol.xml │ │ │ ├── tablerow.html │ │ │ ├── tablerow.xhtml │ │ │ ├── tablerow.xml │ │ │ ├── tablesection.html │ │ │ ├── tablesection.xhtml │ │ │ ├── tablesection.xml │ │ │ ├── textarea.html │ │ │ ├── textarea.xhtml │ │ │ ├── textarea.xml │ │ │ ├── title.html │ │ │ ├── title.xhtml │ │ │ ├── title.xml │ │ │ ├── ulist.html │ │ │ ├── ulist.xhtml │ │ │ ├── ulist.xml │ │ │ └── w3c_main.png │ │ │ ├── hasFeature01.xml.kfail │ │ │ ├── index.htm │ │ │ ├── metadata.xml │ │ │ ├── object01.xml │ │ │ ├── object02.xml │ │ │ ├── object03.xml │ │ │ ├── object04.xml │ │ │ ├── object05.xml │ │ │ ├── object06.xml │ │ │ ├── object07.xml │ │ │ ├── object08.xml.kfail │ │ │ ├── object09.xml │ │ │ ├── object10.xml │ │ │ ├── object11.xml │ │ │ ├── object12.xml │ │ │ ├── object13.xml.kfail │ │ │ ├── object14.xml │ │ │ ├── object15.xml │ │ │ ├── table01.xml │ │ │ ├── table02.xml │ │ │ ├── table03.xml │ │ │ ├── table04.xml │ │ │ ├── table06.xml │ │ │ ├── table07.xml │ │ │ ├── table08.xml │ │ │ ├── table09.xml │ │ │ ├── table10.xml │ │ │ ├── table12.xml │ │ │ ├── table15.xml │ │ │ ├── table17.xml │ │ │ ├── table18.xml │ │ │ ├── table19.xml │ │ │ ├── table20.xml │ │ │ ├── table21.xml │ │ │ ├── table22.xml │ │ │ ├── table23.xml │ │ │ ├── table24.xml │ │ │ ├── table25.xml │ │ │ ├── table26.xml │ │ │ ├── table27.xml │ │ │ ├── table28.xml │ │ │ ├── table29.xml │ │ │ ├── table30.xml │ │ │ ├── table31.xml │ │ │ ├── table32.xml │ │ │ ├── table33.xml │ │ │ ├── table34.xml │ │ │ ├── table35.xml │ │ │ ├── table36.xml │ │ │ ├── table37.xml │ │ │ ├── table38.xml │ │ │ ├── table39.xml │ │ │ ├── table40.xml │ │ │ ├── table41.xml │ │ │ ├── table42.xml │ │ │ ├── table43.xml │ │ │ ├── table44.xml │ │ │ ├── table45.xml │ │ │ ├── table46.xml │ │ │ ├── table47.xml │ │ │ ├── table48.xml │ │ │ ├── table49.xml │ │ │ ├── table50.xml │ │ │ ├── table51.xml │ │ │ ├── table52.xml │ │ │ └── table53.xml │ │ ├── level2 │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ ├── Root │ │ │ └── Template │ │ ├── core │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── alltests.xml.unknown │ │ │ ├── attrgetownerelement01.xml.unknown │ │ │ ├── attrgetownerelement02.xml.unknown │ │ │ ├── attrgetownerelement03.xml.unknown │ │ │ ├── attrgetownerelement04.xml.unknown │ │ │ ├── attrgetownerelement05.xml.unknown │ │ │ ├── createAttributeNS01.xml.unknown │ │ │ ├── createAttributeNS02.xml.unknown │ │ │ ├── createAttributeNS03.xml.unknown │ │ │ ├── createAttributeNS04.xml.unknown │ │ │ ├── createAttributeNS05.xml.unknown │ │ │ ├── createAttributeNS06.xml.unknown │ │ │ ├── createDocument01.xml.unknown │ │ │ ├── createDocument02.xml.unknown │ │ │ ├── createDocument03.xml.unknown │ │ │ ├── createDocument04.xml.unknown │ │ │ ├── createDocument05.xml.unknown │ │ │ ├── createDocument06.xml.unknown │ │ │ ├── createDocument07.xml.unknown │ │ │ ├── createDocument08.xml.unknown │ │ │ ├── createDocumentType01.xml.unknown │ │ │ ├── createDocumentType02.xml.unknown │ │ │ ├── createDocumentType03.xml.unknown │ │ │ ├── createDocumentType04.xml.unknown │ │ │ ├── createElementNS01.xml.unknown │ │ │ ├── createElementNS02.xml.unknown │ │ │ ├── createElementNS03.xml.unknown │ │ │ ├── createElementNS04.xml.unknown │ │ │ ├── createElementNS05.xml.unknown │ │ │ ├── createElementNS06.xml.unknown │ │ │ ├── documentcreateattributeNS01.xml.unknown │ │ │ ├── documentcreateattributeNS02.xml.unknown │ │ │ ├── documentcreateattributeNS03.xml.unknown │ │ │ ├── documentcreateattributeNS04.xml.unknown │ │ │ ├── documentcreateattributeNS05.xml.unknown │ │ │ ├── documentcreateattributeNS06.xml.unknown │ │ │ ├── documentcreateattributeNS07.xml.unknown │ │ │ ├── documentcreateelementNS01.xml.unknown │ │ │ ├── documentcreateelementNS02.xml.unknown │ │ │ ├── documentcreateelementNS05.xml.unknown │ │ │ ├── documentcreateelementNS06.xml.unknown │ │ │ ├── documentgetelementbyid01.xml │ │ │ ├── documentgetelementsbytagnameNS01.xml.notimpl │ │ │ ├── documentgetelementsbytagnameNS02.xml │ │ │ ├── documentgetelementsbytagnameNS03.xml.kfail │ │ │ ├── documentgetelementsbytagnameNS04.xml.kfail │ │ │ ├── documentgetelementsbytagnameNS05.xml.unknown │ │ │ ├── documentimportnode01.xml.unknown │ │ │ ├── documentimportnode02.xml.unknown │ │ │ ├── documentimportnode03.xml.unknown │ │ │ ├── documentimportnode04.xml.unknown │ │ │ ├── documentimportnode05.xml.unknown │ │ │ ├── documentimportnode06.xml.unknown │ │ │ ├── documentimportnode07.xml.unknown │ │ │ ├── documentimportnode08.xml.unknown │ │ │ ├── documentimportnode09.xml.unknown │ │ │ ├── documentimportnode10.xml.unknown │ │ │ ├── documentimportnode11.xml.unknown │ │ │ ├── documentimportnode12.xml.unknown │ │ │ ├── documentimportnode13.xml.unknown │ │ │ ├── documentimportnode14.xml.unknown │ │ │ ├── documentimportnode15.xml.unknown │ │ │ ├── documentimportnode17.xml.unknown │ │ │ ├── documentimportnode18.xml.unknown │ │ │ ├── documentimportnode19.xml.unknown │ │ │ ├── documentimportnode20.xml.unknown │ │ │ ├── documentimportnode21.xml.unknown │ │ │ ├── documentimportnode22.xml.unknown │ │ │ ├── documenttypeinternalSubset01.xml.unknown │ │ │ ├── documenttypepublicid01.xml.unknown │ │ │ ├── documenttypesystemid01.xml.unknown │ │ │ ├── domimplementationcreatedocument03.xml.unknown │ │ │ ├── domimplementationcreatedocument04.xml.unknown │ │ │ ├── domimplementationcreatedocument05.xml.unknown │ │ │ ├── domimplementationcreatedocument07.xml.unknown │ │ │ ├── domimplementationcreatedocumenttype01.xml.unknown │ │ │ ├── domimplementationcreatedocumenttype02.xml.unknown │ │ │ ├── domimplementationcreatedocumenttype04.xml.unknown │ │ │ ├── domimplementationfeaturecore.xml.unknown │ │ │ ├── domimplementationfeaturexmlversion2.xml.unknown │ │ │ ├── domimplementationhasfeature01.xml.unknown │ │ │ ├── domimplementationhasfeature02.xml.unknown │ │ │ ├── elementgetattributenodens01.xml.unknown │ │ │ ├── elementgetattributenodens02.xml.unknown │ │ │ ├── elementgetattributenodens03.xml.unknown │ │ │ ├── elementgetattributens02.xml.unknown │ │ │ ├── elementgetelementsbytagnamens02.xml.unknown │ │ │ ├── elementgetelementsbytagnamens04.xml.unknown │ │ │ ├── elementgetelementsbytagnamens05.xml.unknown │ │ │ ├── elementhasattribute01.xml.unknown │ │ │ ├── elementhasattribute02.xml.unknown │ │ │ ├── elementhasattribute03.xml.unknown │ │ │ ├── elementhasattribute04.xml.unknown │ │ │ ├── elementhasattributens01.xml.unknown │ │ │ ├── elementhasattributens02.xml.unknown │ │ │ ├── elementhasattributens03.xml.unknown │ │ │ ├── elementremoveattributens01.xml.unknown │ │ │ ├── elementsetattributenodens01.xml.unknown │ │ │ ├── elementsetattributenodens02.xml.unknown │ │ │ ├── elementsetattributenodens03.xml.unknown │ │ │ ├── elementsetattributenodens04.xml.unknown │ │ │ ├── elementsetattributenodens05.xml.unknown │ │ │ ├── elementsetattributenodens06.xml.unknown │ │ │ ├── elementsetattributens01.xml.unknown │ │ │ ├── elementsetattributens02.xml.unknown │ │ │ ├── elementsetattributens03.xml.unknown │ │ │ ├── elementsetattributens04.xml.unknown │ │ │ ├── elementsetattributens05.xml.unknown │ │ │ ├── elementsetattributens08.xml.unknown │ │ │ ├── elementsetattributensurinull.xml.unknown │ │ │ ├── files │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ ├── Root │ │ │ │ │ └── Template │ │ │ │ ├── hc_staff.html │ │ │ │ ├── hc_staff.svg │ │ │ │ ├── hc_staff.xhtml │ │ │ │ ├── hc_staff.xml │ │ │ │ ├── internalSubset01.js │ │ │ │ ├── nodtdstaff.svg │ │ │ │ ├── nodtdstaff.xml │ │ │ │ ├── staff.dtd │ │ │ │ ├── staff.svg │ │ │ │ ├── staff.xml │ │ │ │ ├── staff2.dtd │ │ │ │ ├── staff2.svg │ │ │ │ ├── staff2.xml │ │ │ │ ├── staffNS.dtd │ │ │ │ ├── staffNS.svg │ │ │ │ ├── staffNS.xml │ │ │ │ ├── svgtest.js │ │ │ │ ├── svgunit.js │ │ │ │ └── xhtml1-strict.dtd │ │ │ ├── getAttributeNS01.xml.unknown │ │ │ ├── getAttributeNS02.xml.unknown │ │ │ ├── getAttributeNS03.xml.unknown │ │ │ ├── getAttributeNS04.xml.unknown │ │ │ ├── getAttributeNS05.xml.unknown │ │ │ ├── getAttributeNodeNS01.xml.unknown │ │ │ ├── getAttributeNodeNS02.xml.unknown │ │ │ ├── getElementById01.xml.kfail │ │ │ ├── getElementById02.xml │ │ │ ├── getElementsByTagNameNS01.xml.unknown │ │ │ ├── getElementsByTagNameNS02.xml.unknown │ │ │ ├── getElementsByTagNameNS03.xml.unknown │ │ │ ├── getElementsByTagNameNS04.xml.unknown │ │ │ ├── getElementsByTagNameNS05.xml.unknown │ │ │ ├── getElementsByTagNameNS06.xml.unknown │ │ │ ├── getElementsByTagNameNS07.xml.unknown │ │ │ ├── getElementsByTagNameNS08.xml.unknown │ │ │ ├── getElementsByTagNameNS09.xml.unknown │ │ │ ├── getElementsByTagNameNS10.xml.unknown │ │ │ ├── getElementsByTagNameNS11.xml.unknown │ │ │ ├── getElementsByTagNameNS12.xml.unknown │ │ │ ├── getElementsByTagNameNS13.xml.unknown │ │ │ ├── getElementsByTagNameNS14.xml.unknown │ │ │ ├── getNamedItemNS01.xml.unknown │ │ │ ├── getNamedItemNS02.xml.unknown │ │ │ ├── getNamedItemNS03.xml.unknown │ │ │ ├── getNamedItemNS04.xml.unknown │ │ │ ├── hasAttribute01.xml.unknown │ │ │ ├── hasAttribute02.xml.unknown │ │ │ ├── hasAttribute03.xml.unknown │ │ │ ├── hasAttribute04.xml.unknown │ │ │ ├── hasAttributeNS01.xml.unknown │ │ │ ├── hasAttributeNS02.xml.unknown │ │ │ ├── hasAttributeNS03.xml.unknown │ │ │ ├── hasAttributeNS04.xml.unknown │ │ │ ├── hasAttributeNS05.xml.unknown │ │ │ ├── hasAttributes01.xml.unknown │ │ │ ├── hasAttributes02.xml.unknown │ │ │ ├── hc_entitiesremovenameditemns1.xml.unknown │ │ │ ├── hc_entitiessetnameditemns1.xml.unknown │ │ │ ├── hc_namednodemapinvalidtype1.xml.unknown │ │ │ ├── hc_nodedocumentfragmentnormalize1.xml.unknown │ │ │ ├── hc_nodedocumentfragmentnormalize2.xml.unknown │ │ │ ├── hc_notationsremovenameditemns1.xml.unknown │ │ │ ├── hc_notationssetnameditemns1.xml.unknown │ │ │ ├── importNode01.xml.unknown │ │ │ ├── importNode02.xml.unknown │ │ │ ├── importNode03.xml.unknown │ │ │ ├── importNode04.xml.unknown │ │ │ ├── importNode05.xml.unknown │ │ │ ├── importNode06.xml.unknown │ │ │ ├── importNode07.xml.unknown │ │ │ ├── importNode08.xml.unknown │ │ │ ├── importNode09.xml.unknown │ │ │ ├── importNode10.xml.unknown │ │ │ ├── importNode11.xml.unknown │ │ │ ├── importNode12.xml.unknown │ │ │ ├── importNode13.xml.unknown │ │ │ ├── importNode14.xml.unknown │ │ │ ├── importNode15.xml.unknown │ │ │ ├── importNode16.xml.unknown │ │ │ ├── importNode17.xml.unknown │ │ │ ├── internalSubset01.xml.unknown │ │ │ ├── isSupported01.xml.unknown │ │ │ ├── isSupported02.xml.unknown │ │ │ ├── isSupported04.xml.unknown │ │ │ ├── isSupported05.xml.unknown │ │ │ ├── isSupported06.xml.unknown │ │ │ ├── isSupported07.xml.unknown │ │ │ ├── isSupported09.xml.unknown │ │ │ ├── isSupported10.xml.unknown │ │ │ ├── isSupported11.xml.unknown │ │ │ ├── isSupported12.xml.unknown │ │ │ ├── isSupported13.xml.unknown │ │ │ ├── isSupported14.xml.unknown │ │ │ ├── localName01.xml.unknown │ │ │ ├── localName02.xml.unknown │ │ │ ├── localName03.xml.unknown │ │ │ ├── localName04.xml.unknown │ │ │ ├── metadata.xml.unknown │ │ │ ├── namednodemapgetnameditemns01.xml.unknown │ │ │ ├── namednodemapgetnameditemns02.xml.unknown │ │ │ ├── namednodemapgetnameditemns03.xml.unknown │ │ │ ├── namednodemapgetnameditemns04.xml.unknown │ │ │ ├── namednodemapgetnameditemns05.xml.unknown │ │ │ ├── namednodemapgetnameditemns06.xml.unknown │ │ │ ├── namednodemapremovenameditemns01.xml.unknown │ │ │ ├── namednodemapremovenameditemns02.xml.unknown │ │ │ ├── namednodemapremovenameditemns03.xml.unknown │ │ │ ├── namednodemapremovenameditemns04.xml.unknown │ │ │ ├── namednodemapremovenameditemns05.xml.unknown │ │ │ ├── namednodemapremovenameditemns06.xml.unknown │ │ │ ├── namednodemapremovenameditemns07.xml.unknown │ │ │ ├── namednodemapremovenameditemns08.xml.unknown │ │ │ ├── namednodemapremovenameditemns09.xml.unknown │ │ │ ├── namednodemapsetnameditemns01.xml.unknown │ │ │ ├── namednodemapsetnameditemns02.xml.unknown │ │ │ ├── namednodemapsetnameditemns03.xml.unknown │ │ │ ├── namednodemapsetnameditemns04.xml.unknown │ │ │ ├── namednodemapsetnameditemns05.xml.unknown │ │ │ ├── namednodemapsetnameditemns06.xml.unknown │ │ │ ├── namednodemapsetnameditemns07.xml.unknown │ │ │ ├── namednodemapsetnameditemns08.xml.unknown │ │ │ ├── namednodemapsetnameditemns09.xml.unknown │ │ │ ├── namednodemapsetnameditemns10.xml.unknown │ │ │ ├── namednodemapsetnameditemns11.xml.unknown │ │ │ ├── namespaceURI01.xml.unknown │ │ │ ├── namespaceURI02.xml.unknown │ │ │ ├── namespaceURI03.xml.unknown │ │ │ ├── namespaceURI04.xml.unknown │ │ │ ├── nodegetlocalname03.xml.unknown │ │ │ ├── nodegetnamespaceuri03.xml.unknown │ │ │ ├── nodegetownerdocument01.xml.unknown │ │ │ ├── nodegetownerdocument02.xml.unknown │ │ │ ├── nodegetprefix03.xml.unknown │ │ │ ├── nodehasattributes01.xml.unknown │ │ │ ├── nodehasattributes02.xml.unknown │ │ │ ├── nodehasattributes03.xml.unknown │ │ │ ├── nodehasattributes04.xml.unknown │ │ │ ├── nodeissupported01.xml.unknown │ │ │ ├── nodeissupported02.xml.unknown │ │ │ ├── nodeissupported03.xml.unknown │ │ │ ├── nodeissupported04.xml.unknown │ │ │ ├── nodeissupported05.xml.unknown │ │ │ ├── nodenormalize01.xml.unknown │ │ │ ├── nodesetprefix01.xml.unknown │ │ │ ├── nodesetprefix02.xml.unknown │ │ │ ├── nodesetprefix03.xml.unknown │ │ │ ├── nodesetprefix04.xml.unknown │ │ │ ├── nodesetprefix05.xml.unknown │ │ │ ├── nodesetprefix06.xml.unknown │ │ │ ├── nodesetprefix07.xml.unknown │ │ │ ├── nodesetprefix08.xml.unknown │ │ │ ├── nodesetprefix09.xml.unknown │ │ │ ├── normalize01.xml.unknown │ │ │ ├── ownerDocument01.xml.unknown │ │ │ ├── ownerElement01.xml.unknown │ │ │ ├── ownerElement02.xml.unknown │ │ │ ├── prefix01.xml.unknown │ │ │ ├── prefix02.xml.unknown │ │ │ ├── prefix03.xml.unknown │ │ │ ├── prefix04.xml.unknown │ │ │ ├── prefix05.xml.unknown │ │ │ ├── prefix06.xml.unknown │ │ │ ├── prefix07.xml.unknown │ │ │ ├── prefix08.xml.unknown │ │ │ ├── prefix09.xml.unknown │ │ │ ├── prefix10.xml.unknown │ │ │ ├── prefix11.xml.unknown │ │ │ ├── publicId01.xml.unknown │ │ │ ├── removeAttributeNS01.xml.unknown │ │ │ ├── removeAttributeNS02.xml.unknown │ │ │ ├── removeNamedItemNS01.xml.unknown │ │ │ ├── removeNamedItemNS02.xml.unknown │ │ │ ├── removeNamedItemNS03.xml.unknown │ │ │ ├── setAttributeNS01.xml.unknown │ │ │ ├── setAttributeNS02.xml.unknown │ │ │ ├── setAttributeNS03.xml.unknown │ │ │ ├── setAttributeNS04.xml.unknown │ │ │ ├── setAttributeNS05.xml.unknown │ │ │ ├── setAttributeNS06.xml.unknown │ │ │ ├── setAttributeNS07.xml.unknown │ │ │ ├── setAttributeNS09.xml.unknown │ │ │ ├── setAttributeNS10.xml.unknown │ │ │ ├── setAttributeNodeNS01.xml.unknown │ │ │ ├── setAttributeNodeNS02.xml.unknown │ │ │ ├── setAttributeNodeNS03.xml.unknown │ │ │ ├── setAttributeNodeNS04.xml.unknown │ │ │ ├── setAttributeNodeNS05.xml.unknown │ │ │ ├── setNamedItemNS01.xml.unknown │ │ │ ├── setNamedItemNS02.xml.unknown │ │ │ ├── setNamedItemNS03.xml.unknown │ │ │ ├── setNamedItemNS04.xml.unknown │ │ │ ├── setNamedItemNS05.xml.unknown │ │ │ └── systemId01.xml.unknown │ │ ├── events │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── DocumentEventCast01.xml │ │ │ ├── EventTargetCast01.xml │ │ │ ├── alltests.xml │ │ │ ├── createEvent01.xml │ │ │ ├── createEvent02.xml │ │ │ ├── createEvent03.xml │ │ │ ├── createEvent04.xml │ │ │ ├── createEvent05.xml │ │ │ ├── dispatchEvent01.xml │ │ │ ├── dispatchEvent02.xml │ │ │ ├── dispatchEvent03.xml │ │ │ ├── dispatchEvent04.xml │ │ │ ├── dispatchEvent05.xml │ │ │ ├── dispatchEvent06.xml │ │ │ ├── dispatchEvent07.xml │ │ │ ├── dispatchEvent08.xml │ │ │ ├── dispatchEvent09.xml │ │ │ ├── dispatchEvent10.xml │ │ │ ├── dispatchEvent11.xml │ │ │ ├── dispatchEvent12.xml │ │ │ ├── dispatchEvent13.xml │ │ │ ├── files │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ ├── Root │ │ │ │ │ └── Template │ │ │ │ ├── hc_staff.html │ │ │ │ ├── hc_staff.svg │ │ │ │ ├── hc_staff.xhtml │ │ │ │ ├── hc_staff.xml │ │ │ │ ├── staff.dtd │ │ │ │ ├── svgtest.js │ │ │ │ ├── svgunit.js │ │ │ │ └── xhtml1-strict.dtd │ │ │ ├── initEvent01.xml │ │ │ ├── initEvent02.xml │ │ │ ├── initEvent03.xml │ │ │ ├── initEvent04.xml │ │ │ ├── initEvent05.xml │ │ │ ├── initEvent06.xml │ │ │ └── metadata.xml │ │ └── html │ │ │ ├── .HTMLImageElement05.xml.swp │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ ├── Root │ │ │ └── Template │ │ │ ├── HTMLAppletElement07.xml │ │ │ ├── HTMLAppletElement09.xml │ │ │ ├── HTMLBaseFontElement03.xml │ │ │ ├── HTMLBodyElement07.xml.kfail │ │ │ ├── HTMLBodyElement08.xml.kfail │ │ │ ├── HTMLBodyElement09.xml.kfail │ │ │ ├── HTMLBodyElement10.xml.kfail │ │ │ ├── HTMLBodyElement11.xml.kfail │ │ │ ├── HTMLBodyElement12.xml.kfail │ │ │ ├── HTMLDocument22.xml.kfail │ │ │ ├── HTMLDocument23.xml.kfail │ │ │ ├── HTMLDocument24.xml.kfail │ │ │ ├── HTMLDocument25.xml.kfail │ │ │ ├── HTMLDocument26.xml.kfail │ │ │ ├── HTMLDocument27.xml.kfail │ │ │ ├── HTMLFrameElement09.xml.kfail │ │ │ ├── HTMLIFrameElement11.xml.kfail │ │ │ ├── HTMLImageElement05.xml │ │ │ ├── HTMLImageElement06.xml │ │ │ ├── HTMLImageElement11.xml │ │ │ ├── HTMLImageElement12.xml │ │ │ ├── HTMLInputElement13.xml │ │ │ ├── HTMLObjectElement11.xml │ │ │ ├── HTMLObjectElement16.xml │ │ │ ├── HTMLObjectElement20.xml │ │ │ ├── HTMLOptionsCollection01.xml │ │ │ ├── HTMLOptionsCollection02.xml │ │ │ ├── HTMLOptionsCollection03.xml │ │ │ ├── HTMLOptionsCollection04.xml │ │ │ ├── HTMLOptionsCollection05.xml │ │ │ ├── HTMLOptionsCollection06.xml │ │ │ ├── HTMLOptionsCollection07.xml │ │ │ ├── HTMLSelectElement20.xml │ │ │ ├── HTMLTableElement34.xml │ │ │ ├── HTMLTableElement35.xml │ │ │ ├── HTMLTableElement36.xml │ │ │ ├── HTMLTableElement37.xml │ │ │ ├── HTMLTableElement38.xml │ │ │ ├── HTMLTableElement39.xml.kfail │ │ │ ├── HTMLTableElement40.xml │ │ │ ├── HTMLTableRowElement15.xml │ │ │ ├── HTMLTableRowElement16.xml │ │ │ ├── HTMLTableRowElement17.xml │ │ │ ├── HTMLTableRowElement18.xml │ │ │ ├── HTMLTableRowElement19.xml │ │ │ ├── HTMLTableRowElement20.xml │ │ │ ├── HTMLTableRowElement21.xml │ │ │ ├── HTMLTableSectionElement25.xml │ │ │ ├── HTMLTableSectionElement26.xml │ │ │ ├── HTMLTableSectionElement27.xml │ │ │ ├── HTMLTableSectionElement28.xml │ │ │ ├── HTMLTableSectionElement29.xml │ │ │ ├── HTMLTableSectionElement30.xml │ │ │ ├── HTMLTableSectionElement31.xml │ │ │ ├── alltests.xml │ │ │ ├── files │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── applet.html │ │ │ ├── applet.xhtml │ │ │ ├── applet.xml │ │ │ ├── applet2.html │ │ │ ├── applet2.xhtml │ │ │ ├── applet2.xml │ │ │ ├── area.html │ │ │ ├── area.xhtml │ │ │ ├── area.xml │ │ │ ├── area2.html │ │ │ ├── area2.xhtml │ │ │ ├── area2.xml │ │ │ ├── basefont.html │ │ │ ├── basefont.xhtml │ │ │ ├── basefont.xml │ │ │ ├── document.html │ │ │ ├── document.xhtml │ │ │ ├── document.xml │ │ │ ├── frame2.html │ │ │ ├── frame2.xhtml │ │ │ ├── frame2.xml │ │ │ ├── iframe2.html │ │ │ ├── iframe2.xhtml │ │ │ ├── iframe2.xml │ │ │ ├── img.html │ │ │ ├── img.xhtml │ │ │ ├── img.xml │ │ │ ├── input.html │ │ │ ├── input.xhtml │ │ │ ├── input.xml │ │ │ ├── object.html │ │ │ ├── object.xhtml │ │ │ ├── object.xml │ │ │ ├── object2.html │ │ │ ├── object2.xhtml │ │ │ ├── object2.xml │ │ │ ├── optionscollection.html │ │ │ ├── optionscollection.xhtml │ │ │ ├── optionscollection.xml │ │ │ ├── select.html │ │ │ ├── select.xhtml │ │ │ ├── select.xml │ │ │ ├── table.html │ │ │ ├── table.xhtml │ │ │ ├── table.xml │ │ │ ├── table1.html │ │ │ ├── table1.xhtml │ │ │ ├── table1.xml │ │ │ ├── tablerow.html │ │ │ ├── tablerow.xhtml │ │ │ ├── tablerow.xml │ │ │ ├── tablesection.html │ │ │ ├── tablesection.xhtml │ │ │ └── tablesection.xml │ │ │ ├── hasFeature02.xml.kfail │ │ │ ├── hasFeature03.xml.kfail │ │ │ ├── hasFeature04.xml.kfail │ │ │ ├── hasFeature05.xml.kfail │ │ │ ├── hasFeature06.xml.kfail │ │ │ ├── metadata.xml.kfail │ │ │ ├── object08.xml │ │ │ └── object13.xml │ │ ├── level3 │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ ├── Root │ │ │ └── Template │ │ ├── core │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── alltests.xml │ │ │ ├── attrgetschematypeinfo01.xml │ │ │ ├── attrgetschematypeinfo02.xml │ │ │ ├── attrgetschematypeinfo03.xml │ │ │ ├── attrgetschematypeinfo04.xml │ │ │ ├── attrgetschematypeinfo05.xml │ │ │ ├── attrgetschematypeinfo06.xml │ │ │ ├── attrgetschematypeinfo07.xml │ │ │ ├── attrgetschematypeinfo08.xml │ │ │ ├── attrisid01.xml │ │ │ ├── attrisid02.xml │ │ │ ├── attrisid03.xml │ │ │ ├── attrisid04.xml │ │ │ ├── attrisid05.xml │ │ │ ├── attrisid06.xml │ │ │ ├── attrisid07.xml │ │ │ ├── canonicalform01.xml │ │ │ ├── canonicalform02.xml │ │ │ ├── canonicalform03.xml │ │ │ ├── canonicalform04.xml │ │ │ ├── canonicalform05.xml │ │ │ ├── canonicalform06.xml │ │ │ ├── canonicalform07.xml │ │ │ ├── canonicalform08.xml │ │ │ ├── canonicalform09.xml │ │ │ ├── canonicalform10.xml │ │ │ ├── canonicalform11.xml │ │ │ ├── canonicalform12.xml │ │ │ ├── cdatasections01.xml │ │ │ ├── checkcharacternormalization01.xml │ │ │ ├── checkcharacternormalization02.xml │ │ │ ├── checkcharacternormalization03.xml │ │ │ ├── comments01.xml │ │ │ ├── datatypenormalization01.xml │ │ │ ├── datatypenormalization02.xml │ │ │ ├── datatypenormalization03.xml │ │ │ ├── datatypenormalization04.xml │ │ │ ├── datatypenormalization05.xml │ │ │ ├── datatypenormalization06.xml │ │ │ ├── datatypenormalization07.xml │ │ │ ├── datatypenormalization08.xml │ │ │ ├── datatypenormalization09.xml │ │ │ ├── datatypenormalization10.xml │ │ │ ├── datatypenormalization11.xml │ │ │ ├── datatypenormalization12.xml │ │ │ ├── datatypenormalization13.xml │ │ │ ├── datatypenormalization14.xml │ │ │ ├── datatypenormalization15.xml │ │ │ ├── datatypenormalization16.xml │ │ │ ├── datatypenormalization17.xml │ │ │ ├── datatypenormalization18.xml │ │ │ ├── documentadoptnode01.xml │ │ │ ├── documentadoptnode02.xml │ │ │ ├── documentadoptnode03.xml │ │ │ ├── documentadoptnode04.xml │ │ │ ├── documentadoptnode05.xml │ │ │ ├── documentadoptnode06.xml │ │ │ ├── documentadoptnode07.xml │ │ │ ├── documentadoptnode08.xml │ │ │ ├── documentadoptnode09.xml │ │ │ ├── documentadoptnode10.xml │ │ │ ├── documentadoptnode11.xml │ │ │ ├── documentadoptnode12.xml │ │ │ ├── documentadoptnode13.xml │ │ │ ├── documentadoptnode14.xml │ │ │ ├── documentadoptnode15.xml │ │ │ ├── documentadoptnode16.xml │ │ │ ├── documentadoptnode17.xml │ │ │ ├── documentadoptnode18.xml │ │ │ ├── documentadoptnode19.xml │ │ │ ├── documentadoptnode20.xml │ │ │ ├── documentadoptnode21.xml │ │ │ ├── documentadoptnode22.xml │ │ │ ├── documentadoptnode23.xml │ │ │ ├── documentadoptnode24.xml │ │ │ ├── documentadoptnode25.xml │ │ │ ├── documentadoptnode26.xml │ │ │ ├── documentadoptnode27.xml │ │ │ ├── documentadoptnode28.xml │ │ │ ├── documentadoptnode30.xml │ │ │ ├── documentadoptnode31.xml │ │ │ ├── documentadoptnode32.xml │ │ │ ├── documentadoptnode33.xml │ │ │ ├── documentadoptnode34.xml │ │ │ ├── documentadoptnode35.xml │ │ │ ├── documentadoptnode36.xml │ │ │ ├── documentgetdoctype01.xml │ │ │ ├── documentgetdocumenturi01.xml │ │ │ ├── documentgetdocumenturi02.xml │ │ │ ├── documentgetdocumenturi03.xml │ │ │ ├── documentgetinputencoding01.xml │ │ │ ├── documentgetinputencoding02.xml │ │ │ ├── documentgetinputencoding03.xml │ │ │ ├── documentgetinputencoding04.xml │ │ │ ├── documentgetstricterrorchecking01.xml │ │ │ ├── documentgetstricterrorchecking02.xml │ │ │ ├── documentgetxmlencoding01.xml │ │ │ ├── documentgetxmlencoding02.xml │ │ │ ├── documentgetxmlencoding03.xml │ │ │ ├── documentgetxmlencoding04.xml │ │ │ ├── documentgetxmlencoding05.xml │ │ │ ├── documentgetxmlstandalone01.xml │ │ │ ├── documentgetxmlstandalone02.xml │ │ │ ├── documentgetxmlstandalone03.xml │ │ │ ├── documentgetxmlstandalone04.xml │ │ │ ├── documentgetxmlstandalone05.xml │ │ │ ├── documentgetxmlversion01.xml │ │ │ ├── documentgetxmlversion02.xml │ │ │ ├── documentgetxmlversion03.xml │ │ │ ├── documentnormalizedocument01.xml │ │ │ ├── documentnormalizedocument02.xml │ │ │ ├── documentnormalizedocument03.xml │ │ │ ├── documentnormalizedocument04.xml │ │ │ ├── documentnormalizedocument05.xml │ │ │ ├── documentnormalizedocument06.xml │ │ │ ├── documentnormalizedocument07.xml │ │ │ ├── documentnormalizedocument08.xml │ │ │ ├── documentnormalizedocument09.xml │ │ │ ├── documentnormalizedocument10.xml │ │ │ ├── documentnormalizedocument11.xml │ │ │ ├── documentnormalizedocument12.xml │ │ │ ├── documentnormalizedocument13.xml │ │ │ ├── documentrenamenode01.xml │ │ │ ├── documentrenamenode02.xml │ │ │ ├── documentrenamenode03.xml │ │ │ ├── documentrenamenode04.xml │ │ │ ├── documentrenamenode05.xml │ │ │ ├── documentrenamenode06.xml │ │ │ ├── documentrenamenode07.xml │ │ │ ├── documentrenamenode08.xml │ │ │ ├── documentrenamenode09.xml │ │ │ ├── documentrenamenode10.xml │ │ │ ├── documentrenamenode11.xml │ │ │ ├── documentrenamenode12.xml │ │ │ ├── documentrenamenode13.xml │ │ │ ├── documentrenamenode14.xml │ │ │ ├── documentrenamenode15.xml │ │ │ ├── documentrenamenode16.xml │ │ │ ├── documentrenamenode17.xml │ │ │ ├── documentrenamenode18.xml │ │ │ ├── documentrenamenode19.xml │ │ │ ├── documentrenamenode20.xml │ │ │ ├── documentrenamenode21.xml │ │ │ ├── documentrenamenode22.xml │ │ │ ├── documentrenamenode23.xml │ │ │ ├── documentrenamenode24.xml │ │ │ ├── documentrenamenode25.xml │ │ │ ├── documentrenamenode26.xml │ │ │ ├── documentrenamenode27.xml │ │ │ ├── documentrenamenode28.xml │ │ │ ├── documentrenamenode29.xml │ │ │ ├── documentsetdocumenturi01.xml │ │ │ ├── documentsetdocumenturi02.xml │ │ │ ├── documentsetdocumenturi03.xml │ │ │ ├── documentsetstricterrorchecking01.xml │ │ │ ├── documentsetstricterrorchecking02.xml │ │ │ ├── documentsetstricterrorchecking03.xml │ │ │ ├── documentsetxmlstandalone01.xml │ │ │ ├── documentsetxmlstandalone02.xml │ │ │ ├── documentsetxmlversion01.xml │ │ │ ├── documentsetxmlversion02.xml │ │ │ ├── documentsetxmlversion03.xml │ │ │ ├── documentsetxmlversion05.xml │ │ │ ├── domconfigcanonicalform1.xml │ │ │ ├── domconfigcdatasections1.xml │ │ │ ├── domconfigcheckcharacternormalization1.xml │ │ │ ├── domconfigcomments1.xml │ │ │ ├── domconfigdatatypenormalization1.xml │ │ │ ├── domconfigdatatypenormalization2.xml │ │ │ ├── domconfigelementcontentwhitespace1.xml │ │ │ ├── domconfigentities1.xml │ │ │ ├── domconfigerrorhandler1.xml │ │ │ ├── domconfigerrorhandler2.xml │ │ │ ├── domconfiginfoset1.xml │ │ │ ├── domconfignamespacedeclarations1.xml │ │ │ ├── domconfignamespaces1.xml │ │ │ ├── domconfignamespaces2.xml │ │ │ ├── domconfignormalizecharacters1.xml │ │ │ ├── domconfigparameternames01.xml │ │ │ ├── domconfigschemalocation1.xml │ │ │ ├── domconfigschematype1.xml │ │ │ ├── domconfigsplitcdatasections1.xml │ │ │ ├── domconfigurationcansetparameter01.xml │ │ │ ├── domconfigurationcansetparameter02.xml │ │ │ ├── domconfigurationcansetparameter03.xml │ │ │ ├── domconfigurationcansetparameter04.xml │ │ │ ├── domconfigurationcansetparameter06.xml │ │ │ ├── domconfigurationgetparameter01.xml │ │ │ ├── domconfigurationgetparameter02.xml │ │ │ ├── domconfigvalidate1.xml │ │ │ ├── domconfigvalidateifschema1.xml │ │ │ ├── domconfigwellformed1.xml │ │ │ ├── domimplementationgetfeature01.xml │ │ │ ├── domimplementationgetfeature02.xml │ │ │ ├── domimplementationgetfeature03.xml │ │ │ ├── domimplementationgetfeature05.xml │ │ │ ├── domimplementationgetfeature06.xml │ │ │ ├── domimplementationregistry01.xml │ │ │ ├── domimplementationregistry02.xml │ │ │ ├── domimplementationregistry03.xml │ │ │ ├── domimplementationregistry04.xml │ │ │ ├── domimplementationregistry05.xml │ │ │ ├── domimplementationregistry06.xml │ │ │ ├── domimplementationregistry07.xml │ │ │ ├── domimplementationregistry08.xml │ │ │ ├── domimplementationregistry09.xml │ │ │ ├── domimplementationregistry10.xml │ │ │ ├── domimplementationregistry11.xml │ │ │ ├── domimplementationregistry12.xml │ │ │ ├── domimplementationregistry13.xml │ │ │ ├── domimplementationregistry14.xml │ │ │ ├── domimplementationregistry15.xml │ │ │ ├── domimplementationregistry16.xml │ │ │ ├── domimplementationregistry17.xml │ │ │ ├── domimplementationregistry18.xml │ │ │ ├── domimplementationregistry19.xml │ │ │ ├── domimplementationregistry20.xml │ │ │ ├── domimplementationregistry21.xml │ │ │ ├── domimplementationregistry22.xml │ │ │ ├── domimplementationregistry23.xml │ │ │ ├── domimplementationregistry24.xml │ │ │ ├── domimplementationregistry25.xml │ │ │ ├── domstringlistcontains01.xml │ │ │ ├── domstringlistcontains02.xml │ │ │ ├── domstringlistgetlength01.xml │ │ │ ├── domstringlistitem01.xml │ │ │ ├── domstringlistitem02.xml │ │ │ ├── elementcontentwhitespace01.xml │ │ │ ├── elementcontentwhitespace02.xml │ │ │ ├── elementcontentwhitespace03.xml │ │ │ ├── elementgetschematypeinfo01.xml │ │ │ ├── elementgetschematypeinfo02.xml │ │ │ ├── elementgetschematypeinfo03.xml │ │ │ ├── elementgetschematypeinfo04.xml │ │ │ ├── elementgetschematypeinfo05.xml │ │ │ ├── elementgetschematypeinfo06.xml │ │ │ ├── elementgetschematypeinfo07.xml │ │ │ ├── elementsetidattribute01.xml │ │ │ ├── elementsetidattribute03.xml │ │ │ ├── elementsetidattribute04.xml │ │ │ ├── elementsetidattribute05.xml │ │ │ ├── elementsetidattribute06.xml │ │ │ ├── elementsetidattribute07.xml │ │ │ ├── elementsetidattribute08.xml │ │ │ ├── elementsetidattribute09.xml │ │ │ ├── elementsetidattribute10.xml │ │ │ ├── elementsetidattribute11.xml │ │ │ ├── elementsetidattributenode01.xml │ │ │ ├── elementsetidattributenode02.xml │ │ │ ├── elementsetidattributenode03.xml │ │ │ ├── elementsetidattributenode04.xml │ │ │ ├── elementsetidattributenode05.xml │ │ │ ├── elementsetidattributenode06.xml │ │ │ ├── elementsetidattributenode07.xml │ │ │ ├── elementsetidattributenode08.xml │ │ │ ├── elementsetidattributenode09.xml │ │ │ ├── elementsetidattributenode10.xml │ │ │ ├── elementsetidattributens01.xml │ │ │ ├── elementsetidattributens02.xml │ │ │ ├── elementsetidattributens03.xml │ │ │ ├── elementsetidattributens04.xml │ │ │ ├── elementsetidattributens05.xml │ │ │ ├── elementsetidattributens06.xml │ │ │ ├── elementsetidattributens07.xml │ │ │ ├── elementsetidattributens08.xml │ │ │ ├── elementsetidattributens09.xml │ │ │ ├── elementsetidattributens10.xml │ │ │ ├── elementsetidattributens11.xml │ │ │ ├── elementsetidattributens12.xml │ │ │ ├── elementsetidattributens13.xml │ │ │ ├── elementsetidattributens14.xml │ │ │ ├── entities01.xml │ │ │ ├── entities02.xml │ │ │ ├── entities03.xml │ │ │ ├── entities04.xml │ │ │ ├── entitygetinputencoding01.xml │ │ │ ├── entitygetinputencoding02.xml │ │ │ ├── entitygetinputencoding03.xml │ │ │ ├── entitygetinputencoding04.xml │ │ │ ├── entitygetxmlencoding01.xml │ │ │ ├── entitygetxmlencoding02.xml │ │ │ ├── entitygetxmlencoding03.xml │ │ │ ├── entitygetxmlencoding04.xml │ │ │ ├── entitygetxmlversion01.xml │ │ │ ├── entitygetxmlversion02.xml │ │ │ ├── entitygetxmlversion03.xml │ │ │ ├── entitygetxmlversion04.xml │ │ │ ├── files │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ ├── Root │ │ │ │ │ └── Template │ │ │ │ ├── Yes │ │ │ │ ├── barfoo.svg │ │ │ │ ├── barfoo.xhtml │ │ │ │ ├── barfoo.xml │ │ │ │ ├── barfoo_base.svg │ │ │ │ ├── barfoo_base.xhtml │ │ │ │ ├── barfoo_base.xml │ │ │ │ ├── barfoo_nodefaultns.svg │ │ │ │ ├── barfoo_nodefaultns.xhtml │ │ │ │ ├── barfoo_nodefaultns.xml │ │ │ │ ├── barfoo_standalone_no.svg │ │ │ │ ├── barfoo_standalone_no.xhtml │ │ │ │ ├── barfoo_standalone_no.xml │ │ │ │ ├── barfoo_standalone_yes.svg │ │ │ │ ├── barfoo_standalone_yes.xhtml │ │ │ │ ├── barfoo_standalone_yes.xml │ │ │ │ ├── barfoo_utf16.svg │ │ │ │ ├── barfoo_utf16.xhtml │ │ │ │ ├── barfoo_utf16.xml │ │ │ │ ├── barfoo_utf8.svg │ │ │ │ ├── barfoo_utf8.xhtml │ │ │ │ ├── barfoo_utf8.xml │ │ │ │ ├── canonicalform01.svg │ │ │ │ ├── canonicalform01.xhtml │ │ │ │ ├── canonicalform01.xml │ │ │ │ ├── canonicalform02.svg │ │ │ │ ├── canonicalform02.xhtml │ │ │ │ ├── canonicalform02.xml │ │ │ │ ├── canonicalform03.svg │ │ │ │ ├── canonicalform03.xhtml │ │ │ │ ├── canonicalform03.xml │ │ │ │ ├── canonicalform04.svg │ │ │ │ ├── canonicalform04.xhtml │ │ │ │ ├── canonicalform04.xml │ │ │ │ ├── canonicalform05.svg │ │ │ │ ├── canonicalform05.xhtml │ │ │ │ ├── canonicalform05.xml │ │ │ │ ├── datatype_normalization.svg │ │ │ │ ├── datatype_normalization.svg.xsd │ │ │ │ ├── datatype_normalization.xml │ │ │ │ ├── datatype_normalization.xsd │ │ │ │ ├── datatype_normalization2.svg │ │ │ │ ├── datatype_normalization2.svg.xsd │ │ │ │ ├── datatype_normalization2.xhtml │ │ │ │ ├── datatype_normalization2.xml │ │ │ │ ├── datatype_normalization2.xsd │ │ │ │ ├── external_barfoo.svg │ │ │ │ ├── external_barfoo.xhtml │ │ │ │ ├── external_barfoo.xml │ │ │ │ ├── external_foo.ent │ │ │ │ ├── external_foobr.ent │ │ │ │ ├── external_widget.ent │ │ │ │ ├── hc_nodtdstaff.html │ │ │ │ ├── hc_nodtdstaff.svg │ │ │ │ ├── hc_nodtdstaff.xhtml │ │ │ │ ├── hc_nodtdstaff.xml │ │ │ │ ├── hc_staff.svg │ │ │ │ ├── hc_staff.svg.xsd │ │ │ │ ├── hc_staff.xhtml │ │ │ │ ├── hc_staff.xml │ │ │ │ ├── hc_staff.xsd │ │ │ │ ├── svgtest.js │ │ │ │ ├── svgunit.js │ │ │ │ ├── typeinfo.svg │ │ │ │ ├── typeinfo.svg.xsd │ │ │ │ ├── typeinfo.xhtml │ │ │ │ ├── typeinfo.xml │ │ │ │ ├── typeinfo.xsd │ │ │ │ └── xhtml1-strict.dtd │ │ │ ├── handleerror01.xml │ │ │ ├── handleerror02.xml │ │ │ ├── hasFeature01.xml │ │ │ ├── hasFeature02.xml │ │ │ ├── hasFeature03.xml │ │ │ ├── hasFeature04.xml │ │ │ ├── infoset01.xml │ │ │ ├── infoset02.xml │ │ │ ├── infoset03.xml │ │ │ ├── infoset04.xml │ │ │ ├── infoset05.xml │ │ │ ├── infoset06.xml │ │ │ ├── infoset07.xml │ │ │ ├── infoset08.xml │ │ │ ├── infoset09.xml │ │ │ ├── metadata.xml │ │ │ ├── namespacedeclarations01.xml │ │ │ ├── namespacedeclarations02.xml │ │ │ ├── nodeappendchild01.xml │ │ │ ├── nodeappendchild02.xml │ │ │ ├── nodecomparedocumentposition01.xml │ │ │ ├── nodecomparedocumentposition02.xml │ │ │ ├── nodecomparedocumentposition03.xml │ │ │ ├── nodecomparedocumentposition04.xml │ │ │ ├── nodecomparedocumentposition05.xml │ │ │ ├── nodecomparedocumentposition06.xml │ │ │ ├── nodecomparedocumentposition07.xml │ │ │ ├── nodecomparedocumentposition08.xml │ │ │ ├── nodecomparedocumentposition09.xml │ │ │ ├── nodecomparedocumentposition10.xml │ │ │ ├── nodecomparedocumentposition11.xml │ │ │ ├── nodecomparedocumentposition12.xml │ │ │ ├── nodecomparedocumentposition13.xml │ │ │ ├── nodecomparedocumentposition14.xml │ │ │ ├── nodecomparedocumentposition15.xml │ │ │ ├── nodecomparedocumentposition16.xml │ │ │ ├── nodecomparedocumentposition17.xml │ │ │ ├── nodecomparedocumentposition18.xml │ │ │ ├── nodecomparedocumentposition19.xml │ │ │ ├── nodecomparedocumentposition20.xml │ │ │ ├── nodecomparedocumentposition21.xml │ │ │ ├── nodecomparedocumentposition22.xml │ │ │ ├── nodecomparedocumentposition23.xml │ │ │ ├── nodecomparedocumentposition24.xml │ │ │ ├── nodecomparedocumentposition25.xml │ │ │ ├── nodecomparedocumentposition26.xml │ │ │ ├── nodecomparedocumentposition27.xml │ │ │ ├── nodecomparedocumentposition28.xml │ │ │ ├── nodecomparedocumentposition29.xml │ │ │ ├── nodecomparedocumentposition30.xml │ │ │ ├── nodecomparedocumentposition31.xml │ │ │ ├── nodecomparedocumentposition32.xml │ │ │ ├── nodecomparedocumentposition33.xml │ │ │ ├── nodecomparedocumentposition34.xml │ │ │ ├── nodecomparedocumentposition35.xml │ │ │ ├── nodecomparedocumentposition36.xml │ │ │ ├── nodecomparedocumentposition37.xml │ │ │ ├── nodecomparedocumentposition38.xml │ │ │ ├── nodecomparedocumentposition39.xml │ │ │ ├── nodecomparedocumentposition40.xml │ │ │ ├── nodegetbaseuri01.xml │ │ │ ├── nodegetbaseuri02.xml │ │ │ ├── nodegetbaseuri03.xml │ │ │ ├── nodegetbaseuri04.xml │ │ │ ├── nodegetbaseuri05.xml │ │ │ ├── nodegetbaseuri06.xml │ │ │ ├── nodegetbaseuri07.xml │ │ │ ├── nodegetbaseuri09.xml │ │ │ ├── nodegetbaseuri10.xml │ │ │ ├── nodegetbaseuri11.xml │ │ │ ├── nodegetbaseuri12.xml │ │ │ ├── nodegetbaseuri13.xml │ │ │ ├── nodegetbaseuri14.xml │ │ │ ├── nodegetbaseuri15.xml │ │ │ ├── nodegetbaseuri16.xml │ │ │ ├── nodegetbaseuri17.xml │ │ │ ├── nodegetbaseuri18.xml │ │ │ ├── nodegetbaseuri19.xml │ │ │ ├── nodegetbaseuri20.xml │ │ │ ├── nodegetfeature01.xml │ │ │ ├── nodegetfeature02.xml │ │ │ ├── nodegetfeature03.xml │ │ │ ├── nodegetfeature04.xml │ │ │ ├── nodegetfeature05.xml │ │ │ ├── nodegetfeature06.xml │ │ │ ├── nodegetfeature07.xml │ │ │ ├── nodegetfeature08.xml │ │ │ ├── nodegetfeature09.xml │ │ │ ├── nodegetfeature10.xml │ │ │ ├── nodegetfeature11.xml │ │ │ ├── nodegetfeature12.xml │ │ │ ├── nodegetfeature13.xml │ │ │ ├── nodegettextcontent01.xml │ │ │ ├── nodegettextcontent02.xml │ │ │ ├── nodegettextcontent03.xml │ │ │ ├── nodegettextcontent04.xml │ │ │ ├── nodegettextcontent05.xml │ │ │ ├── nodegettextcontent06.xml │ │ │ ├── nodegettextcontent07.xml │ │ │ ├── nodegettextcontent08.xml │ │ │ ├── nodegettextcontent09.xml │ │ │ ├── nodegettextcontent10.xml │ │ │ ├── nodegettextcontent11.xml │ │ │ ├── nodegettextcontent12.xml │ │ │ ├── nodegettextcontent13.xml │ │ │ ├── nodegettextcontent14.xml │ │ │ ├── nodegettextcontent15.xml │ │ │ ├── nodegettextcontent16.xml │ │ │ ├── nodegettextcontent17.xml │ │ │ ├── nodegettextcontent18.xml │ │ │ ├── nodegettextcontent19.xml │ │ │ ├── nodegetuserdata01.xml │ │ │ ├── nodegetuserdata02.xml │ │ │ ├── nodegetuserdata03.xml │ │ │ ├── nodegetuserdata04.xml │ │ │ ├── nodegetuserdata05.xml │ │ │ ├── nodegetuserdata06.xml │ │ │ ├── nodegetuserdata07.xml │ │ │ ├── nodeinsertbefore01.xml │ │ │ ├── nodeinsertbefore02.xml │ │ │ ├── nodeinsertbefore03.xml │ │ │ ├── nodeinsertbefore04.xml │ │ │ ├── nodeinsertbefore05.xml │ │ │ ├── nodeinsertbefore06.xml │ │ │ ├── nodeinsertbefore07.xml │ │ │ ├── nodeinsertbefore08.xml │ │ │ ├── nodeinsertbefore09.xml │ │ │ ├── nodeinsertbefore10.xml │ │ │ ├── nodeinsertbefore11.xml │ │ │ ├── nodeinsertbefore12.xml │ │ │ ├── nodeinsertbefore13.xml │ │ │ ├── nodeinsertbefore14.xml │ │ │ ├── nodeinsertbefore15.xml │ │ │ ├── nodeinsertbefore16.xml │ │ │ ├── nodeinsertbefore17.xml │ │ │ ├── nodeinsertbefore18.xml │ │ │ ├── nodeinsertbefore19.xml │ │ │ ├── nodeinsertbefore20.xml │ │ │ ├── nodeinsertbefore21.xml │ │ │ ├── nodeinsertbefore22.xml │ │ │ ├── nodeinsertbefore23.xml │ │ │ ├── nodeinsertbefore24.xml │ │ │ ├── nodeinsertbefore25.xml │ │ │ ├── nodeisdefaultnamespace01.xml │ │ │ ├── nodeisdefaultnamespace02.xml │ │ │ ├── nodeisdefaultnamespace03.xml │ │ │ ├── nodeisdefaultnamespace04.xml │ │ │ ├── nodeisdefaultnamespace05.xml │ │ │ ├── nodeisdefaultnamespace06.xml │ │ │ ├── nodeisdefaultnamespace07.xml │ │ │ ├── nodeisdefaultnamespace08.xml │ │ │ ├── nodeisdefaultnamespace09.xml │ │ │ ├── nodeisdefaultnamespace10.xml │ │ │ ├── nodeisdefaultnamespace11.xml │ │ │ ├── nodeisdefaultnamespace13.xml │ │ │ ├── nodeisdefaultnamespace14.xml │ │ │ ├── nodeisdefaultnamespace15.xml │ │ │ ├── nodeisdefaultnamespace16.xml │ │ │ ├── nodeisequalnode01.xml │ │ │ ├── nodeisequalnode02.xml │ │ │ ├── nodeisequalnode03.xml │ │ │ ├── nodeisequalnode04.xml │ │ │ ├── nodeisequalnode05.xml │ │ │ ├── nodeisequalnode06.xml │ │ │ ├── nodeisequalnode07.xml │ │ │ ├── nodeisequalnode08.xml │ │ │ ├── nodeisequalnode09.xml │ │ │ ├── nodeisequalnode10.xml │ │ │ ├── nodeisequalnode11.xml │ │ │ ├── nodeisequalnode12.xml │ │ │ ├── nodeisequalnode13.xml │ │ │ ├── nodeisequalnode14.xml │ │ │ ├── nodeisequalnode15.xml │ │ │ ├── nodeisequalnode16.xml │ │ │ ├── nodeisequalnode17.xml │ │ │ ├── nodeisequalnode18.xml │ │ │ ├── nodeisequalnode19.xml │ │ │ ├── nodeisequalnode20.xml │ │ │ ├── nodeisequalnode21.xml │ │ │ ├── nodeisequalnode22.xml │ │ │ ├── nodeisequalnode25.xml │ │ │ ├── nodeisequalnode26.xml │ │ │ ├── nodeisequalnode27.xml │ │ │ ├── nodeisequalnode28.xml │ │ │ ├── nodeisequalnode29.xml │ │ │ ├── nodeisequalnode31.xml │ │ │ ├── nodeisequalnode32.xml │ │ │ ├── nodeissamenode01.xml │ │ │ ├── nodeissamenode02.xml │ │ │ ├── nodeissamenode03.xml │ │ │ ├── nodeissamenode04.xml │ │ │ ├── nodeissamenode05.xml │ │ │ ├── nodeissamenode06.xml │ │ │ ├── nodeissamenode07.xml │ │ │ ├── nodeissamenode08.xml │ │ │ ├── nodeissamenode09.xml │ │ │ ├── nodeissamenode10.xml │ │ │ ├── nodelookupnamespaceuri01.xml │ │ │ ├── nodelookupnamespaceuri02.xml │ │ │ ├── nodelookupnamespaceuri03.xml │ │ │ ├── nodelookupnamespaceuri04.xml │ │ │ ├── nodelookupnamespaceuri05.xml │ │ │ ├── nodelookupnamespaceuri06.xml │ │ │ ├── nodelookupnamespaceuri07.xml │ │ │ ├── nodelookupnamespaceuri08.xml │ │ │ ├── nodelookupnamespaceuri09.xml │ │ │ ├── nodelookupnamespaceuri10.xml │ │ │ ├── nodelookupnamespaceuri11.xml │ │ │ ├── nodelookupnamespaceuri13.xml │ │ │ ├── nodelookupnamespaceuri14.xml │ │ │ ├── nodelookupnamespaceuri15.xml │ │ │ ├── nodelookupnamespaceuri16.xml │ │ │ ├── nodelookupnamespaceuri17.xml │ │ │ ├── nodelookupnamespaceuri18.xml │ │ │ ├── nodelookupnamespaceuri19.xml │ │ │ ├── nodelookupnamespaceuri20.xml │ │ │ ├── nodelookupprefix01.xml │ │ │ ├── nodelookupprefix02.xml │ │ │ ├── nodelookupprefix03.xml │ │ │ ├── nodelookupprefix04.xml │ │ │ ├── nodelookupprefix05.xml │ │ │ ├── nodelookupprefix06.xml │ │ │ ├── nodelookupprefix07.xml │ │ │ ├── nodelookupprefix08.xml │ │ │ ├── nodelookupprefix09.xml │ │ │ ├── nodelookupprefix10.xml │ │ │ ├── nodelookupprefix11.xml │ │ │ ├── nodelookupprefix12.xml │ │ │ ├── nodelookupprefix13.xml │ │ │ ├── nodelookupprefix14.xml │ │ │ ├── nodelookupprefix15.xml │ │ │ ├── nodelookupprefix16.xml │ │ │ ├── nodelookupprefix17.xml │ │ │ ├── nodelookupprefix18.xml │ │ │ ├── nodelookupprefix19.xml │ │ │ ├── nodelookupprefix20.xml │ │ │ ├── noderemovechild01.xml │ │ │ ├── noderemovechild02.xml │ │ │ ├── noderemovechild03.xml │ │ │ ├── noderemovechild04.xml │ │ │ ├── noderemovechild05.xml │ │ │ ├── noderemovechild07.xml │ │ │ ├── noderemovechild08.xml │ │ │ ├── noderemovechild09.xml │ │ │ ├── noderemovechild10.xml │ │ │ ├── noderemovechild11.xml │ │ │ ├── noderemovechild12.xml │ │ │ ├── noderemovechild13.xml │ │ │ ├── noderemovechild14.xml │ │ │ ├── noderemovechild15.xml │ │ │ ├── noderemovechild16.xml │ │ │ ├── noderemovechild17.xml │ │ │ ├── noderemovechild18.xml │ │ │ ├── noderemovechild19.xml │ │ │ ├── noderemovechild20.xml │ │ │ ├── noderemovechild21.xml │ │ │ ├── noderemovechild22.xml │ │ │ ├── noderemovechild23.xml │ │ │ ├── noderemovechild24.xml │ │ │ ├── noderemovechild25.xml │ │ │ ├── noderemovechild26.xml │ │ │ ├── noderemovechild27.xml │ │ │ ├── noderemovechild28.xml │ │ │ ├── noderemovechild29.xml │ │ │ ├── noderemovechild30.xml │ │ │ ├── noderemovechild31.xml │ │ │ ├── nodereplacechild01.xml │ │ │ ├── nodereplacechild02.xml │ │ │ ├── nodereplacechild03.xml │ │ │ ├── nodereplacechild04.xml │ │ │ ├── nodereplacechild06.xml │ │ │ ├── nodereplacechild07.xml │ │ │ ├── nodereplacechild08.xml │ │ │ ├── nodereplacechild10.xml │ │ │ ├── nodereplacechild12.xml │ │ │ ├── nodereplacechild13.xml │ │ │ ├── nodereplacechild14.xml │ │ │ ├── nodereplacechild15.xml │ │ │ ├── nodereplacechild16.xml │ │ │ ├── nodereplacechild17.xml │ │ │ ├── nodereplacechild18.xml │ │ │ ├── nodereplacechild19.xml │ │ │ ├── nodereplacechild20.xml │ │ │ ├── nodereplacechild21.xml │ │ │ ├── nodereplacechild22.xml │ │ │ ├── nodereplacechild23.xml │ │ │ ├── nodereplacechild24.xml │ │ │ ├── nodereplacechild25.xml │ │ │ ├── nodereplacechild26.xml │ │ │ ├── nodereplacechild27.xml │ │ │ ├── nodereplacechild28.xml │ │ │ ├── nodereplacechild29.xml │ │ │ ├── nodereplacechild30.xml │ │ │ ├── nodereplacechild31.xml │ │ │ ├── nodereplacechild32.xml │ │ │ ├── nodereplacechild33.xml │ │ │ ├── nodereplacechild34.xml │ │ │ ├── nodereplacechild35.xml │ │ │ ├── nodereplacechild36.xml │ │ │ ├── nodereplacechild37.xml │ │ │ ├── nodereplacechild38.xml │ │ │ ├── nodereplacechild39.xml │ │ │ ├── nodereplacechild40.xml │ │ │ ├── nodesettextcontent01.xml │ │ │ ├── nodesettextcontent02.xml │ │ │ ├── nodesettextcontent03.xml │ │ │ ├── nodesettextcontent04.xml │ │ │ ├── nodesettextcontent05.xml │ │ │ ├── nodesettextcontent06.xml │ │ │ ├── nodesettextcontent07.xml │ │ │ ├── nodesettextcontent08.xml │ │ │ ├── nodesettextcontent10.xml │ │ │ ├── nodesettextcontent11.xml │ │ │ ├── nodesettextcontent12.xml │ │ │ ├── nodesettextcontent13.xml │ │ │ ├── nodesetuserdata01.xml │ │ │ ├── nodesetuserdata02.xml │ │ │ ├── nodesetuserdata03.xml │ │ │ ├── nodesetuserdata04.xml │ │ │ ├── nodesetuserdata05.xml │ │ │ ├── nodesetuserdata06.xml │ │ │ ├── nodesetuserdata07.xml │ │ │ ├── nodesetuserdata08.xml │ │ │ ├── nodesetuserdata09.xml │ │ │ ├── nodesetuserdata10.xml │ │ │ ├── normalizecharacters01.xml │ │ │ ├── normalizecharacters02.xml │ │ │ ├── normalizecharacters03.xml │ │ │ ├── normalizecharacters04.xml │ │ │ ├── normalizecharacters05.xml │ │ │ ├── normalizecharacters06.xml │ │ │ ├── normalizecharacters07.xml │ │ │ ├── normalizecharacters08.xml │ │ │ ├── splitcdatasections01.xml │ │ │ ├── textiselementcontentwhitespace01.xml │ │ │ ├── textiselementcontentwhitespace02.xml │ │ │ ├── textiselementcontentwhitespace03.xml │ │ │ ├── textiselementcontentwhitespace04.xml │ │ │ ├── textiselementcontentwhitespace05.xml │ │ │ ├── textiselementcontentwhitespace06.xml │ │ │ ├── textreplacewholetext01.xml │ │ │ ├── textreplacewholetext02.xml │ │ │ ├── textreplacewholetext03.xml │ │ │ ├── textreplacewholetext04.xml │ │ │ ├── textreplacewholetext05.xml │ │ │ ├── textreplacewholetext06.xml │ │ │ ├── textreplacewholetext07.xml │ │ │ ├── textreplacewholetext08.xml │ │ │ ├── textwholetext01.xml │ │ │ ├── textwholetext02.xml │ │ │ ├── textwholetext03.xml │ │ │ ├── typeinfogettypename03.xml │ │ │ ├── typeinfogettypename04.xml │ │ │ ├── typeinfogettypenamespace01.xml │ │ │ ├── typeinfogettypenamespace03.xml │ │ │ ├── typeinfogettypenamespace04.xml │ │ │ ├── typeinfoisderivedfrom01.xml │ │ │ ├── typeinfoisderivedfrom02.xml │ │ │ ├── typeinfoisderivedfrom03.xml │ │ │ ├── typeinfoisderivedfrom04.xml │ │ │ ├── typeinfoisderivedfrom05.xml │ │ │ ├── typeinfoisderivedfrom06.xml │ │ │ ├── typeinfoisderivedfrom07.xml │ │ │ ├── typeinfoisderivedfrom08.xml │ │ │ ├── typeinfoisderivedfrom09.xml │ │ │ ├── typeinfoisderivedfrom10.xml │ │ │ ├── typeinfoisderivedfrom11.xml │ │ │ ├── typeinfoisderivedfrom12.xml │ │ │ ├── typeinfoisderivedfrom13.xml │ │ │ ├── typeinfoisderivedfrom14.xml │ │ │ ├── typeinfoisderivedfrom15.xml │ │ │ ├── typeinfoisderivedfrom16.xml │ │ │ ├── typeinfoisderivedfrom17.xml │ │ │ ├── typeinfoisderivedfrom18.xml │ │ │ ├── typeinfoisderivedfrom19.xml │ │ │ ├── typeinfoisderivedfrom20.xml │ │ │ ├── typeinfoisderivedfrom21.xml │ │ │ ├── typeinfoisderivedfrom22.xml │ │ │ ├── typeinfoisderivedfrom23.xml │ │ │ ├── typeinfoisderivedfrom24.xml │ │ │ ├── typeinfoisderivedfrom25.xml │ │ │ ├── typeinfoisderivedfrom26.xml │ │ │ ├── typeinfoisderivedfrom27.xml │ │ │ ├── typeinfoisderivedfrom28.xml │ │ │ ├── typeinfoisderivedfrom29.xml │ │ │ ├── typeinfoisderivedfrom30.xml │ │ │ ├── typeinfoisderivedfrom31.xml │ │ │ ├── typeinfoisderivedfrom32.xml │ │ │ ├── typeinfoisderivedfrom33.xml │ │ │ ├── typeinfoisderivedfrom34.xml │ │ │ ├── typeinfoisderivedfrom35.xml │ │ │ ├── typeinfoisderivedfrom36.xml │ │ │ ├── typeinfoisderivedfrom37.xml │ │ │ ├── typeinfoisderivedfrom38.xml │ │ │ ├── typeinfoisderivedfrom39.xml │ │ │ ├── typeinfoisderivedfrom40.xml │ │ │ ├── typeinfoisderivedfrom41.xml │ │ │ ├── typeinfoisderivedfrom42.xml │ │ │ ├── typeinfoisderivedfrom43.xml │ │ │ ├── typeinfoisderivedfrom44.xml │ │ │ ├── typeinfoisderivedfrom45.xml │ │ │ ├── typeinfoisderivedfrom46.xml │ │ │ ├── typeinfoisderivedfrom47.xml │ │ │ ├── typeinfoisderivedfrom48.xml │ │ │ ├── typeinfoisderivedfrom49.xml │ │ │ ├── typeinfoisderivedfrom50.xml │ │ │ ├── typeinfoisderivedfrom51.xml │ │ │ ├── typeinfoisderivedfrom52.xml │ │ │ ├── typeinfoisderivedfrom53.xml │ │ │ ├── typeinfoisderivedfrom54.xml │ │ │ ├── typeinfoisderivedfrom55.xml │ │ │ ├── typeinfoisderivedfrom56.xml │ │ │ ├── typeinfoisderivedfrom57.xml │ │ │ ├── typeinfoisderivedfrom58.xml │ │ │ ├── typeinfoisderivedfrom59.xml │ │ │ ├── typeinfoisderivedfrom60.xml │ │ │ ├── typeinfoisderivedfrom61.xml │ │ │ ├── typeinfoisderivedfrom62.xml │ │ │ ├── typeinfoisderivedfrom63.xml │ │ │ ├── typeinfoisderivedfrom64.xml │ │ │ ├── typeinfoisderivedfrom65.xml │ │ │ ├── typeinfoisderivedfrom66.xml │ │ │ ├── typeinfoisderivedfrom67.xml │ │ │ ├── typeinfoisderivedfrom68.xml │ │ │ ├── typeinfoisderivedfrom69.xml │ │ │ ├── typeinfoisderivedfrom70.xml │ │ │ ├── typeinfoisderivedfrom71.xml │ │ │ ├── typeinfoisderivedfrom72.xml │ │ │ ├── typeinfoisderivedfrom73.xml │ │ │ ├── userdatahandler01.xml │ │ │ ├── userdatahandler02.xml │ │ │ ├── userdatahandler03.xml │ │ │ ├── userdatahandler04.xml │ │ │ ├── wellformed01.xml │ │ │ ├── wellformed02.xml │ │ │ ├── wellformed03.xml │ │ │ └── wellformed04.xml │ │ ├── events │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── alltests.xml │ │ │ ├── files │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ ├── Root │ │ │ │ │ └── Template │ │ │ │ ├── staff.dtd │ │ │ │ └── staff.xml │ │ │ ├── hasFeature01.xml │ │ │ └── metadata.xml │ │ ├── ls │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── CertifiedText1.xml │ │ │ ├── CharacterStream1.xml │ │ │ ├── DOMBuilderFilterTest0.xml │ │ │ ├── DOMBuilderFilterTest1.xml │ │ │ ├── DOMBuilderFilterTest2.xml │ │ │ ├── DOMBuilderTest0.xml │ │ │ ├── DOMBuilderTest1.xml │ │ │ ├── DOMBuilderTest2.xml │ │ │ ├── DOMBuilderTest3.xml │ │ │ ├── DOMBuilderTest4.xml │ │ │ ├── DOMBuilderTest5.xml │ │ │ ├── DOMBuilderTest6.xml │ │ │ ├── DOMBuilderTest8.xml │ │ │ ├── DOMEntityResolverTest0.xml │ │ │ ├── DOMEntityResolverTest1.xml │ │ │ ├── DOMEntityResolverTest2.xml │ │ │ ├── DOMImplementationLSTest0.xml │ │ │ ├── DOMImplementationLSTest1.xml │ │ │ ├── DOMImplementationLSTest2.xml │ │ │ ├── DOMImplementationLSTest3.xml │ │ │ ├── DOMImplementationLSTest4.xml │ │ │ ├── DOMImplementationLSTest5.xml │ │ │ ├── DOMInputSourceTest0.xml │ │ │ ├── DOMInputSourceTest1.xml │ │ │ ├── DOMInputSourceTest2.xml │ │ │ ├── DOMInputSourceTest3.xml │ │ │ ├── DOMInputSourceTest4.xml │ │ │ ├── DOMInputSourceTest5.xml │ │ │ ├── DOMInputSourceTest6.xml │ │ │ ├── DOMWriterFilterTest0.xml │ │ │ ├── DOMWriterFilterTest1.xml │ │ │ ├── DOMWriterFilterTest2.xml │ │ │ ├── DOMWriterFilterTest3.xml │ │ │ ├── DOMWriterTest0.xml │ │ │ ├── DOMWriterTest1.xml │ │ │ ├── DOMWriterTest2.xml │ │ │ ├── DOMWriterTest3.xml │ │ │ ├── DOMWriterTest4.xml │ │ │ ├── DOMWriterTest5.xml │ │ │ ├── DOMWriterTest6.xml │ │ │ ├── GetFeature1.xml │ │ │ ├── GetFeature2.xml │ │ │ ├── HasFeature01.xml │ │ │ ├── HasFeature02.xml │ │ │ ├── HasFeature03.xml │ │ │ ├── HasFeature04.xml │ │ │ ├── HasFeature05.xml │ │ │ ├── LSParserConfig1.xml │ │ │ ├── LSParserConfig2.xml │ │ │ ├── LSParserConfig3.xml │ │ │ ├── LSParserConfig4.xml │ │ │ ├── LSParserConfig5.xml │ │ │ ├── LSParserConfig6.xml │ │ │ ├── LSParserConfig7.xml │ │ │ ├── LSParserConfig8.xml │ │ │ ├── LSParserConfig9.xml │ │ │ ├── LSSerializerConfig1.xml │ │ │ ├── LSSerializerConfig10.xml │ │ │ ├── LSSerializerConfig2.xml │ │ │ ├── LSSerializerConfig3.xml │ │ │ ├── LSSerializerConfig4.xml │ │ │ ├── LSSerializerConfig5.xml │ │ │ ├── LSSerializerConfig6.xml │ │ │ ├── LSSerializerConfig7.xml │ │ │ ├── LSSerializerConfig8.xml │ │ │ ├── LSSerializerConfig9.xml │ │ │ ├── SystemId1.xml │ │ │ ├── SystemId2.xml │ │ │ ├── alltests.xml │ │ │ ├── canonicalform01.xml │ │ │ ├── canonicalform03.xml │ │ │ ├── canonicalform04.xml │ │ │ ├── canonicalform05.xml │ │ │ ├── canonicalform06.xml │ │ │ ├── canonicalform08.xml │ │ │ ├── canonicalform09.xml │ │ │ ├── canonicalform10.xml │ │ │ ├── canonicalform11.xml │ │ │ ├── canonicalform12.xml │ │ │ ├── canonicalform13.xml │ │ │ ├── cdatasections01.xml │ │ │ ├── cdatasections02.xml │ │ │ ├── cdatasections03.xml │ │ │ ├── cdatasections04.xml │ │ │ ├── checkcharacternormalization01.xml │ │ │ ├── checkcharacternormalization02.xml │ │ │ ├── checkcharacternormalization03.xml │ │ │ ├── checkcharacternormalization04.xml │ │ │ ├── comments01.xml │ │ │ ├── comments02.xml │ │ │ ├── comments03.xml │ │ │ ├── comments04.xml │ │ │ ├── datatypenormalization01.xml │ │ │ ├── datatypenormalization02.xml │ │ │ ├── datatypenormalization03.xml │ │ │ ├── datatypenormalization04.xml │ │ │ ├── datatypenormalization05.xml │ │ │ ├── datatypenormalization06.xml │ │ │ ├── datatypenormalization07.xml │ │ │ ├── datatypenormalization08.xml │ │ │ ├── datatypenormalization09.xml │ │ │ ├── datatypenormalization10.xml │ │ │ ├── datatypenormalization11.xml │ │ │ ├── datatypenormalization12.xml │ │ │ ├── datatypenormalization13.xml │ │ │ ├── datatypenormalization14.xml │ │ │ ├── datatypenormalization15.xml │ │ │ ├── datatypenormalization16.xml │ │ │ ├── datatypenormalization17.xml │ │ │ ├── disallowdoctype01.xml │ │ │ ├── discarddefaultcontent01.xml │ │ │ ├── discarddefaultcontent02.xml │ │ │ ├── dom3tests.ent │ │ │ ├── elementcontentwhitespace01.xml │ │ │ ├── elementcontentwhitespace02.xml │ │ │ ├── elementcontentwhitespace03.xml │ │ │ ├── encoding01.xml │ │ │ ├── entities01.xml │ │ │ ├── entities02.xml │ │ │ ├── entities03.xml │ │ │ ├── entities04.xml │ │ │ ├── entities05.xml │ │ │ ├── entities06.xml │ │ │ ├── entities07.xml │ │ │ ├── entities08.xml │ │ │ ├── entities09.xml │ │ │ ├── files │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ ├── Root │ │ │ │ │ └── Template │ │ │ │ ├── canonicalform01.xml │ │ │ │ ├── canonicalform02.xml │ │ │ │ ├── canonicalform03.xml │ │ │ │ ├── characternormalization1.xml │ │ │ │ ├── datatype_normalization.svg.xsd │ │ │ │ ├── datatype_normalization.xml │ │ │ │ ├── datatype_normalization.xsd │ │ │ │ ├── datatype_normalization2.xml │ │ │ │ ├── datatype_normalization2.xsd │ │ │ │ ├── hc_staff.svg │ │ │ │ ├── hc_staff.svg.xsd │ │ │ │ ├── hc_staff.xhtml │ │ │ │ ├── hc_staff.xml │ │ │ │ ├── hc_staff.xsd │ │ │ │ ├── namespaces1.xml │ │ │ │ ├── pibase.xml │ │ │ │ ├── schematype1.xml │ │ │ │ ├── subdir │ │ │ │ │ ├── CVS │ │ │ │ │ │ ├── Entries │ │ │ │ │ │ ├── Repository │ │ │ │ │ │ ├── Root │ │ │ │ │ │ └── Template │ │ │ │ │ └── myentity.ent │ │ │ │ ├── svgtest.js │ │ │ │ ├── svgunit.js │ │ │ │ ├── test0.svg │ │ │ │ ├── test0.xml │ │ │ │ ├── test1.xml │ │ │ │ ├── test2.xml │ │ │ │ ├── test3.xml │ │ │ │ ├── test4.xml │ │ │ │ ├── test5.xml │ │ │ │ ├── test7.xml │ │ │ │ ├── testpdf.pdf │ │ │ │ ├── testsvg.dtd │ │ │ │ ├── unsupportedencoding1.xml │ │ │ │ ├── validate1.xml │ │ │ │ ├── validateschema1.xml │ │ │ │ ├── wellformed1.xml │ │ │ │ ├── wellformed2.xml │ │ │ │ ├── wellformed3.xml │ │ │ │ └── xhtml1-strict.dtd │ │ │ ├── infoset01.xml │ │ │ ├── infoset02.xml │ │ │ ├── infoset03.xml │ │ │ ├── infoset04.xml │ │ │ ├── infoset05.xml │ │ │ ├── infoset06.xml │ │ │ ├── infoset07.xml │ │ │ ├── infoset08.xml │ │ │ ├── metadata.xml │ │ │ ├── namespacedeclarations01.xml │ │ │ ├── namespacedeclarations02.xml │ │ │ ├── namespaces01.xml │ │ │ ├── namespaces02.xml │ │ │ ├── newline01.xml │ │ │ ├── newline02.xml │ │ │ ├── newline03.xml │ │ │ ├── noinputspecified01.xml │ │ │ ├── nooutputspecified01.xml │ │ │ ├── normalizecharacters01.xml │ │ │ ├── normalizecharacters02.xml │ │ │ ├── normalizecharacters03.xml │ │ │ ├── normalizecharacters04.xml │ │ │ ├── schemalocation01.xml │ │ │ ├── schemalocation02.xml │ │ │ ├── schemalocation03.xml │ │ │ ├── schemalocation04.xml │ │ │ ├── schematype01.xml │ │ │ ├── schematype02.xml │ │ │ ├── schematype03.xml │ │ │ ├── schematype04.xml │ │ │ ├── splitcdatasections01.xml │ │ │ ├── splitcdatasections02.xml │ │ │ ├── unsupportedencoding01.xml │ │ │ ├── validate01.xml │ │ │ ├── validate02.xml │ │ │ ├── validate03.xml │ │ │ ├── validate04.xml │ │ │ ├── validate05.xml │ │ │ ├── validate06.xml │ │ │ ├── validate07.xml │ │ │ ├── validate08.xml │ │ │ ├── validateifschema01.xml │ │ │ ├── validateifschema02.xml │ │ │ ├── validateifschema03.xml │ │ │ ├── validateifschema04.xml │ │ │ ├── wellformed01.xml │ │ │ ├── wellformed02.xml │ │ │ ├── wellformed03.xml │ │ │ ├── writeToURI1.xml │ │ │ ├── writeToURI2.xml │ │ │ ├── xmldeclaration01.xml │ │ │ └── xmldeclaration02.xml │ │ ├── validation │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── allowedAttributes.xml │ │ │ ├── allowedChildren.xml │ │ │ ├── allowedFirstChildren.xml │ │ │ ├── allowedNextSiblings.xml │ │ │ ├── allowedParents.xml │ │ │ ├── allowedPreviousSiblings.xml │ │ │ ├── alltests.xml │ │ │ ├── canAppendChildFalse.xml │ │ │ ├── canAppendChildTrue.xml │ │ │ ├── canAppendData.xml │ │ │ ├── canDeleteData.xml │ │ │ ├── canInsertBeforeFalse.xml │ │ │ ├── canInsertBeforeTrue.xml │ │ │ ├── canInsertData.xml │ │ │ ├── canRemoveAttributeFalse.xml │ │ │ ├── canRemoveAttributeNS.xml │ │ │ ├── canRemoveAttributeNode.xml │ │ │ ├── canRemoveAttributeTrue.xml │ │ │ ├── canRemoveChildFalse.xml │ │ │ ├── canRemoveChildTrue.xml │ │ │ ├── canReplaceChildFalse.xml │ │ │ ├── canReplaceChildTrue.xml │ │ │ ├── canReplaceDataFalse.xml │ │ │ ├── canReplaceDataTrue.xml │ │ │ ├── canSetAttributeFalse.xml │ │ │ ├── canSetAttributeNS.xml │ │ │ ├── canSetAttributeNode.xml │ │ │ ├── canSetAttributeTrue.xml │ │ │ ├── canSetData.xml │ │ │ ├── contentType.xml │ │ │ ├── defaultValue.xml │ │ │ ├── definedElements.xml │ │ │ ├── enumeratedValues.xml │ │ │ ├── files │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ ├── Root │ │ │ │ │ └── Template │ │ │ │ ├── book.xml │ │ │ │ └── book.xsd │ │ │ ├── getFeature01.xml │ │ │ ├── getFeature02.xml │ │ │ ├── hasFeature01.xml │ │ │ ├── hasFeature02.xml │ │ │ ├── hasFeature03.xml │ │ │ ├── hasFeature04.xml │ │ │ ├── isElementDefined.xml │ │ │ ├── isElementDefinedNS.xml │ │ │ ├── metadata.xml │ │ │ ├── nodeValidity.xml │ │ │ ├── requiredAttributes.xml │ │ │ └── validateDocument.xml │ │ └── xpath │ │ │ ├── .cvsignore │ │ │ ├── Attribute_Nodes.xml │ │ │ ├── Attribute_Nodes_xmlns.xml │ │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ ├── Root │ │ │ └── Template │ │ │ ├── Comment_Nodes.xml │ │ │ ├── Conformance_Expressions.xml │ │ │ ├── Conformance_ID.xml │ │ │ ├── Conformance_hasFeature_3.xml │ │ │ ├── Conformance_hasFeature_empty.xml │ │ │ ├── Conformance_hasFeature_null.xml │ │ │ ├── Conformance_isSupported_3.xml │ │ │ ├── Conformance_isSupported_empty.xml │ │ │ ├── Conformance_isSupported_null.xml │ │ │ ├── Element_Nodes.xml │ │ │ ├── Processing_Instruction_Nodes.xml │ │ │ ├── Text_Nodes.xml │ │ │ ├── XPathEvaluatorCast01.xml │ │ │ ├── XPathEvaluator_createExpression_INVALID_EXPRESSION_ERR.xml │ │ │ ├── XPathEvaluator_createExpression_NAMESPACE_ERR_01.xml │ │ │ ├── XPathEvaluator_createExpression_NAMESPACE_ERR_02.xml │ │ │ ├── XPathEvaluator_createExpression_NS.xml │ │ │ ├── XPathEvaluator_createExpression_no_NS.xml │ │ │ ├── XPathEvaluator_createNSResolver_all.xml │ │ │ ├── XPathEvaluator_createNSResolver_document.xml │ │ │ ├── XPathEvaluator_createNSResolver_documentElement.xml │ │ │ ├── XPathEvaluator_evaluate_INVALID_EXPRESSION_ERR.xml │ │ │ ├── XPathEvaluator_evaluate_NAMESPACE_ERR.xml │ │ │ ├── XPathEvaluator_evaluate_NOT_SUPPORTED_ERR.xml │ │ │ ├── XPathEvaluator_evaluate_TYPE_ERR.xml │ │ │ ├── XPathEvaluator_evaluate_WRONG_DOCUMENT_ERR.xml │ │ │ ├── XPathEvaluator_evaluate_document.xml │ │ │ ├── XPathEvaluator_evaluate_documentElement.xml │ │ │ ├── XPathExpression_evaluate_NOT_SUPPORTED_ERR.xml │ │ │ ├── XPathExpression_evaluate_WRONG_DOCUMENT_ERR.xml │ │ │ ├── XPathExpression_evaluate_document.xml │ │ │ ├── XPathExpression_evaluate_documentElement.xml │ │ │ ├── XPathNSResolver_lookupNamespaceURI_nist_dmstc.xml │ │ │ ├── XPathNSResolver_lookupNamespaceURI_null.xml │ │ │ ├── XPathNSResolver_lookupNamespaceURI_prefix.xml │ │ │ ├── XPathNSResolver_lookupNamespaceURI_xml.xml │ │ │ ├── XPathResult_TYPE_ERR.xml │ │ │ ├── XPathResult_booleanValue_false.xml │ │ │ ├── XPathResult_booleanValue_true.xml │ │ │ ├── XPathResult_invalidIteratorState_ANY_TYPE.xml │ │ │ ├── XPathResult_invalidIteratorState_ANY_UNORDERED_NODE_TYPE.xml │ │ │ ├── XPathResult_invalidIteratorState_BOOLEAN_TYPE.xml │ │ │ ├── XPathResult_invalidIteratorState_FIRST_ORDERED_NODE_TYPE.xml │ │ │ ├── XPathResult_invalidIteratorState_NUMBER_TYPE.xml │ │ │ ├── XPathResult_invalidIteratorState_ORDERED_NODE_ITERATOR_TYPE.xml │ │ │ ├── XPathResult_invalidIteratorState_ORDERED_NODE_SNAPSHOT_TYPE.xml │ │ │ ├── XPathResult_invalidIteratorState_STRING_TYPE.xml │ │ │ ├── XPathResult_invalidIteratorState_UNORDERED_NODE_ITERATOR_TYPE.xml │ │ │ ├── XPathResult_invalidIteratorState_UNORDERED_NODE_SNAPSHOT_TYPE.xml │ │ │ ├── XPathResult_iterateNext_INVALID_STATE_ERR.xml │ │ │ ├── XPathResult_iteratorNext_ORDERED_NODE_ITERATOR_TYPE.xml │ │ │ ├── XPathResult_iteratorNext_UNORDERED_NODE_ITERATOR_TYPE.xml │ │ │ ├── XPathResult_numberValue.xml │ │ │ ├── XPathResult_resultType.xml │ │ │ ├── XPathResult_singleNodeValue_ANY_UNORDERED_NODE_TYPE.xml │ │ │ ├── XPathResult_singleNodeValue_FIRST_ORDERED_NODE_TYPE.xml │ │ │ ├── XPathResult_snapshotItem_ORDERED_NODE_SNAPSHOT_TYPE_null.xml │ │ │ ├── XPathResult_snapshotItem_ORDERED_NODE_SNAPSHOT_TYPE_order.xml │ │ │ ├── XPathResult_snapshotItem_UNORDERED_NODE_SNAPSHOT_TYPE_count.xml │ │ │ ├── XPathResult_snapshotItem_UNORDERED_NODE_SNAPSHOT_TYPE_null.xml │ │ │ ├── XPathResult_snapshotLength_ORDERED_NODE_SNAPSHOT_TYPE.xml │ │ │ ├── XPathResult_snapshotLength_UNORDERED_NODE_SNAPSHOT_TYPE.xml │ │ │ ├── XPathResult_stringValue.xml │ │ │ ├── alltests.xml │ │ │ ├── dom3xpathents.ent │ │ │ ├── files │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ ├── Root │ │ │ │ └── Template │ │ │ ├── internaldtd.svg │ │ │ ├── internaldtd.xml │ │ │ ├── staff.dtd │ │ │ ├── staff.svg │ │ │ ├── staff.xml │ │ │ ├── staffNS.dtd │ │ │ ├── staffNS.svg │ │ │ ├── staffNS.xml │ │ │ ├── svgtest.js │ │ │ └── svgunit.js │ │ │ └── metadata.xml │ │ ├── submittedtests │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ ├── Root │ │ │ └── Template │ │ └── netscapeHTML │ │ │ └── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ ├── Root │ │ │ └── Template │ │ └── validation │ │ ├── CVS │ │ ├── Entries │ │ ├── Repository │ │ ├── Root │ │ └── Template │ │ └── files │ │ └── CVS │ │ ├── Entries │ │ ├── Repository │ │ ├── Root │ │ └── Template │ ├── testutils │ ├── comparators.c │ ├── comparators.h │ ├── domts.h │ ├── domtsasserts.c │ ├── domtsasserts.h │ ├── domtscondition.h │ ├── foreach.c │ ├── foreach.h │ ├── list.c │ ├── list.h │ ├── load.c │ ├── utils.c │ └── utils.h │ └── transform.pl ├── libhubbub ├── COPYING ├── Makefile ├── Makefile.config ├── README ├── build │ ├── Entities │ ├── get-entities │ │ ├── entities.xslt │ │ └── get_entities │ └── make-entities.pl ├── docs │ ├── Architecture │ ├── Doxyfile │ ├── Macros │ ├── Todo │ ├── Treebuilder │ └── Updated ├── examples │ ├── example.mk │ └── libxml.c ├── include │ └── hubbub │ │ ├── errors.h │ │ ├── functypes.h │ │ ├── hubbub.h │ │ ├── parser.h │ │ ├── tree.h │ │ └── types.h ├── libhubbub.pc.in ├── perf │ ├── README │ ├── example.mk │ ├── html5libtest.py │ ├── hubbub.c │ └── libxml2.c ├── src │ ├── Makefile │ ├── charset │ │ ├── Makefile │ │ ├── detect.c │ │ └── detect.h │ ├── parser.c │ ├── tokeniser │ │ ├── Makefile │ │ ├── entities.c │ │ ├── entities.h │ │ ├── entities.inc │ │ ├── tokeniser.c │ │ └── tokeniser.h │ ├── treebuilder │ │ ├── Makefile │ │ ├── after_after_body.c │ │ ├── after_after_frameset.c │ │ ├── after_body.c │ │ ├── after_frameset.c │ │ ├── after_head.c │ │ ├── before_head.c │ │ ├── before_html.c │ │ ├── element-type.c │ │ ├── element-type.gperf │ │ ├── element-type.h │ │ ├── generic_rcdata.c │ │ ├── in_body.c │ │ ├── in_caption.c │ │ ├── in_cell.c │ │ ├── in_column_group.c │ │ ├── in_foreign_content.c │ │ ├── in_frameset.c │ │ ├── in_head.c │ │ ├── in_head_noscript.c │ │ ├── in_row.c │ │ ├── in_select.c │ │ ├── in_select_in_table.c │ │ ├── in_table.c │ │ ├── in_table_body.c │ │ ├── initial.c │ │ ├── internal.h │ │ ├── modes.h │ │ ├── treebuilder.c │ │ └── treebuilder.h │ └── utils │ │ ├── Makefile │ │ ├── errors.c │ │ ├── parserutilserror.h │ │ ├── string.c │ │ ├── string.h │ │ └── utils.h └── test │ ├── INDEX │ ├── Makefile │ ├── README │ ├── csdetect.c │ ├── data │ ├── csdetect │ │ ├── INDEX │ │ ├── bom.dat │ │ ├── non-ascii-meta.dat │ │ ├── overrides.dat │ │ ├── regression.dat │ │ ├── test-yahoo-jp.dat │ │ ├── tests1.dat │ │ └── tests2.dat │ ├── html │ │ ├── DocumentIndex.jsp │ │ ├── INDEX │ │ ├── ccr.coriell.org.html │ │ ├── d11MXs.2WQ9.d.htm │ │ ├── firmaer.phtml │ │ ├── initial-close-tag.html │ │ ├── isindex.html │ │ ├── mangleme.1.html │ │ ├── mangleme.2.html │ │ ├── mangleme.3.html │ │ ├── misnested.html │ │ ├── phonecalls.html │ │ ├── regression-script-collect.html │ │ ├── section-tree-construction.html │ │ ├── wbh.co.uk.html │ │ ├── www.directline.com.html │ │ ├── www.fhis.ubc.ca.html │ │ └── www.hanazonohifuku.com.html │ ├── tokeniser2 │ │ ├── INDEX │ │ ├── cdata.test │ │ ├── contentModelFlags.test │ │ ├── entities.test │ │ ├── escapeFlag.test │ │ ├── numericEntities.test │ │ ├── regression.test │ │ ├── test1.test │ │ ├── test2.test │ │ ├── test3.test │ │ ├── test4.test │ │ └── unicodeChars.test │ ├── tree-chunks │ │ ├── INDEX │ │ ├── basic.dat │ │ └── entitytest.html │ └── tree-construction │ │ ├── INDEX │ │ ├── after-after-body.dat │ │ ├── after-after-frameset.dat │ │ ├── after-body.dat │ │ ├── regression.dat │ │ ├── tests1.dat │ │ ├── tests10.dat │ │ ├── tests11.dat │ │ ├── tests12.dat │ │ ├── tests2.dat │ │ ├── tests3.dat │ │ ├── tests4.dat │ │ ├── tests5.dat │ │ ├── tests6.dat │ │ ├── tests7.dat │ │ ├── tests8.dat │ │ └── tests9.dat │ ├── entities.c │ ├── parser.c │ ├── testutils.h │ ├── tokeniser.c │ ├── tokeniser2.c │ ├── tokeniser3.c │ ├── tree-buf.c │ ├── tree.c │ └── tree2.c ├── libnsbmp ├── COPYING ├── Makefile ├── examples │ ├── bmp_display │ ├── ico_display │ ├── linux.bmp │ └── ro.bmp ├── include │ └── libnsbmp.h ├── libnsbmp.pc.in ├── src │ ├── Makefile │ ├── README │ ├── libnsbmp.c │ └── utils │ │ └── log.h └── test │ ├── Makefile │ ├── afl-bmp │ ├── README │ ├── id:000023,src:000000,op:flip1,pos:28,+cov.bmp │ ├── id:000025,src:000000,op:flip1,pos:30,+cov.bmp │ ├── id:000038,src:000000,op:flip2,pos:30,+cov.bmp │ ├── id:000045,src:000000,op:arith8,pos:0,val:-35,+cov.bmp │ ├── id:000095,src:000000,op:arith8,pos:30,val:+5,+cov.bmp │ ├── id:000096,src:000000,op:arith8,pos:46,val:-14,+cov.bmp │ ├── id:000102,src:000000,op:int16,pos:45,val:+1000.bmp │ ├── id:000109,src:000000,op:havoc,rep:4.bmp │ ├── id:000112,src:000000,op:havoc,rep:16.bmp │ ├── id:000118,src:000000,op:havoc,rep:64,+cov.bmp │ ├── id:000122,src:000000,op:havoc,rep:32,+cov.bmp │ ├── id:000123,src:000000,op:havoc,rep:2,+cov.bmp │ ├── id:000125,src:000000,op:havoc,rep:64,+cov.bmp │ ├── id:000127,src:000000,op:havoc,rep:8.bmp │ ├── id:000131,src:000000,op:havoc,rep:8.bmp │ ├── id:000135,src:000000,op:havoc,rep:4.bmp │ ├── id:000146,src:000000,op:havoc,rep:32,+cov.bmp │ ├── id:000152,src:000000,op:havoc,rep:64,+cov.bmp │ ├── id:000153,src:000000,op:havoc,rep:8.bmp │ ├── id:000155,src:000000,op:havoc,rep:4,+cov.bmp │ ├── id:000161,src:000000,op:havoc,rep:64,+cov.bmp │ ├── id:000171,src:000000,op:havoc,rep:64,+cov.bmp │ ├── id:000173,src:000000,op:havoc,rep:2.bmp │ ├── id:000174,src:000000,op:havoc,rep:8.bmp │ ├── id:000175,src:000000,op:havoc,rep:32.bmp │ ├── id:000198,src:000000,op:havoc,rep:16.bmp │ ├── id:000202,src:000000,op:havoc,rep:8.bmp │ ├── id:000205,src:000000,op:havoc,rep:16.bmp │ ├── id:000210,src:000000,op:havoc,rep:16,+cov.bmp │ ├── id:000213,src:000000,op:havoc,rep:4.bmp │ ├── id:000215,src:000000,op:havoc,rep:32.bmp │ ├── id:000227,src:000026,op:flip1,pos:11.bmp │ ├── id:000230,src:000026,op:flip1,pos:18.bmp │ ├── id:000259,src:000026,op:flip1,pos:209,+cov.bmp │ ├── id:000270,src:000026,op:flip2,pos:28,+cov.bmp │ ├── id:000299,src:000026,op:arith8,pos:22,val:-28.bmp │ ├── id:000305,src:000026,op:arith8,pos:22,val:-35.bmp │ ├── id:000312,src:000026,op:arith8,pos:235,val:-28.bmp │ ├── id:000320,src:000026,op:int16,pos:9,val:+1000.bmp │ ├── id:000325,src:000026,op:havoc,rep:16.bmp │ ├── id:000326,src:000026,op:havoc,rep:2.bmp │ ├── id:000339,src:000026,op:havoc,rep:32.bmp │ ├── id:000347,src:000026,op:havoc,rep:8.bmp │ ├── id:000349,src:000026,op:havoc,rep:8.bmp │ ├── id:000354,src:000026,op:havoc,rep:4.bmp │ ├── id:000355,src:000026,op:havoc,rep:32.bmp │ ├── id:000366,src:000026,op:havoc,rep:8.bmp │ ├── id:000372,src:000026,op:havoc,rep:4.bmp │ ├── id:000373,src:000026,op:havoc,rep:8.bmp │ ├── id:000379,src:000026,op:havoc,rep:4.bmp │ ├── id:000383,src:000026,op:havoc,rep:8,+cov.bmp │ ├── id:000385,src:000026,op:havoc,rep:16.bmp │ ├── id:000387,src:000026,op:havoc,rep:32.bmp │ ├── id:000397,src:000026,op:havoc,rep:32.bmp │ ├── id:000400,src:000026,op:havoc,rep:32,+cov.bmp │ ├── id:000401,src:000026,op:havoc,rep:8.bmp │ ├── id:000405,src:000026,op:havoc,rep:16.bmp │ ├── id:000407,src:000026,op:havoc,rep:32.bmp │ ├── id:000410,src:000026,op:havoc,rep:16.bmp │ ├── id:000419,src:000026,op:havoc,rep:4.bmp │ ├── id:000423,src:000026,op:havoc,rep:8.bmp │ ├── id:000428,src:000026,op:havoc,rep:16.bmp │ ├── id:000430,src:000026,op:havoc,rep:16.bmp │ ├── id:000431,src:000026,op:havoc,rep:64.bmp │ ├── id:000436,src:000026,op:havoc,rep:8.bmp │ ├── id:000440,src:000026,op:havoc,rep:16.bmp │ ├── id:000443,src:000026,op:havoc,rep:32.bmp │ ├── id:000445,src:000032,op:havoc,rep:16.bmp │ ├── id:000448,src:000032,op:havoc,rep:2.bmp │ ├── id:000450,src:000032,op:havoc,rep:32.bmp │ ├── id:000452,src:000032,op:havoc,rep:8.bmp │ ├── id:000467,src:000032,op:havoc,rep:8.bmp │ ├── id:000470,src:000045,op:havoc,rep:32,+cov.bmp │ ├── id:000471,src:000048,op:havoc,rep:32.bmp │ ├── id:000472,src:000048,op:havoc,rep:4.bmp │ ├── id:000473,src:000048,op:havoc,rep:16.bmp │ ├── id:000474,src:000048,op:havoc,rep:8.bmp │ ├── id:000475,src:000048,op:havoc,rep:2.bmp │ ├── id:000496,src:000059,op:havoc,rep:2.bmp │ ├── id:000499,src:000059,op:havoc,rep:8.bmp │ ├── id:000504,src:000059,op:havoc,rep:8.bmp │ ├── id:000507,src:000059,op:havoc,rep:32.bmp │ ├── id:000508,src:000059,op:havoc,rep:32.bmp │ ├── id:000509,src:000059,op:havoc,rep:8.bmp │ ├── id:000511,src:000059,op:havoc,rep:32.bmp │ ├── id:000512,src:000059,op:havoc,rep:8.bmp │ ├── id:000518,src:000059,op:havoc,rep:8.bmp │ ├── id:000519,src:000063,op:flip2,pos:28,+cov.bmp │ ├── id:000538,src:000063,op:havoc,rep:32.bmp │ ├── id:000542,src:000063,op:havoc,rep:16.bmp │ ├── id:000548,src:000063,op:havoc,rep:8.bmp │ ├── id:000549,src:000063,op:havoc,rep:16,+cov.bmp │ ├── id:000564,src:000067,op:arith32,pos:22,val:-34.bmp │ ├── id:000566,src:000067,op:int32,pos:22,val:-128.bmp │ ├── id:000582,src:000091,op:arith8,pos:18,val:-28.bmp │ ├── id:000589,src:000091,op:arith32,pos:22,val:-6.bmp │ ├── id:000595,src:000118,op:flip1,pos:30,+cov.bmp │ ├── id:000598,src:000147,op:havoc,rep:32.bmp │ ├── id:000604,src:000147,op:havoc,rep:8.bmp │ ├── id:000605,src:000147,op:havoc,rep:4.bmp │ ├── id:000607,src:000147,op:havoc,rep:64.bmp │ ├── id:000608,src:000147,op:havoc,rep:8.bmp │ ├── id:000612,src:000147,op:havoc,rep:32.bmp │ ├── id:000613,src:000147,op:havoc,rep:2.bmp │ ├── id:000618,src:000147,op:havoc,rep:1.bmp │ ├── id:000621,src:000147,op:havoc,rep:1.bmp │ ├── id:000625,src:000147,op:havoc,rep:4.bmp │ ├── id:000626,src:000147,op:havoc,rep:16.bmp │ ├── id:000627,src:000147,op:havoc,rep:1.bmp │ ├── id:000628,src:000147,op:havoc,rep:4.bmp │ ├── id:000633,src:000147,op:havoc,rep:4.bmp │ ├── id:000636,src:000147,op:havoc,rep:32.bmp │ ├── id:000641,src:000147,op:havoc,rep:16.bmp │ ├── id:000645,src:000147,op:havoc,rep:8.bmp │ ├── id:000648,src:000147,op:havoc,rep:8.bmp │ ├── id:000650,src:000147,op:havoc,rep:2.bmp │ ├── id:000651,src:000147,op:havoc,rep:16.bmp │ ├── id:000653,src:000147,op:havoc,rep:1.bmp │ ├── id:000656,src:000147,op:havoc,rep:32.bmp │ ├── id:000664,src:000147,op:havoc,rep:16.bmp │ ├── id:000668,src:000147,op:havoc,rep:32.bmp │ ├── id:000669,src:000147,op:havoc,rep:32.bmp │ ├── id:000670,src:000147,op:havoc,rep:2.bmp │ ├── id:000672,src:000147,op:havoc,rep:16.bmp │ ├── id:000680,src:000157,op:flip2,pos:22.bmp │ ├── id:000686,src:000157,op:arith32,pos:22,val:-33,+cov.bmp │ ├── id:000687,src:000157,op:arith32,pos:22,val:-34.bmp │ ├── id:000691,src:000169,op:flip2,pos:22.bmp │ ├── id:000698,src:000169,op:arith8,pos:22,val:-22.bmp │ ├── id:000699,src:000169,op:arith8,pos:22,val:-25.bmp │ ├── id:000702,src:000169,op:arith8,pos:22,val:-29.bmp │ ├── id:000705,src:000169,op:havoc,rep:32.bmp │ ├── id:000711,src:000204,op:havoc,rep:4.bmp │ ├── id:000715,src:000208,op:arith32,pos:22,val:-35.bmp │ ├── id:000726,src:000291,op:arith8,pos:22,val:-29.bmp │ ├── id:000730,src:000292,op:flip1,pos:22.bmp │ ├── id:000732,src:000292,op:flip32,pos:22.bmp │ ├── id:000739,src:000313,op:arith32,pos:43,val:-28.bmp │ ├── id:000740,src:000313,op:havoc,rep:32.bmp │ ├── id:000741,src:000364,op:flip1,pos:19.bmp │ ├── id:000743,src:000364,op:arith8,pos:22,val:-13.bmp │ ├── id:000746,src:000364,op:int32,pos:126,val:be:-128.bmp │ ├── id:000747,src:000364,op:int32,pos:127,val:-32768.bmp │ ├── id:000748,src:000364,op:int32,pos:131,val:+32767.bmp │ ├── id:000749,src:000364,op:int32,pos:240,val:be:+255.bmp │ ├── id:000752,src:000381,op:havoc,rep:8.bmp │ ├── id:000754,src:000381,op:havoc,rep:1.bmp │ ├── id:000757,src:000381,op:havoc,rep:2.bmp │ ├── id:000758,src:000381,op:havoc,rep:16.bmp │ ├── id:000761,src:000381,op:havoc,rep:8.bmp │ ├── id:000763,src:000389,op:flip2,pos:22.bmp │ ├── id:000765,src:000389,op:flip4,pos:22.bmp │ ├── id:000768,src:000389,op:arith8,pos:22,val:-29.bmp │ ├── id:000769,src:000389,op:arith8,pos:22,val:-30.bmp │ ├── id:000770,src:000400,op:flip2,pos:15.bmp │ ├── id:000775,src:000439,op:arith8,pos:22,val:-25.bmp │ ├── id:000805,src:000469,op:havoc,rep:64.bmp │ ├── id:000816,src:000501,op:arith32,pos:22,val:-8.bmp │ ├── id:000824,src:000523,op:arith32,pos:22,val:-33.bmp │ ├── id:000835,src:000529,op:flip2,pos:28.bmp │ ├── id:000838,src:000529,op:arith8,pos:18,val:-3,+cov.bmp │ ├── id:000842,src:000553,op:flip32,pos:22.bmp │ ├── id:000846,src:000553,op:arith32,pos:22,val:-30.bmp │ ├── id:000859,src:000579,op:arith32,pos:22,val:-4.bmp │ ├── id:000865,src:000585,op:arith8,pos:18,val:-30.bmp │ ├── id:000866,src:000585,op:arith8,pos:18,val:-31.bmp │ ├── id:000879,src:000587,op:arith8,pos:18,val:-28.bmp │ ├── id:000880,src:000587,op:arith8,pos:18,val:-29.bmp │ ├── id:000882,src:000587,op:arith8,pos:18,val:-31.bmp │ ├── id:000883,src:000587,op:arith8,pos:22,val:+3.bmp │ ├── id:000894,src:000587,op:havoc,rep:64.bmp │ ├── id:000895,src:000587,op:havoc,rep:16.bmp │ ├── id:000904,src:000685,op:flip2,pos:30.bmp │ ├── id:000916,src:000694,op:arith8,pos:22,val:-17.bmp │ ├── id:000918,src:000694,op:arith8,pos:22,val:-29.bmp │ ├── id:000921,src:000704,op:flip2,pos:18.bmp │ ├── id:000922,src:000704,op:flip4,pos:18.bmp │ ├── id:000923,src:000704,op:arith8,pos:18,val:-6.bmp │ ├── id:000924,src:000704,op:arith8,pos:18,val:-7.bmp │ ├── id:000925,src:000704,op:arith8,pos:18,val:-17.bmp │ ├── id:000928,src:000715,op:flip1,pos:18.bmp │ ├── id:000929,src:000715,op:flip1,pos:18.bmp │ ├── id:000931,src:000715,op:arith8,pos:18,val:+5.bmp │ ├── id:000932,src:000715,op:arith8,pos:28,val:+12.bmp │ ├── id:000933,src:000715,op:arith8,pos:28,val:+20.bmp │ ├── id:000935,src:000745,op:havoc,rep:8.bmp │ ├── id:000943,src:000778,op:havoc,rep:16.bmp │ ├── id:000945,src:000783,op:flip1,pos:59,+cov.bmp │ ├── id:000946,src:000783,op:flip1,pos:60,+cov.bmp │ ├── id:000953,src:000783,op:arith8,pos:22,val:-29.bmp │ ├── id:000957,src:000783,op:havoc,rep:8.bmp │ ├── id:000965,src:000783,op:havoc,rep:16.bmp │ ├── id:000968,src:000783,op:havoc,rep:32.bmp │ ├── id:000969,src:000783,op:havoc,rep:32.bmp │ ├── id:000971,src:000796,op:flip2,pos:61.bmp │ ├── id:000976,src:000796,op:arith8,pos:22,val:-30.bmp │ ├── id:000982,src:000796,op:havoc,rep:16.bmp │ ├── id:000983,src:000796,op:havoc,rep:16.bmp │ ├── id:000984,src:000798,op:arith8,pos:22,val:-17.bmp │ ├── id:000985,src:000798,op:havoc,rep:64.bmp │ ├── id:001006,src:000804,op:flip2,pos:18.bmp │ ├── id:001012,src:000804,op:havoc,rep:8.bmp │ ├── id:001021,src:000805,op:havoc,rep:16.bmp │ ├── id:001027,src:000808,op:arith8,pos:22,val:-13.bmp │ ├── id:001029,src:000808,op:arith32,pos:22,val:-32.bmp │ ├── id:001035,src:000814,op:flip2,pos:22.bmp │ ├── id:001037,src:000814,op:arith8,pos:22,val:-1.bmp │ ├── id:001039,src:000816,op:arith8,pos:18,val:+3.bmp │ ├── id:001042,src:000850,op:flip1,pos:22.bmp │ ├── id:001049,src:000855,op:flip1,pos:22.bmp │ ├── id:001058,src:000855,op:arith8,pos:18,val:-27.bmp │ ├── id:001060,src:000855,op:arith8,pos:18,val:-30.bmp │ ├── id:001062,src:000855,op:arith8,pos:154,val:-26,+cov.bmp │ ├── id:001063,src:000855,op:arith8,pos:157,val:-13.bmp │ ├── id:001064,src:000855,op:int16,pos:9,val:+16.bmp │ ├── id:001065,src:000855,op:int32,pos:210,val:be:+255.bmp │ ├── id:001068,src:000855,op:havoc,rep:2.bmp │ ├── id:001069,src:000855,op:havoc,rep:16.bmp │ ├── id:001070,src:000855,op:havoc,rep:1.bmp │ ├── id:001071,src:000855,op:havoc,rep:8.bmp │ ├── id:001072,src:000855,op:havoc,rep:8.bmp │ ├── id:001079,src:000855,op:havoc,rep:32.bmp │ ├── id:001080,src:000855,op:havoc,rep:2,+cov.bmp │ ├── id:001082,src:000855,op:havoc,rep:8.bmp │ ├── id:001083,src:000855,op:havoc,rep:8.bmp │ ├── id:001085,src:000855,op:havoc,rep:32.bmp │ ├── id:001087,src:000858,op:flip1,pos:22.bmp │ ├── id:001089,src:000858,op:flip2,pos:30.bmp │ ├── id:001106,src:000869,op:arith8,pos:210,val:-15,+cov.bmp │ ├── id:001126,src:000904,op:flip2,pos:22.bmp │ ├── id:001135,src:000904,op:havoc,rep:8.bmp │ ├── id:001136,src:000904,op:havoc,rep:16.bmp │ ├── id:001143,src:000919,op:flip2,pos:18.bmp │ ├── id:001146,src:000927,op:havoc,rep:8.bmp │ ├── id:001149,src:000948,op:int32,pos:27,val:+1024.bmp │ ├── id:001150,src:000957,op:arith8,pos:61,val:-14.bmp │ ├── id:001151,src:000965,op:flip1,pos:18.bmp │ ├── id:001152,src:000965,op:flip4,pos:22.bmp │ ├── id:001153,src:000974,op:flip4,pos:61.bmp │ ├── id:001154,src:000981,op:arith8,pos:22,val:-27.bmp │ ├── id:001158,src:001022,op:flip1,pos:61.bmp │ ├── id:001159,src:001024,op:arith8,pos:22,val:-15.bmp │ ├── id:001161,src:001040,op:arith8,pos:22,val:+32.bmp │ ├── id:001162,src:001040,op:arith8,pos:28,val:+8.bmp │ ├── id:001163,src:001047,op:flip1,pos:238.bmp │ ├── id:001165,src:001047,op:arith8,pos:22,val:-7.bmp │ ├── id:001167,src:001047,op:havoc,rep:16.bmp │ ├── id:001170,src:001047,op:havoc,rep:32.bmp │ ├── id:001171,src:001047,op:havoc,rep:4.bmp │ ├── id:001173,src:001047,op:havoc,rep:32.bmp │ ├── id:001176,src:001058,op:flip1,pos:22.bmp │ ├── id:001177,src:001058,op:flip4,pos:22.bmp │ ├── id:001178,src:001058,op:havoc,rep:8.bmp │ ├── id:001181,src:001080,op:int16,pos:146,val:be:+255.bmp │ ├── id:001182,src:001081,op:flip1,pos:240.bmp │ ├── id:001188,src:001081,op:flip2,pos:373.bmp │ ├── id:001190,src:001081,op:arith8,pos:242,val:+28.bmp │ ├── id:001195,src:001081,op:havoc,rep:1.bmp │ ├── id:001196,src:001095,op:flip1,pos:204.bmp │ ├── id:001201,src:001098,op:arith8,pos:210,val:-15.bmp │ ├── id:001205,src:001103,op:flip2,pos:212.bmp │ ├── id:001209,src:001115,op:flip2,pos:210,+cov.bmp │ ├── id:001213,src:001115,op:arith32,pos:22,val:-2.bmp │ ├── id:001225,src:001115,op:havoc,rep:32.bmp │ ├── id:001227,src:001138,op:arith8,pos:56,val:-3.bmp │ ├── id:001234,src:001144,op:arith8,pos:274,val:+20.bmp │ ├── id:001237,src:001153,op:flip1,pos:22.bmp │ ├── id:001238,src:001153,op:arith8,pos:22,val:-7.bmp │ ├── id:001239,src:001153,op:arith8,pos:22,val:-9.bmp │ ├── id:001240,src:001155,op:havoc,rep:4.bmp │ ├── id:001242,src:001187,op:arith8,pos:238,val:-24.bmp │ ├── id:001243,src:001187,op:arith8,pos:238,val:-26.bmp │ ├── id:001251,src:001227,op:flip2,pos:22.bmp │ ├── id:001252,src:001227,op:arith8,pos:22,val:-13.bmp │ ├── id:001253,src:001227,op:havoc,rep:2.bmp │ ├── id:001254,src:001227,op:havoc,rep:32.bmp │ ├── id:001259,src:001233,op:arith8,pos:268,val:-29.bmp │ ├── id:001261,src:001235,op:arith8,pos:28,val:+28.bmp │ ├── id:001278,src:001268,op:arith8,pos:28,val:+12,+cov.bmp │ ├── id:001279,src:001271,op:arith8,pos:28,val:-3.bmp │ ├── id:001280,src:000530,op:flip1,pos:18.bmp │ ├── id:001285,src:001105,op:havoc,rep:4.bmp │ ├── id:001288,src:001188,op:havoc,rep:8.bmp │ ├── id:001293,src:001188,op:havoc,rep:8.bmp │ ├── id:001297,src:001284,op:havoc,rep:2.bmp │ ├── id:001300,src:001284,op:havoc,rep:4.bmp │ ├── id:001301,src:001284,op:havoc,rep:8.bmp │ ├── id:001302,src:001284,op:havoc,rep:4.bmp │ ├── id:001306,src:000239,op:havoc,rep:16.bmp │ ├── id:001311,src:000239,op:havoc,rep:32.bmp │ ├── id:001314,src:000503,op:havoc,rep:1,+cov.bmp │ ├── id:001316,src:000977,op:int16,pos:64,val:-128.bmp │ ├── id:001317,src:001144,op:havoc,rep:32.bmp │ ├── id:001321,src:000369,op:int32,pos:117,val:be:+512,+cov.bmp │ ├── id:001326,src:000540,op:havoc,rep:64.bmp │ ├── id:001327,src:000566,op:flip1,pos:18.bmp │ ├── id:001329,src:000800,op:arith8,pos:18,val:-31.bmp │ ├── id:001330,src:000824,op:havoc,rep:4.bmp │ ├── id:001333,src:000910,op:havoc,rep:2.bmp │ ├── id:001334,src:000934,op:havoc,rep:2.bmp │ ├── id:001337,src:001334,op:havoc,rep:1.bmp │ ├── id:001339,src:000470,op:havoc,rep:16,+cov.bmp │ ├── id:001340,src:001338,op:havoc,rep:4.bmp │ ├── id:001342,src:001338,op:havoc,rep:32.bmp │ ├── id:001359,src:001353,op:havoc,rep:16.bmp │ ├── id:001360,src:001355,op:havoc,rep:16.bmp │ ├── id:001362,src:001361,op:havoc,rep:64.bmp │ ├── id:001363,src:000060,op:havoc,rep:16,+cov.bmp │ ├── id:001366,src:000191,op:havoc,rep:2.bmp │ ├── id:001372,src:000191,op:havoc,rep:8.bmp │ ├── id:001382,src:000191,op:havoc,rep:16.bmp │ ├── id:001384,src:000191,op:havoc,rep:4.bmp │ ├── id:001385,src:000381,op:havoc,rep:2.bmp │ ├── id:001387,src:000776,op:arith8,pos:20,val:+25,+cov.bmp │ ├── id:001388,src:000836,op:havoc,rep:32.bmp │ ├── id:001389,src:000934,op:havoc,rep:1.bmp │ ├── id:001391,src:000942,op:arith8,pos:118,val:-4.bmp │ ├── id:001393,src:001079,op:havoc,rep:32.bmp │ ├── id:001394,src:001159,op:havoc,rep:4.bmp │ ├── id:001396,src:001214,op:flip32,pos:386.bmp │ ├── id:001398,src:001394,op:flip2,pos:18.bmp │ ├── id:001401,src:001079,op:havoc,rep:16.bmp │ ├── id:001402,src:001146,op:arith8,pos:196,val:-35.bmp │ ├── id:001408,src:001302,op:havoc,rep:4.bmp │ ├── id:001409,src:001399,op:flip1,pos:3.bmp │ ├── id:001417,src:001399,op:havoc,rep:8.bmp │ ├── id:001423,src:001399,op:havoc,rep:32,+cov.bmp │ ├── id:001425,src:000758,op:havoc,rep:32.bmp │ ├── id:001427,src:000760,op:havoc,rep:16.bmp │ ├── id:001428,src:000916,op:havoc,rep:2.bmp │ ├── id:001434,src:001145,op:arith8,pos:28,val:+20.bmp │ ├── id:001436,src:001186,op:arith8,pos:343,val:+14.bmp │ ├── id:001438,src:001209,op:havoc,rep:2.bmp │ ├── id:001443,src:001221,op:arith32,pos:204,val:-2.bmp │ ├── id:001448,src:001291,op:arith8,pos:234,val:+24.bmp │ ├── id:001452,src:001304,op:havoc,rep:2.bmp │ ├── id:001460,src:001333,op:havoc,rep:4.bmp │ ├── id:001461,src:001400,op:flip2,pos:851.bmp │ ├── id:001465,src:001400,op:havoc,rep:32.bmp │ ├── id:001466,src:001400,op:havoc,rep:32.bmp │ ├── id:001467,src:001400,op:havoc,rep:128.bmp │ ├── id:001470,src:001400,op:havoc,rep:64.bmp │ ├── id:001471,src:001400,op:havoc,rep:4.bmp │ ├── id:001477,src:001427,op:havoc,rep:128.bmp │ ├── id:001485,src:001445,op:arith32,pos:568,val:-2.bmp │ ├── id:001486,src:001446,op:arith32,pos:22,val:-2.bmp │ ├── id:001487,src:001446,op:arith32,pos:204,val:-2.bmp │ ├── id:001499,src:001453,op:havoc,rep:4.bmp │ ├── id:001502,src:000027+001003,op:splice,rep:16.bmp │ ├── id:001503,src:000045+000667,op:splice,rep:1.bmp │ ├── id:001504,src:000045+000667,op:splice,rep:16.bmp │ ├── id:001505,src:000045+000667,op:splice,rep:32.bmp │ ├── id:001508,src:000045+000667,op:splice,rep:2.bmp │ ├── id:001512,src:000045+000667,op:splice,rep:8.bmp │ ├── id:001515,src:000045+000667,op:splice,rep:4.bmp │ ├── id:001519,src:000109+000990,op:splice,rep:16.bmp │ ├── id:001521,src:000161+001048,op:splice,rep:4.bmp │ ├── id:001523,src:000161+001048,op:splice,rep:2.bmp │ ├── id:001524,src:000161+001048,op:splice,rep:4.bmp │ ├── id:001525,src:000161+001048,op:splice,rep:16.bmp │ ├── id:001527,src:000210+001409,op:splice,rep:2.bmp │ ├── id:001528,src:000259+000731,op:splice,rep:8.bmp │ ├── id:001530,src:000500+000879,op:splice,rep:2.bmp │ ├── id:001531,src:000689,op:havoc,rep:1.bmp │ ├── id:001544,src:000920,op:havoc,rep:8.bmp │ ├── id:001551,src:001128,op:arith8,pos:22,val:-20.bmp │ ├── id:001557,src:001253,op:havoc,rep:4.bmp │ ├── id:001558,src:001275,op:havoc,rep:4.bmp │ ├── id:001560,src:001469,op:flip1,pos:401.bmp │ ├── id:001565,src:001151+000979,op:splice,rep:8.bmp │ ├── id:001572,src:001248+001477,op:splice,rep:1.bmp │ ├── id:001577,src:001308+001465,op:splice,rep:8.bmp │ ├── id:001584,src:001581+000019,op:splice,rep:2.bmp │ ├── id:001586,src:000107+001449,op:splice,rep:4.bmp │ ├── id:001587,src:000304+000326,op:splice,rep:8.bmp │ ├── id:001590,src:001234+001171,op:splice,rep:16.bmp │ ├── id:001591,src:001589,op:flip32,pos:22,+cov.bmp │ ├── id:001597,src:000161+000714,op:splice,rep:2.bmp │ ├── id:001598,src:000565+001404,op:splice,rep:8.bmp │ ├── id:001604,src:001603,op:havoc,rep:4.bmp │ ├── id:001605,src:001603,op:havoc,rep:4.bmp │ ├── id:001606,src:000515+001461,op:splice,rep:1.bmp │ ├── id:001608,src:000955,op:arith16,pos:17,val:be:-15.bmp │ ├── id:001609,src:001267+001346,op:splice,rep:8.bmp │ ├── id:001611,src:001405,op:flip2,pos:18.bmp │ ├── id:001615,src:001405,op:arith8,pos:18,val:+13.bmp │ ├── id:001617,src:001432,op:flip2,pos:30.bmp │ ├── id:001618,src:001432,op:havoc,rep:1.bmp │ ├── id:001624,src:001596,op:arith32,pos:1654,val:+2.bmp │ ├── id:001627,src:001596,op:arith32,pos:2018,val:-2.bmp │ ├── id:001629,src:001618,op:havoc,rep:2.bmp │ ├── id:001633,src:001619,op:arith8,pos:144,val:-28.bmp │ ├── id:001634,src:001619,op:int32,pos:149,val:+1024.bmp │ ├── id:001639,src:000402+001468,op:splice,rep:64.bmp │ ├── id:001648,src:000610,op:havoc,rep:32.bmp │ ├── id:001650,src:000673,op:havoc,rep:1.bmp │ ├── id:001651,src:000753,op:havoc,rep:2.bmp │ ├── id:001654,src:000777,op:arith8,pos:19,val:-10,+cov.bmp │ ├── id:001656,src:000927,op:havoc,rep:8.bmp │ ├── id:001661,src:001062,op:havoc,rep:4.bmp │ ├── id:001663,src:001231,op:havoc,rep:1.bmp │ ├── id:001665,src:001605,op:havoc,rep:1.bmp │ ├── id:001673,src:000564,op:flip4,pos:22.bmp │ ├── id:001678,src:001086,op:havoc,rep:2.bmp │ ├── id:001682,src:001185,op:arith8,pos:238,val:-5.bmp │ ├── id:001686,src:001288,op:havoc,rep:2.bmp │ ├── id:001687,src:001362,op:havoc,rep:16.bmp │ ├── id:001692,src:001446,op:havoc,rep:8.bmp │ ├── id:001696,src:001476,op:flip1,pos:1241.bmp │ ├── id:001699,src:001488,op:havoc,rep:2.bmp │ ├── id:001705,src:001575,op:flip1,pos:1279.bmp │ ├── id:001711,src:001575,op:arith8,pos:1104,val:-12.bmp │ ├── id:001714,src:001575,op:arith32,pos:370,val:-2.bmp │ ├── id:001715,src:001582,op:havoc,rep:4.bmp │ ├── id:001718,src:001594,op:havoc,rep:16.bmp │ ├── id:001719,src:001594,op:havoc,rep:2.bmp │ ├── id:001723,src:001604,op:havoc,rep:2.bmp │ ├── id:001724,src:001604,op:havoc,rep:8.bmp │ ├── id:001728,src:001725,op:arith8,pos:22,val:+7.bmp │ ├── id:001729,src:001311,op:flip1,pos:215.bmp │ ├── id:001733,src:001495,op:flip1,pos:802.bmp │ ├── id:001735,src:001495,op:havoc,rep:1.bmp │ ├── id:001743,src:001686,op:havoc,rep:8.bmp │ ├── id:001745,src:001707,op:arith32,pos:22,val:-26.bmp │ ├── id:001751,src:001708,op:arith32,pos:370,val:-2.bmp │ ├── id:001768,src:001461,op:havoc,rep:128.bmp │ ├── id:001772,src:001713,op:flip1,pos:1825.bmp │ ├── id:001776,src:001723,op:havoc,rep:2.bmp │ ├── id:001782,src:001748,op:flip1,pos:2178.bmp │ ├── id:001789,src:001748,op:arith32,pos:916,val:-2.bmp │ ├── id:001792,src:001752,op:arith8,pos:28,val:-24.bmp │ ├── id:001800,src:001775,op:havoc,rep:4.bmp │ ├── id:001803,src:001778,op:havoc,rep:8.bmp │ ├── id:001806,src:001784,op:arith32,pos:552,val:-2.bmp │ ├── id:001808,src:001785,op:arith8,pos:1822,val:-24.bmp │ ├── id:001810,src:001799,op:arith32,pos:562,val:+2.bmp │ ├── id:001812,src:001799,op:havoc,rep:4.bmp │ ├── id:001816,src:001803,op:flip1,pos:3.bmp │ ├── id:001818,src:001803,op:flip1,pos:2724.bmp │ ├── id:001822,src:001803,op:flip2,pos:3106.bmp │ ├── id:001826,src:001814,op:flip1,pos:2369.bmp │ ├── id:001827,src:001824,op:flip2,pos:2742.bmp │ ├── id:001831,src:001819,op:arith32,pos:370,val:-2.bmp │ ├── id:001834,src:001819,op:arith32,pos:1462,val:-2.bmp │ ├── id:001838,src:001835,op:arith32,pos:22,val:-26.bmp │ ├── id:001841,src:001835,op:arith32,pos:916,val:-2.bmp │ ├── id:001844,src:001639,op:havoc,rep:32.bmp │ ├── id:001846,src:001429,op:havoc,rep:8.bmp │ ├── id:001847,src:001448,op:havoc,rep:1.bmp │ ├── id:001851,src:001812,op:arith32,pos:562,val:+2.bmp │ ├── id:001852,src:001812,op:arith32,pos:1108,val:-2.bmp │ ├── id:001854,src:001815,op:havoc,rep:4.bmp │ ├── id:001855,src:001843,op:flip1,pos:3.bmp │ ├── id:001856,src:001843,op:havoc,rep:4.bmp │ ├── id:001858,src:001852,op:flip1,pos:3831.bmp │ ├── id:001859,src:001852,op:flip4,pos:3829.bmp │ ├── id:001862,src:001856,op:arith8,pos:3642,val:-24.bmp │ ├── id:001867,src:001860,op:arith8,pos:4016,val:-12.bmp │ ├── id:001869,src:001860,op:havoc,rep:4.bmp │ ├── id:001882,src:001866,op:havoc,rep:4.bmp │ ├── id:001884,src:001866,op:havoc,rep:8.bmp │ ├── id:001888,src:001869,op:arith32,pos:1280,val:-2.bmp │ ├── id:001889,src:001869,op:arith32,pos:1462,val:-2.bmp │ ├── id:001892,src:001885,op:arith32,pos:370,val:-2.bmp │ ├── id:001893,src:001892,op:flip1,pos:4362.bmp │ ├── id:001894,src:001892,op:arith32,pos:1098,val:-2.bmp │ ├── id:001898,src:001863,op:flip1,pos:2724.bmp │ ├── id:001904,src:001880,op:arith32,pos:22,val:-26.bmp │ ├── id:001907,src:001883,op:havoc,rep:8.bmp │ ├── id:001908,src:001886,op:arith32,pos:22,val:-26.bmp │ ├── id:001909,src:001886,op:havoc,rep:8.bmp │ ├── id:001910,src:001896,op:havoc,rep:8.bmp │ ├── id:001915,src:001902,op:flip1,pos:6341.bmp │ ├── id:001925,src:001902,op:ext_AO,pos:6322.bmp │ ├── id:001926,src:001906,op:arith32,pos:1826,val:-2.bmp │ ├── id:001929,src:001909,op:arith32,pos:3464,val:-2.bmp │ ├── id:001930,src:001909,op:int32,pos:734,val:-1.bmp │ ├── id:001932,src:001918,op:arith32,pos:1644,val:-2.bmp │ ├── id:001939,src:001664,op:flip2,pos:18.bmp │ ├── id:001941,src:001801,op:havoc,rep:4.bmp │ ├── id:001943,src:001873,op:arith32,pos:2008,val:-2.bmp │ ├── id:001952,src:001946,op:flip1,pos:3.bmp │ ├── id:001955,src:001954,op:flip1,pos:6876.bmp │ ├── id:001957,src:001954,op:flip1,pos:7069.bmp │ ├── id:001964,src:001958,op:arith8,pos:28,val:-24.bmp │ ├── id:001967,src:001959,op:arith32,pos:734,val:-2.bmp │ ├── id:001968,src:001959,op:havoc,rep:4.bmp │ ├── id:001969,src:001965,op:arith32,pos:4374,val:-2.bmp │ ├── id:001973,src:001949,op:int16,pos:27,val:+1024.bmp │ ├── id:001975,src:001973,op:flip1,pos:5636.bmp │ ├── id:001976,src:001974,op:arith8,pos:6008,val:-24.bmp │ ├── id:001977,src:001974,op:arith32,pos:370,val:-2.bmp │ ├── id:001978,src:001974,op:havoc,rep:8.bmp │ ├── id:001990,src:001966,op:havoc,rep:2.bmp │ ├── id:001994,src:001966,op:havoc,rep:2.bmp │ ├── id:002001,src:001966,op:havoc,rep:8.bmp │ ├── id:002008,src:001966,op:havoc,rep:4.bmp │ ├── id:002009,src:001966,op:havoc,rep:1.bmp │ ├── id:002012,src:001966,op:havoc,rep:8.bmp │ ├── id:002018,src:000369,op:havoc,rep:8.bmp │ ├── id:002020,src:000391,op:havoc,rep:1.bmp │ ├── id:002021,src:000391,op:havoc,rep:1.bmp │ ├── id:002024,src:000816,op:havoc,rep:2.bmp │ ├── id:002026,src:000929,op:havoc,rep:16.bmp │ ├── id:002027,src:000929,op:havoc,rep:2.bmp │ ├── id:002028,src:000929,op:havoc,rep:8.bmp │ ├── id:002029,src:000929,op:havoc,rep:8.bmp │ ├── id:002030,src:000929,op:havoc,rep:4.bmp │ ├── id:002031,src:000937,op:havoc,rep:4,+cov.bmp │ ├── id:002033,src:001064,op:havoc,rep:16.bmp │ ├── id:002034,src:001064,op:havoc,rep:16.bmp │ ├── id:002035,src:001064,op:havoc,rep:1.bmp │ ├── id:002037,src:001064,op:havoc,rep:8.bmp │ ├── id:002038,src:001064,op:havoc,rep:8.bmp │ ├── id:002039,src:001240,op:havoc,rep:4.bmp │ ├── id:002041,src:001603,op:havoc,rep:1.bmp │ ├── id:002042,src:001603,op:havoc,rep:2.bmp │ ├── id:002043,src:001603,op:havoc,rep:4.bmp │ ├── id:002045,src:001603,op:havoc,rep:2.bmp │ ├── id:002047,src:001628,op:havoc,rep:4.bmp │ ├── id:002048,src:001628,op:havoc,rep:8.bmp │ ├── id:002050,src:001628,op:havoc,rep:2.bmp │ ├── id:002051,src:001671,op:havoc,rep:2.bmp │ ├── id:002057,src:001022,op:havoc,rep:8.bmp │ ├── id:002066,src:001702,op:ext_AO,pos:20.bmp │ ├── id:002069,src:001813,op:havoc,rep:8.bmp │ ├── id:002070,src:001837,op:flip1,pos:2353.bmp │ ├── id:002071,src:001865,op:flip1,pos:2360.bmp │ ├── id:002077,src:001887,op:arith8,pos:4370,val:-24.bmp │ ├── id:002083,src:001920,op:arith32,pos:370,val:-2.bmp │ ├── id:002085,src:002039,op:arith32,pos:22,val:-3.bmp │ ├── id:002087,src:000538+002027,op:splice,rep:2.bmp │ ├── id:002090,src:001217,op:havoc,rep:2.bmp │ ├── id:002091,src:001428+001543,op:splice,rep:2.bmp │ ├── id:002093,src:002040,op:havoc,rep:4.bmp │ ├── id:002094,src:001389,op:havoc,rep:1.bmp │ ├── id:002095,src:002094,op:flip1,pos:140.bmp │ ├── id:002096,src:000770+001803,op:splice,rep:16,+cov.bmp │ ├── id:002099,src:002098+000403,op:splice,rep:2.bmp │ ├── id:002100,src:002098+000403,op:splice,rep:2.bmp │ ├── id:002103,src:002100,op:int16,pos:149,val:+512.bmp │ ├── id:002104,src:002100,op:havoc,rep:2.bmp │ ├── id:002105,src:002100+000596,op:splice,rep:2.bmp │ ├── id:002106,src:002105,op:arith8,pos:46,val:-18.bmp │ ├── id:002107,src:002106+002105,op:splice,rep:4.bmp │ ├── id:002108,src:002106+002105,op:splice,rep:4.bmp │ ├── id:002109,src:002106+002105,op:splice,rep:4.bmp │ ├── id:002110,src:002106+001935,op:splice,rep:64.bmp │ ├── id:002111,src:001240+001273,op:splice,rep:8.bmp │ ├── id:002112,src:001828+001968,op:splice,rep:1.bmp │ ├── id:002114,src:002091,op:havoc,rep:8.bmp │ ├── id:002116,src:002101,op:flip2,pos:58.bmp │ ├── id:002118,src:002116,op:flip16,pos:93.bmp │ ├── id:002119,src:002116,op:havoc,rep:16.bmp │ ├── id:002120,src:002116,op:havoc,rep:4.bmp │ ├── id:002122,src:002121,op:flip2,pos:50.bmp │ ├── id:002123,src:002121,op:flip2,pos:150.bmp │ ├── id:002124,src:002121,op:arith8,pos:150,val:-3.bmp │ ├── id:002125,src:002121,op:int32,pos:94,val:be:-129.bmp │ ├── id:002127,src:001963+001890,op:splice,rep:2.bmp │ ├── id:002128,src:002117,op:arith8,pos:188,val:-14.bmp │ ├── id:002130,src:002111,op:havoc,rep:8.bmp │ ├── id:002132,src:000161+002095,op:splice,rep:4.bmp │ ├── id:002134,src:000470+001055,op:splice,rep:4,+cov.bmp │ ├── id:002135,src:002134,op:flip1,pos:14,+cov.bmp │ ├── id:002139,src:001719+001570,op:splice,rep:2.bmp │ ├── id:002140,src:001494,op:havoc,rep:8.bmp │ ├── id:002144,src:001337,op:havoc,rep:2.bmp │ ├── id:002145,src:001448+001707,op:splice,rep:8.bmp │ ├── id:002146,src:001931,op:havoc,rep:2.bmp │ ├── id:002150,src:002147,op:flip1,pos:260.bmp │ ├── id:002151,src:002149,op:havoc,rep:4.bmp │ ├── id:002154,src:002151,op:havoc,rep:2.bmp │ ├── id:002155,src:002154,op:havoc,rep:8.bmp │ └── id:002156,src:002130,op:havoc,rep:1.bmp │ ├── afl-ico │ ├── README │ ├── id:000010,src:000000,op:flip1,pos:4,+cov.ico │ ├── id:000011,src:000000,op:flip1,pos:5,+cov.ico │ ├── id:000043,src:000000,op:flip8,pos:4.ico │ ├── id:000116,src:000000,op:havoc,rep:128,+cov.ico │ ├── id:000120,src:000000,op:havoc,rep:64.ico │ ├── id:000123,src:000000,op:havoc,rep:64.ico │ ├── id:000129,src:000000,op:havoc,rep:8,+cov.ico │ ├── id:000134,src:000000,op:havoc,rep:128.ico │ ├── id:000136,src:000000,op:havoc,rep:4.ico │ ├── id:000147,src:000000,op:havoc,rep:16.ico │ ├── id:000161,src:000000,op:havoc,rep:64.ico │ ├── id:000164,src:000000,op:havoc,rep:4,+cov.ico │ ├── id:000165,src:000000,op:havoc,rep:16.ico │ ├── id:000183,src:000000,op:havoc,rep:4.ico │ ├── id:000184,src:000000,op:havoc,rep:8.ico │ ├── id:000188,src:000000,op:havoc,rep:16.ico │ ├── id:000191,src:000000,op:havoc,rep:32.ico │ ├── id:000193,src:000000,op:havoc,rep:8.ico │ ├── id:000215,src:000000,op:havoc,rep:8.ico │ ├── id:000250,src:000008,op:havoc,rep:8.ico │ ├── id:000251,src:000008,op:havoc,rep:16,+cov.ico │ ├── id:000265,src:000008,op:havoc,rep:8,+cov.ico │ ├── id:000286,src:000034,op:arith8,pos:7,val:-28.ico │ ├── id:000301,src:000034,op:havoc,rep:8.ico │ ├── id:000304,src:000034,op:havoc,rep:16.ico │ ├── id:000317,src:000072,op:arith8,pos:7,val:-31.ico │ ├── id:000320,src:000072,op:havoc,rep:1,+cov.ico │ ├── id:000344,src:000106,op:arith8,pos:7,val:-28.ico │ ├── id:000345,src:000106,op:arith8,pos:7,val:-29.ico │ ├── id:000346,src:000106,op:arith8,pos:7,val:-30.ico │ ├── id:000355,src:000106,op:havoc,rep:32.ico │ ├── id:000360,src:000106,op:havoc,rep:16.ico │ ├── id:000388,src:000114,op:flip1,pos:7.ico │ ├── id:000389,src:000114,op:flip1,pos:7.ico │ ├── id:000392,src:000114,op:flip2,pos:7.ico │ ├── id:000409,src:000150,op:arith8,pos:7,val:-31.ico │ ├── id:000411,src:000150,op:int16,pos:6,val:+512.ico │ ├── id:000430,src:000232,op:havoc,rep:8.ico │ ├── id:000437,src:000232,op:havoc,rep:4,+cov.ico │ ├── id:000442,src:000232,op:havoc,rep:32.ico │ ├── id:000446,src:000243,op:flip1,pos:12.ico │ ├── id:000449,src:000243,op:arith8,pos:6,val:-31.ico │ ├── id:000453,src:000243,op:havoc,rep:1,+cov.ico │ ├── id:000456,src:000243,op:havoc,rep:16.ico │ ├── id:000459,src:000243,op:havoc,rep:2.ico │ ├── id:000460,src:000243,op:havoc,rep:16.ico │ ├── id:000464,src:000243,op:havoc,rep:4.ico │ ├── id:000465,src:000263,op:flip1,pos:26.ico │ ├── id:000470,src:000263,op:arith8,pos:7,val:-29.ico │ ├── id:000471,src:000263,op:arith8,pos:7,val:-30.ico │ ├── id:000475,src:000263,op:int16,pos:6,val:+1024.ico │ ├── id:000477,src:000263,op:havoc,rep:4.ico │ ├── id:000478,src:000265,op:flip2,pos:8.ico │ ├── id:000479,src:000265,op:flip32,pos:6.ico │ ├── id:000490,src:000274,op:havoc,rep:16.ico │ ├── id:000497,src:000275,op:arith8,pos:7,val:-31.ico │ ├── id:000501,src:000296,op:int16,pos:6,val:be:+1000.ico │ ├── id:000507,src:000328,op:arith8,pos:6,val:-28.ico │ ├── id:000510,src:000331,op:arith8,pos:7,val:-30.ico │ ├── id:000511,src:000331,op:arith8,pos:7,val:-31.ico │ ├── id:000513,src:000353,op:flip1,pos:31.ico │ ├── id:000514,src:000353,op:flip2,pos:30.ico │ ├── id:000517,src:000353,op:arith8,pos:7,val:+4.ico │ ├── id:000520,src:000383,op:flip1,pos:6.ico │ ├── id:000521,src:000383,op:flip1,pos:6.ico │ ├── id:000525,src:000383,op:flip2,pos:6.ico │ ├── id:000554,src:000425,op:arith8,pos:7,val:-30.ico │ ├── id:000559,src:000436,op:int8,pos:7,val:+1.ico │ ├── id:000560,src:000438,op:arith8,pos:7,val:-31.ico │ ├── id:000564,src:000439,op:arith8,pos:14,val:-31.ico │ ├── id:000591,src:000454,op:arith8,pos:6,val:-26.ico │ ├── id:000594,src:000466,op:flip1,pos:30.ico │ ├── id:000596,src:000466,op:arith8,pos:7,val:-29.ico │ ├── id:000599,src:000466,op:havoc,rep:64.ico │ ├── id:000602,src:000472,op:flip2,pos:26.ico │ ├── id:000605,src:000483,op:flip1,pos:4.ico │ ├── id:000609,src:000483,op:havoc,rep:8,+cov.ico │ ├── id:000610,src:000483,op:havoc,rep:16,+cov.ico │ ├── id:000614,src:000483,op:havoc,rep:4.ico │ ├── id:000615,src:000483,op:havoc,rep:4.ico │ ├── id:000618,src:000486,op:havoc,rep:32.ico │ ├── id:000619,src:000501,op:flip2,pos:36.ico │ ├── id:000627,src:000558,op:flip1,pos:22.ico │ ├── id:000628,src:000558,op:flip1,pos:36.ico │ ├── id:000630,src:000558,op:havoc,rep:64,+cov.ico │ ├── id:000639,src:000564,op:flip1,pos:7.ico │ ├── id:000640,src:000564,op:int32,pos:6,val:be:-32769.ico │ ├── id:000659,src:000573,op:havoc,rep:8.ico │ ├── id:000680,src:000579,op:int32,pos:11,val:be:+1.ico │ ├── id:000681,src:000605,op:havoc,rep:2.ico │ ├── id:000682,src:000605,op:havoc,rep:4.ico │ ├── id:000683,src:000609,op:flip1,pos:11.ico │ ├── id:000684,src:000609,op:flip1,pos:22.ico │ ├── id:000685,src:000609,op:flip2,pos:14.ico │ ├── id:000688,src:000609,op:havoc,rep:4.ico │ ├── id:000693,src:000617,op:havoc,rep:2.ico │ ├── id:000699,src:000617,op:havoc,rep:2.ico │ ├── id:000702,src:000630,op:havoc,rep:1,+cov.ico │ ├── id:000704,src:000640,op:arith8,pos:14,val:+3.ico │ ├── id:000711,src:000649,op:havoc,rep:8.ico │ ├── id:000714,src:000661,op:arith8,pos:50,val:+13.ico │ ├── id:000716,src:000661,op:havoc,rep:4.ico │ ├── id:000727,src:000686,op:havoc,rep:4.ico │ ├── id:000728,src:000687,op:flip2,pos:4.ico │ ├── id:000733,src:000687,op:havoc,rep:4.ico │ ├── id:000735,src:000687,op:havoc,rep:4.ico │ ├── id:000737,src:000687,op:havoc,rep:4.ico │ ├── id:000746,src:000728,op:flip1,pos:54.ico │ ├── id:000749,src:000735,op:flip2,pos:54.ico │ ├── id:000750,src:000735,op:arith8,pos:6,val:-29.ico │ ├── id:000753,src:000745,op:arith16,pos:54,val:+6.ico │ ├── id:000755,src:000745,op:havoc,rep:8.ico │ ├── id:000756,src:000745,op:havoc,rep:4.ico │ ├── id:000761,src:000745,op:havoc,rep:4.ico │ ├── id:000767,src:000763,op:flip1,pos:4.ico │ ├── id:000771,src:000763,op:arith8,pos:4,val:+5.ico │ ├── id:000779,src:000764,op:arith8,pos:22,val:-19.ico │ ├── id:000788,src:000783,op:arith8,pos:8,val:-26.ico │ ├── id:000799,src:000798,op:flip2,pos:8.ico │ ├── id:000801,src:000798,op:havoc,rep:4.ico │ ├── id:000808,src:000748,op:flip1,pos:4.ico │ ├── id:000810,src:000748,op:flip2,pos:14.ico │ ├── id:000813,src:000580,op:havoc,rep:8.ico │ ├── id:000820,src:000709,op:flip2,pos:7.ico │ ├── id:000829,src:000716,op:havoc,rep:4.ico │ ├── id:000836,src:000744,op:arith8,pos:14,val:+20.ico │ ├── id:000841,src:000755,op:havoc,rep:1.ico │ ├── id:000847,src:000760,op:arith16,pos:102,val:+13.ico │ ├── id:000852,src:000760,op:havoc,rep:4.ico │ ├── id:000856,src:000760,op:havoc,rep:2.ico │ ├── id:000857,src:000760,op:havoc,rep:1.ico │ ├── id:000858,src:000760,op:havoc,rep:4.ico │ ├── id:000862,src:000762,op:arith8,pos:14,val:-7.ico │ ├── id:000864,src:000765,op:flip8,pos:54.ico │ ├── id:000875,src:000775,op:havoc,rep:4.ico │ ├── id:000878,src:000775,op:havoc,rep:4.ico │ ├── id:000883,src:000776,op:flip1,pos:4.ico │ ├── id:000886,src:000776,op:arith8,pos:4,val:+5.ico │ ├── id:000894,src:000814,op:havoc,rep:8.ico │ ├── id:000895,src:000816,op:havoc,rep:128.ico │ ├── id:000898,src:000832,op:arith8,pos:6,val:-24.ico │ ├── id:000900,src:000838,op:flip2,pos:4.ico │ ├── id:000901,src:000838,op:flip4,pos:4.ico │ ├── id:000902,src:000838,op:arith8,pos:4,val:+5.ico │ ├── id:000904,src:000838,op:arith8,pos:4,val:+10.ico │ ├── id:000909,src:000838,op:arith8,pos:4,val:+17.ico │ ├── id:000910,src:000838,op:arith8,pos:4,val:+18.ico │ ├── id:000911,src:000838,op:arith8,pos:4,val:+19.ico │ ├── id:000912,src:000838,op:arith8,pos:4,val:+21.ico │ ├── id:000915,src:000838,op:arith8,pos:4,val:+24.ico │ ├── id:000918,src:000840,op:havoc,rep:2.ico │ ├── id:000925,src:000843,op:flip2,pos:4.ico │ ├── id:000927,src:000843,op:arith8,pos:4,val:-4.ico │ ├── id:000929,src:000843,op:arith8,pos:4,val:+6.ico │ ├── id:000935,src:000843,op:arith8,pos:4,val:+17.ico │ ├── id:000940,src:000843,op:havoc,rep:2.ico │ ├── id:000942,src:000843,op:havoc,rep:4.ico │ ├── id:000947,src:000847,op:flip1,pos:4.ico │ ├── id:000959,src:000847,op:havoc,rep:4.ico │ ├── id:000960,src:000848,op:arith8,pos:4,val:+10.ico │ ├── id:000965,src:000851,op:arith8,pos:4,val:-28.ico │ ├── id:000966,src:000851,op:arith8,pos:14,val:+23.ico │ ├── id:000967,src:000851,op:int8,pos:119,val:+0.ico │ ├── id:000970,src:000851,op:havoc,rep:2.ico │ ├── id:000971,src:000851,op:havoc,rep:4.ico │ ├── id:000974,src:000851,op:havoc,rep:2.ico │ ├── id:000983,src:000861,op:havoc,rep:2.ico │ ├── id:000984,src:000861,op:havoc,rep:1.ico │ ├── id:000985,src:000861,op:havoc,rep:4.ico │ ├── id:000988,src:000861,op:havoc,rep:4.ico │ ├── id:000991,src:000868,op:havoc,rep:1.ico │ ├── id:000995,src:000907,op:havoc,rep:4.ico │ ├── id:000997,src:000920,op:flip2,pos:14.ico │ ├── id:001001,src:000944,op:int32,pos:11,val:be:+32.ico │ ├── id:001004,src:000953,op:arith8,pos:6,val:-30.ico │ ├── id:001008,src:000961,op:flip1,pos:4.ico │ ├── id:001012,src:000961,op:arith8,pos:4,val:-2.ico │ ├── id:001014,src:000961,op:arith8,pos:4,val:-3.ico │ ├── id:001015,src:000961,op:arith8,pos:4,val:+12.ico │ ├── id:001018,src:000961,op:arith8,pos:4,val:+18.ico │ ├── id:001019,src:000961,op:arith8,pos:4,val:+20.ico │ ├── id:001022,src:000961,op:arith8,pos:4,val:+32.ico │ ├── id:001026,src:000961,op:int8,pos:4,val:+100.ico │ ├── id:001027,src:000961,op:int8,pos:4,val:+127.ico │ ├── id:001031,src:000961,op:havoc,rep:1.ico │ ├── id:001033,src:000961,op:havoc,rep:1.ico │ ├── id:001034,src:000961,op:havoc,rep:2.ico │ ├── id:001036,src:000967,op:arith8,pos:14,val:+23.ico │ ├── id:001041,src:000974,op:havoc,rep:1.ico │ ├── id:001046,src:000980,op:flip2,pos:8.ico │ ├── id:001048,src:000988,op:arith8,pos:4,val:-2.ico │ ├── id:001050,src:000988,op:arith8,pos:4,val:+10.ico │ ├── id:001055,src:001000,op:arith8,pos:4,val:+15.ico │ ├── id:001056,src:001000,op:arith8,pos:4,val:+28.ico │ ├── id:001064,src:001006,op:arith8,pos:4,val:+26.ico │ ├── id:001066,src:001006,op:arith8,pos:4,val:+33.ico │ ├── id:001071,src:001006,op:havoc,rep:4.ico │ ├── id:001072,src:001017,op:flip1,pos:4.ico │ ├── id:001073,src:001017,op:flip2,pos:4.ico │ ├── id:001074,src:001017,op:flip4,pos:4.ico │ ├── id:001075,src:001017,op:arith8,pos:4,val:+27.ico │ ├── id:001078,src:001017,op:havoc,rep:2.ico │ ├── id:001080,src:001017,op:havoc,rep:1.ico │ ├── id:001081,src:001017,op:havoc,rep:2.ico │ ├── id:001082,src:001017,op:havoc,rep:1.ico │ ├── id:001084,src:001023,op:flip1,pos:4.ico │ ├── id:001085,src:001023,op:arith8,pos:14,val:+3.ico │ ├── id:001087,src:001028,op:flip1,pos:4.ico │ ├── id:001088,src:001034,op:arith8,pos:4,val:+17.ico │ ├── id:001090,src:001039,op:arith8,pos:4,val:-28.ico │ ├── id:001096,src:001040,op:havoc,rep:32.ico │ ├── id:001104,src:001057,op:flip1,pos:4.ico │ ├── id:001111,src:001061,op:havoc,rep:4.ico │ ├── id:001113,src:001065,op:arith8,pos:14,val:+3.ico │ ├── id:001126,src:001118,op:flip8,pos:4.ico │ ├── id:001129,src:001118,op:havoc,rep:4.ico │ ├── id:001134,src:001122,op:flip1,pos:151.ico │ ├── id:001137,src:001122,op:arith8,pos:4,val:-21.ico │ ├── id:001140,src:001122,op:havoc,rep:1.ico │ ├── id:001141,src:001122,op:havoc,rep:8.ico │ ├── id:001150,src:001123,op:int16,pos:326,val:+0.ico │ ├── id:001152,src:001123,op:havoc,rep:2.ico │ ├── id:001154,src:001123,op:havoc,rep:4.ico │ ├── id:001159,src:001129,op:havoc,rep:128.ico │ ├── id:001166,src:001160,op:flip1,pos:818.ico │ ├── id:001167,src:001160,op:flip16,pos:710.ico │ ├── id:001171,src:001160,op:havoc,rep:32.ico │ ├── id:001173,src:001161,op:havoc,rep:8.ico │ ├── id:001174,src:001162,op:flip1,pos:4.ico │ ├── id:001175,src:001162,op:flip1,pos:4.ico │ ├── id:001183,src:001163,op:int16,pos:4,val:+32.ico │ ├── id:001185,src:001180,op:flip1,pos:4.ico │ ├── id:001189,src:001008,op:flip1,pos:4.ico │ ├── id:001190,src:001012,op:flip1,pos:4.ico │ ├── id:001191,src:001077,op:arith8,pos:4,val:+23.ico │ ├── id:001192,src:001077,op:arith8,pos:4,val:+28.ico │ ├── id:001193,src:001077,op:arith8,pos:4,val:+33.ico │ ├── id:001194,src:001085,op:arith8,pos:4,val:+12.ico │ ├── id:001201,src:001166,op:havoc,rep:2.ico │ ├── id:001206,src:001201,op:havoc,rep:4.ico │ ├── id:001207,src:001201,op:havoc,rep:2.ico │ ├── id:001211,src:001201,op:havoc,rep:4.ico │ ├── id:001216,src:001204,op:flip2,pos:14.ico │ ├── id:001217,src:001204,op:havoc,rep:16.ico │ ├── id:001218,src:001204,op:havoc,rep:2.ico │ ├── id:001221,src:001209,op:flip1,pos:8.ico │ ├── id:001222,src:001209,op:flip1,pos:1362.ico │ ├── id:001225,src:001209,op:flip1,pos:1650.ico │ ├── id:001227,src:001209,op:arith8,pos:1010,val:+14.ico │ ├── id:001231,src:001210,op:flip1,pos:1815.ico │ ├── id:001234,src:001210,op:flip2,pos:32.ico │ ├── id:001235,src:001210,op:flip2,pos:1938.ico │ ├── id:001236,src:001210,op:flip2,pos:2002.ico │ ├── id:001238,src:001210,op:flip8,pos:4.ico │ ├── id:001239,src:001210,op:flip16,pos:1783.ico │ ├── id:001241,src:001210,op:arith8,pos:14,val:+7.ico │ ├── id:001244,src:001210,op:arith8,pos:14,val:+31.ico │ ├── id:001245,src:001210,op:arith8,pos:1954,val:-16.ico │ ├── id:001246,src:001210,op:arith8,pos:1975,val:-2.ico │ ├── id:001247,src:001210,op:int8,pos:2007,val:+0.ico │ ├── id:001248,src:001210,op:int16,pos:13,val:+1024.ico │ ├── id:001250,src:001210,op:havoc,rep:1.ico │ ├── id:001258,src:001219,op:flip8,pos:42.ico │ ├── id:001261,src:000779,op:flip2,pos:5.ico │ ├── id:001262,src:000941,op:flip1,pos:162.ico │ ├── id:001263,src:000941,op:flip1,pos:210.ico │ ├── id:001266,src:000977,op:flip1,pos:146.ico │ ├── id:001268,src:001031,op:flip2,pos:4.ico │ ├── id:001269,src:001031,op:flip8,pos:4.ico │ ├── id:001270,src:001031,op:arith8,pos:4,val:+5.ico │ ├── id:001271,src:001031,op:arith8,pos:4,val:+25.ico │ ├── id:001272,src:001061,op:havoc,rep:2.ico │ ├── id:001276,src:001163,op:havoc,rep:16.ico │ ├── id:001278,src:001163,op:havoc,rep:8.ico │ ├── id:001280,src:001163,op:havoc,rep:2.ico │ ├── id:001284,src:001206,op:flip1,pos:807.ico │ ├── id:001289,src:001206,op:flip1,pos:1378.ico │ ├── id:001291,src:001206,op:havoc,rep:1.ico │ ├── id:001292,src:001014,op:flip4,pos:4.ico │ ├── id:001293,src:001027,op:arith8,pos:4,val:+12.ico │ ├── id:001294,src:001027,op:arith8,pos:4,val:+13.ico │ ├── id:001296,src:001027,op:arith8,pos:4,val:+24.ico │ ├── id:001297,src:001027,op:arith8,pos:4,val:+27.ico │ ├── id:001298,src:001027,op:arith8,pos:4,val:+28.ico │ ├── id:001302,src:001067,op:flip1,pos:4.ico │ ├── id:001303,src:001078,op:flip8,pos:4.ico │ ├── id:001304,src:001079,op:flip1,pos:4.ico │ ├── id:001305,src:001081,op:flip1,pos:4.ico │ ├── id:001306,src:001084,op:flip1,pos:4.ico │ ├── id:001307,src:001084,op:flip4,pos:4.ico │ ├── id:001320,src:001195,op:arith8,pos:6,val:-24.ico │ ├── id:001328,src:001220,op:arith8,pos:8,val:+6.ico │ ├── id:001329,src:001234,op:arith8,pos:14,val:+23.ico │ ├── id:001334,src:001241,op:flip1,pos:1938.ico │ ├── id:001335,src:001241,op:flip1,pos:1954.ico │ ├── id:001336,src:001241,op:flip1,pos:1954.ico │ ├── id:001337,src:001241,op:flip1,pos:1970.ico │ ├── id:001338,src:001241,op:flip1,pos:1971.ico │ ├── id:001339,src:001241,op:flip1,pos:1986.ico │ ├── id:001342,src:001241,op:flip1,pos:2002.ico │ ├── id:001343,src:001241,op:flip1,pos:2002.ico │ ├── id:001345,src:001241,op:flip1,pos:2034.ico │ ├── id:001346,src:001249,op:flip1,pos:2706.ico │ ├── id:001350,src:001253+001310,op:splice,rep:32.ico │ ├── id:001354,src:001273,op:arith8,pos:4,val:-6.ico │ ├── id:001358,src:000150+000744,op:splice,rep:2.ico │ ├── id:001360,src:000150+001219,op:splice,rep:2.ico │ ├── id:001361,src:000150+001219,op:splice,rep:4.ico │ ├── id:001362,src:000161+001206,op:splice,rep:2.ico │ ├── id:001372,src:000161+001227,op:splice,rep:4.ico │ ├── id:001378,src:000161+001227,op:splice,rep:1.ico │ ├── id:001379,src:000161+001227,op:splice,rep:4.ico │ ├── id:001381,src:000161+001227,op:splice,rep:4.ico │ ├── id:001384,src:000161+000958,op:splice,rep:4.ico │ ├── id:001387,src:000524+000796,op:splice,rep:2.ico │ ├── id:001390,src:000608+001334,op:splice,rep:32.ico │ ├── id:001391,src:000685,op:havoc,rep:2.ico │ ├── id:001392,src:000685,op:havoc,rep:4.ico │ ├── id:001393,src:000702+000504,op:splice,rep:16,+cov.ico │ ├── id:001399,src:001393,op:int16,pos:15,val:+0,+cov.ico │ ├── id:001400,src:001393,op:havoc,rep:4.ico │ ├── id:001401,src:001393,op:havoc,rep:1.ico │ ├── id:001406,src:000408,op:havoc,rep:4.ico │ ├── id:001409,src:000998,op:arith8,pos:4,val:-5.ico │ ├── id:001411,src:001120+001236,op:splice,rep:16.ico │ ├── id:001413,src:000161+001375,op:splice,rep:8.ico │ ├── id:001414,src:000435+001199,op:splice,rep:4.ico │ ├── id:001415,src:000865,op:arith8,pos:4,val:+4.ico │ ├── id:001418,src:001071+001354,op:splice,rep:8.ico │ ├── id:001419,src:001113,op:havoc,rep:4.ico │ ├── id:001436,src:001261+001243,op:splice,rep:1.ico │ ├── id:001440,src:001420,op:arith8,pos:6,val:-24.ico │ ├── id:001444,src:001426+001348,op:splice,rep:2.ico │ ├── id:001445,src:001432,op:flip2,pos:4.ico │ ├── id:001451,src:000149+001254,op:splice,rep:1.ico │ ├── id:001453,src:000149+001131,op:splice,rep:4.ico │ ├── id:001455,src:000149+001131,op:splice,rep:4.ico │ ├── id:001457,src:000149+001131,op:splice,rep:1.ico │ ├── id:001458,src:000149+001131,op:splice,rep:8.ico │ ├── id:001466,src:000149+001322,op:splice,rep:2.ico │ ├── id:001474,src:000680,op:havoc,rep:4.ico │ ├── id:001484,src:000687,op:havoc,rep:1.ico │ ├── id:001488,src:001131,op:arith8,pos:626,val:+14.ico │ ├── id:001491,src:001198,op:arith8,pos:14,val:+31.ico │ ├── id:001492,src:001198,op:int32,pos:801,val:be:+1024.ico │ ├── id:001493,src:001261+001349,op:splice,rep:8.ico │ ├── id:001496,src:001428,op:flip1,pos:1922.ico │ ├── id:001498,src:001428,op:flip4,pos:1826.ico │ ├── id:001500,src:001428,op:arith8,pos:1922,val:-27.ico │ ├── id:001501,src:001428,op:arith8,pos:2050,val:-10.ico │ ├── id:001508,src:001450+000803,op:splice,rep:16.ico │ ├── id:001510,src:001499,op:flip1,pos:32.ico │ ├── id:001514,src:000768+000159,op:splice,rep:8.ico │ ├── id:001515,src:000800,op:arith8,pos:6,val:-31.ico │ ├── id:001516,src:000837,op:havoc,rep:2.ico │ ├── id:001517,src:000923,op:havoc,rep:1.ico │ ├── id:001518,src:001010,op:flip1,pos:32.ico │ ├── id:001523,src:001242,op:flip1,pos:2034.ico │ ├── id:001524,src:001242,op:flip1,pos:2050.ico │ ├── id:001525,src:001242,op:flip2,pos:1618.ico │ ├── id:001530,src:001431+001366,op:splice,rep:8.ico │ ├── id:001535,src:000753,op:havoc,rep:8.ico │ ├── id:001536,src:001535,op:arith8,pos:32,val:+6.ico │ ├── id:001545,src:001418,op:arith8,pos:4,val:-2.ico │ ├── id:001553,src:001321,op:flip1,pos:39.ico │ ├── id:001554,src:001321,op:flip2,pos:4.ico │ ├── id:001558,src:001554,op:flip1,pos:71.ico │ ├── id:001561,src:001554,op:flip8,pos:439.ico │ ├── id:001572,src:001561+001479,op:splice,rep:8.ico │ ├── id:001584,src:000508,op:havoc,rep:32.ico │ ├── id:001585,src:000508,op:havoc,rep:4.ico │ ├── id:001587,src:000508,op:havoc,rep:2.ico │ ├── id:001589,src:000555,op:havoc,rep:8.ico │ ├── id:001590,src:000555,op:havoc,rep:2.ico │ ├── id:001591,src:000555,op:havoc,rep:1.ico │ ├── id:001592,src:000712,op:havoc,rep:4.ico │ ├── id:001593,src:000827,op:havoc,rep:1.ico │ ├── id:001595,src:001105,op:flip2,pos:10.ico │ ├── id:001599,src:001407,op:havoc,rep:64.ico │ ├── id:001604,src:001431,op:havoc,rep:8.ico │ ├── id:001607,src:001493,op:havoc,rep:4.ico │ ├── id:001608,src:001493,op:havoc,rep:2.ico │ ├── id:001609,src:001493,op:havoc,rep:2.ico │ ├── id:001614,src:001493,op:havoc,rep:8.ico │ ├── id:001618,src:001493,op:havoc,rep:8.ico │ ├── id:001622,src:001493,op:havoc,rep:2.ico │ ├── id:001627,src:001493,op:havoc,rep:16.ico │ ├── id:001631,src:001592,op:flip16,pos:7.ico │ ├── id:001634,src:000997,op:havoc,rep:4.ico │ └── id:001655,src:001309,op:havoc,rep:1.ico │ ├── bmp │ ├── bad_info_header_size.bmp │ ├── int_min_height.bmp │ ├── mantis-2446.bmp │ └── ns.bmp │ ├── bmpsuite │ ├── coloob.bmp │ ├── g01bg.bmp │ ├── g01bw.bmp │ ├── g01p1.bmp │ ├── g01wb.bmp │ ├── g04.bmp │ ├── g04p4.bmp │ ├── g04rle.bmp │ ├── g08.bmp │ ├── g08offs.bmp │ ├── g08os2.bmp │ ├── g08p256.bmp │ ├── g08p64.bmp │ ├── g08pi256.bmp │ ├── g08pi64.bmp │ ├── g08res11.bmp │ ├── g08res21.bmp │ ├── g08res22.bmp │ ├── g08rle.bmp │ ├── g08s0.bmp │ ├── g08w124.bmp │ ├── g08w125.bmp │ ├── g08w126.bmp │ ├── g16bf555.bmp │ ├── g16bf565.bmp │ ├── g16def555.bmp │ ├── g24.bmp │ ├── g32bf.bmp │ ├── g32def.bmp │ ├── png │ │ ├── 01bg.png │ │ ├── 01bw.png │ │ ├── 01p1.png │ │ ├── 04.png │ │ ├── 04p4.png │ │ ├── 08.png │ │ ├── 08p64.png │ │ ├── 08w124.png │ │ ├── 08w125.png │ │ ├── 08w126.png │ │ ├── 16bf555.png │ │ ├── 16bf565.png │ │ ├── 24.png │ │ └── reference.html │ ├── readme.txt │ ├── rleof.bmp │ └── test.html │ ├── decode_bmp.c │ ├── decode_ico.c │ ├── icons │ ├── liberation.fr.favicon.ico │ ├── liberation.fr.favicon.ppm │ ├── monitor.ico │ └── ns.ico │ ├── ns-afl-bmp │ ├── id:000006,orig:g24.bmp │ ├── id:000007,orig:g32def.bmp │ ├── id:000008,orig:bad_info_header_size.bmp │ ├── id:000009,orig:id:000004,src:000000,op:havoc,rep:128,+cov.bmp │ ├── id:000010,orig:id:000006,src:000000,op:havoc,rep:16,+cov.bmp │ ├── id:000011,orig:id:000006,src:000000,op:havoc,rep:64,+cov.bmp │ ├── id:000012,orig:id:000007,src:000000,op:havoc,rep:2,+cov.bmp │ ├── id:000013,orig:id:000010,src:000000,op:havoc,rep:4,+cov.bmp │ ├── id:000017,orig:id:000032,src:000000+000002,op:splice,rep:32,+cov.bmp │ ├── id:000018,orig:id:000032,src:000000+000003,op:splice,rep:32.bmp │ ├── id:000019,orig:id:000034,src:000000+000002,op:splice,rep:64.bmp │ ├── id:000020,orig:id:000038,src:000000+000003,op:splice,rep:64,+cov.bmp │ ├── id:000024,orig:id:000046,src:000000+000002,op:splice,rep:64,+cov.bmp │ ├── id:000027,orig:id:000049,src:000000+000003,op:splice,rep:64,+cov.bmp │ ├── id:000028,orig:id:000052,src:000000+000003,op:splice,rep:2.bmp │ ├── id:000031,orig:id:000056,src:000000+000003,op:splice,rep:128.bmp │ ├── id:000032,orig:id:000058,src:000000+000003,op:splice,rep:32.bmp │ ├── id:000033,orig:id:000060,src:000000+000002,op:splice,rep:32,+cov.bmp │ ├── id:000034,orig:id:000063,src:000000+000002,op:splice,rep:128,+cov.bmp │ ├── id:000035,orig:id:000066,sync:fuzz04,src:000252,+cov.bmp │ ├── id:000036,orig:id:000069,sync:fuzz04,src:000287,+cov.bmp │ ├── id:000037,orig:id:000071,src:000000+000002,op:splice,rep:64,+cov.bmp │ ├── id:000038,orig:id:000071,sync:fuzz04,src:000286,+cov.bmp │ ├── id:000039,orig:id:000075,src:000000+000002,op:splice,rep:64,+cov.bmp │ ├── id:000040,orig:id:000076,sync:fuzz04,src:000277,+cov.bmp │ ├── id:000041,orig:id:000077,sync:fuzz04,src:000295.bmp │ ├── id:000042,orig:id:000082,src:000000+000002,op:splice,rep:32.bmp │ ├── id:000043,orig:id:000083,sync:fuzz04,src:000014,+cov.bmp │ ├── id:000044,orig:id:000086,src:000000+000002,op:splice,rep:16.bmp │ ├── id:000045,orig:id:000087,sync:fuzz02,src:000016,+cov.bmp │ ├── id:000046,orig:id:000091,src:000000+000002,op:splice,rep:16,+cov.bmp │ ├── id:000047,orig:id:000094,sync:fuzz03,src:000043,+cov.bmp │ ├── id:000049,orig:id:000103,sync:fuzz03,src:000101,+cov.bmp │ ├── id:000050,orig:id:000104,sync:fuzz04,src:000297.bmp │ ├── id:000052,orig:id:000108,sync:fuzz04,src:000276.bmp │ ├── id:000053,orig:id:000114,src:000002,op:arith8,pos:18,val:-11,+cov.bmp │ ├── id:000054,orig:id:000119,src:000002,op:arith8,pos:46,val:+19,+cov.bmp │ ├── id:000056,orig:id:000122,src:000000,op:havoc,rep:32,+cov.bmp │ ├── id:000057,orig:id:000122,sync:fuzz04,src:000122.bmp │ ├── id:000058,orig:id:000127,sync:fuzz04,src:000089,+cov.bmp │ ├── id:000060,orig:id:000131,src:000005+000095,op:splice,rep:32.bmp │ ├── id:000061,orig:id:000133,src:000002,op:int16,pos:18,val:+32.bmp │ ├── id:000063,orig:id:000135,src:000000,op:havoc,rep:4.bmp │ ├── id:000064,orig:id:000137,sync:fuzz04,src:000091.bmp │ ├── id:000065,orig:id:000141,src:000002,op:int16,pos:1090,val:+512,+cov.bmp │ ├── id:000066,orig:id:000141,sync:fuzz04,src:000078.bmp │ ├── id:000067,orig:id:000143,sync:fuzz04,src:000036,+cov.bmp │ ├── id:000069,orig:id:000146,src:000002,op:int32,pos:27,val:+4096,+cov.bmp │ ├── id:000070,orig:id:000148,sync:fuzz04,src:000034.bmp │ ├── id:000071,orig:id:000150,src:000007+000134,op:splice,rep:32.bmp │ ├── id:000073,orig:id:000151,sync:fuzz04,src:000072,+cov.bmp │ ├── id:000075,orig:id:000164,src:000008+000135,op:splice,rep:32.bmp │ ├── id:000076,orig:id:000165,sync:fuzz04,src:000143.bmp │ ├── id:000077,orig:id:000166,sync:fuzz04,src:000026.bmp │ ├── id:000080,orig:id:000169,sync:fuzz05,src:000167,+cov.bmp │ ├── id:000083,orig:id:000171,sync:fuzz04,src:000125.bmp │ ├── id:000084,orig:id:000172,sync:fuzz04,src:000158.bmp │ ├── id:000086,orig:id:000175,sync:fuzz04,src:000114.bmp │ ├── id:000087,orig:id:000176,src:000009+000159,op:splice,rep:8.bmp │ ├── id:000088,orig:id:000177,sync:fuzz04,src:000289.bmp │ ├── id:000089,orig:id:000178,src:000009+000159,op:splice,rep:8.bmp │ ├── id:000090,orig:id:000178,sync:fuzz04,src:000278.bmp │ ├── id:000091,orig:id:000180,sync:fuzz03,src:000149,+cov.bmp │ ├── id:000094,orig:id:000183,sync:fuzz04,src:000293.bmp │ ├── id:000095,orig:id:000184,src:000002,op:havoc,rep:128.bmp │ ├── id:000097,orig:id:000185,src:000009+000159,op:splice,rep:2.bmp │ ├── id:000098,orig:id:000186,src:000009+000159,op:splice,rep:4,+cov.bmp │ ├── id:000099,orig:id:000186,sync:fuzz05,src:000156.bmp │ ├── id:000100,orig:id:000188,src:000009,op:havoc,rep:2,+cov.bmp │ ├── id:000102,orig:id:000189,src:000009,op:havoc,rep:2,+cov.bmp │ ├── id:000104,orig:id:000191,sync:fuzz04,src:000070,+cov.bmp │ ├── id:000105,orig:id:000191,sync:fuzz04,src:000087,+cov.bmp │ ├── id:000106,orig:id:000193,src:000011+000118,op:splice,rep:64,+cov.bmp │ ├── id:000108,orig:id:000194,sync:fuzz06,src:000254,+cov.bmp │ ├── id:000109,orig:id:000196,sync:fuzz06,src:000179.bmp │ ├── id:000111,orig:id:000198,src:000009+000038,op:splice,rep:32.bmp │ ├── id:000112,orig:id:000198,src:000012,op:havoc,rep:16.bmp │ ├── id:000113,orig:id:000198,src:000027,op:havoc,rep:32.bmp │ ├── id:000114,orig:id:000198,sync:fuzz04,src:000112.bmp │ ├── id:000118,orig:id:000199,sync:fuzz06,src:000170,+cov.bmp │ ├── id:000121,orig:id:000201,src:000027,op:havoc,rep:16,+cov.bmp │ ├── id:000122,orig:id:000202,sync:fuzz04,src:000132,+cov.bmp │ ├── id:000123,orig:id:000202,sync:fuzz04,src:000170.bmp │ ├── id:000125,orig:id:000203,sync:fuzz04,src:000133.bmp │ ├── id:000126,orig:id:000203,sync:fuzz04,src:000292.bmp │ ├── id:000128,orig:id:000204,src:000012,op:havoc,rep:8.bmp │ ├── id:000129,orig:id:000204,sync:fuzz04,src:000088,+cov.bmp │ ├── id:000130,orig:id:000204,sync:fuzz04,src:000225.bmp │ ├── id:000131,orig:id:000204,sync:fuzz06,src:000251,+cov.bmp │ ├── id:000132,orig:id:000205,src:000011+000170,op:splice,rep:4.bmp │ ├── id:000133,orig:id:000205,sync:fuzz04,src:000271.bmp │ ├── id:000134,orig:id:000205,sync:fuzz04,src:000302.bmp │ ├── id:000137,orig:id:000206,src:000014,op:havoc,rep:32,+cov.bmp │ ├── id:000138,orig:id:000206,sync:fuzz02,src:000259.bmp │ ├── id:000139,orig:id:000206,sync:fuzz04,src:000171.bmp │ ├── id:000141,orig:id:000206,sync:fuzz06,src:000180,+cov.bmp │ ├── id:000142,orig:id:000207,sync:fuzz04,src:000024.bmp │ ├── id:000143,orig:id:000207,sync:fuzz04,src:000227.bmp │ ├── id:000144,orig:id:000207,sync:fuzz04,src:000279.bmp │ ├── id:000145,orig:id:000207,sync:fuzz06,src:000182,+cov.bmp │ ├── id:000147,orig:id:000208,sync:fuzz04,src:000095.bmp │ ├── id:000148,orig:id:000210,src:000014,op:havoc,rep:16,+cov.bmp │ ├── id:000149,orig:id:000210,sync:fuzz04,src:000272.bmp │ ├── id:000150,orig:id:000210,sync:fuzz06,src:000189.bmp │ ├── id:000151,orig:id:000210,sync:fuzz06,src:000191,+cov.bmp │ ├── id:000152,orig:id:000210,sync:fuzz06,src:000226.bmp │ ├── id:000153,orig:id:000211,src:000014,op:havoc,rep:32,+cov.bmp │ ├── id:000154,orig:id:000211,sync:fuzz04,src:000173.bmp │ ├── id:000155,orig:id:000211,sync:fuzz04,src:000189,+cov.bmp │ ├── id:000156,orig:id:000211,sync:fuzz06,src:000188.bmp │ ├── id:000158,orig:id:000212,sync:fuzz04,src:000248.bmp │ ├── id:000159,orig:id:000212,sync:fuzz06,src:000187.bmp │ ├── id:000161,orig:id:000213,sync:fuzz04,src:000177,+cov.bmp │ ├── id:000162,orig:id:000213,sync:fuzz04,src:000274.bmp │ ├── id:000163,orig:id:000213,sync:fuzz06,src:000175,+cov.bmp │ ├── id:000164,orig:id:000213,sync:fuzz06,src:000232.bmp │ ├── id:000166,orig:id:000214,sync:fuzz02,src:000253.bmp │ ├── id:000167,orig:id:000214,sync:fuzz04,src:000181.bmp │ ├── id:000168,orig:id:000214,sync:fuzz06,src:000204.bmp │ ├── id:000169,orig:id:000215,src:000000,op:havoc,rep:32.bmp │ ├── id:000171,orig:id:000215,sync:fuzz04,src:000298.bmp │ ├── id:000173,orig:id:000215,sync:fuzz06,src:000186.bmp │ ├── id:000176,orig:id:000216,src:000014,op:havoc,rep:64,+cov.bmp │ ├── id:000178,orig:id:000216,sync:fuzz03,src:000200,+cov.bmp │ ├── id:000181,orig:id:000216,sync:fuzz06,src:000190.bmp │ ├── id:000182,orig:id:000216,sync:fuzz06,src:000247,+cov.bmp │ ├── id:000183,orig:id:000217,sync:fuzz04,src:000211,+cov.bmp │ ├── id:000184,orig:id:000217,sync:fuzz04,src:000236.bmp │ ├── id:000186,orig:id:000217,sync:fuzz06,src:000174.bmp │ ├── id:000187,orig:id:000217,sync:fuzz06,src:000249.bmp │ ├── id:000189,orig:id:000218,src:000008+000206,op:splice,rep:8.bmp │ ├── id:000191,orig:id:000218,sync:fuzz04,src:000235,+cov.bmp │ ├── id:000192,orig:id:000218,sync:fuzz04,src:000269.bmp │ ├── id:000193,orig:id:000218,sync:fuzz06,src:000207.bmp │ ├── id:000196,orig:id:000218,sync:fuzz06,src:000244.bmp │ ├── id:000197,orig:id:000219,src:000008+000206,op:splice,rep:16.bmp │ ├── id:000198,src:000000,op:havoc,rep:64,+cov.bmp │ ├── id:000207,src:000000,op:havoc,rep:4.bmp │ ├── id:000213,src:000000,op:havoc,rep:16.bmp │ ├── id:000237,src:000000,op:flip1,pos:165.bmp │ ├── id:000239,src:000000,op:havoc,rep:16.bmp │ ├── id:000246,src:000000,op:havoc,rep:32.bmp │ ├── id:000247,src:000000,op:havoc,rep:64,+cov.bmp │ ├── id:000249,src:000000,op:havoc,rep:64.bmp │ ├── id:000252,src:000000,op:havoc,rep:4,+cov.bmp │ ├── id:000259,src:000000,op:havoc,rep:16.bmp │ ├── id:000267,src:000000,op:havoc,rep:64.bmp │ ├── id:000273,src:000000,op:flip2,pos:46.bmp │ ├── id:000275,src:000000,op:havoc,rep:128.bmp │ ├── id:000276,src:000000,op:havoc,rep:32.bmp │ ├── id:000281,src:000000,op:flip4,pos:18.bmp │ ├── id:000281,src:000000,op:havoc,rep:8.bmp │ ├── id:000283,src:000000,op:havoc,rep:32.bmp │ ├── id:000288,src:000000,op:havoc,rep:32.bmp │ ├── id:000291,src:000000,op:havoc,rep:128.bmp │ ├── id:000294,src:000000,op:havoc,rep:64.bmp │ ├── id:000296,src:000000,op:havoc,rep:16,+cov.bmp │ ├── id:000297,src:000000,op:havoc,rep:8.bmp │ ├── id:000300,src:000000,op:havoc,rep:64,+cov.bmp │ ├── id:000301,src:000000,op:havoc,rep:4,+cov.bmp │ ├── id:000301,src:000000,op:havoc,rep:8,+cov.bmp │ ├── id:000302,src:000000,op:havoc,rep:64.bmp │ ├── id:000302,src:000000,op:havoc,rep:8.bmp │ ├── id:000307,src:000000,op:havoc,rep:32.bmp │ ├── id:000308,src:000000,op:havoc,rep:8.bmp │ ├── id:000310,src:000000,op:havoc,rep:8.bmp │ ├── id:000313,src:000000,op:havoc,rep:16,+cov.bmp │ ├── id:000313,src:000000,op:int16,pos:17,val:+1024.bmp │ ├── id:000316,src:000000+000257,op:splice,rep:64.bmp │ ├── id:000317,src:000000,op:havoc,rep:4.bmp │ ├── id:000320,src:000000,op:havoc,rep:16.bmp │ ├── id:000322,src:000000,op:havoc,rep:32.bmp │ ├── id:000322,sync:fuzz04,src:000281.bmp │ ├── id:000324,src:000000,op:havoc,rep:8.bmp │ ├── id:000325,src:000000+000038,op:splice,rep:2.bmp │ ├── id:000335,sync:fuzz04,src:000321,+cov.bmp │ ├── id:000345,sync:fuzz02,src:000341.bmp │ ├── id:000347,src:000000,op:havoc,rep:32.bmp │ ├── id:000353,src:000000,op:havoc,rep:32,+cov.bmp │ ├── id:000354,src:000000,op:havoc,rep:32.bmp │ ├── id:000362,sync:fuzz04,src:000314.bmp │ ├── id:000367,sync:fuzz04,src:000322,+cov.bmp │ ├── id:000368,sync:fuzz04,src:000337.bmp │ ├── id:000369,sync:fuzz04,src:000340,+cov.bmp │ ├── id:000373,src:000012+000081,op:splice,rep:32.bmp │ ├── id:000376,sync:fuzz02,src:000375.bmp │ ├── id:000381,sync:fuzz03,src:000379.bmp │ ├── id:000381,sync:fuzz04,src:000342,+cov.bmp │ ├── id:000384,sync:fuzz03,src:000368.bmp │ ├── id:000384,sync:fuzz04,src:000341.bmp │ ├── id:000388,sync:fuzz04,src:000359.bmp │ ├── id:000389,sync:fuzz04,src:000346.bmp │ ├── id:000393,sync:fuzz04,src:000350.bmp │ ├── id:000397,sync:fuzz04,src:000379.bmp │ ├── id:000400,sync:fuzz04,src:000343.bmp │ ├── id:000401,sync:fuzz04,src:000370.bmp │ ├── id:000403,sync:fuzz04,src:000309.bmp │ ├── id:000404,sync:fuzz04,src:000371.bmp │ ├── id:000411,sync:fuzz04,src:000372.bmp │ ├── id:000412,sync:fuzz04,src:000397,+cov.bmp │ ├── id:000419,sync:fuzz04,src:000389.bmp │ ├── id:000423,sync:fuzz04,src:000325.bmp │ ├── id:000424,src:000008+000350,op:splice,rep:16.bmp │ ├── id:000432,sync:fuzz06,src:000417.bmp │ ├── id:000435,src:000008+000350,op:splice,rep:8.bmp │ ├── id:000436,sync:fuzz04,src:000378.bmp │ ├── id:000443,sync:fuzz04,src:000349.bmp │ ├── id:000443,sync:fuzz04,src:000362.bmp │ ├── id:000445,src:000034+000427,op:splice,rep:2.bmp │ ├── id:000446,src:000013+000429,op:splice,rep:8.bmp │ ├── id:000448,src:000008+000350,op:splice,rep:8.bmp │ ├── id:000448,src:000013+000429,op:splice,rep:16.bmp │ ├── id:000451,sync:fuzz04,src:000344,+cov.bmp │ ├── id:000454,src:000034+000427,op:splice,rep:16.bmp │ ├── id:000454,sync:fuzz04,src:000339.bmp │ ├── id:000456,sync:fuzz04,src:000386.bmp │ ├── id:000457,src:000049+000417,op:splice,rep:16.bmp │ ├── id:000458,src:000034+000427,op:splice,rep:16.bmp │ ├── id:000460,src:000049+000417,op:splice,rep:32.bmp │ ├── id:000462,sync:fuzz06,src:000444.bmp │ ├── id:000463,sync:fuzz06,src:000445.bmp │ ├── id:000464,sync:fuzz06,src:000455.bmp │ ├── id:000466,sync:fuzz04,src:000438.bmp │ ├── id:000467,sync:fuzz04,src:000431.bmp │ ├── id:000469,sync:fuzz04,src:000433.bmp │ ├── id:000470,src:000013+000436,op:splice,rep:8.bmp │ ├── id:000471,sync:fuzz04,src:000289,+cov.bmp │ ├── id:000472,src:000013+000436,op:splice,rep:16.bmp │ ├── id:000476,src:000018+000459,op:splice,rep:4.bmp │ ├── id:000477,sync:fuzz05,src:000438.bmp │ ├── id:000478,src:000039+000437,op:splice,rep:32.bmp │ ├── id:000479,sync:fuzz05,src:000454.bmp │ ├── id:000483,sync:fuzz05,src:000445.bmp │ ├── id:000486,src:000058+000427,op:splice,rep:64.bmp │ ├── id:000488,sync:fuzz03,src:000456.bmp │ ├── id:000491,sync:fuzz02,src:000479.bmp │ ├── id:000496,sync:fuzz05,src:000487.bmp │ ├── id:000497,sync:fuzz05,src:000473.bmp │ ├── id:000501,sync:fuzz05,src:000480.bmp │ ├── id:000504,sync:fuzz06,src:000446.bmp │ ├── id:000506,sync:fuzz06,src:000475.bmp │ ├── id:000510,sync:fuzz06,src:000486,+cov.bmp │ ├── id:000511,sync:fuzz06,src:000476.bmp │ ├── id:000512,sync:fuzz04,src:000500.bmp │ ├── id:000512,sync:fuzz06,src:000495.bmp │ ├── id:000513,sync:fuzz06,src:000450.bmp │ ├── id:000519,sync:fuzz06,src:000470.bmp │ ├── id:000520,sync:fuzz04,src:000464.bmp │ ├── id:000521,sync:fuzz06,src:000487,+cov.bmp │ ├── id:000522,sync:fuzz06,src:000482.bmp │ ├── id:000522,sync:fuzz06,src:000508.bmp │ ├── id:000523,sync:fuzz02,src:000510.bmp │ ├── id:000524,sync:fuzz03,src:000503.bmp │ ├── id:000524,sync:fuzz04,src:000405.bmp │ ├── id:000525,sync:fuzz02,src:000507.bmp │ ├── id:000526,sync:fuzz02,src:000509.bmp │ ├── id:000526,sync:fuzz04,src:000503,+cov.bmp │ ├── id:000528,sync:fuzz05,src:000503.bmp │ ├── id:000530,sync:fuzz04,src:000361.bmp │ ├── id:000535,sync:fuzz06,src:000522.bmp │ ├── id:000538,src:000043+000447,op:splice,rep:4.bmp │ ├── id:000538,sync:fuzz04,src:000490.bmp │ ├── id:000539,sync:fuzz04,src:000460.bmp │ ├── id:000540,src:000092+000438,op:splice,rep:8.bmp │ ├── id:000541,sync:fuzz04,src:000302.bmp │ ├── id:000541,sync:fuzz04,src:000529.bmp │ ├── id:000542,sync:fuzz04,src:000527.bmp │ ├── id:000543,sync:fuzz04,src:000524,+cov.bmp │ ├── id:000545,sync:fuzz04,src:000526.bmp │ ├── id:000547,sync:fuzz04,src:000525.bmp │ ├── id:000550,sync:fuzz03,src:000546.bmp │ ├── id:000551,sync:fuzz06,src:000536.bmp │ ├── id:000552,sync:fuzz04,src:000481.bmp │ ├── id:000558,sync:fuzz04,src:000540.bmp │ ├── id:000562,sync:fuzz06,src:000559.bmp │ ├── id:000563,sync:fuzz04,src:000517.bmp │ ├── id:000563,sync:fuzz04,src:000552.bmp │ ├── id:000563,sync:fuzz06,src:000561.bmp │ ├── id:000564,sync:fuzz04,src:000553.bmp │ ├── id:000565,sync:fuzz04,src:000548.bmp │ ├── id:000565,sync:fuzz06,src:000557.bmp │ ├── id:000566,sync:fuzz04,src:000551.bmp │ ├── id:000567,sync:fuzz04,src:000554.bmp │ ├── id:000569,sync:fuzz03,src:000557.bmp │ ├── id:000573,src:000091+000520,op:splice,rep:64.bmp │ ├── id:000573,sync:fuzz04,src:000562.bmp │ ├── id:000575,src:000114+000556,op:splice,rep:16.bmp │ ├── id:000576,sync:fuzz04,src:000338.bmp │ ├── id:000576,sync:fuzz04,src:000566.bmp │ ├── id:000577,sync:fuzz04,src:000523.bmp │ ├── id:000578,src:000126,op:havoc,rep:32.bmp │ ├── id:000579,sync:fuzz04,src:000558.bmp │ ├── id:000581,src:000126,op:havoc,rep:32.bmp │ ├── id:000582,sync:fuzz04,src:000539,+cov.bmp │ ├── id:000583,sync:fuzz04,src:000543.bmp │ ├── id:000585,sync:fuzz04,src:000501,+cov.bmp │ ├── id:000587,sync:fuzz04,src:000549.bmp │ ├── id:000593,sync:fuzz04,src:000568.bmp │ ├── id:000595,src:000099+000590,op:splice,rep:64.bmp │ ├── id:000595,sync:fuzz04,src:000582,+cov.bmp │ ├── id:000598,sync:fuzz04,src:000385.bmp │ ├── id:000598,sync:fuzz04,src:000584.bmp │ ├── id:000598,sync:fuzz05,src:000585.bmp │ ├── id:000599,sync:fuzz04,src:000587.bmp │ ├── id:000599,sync:fuzz05,src:000583.bmp │ ├── id:000602,sync:fuzz04,src:000586.bmp │ ├── id:000604,sync:fuzz03,src:000595.bmp │ ├── id:000604,sync:fuzz04,src:000593.bmp │ ├── id:000605,sync:fuzz04,src:000574.bmp │ ├── id:000606,sync:fuzz04,src:000563,+cov.bmp │ ├── id:000607,sync:fuzz04,src:000581.bmp │ ├── id:000608,sync:fuzz02,src:000590.bmp │ ├── id:000608,sync:fuzz04,src:000546.bmp │ ├── id:000611,sync:fuzz05,src:000607.bmp │ ├── id:000612,src:000156+000604,op:splice,rep:64.bmp │ ├── id:000613,sync:fuzz04,src:000598.bmp │ ├── id:000615,sync:fuzz06,src:000607.bmp │ ├── id:000617,sync:fuzz04,src:000602.bmp │ ├── id:000618,sync:fuzz03,src:000608.bmp │ ├── id:000619,sync:fuzz03,src:000609.bmp │ ├── id:000620,sync:fuzz04,src:000505,+cov.bmp │ ├── id:000621,sync:fuzz04,src:000600.bmp │ ├── id:000621,sync:fuzz04,src:000614.bmp │ ├── id:000622,sync:fuzz02,src:000611.bmp │ ├── id:000622,sync:fuzz04,src:000609.bmp │ ├── id:000623,sync:fuzz07,src:000581.bmp │ ├── id:000625,src:000156+000393,op:splice,rep:64.bmp │ ├── id:000626,sync:fuzz04,src:000377.bmp │ ├── id:000626,sync:fuzz06,src:000626.bmp │ ├── id:000628,sync:fuzz04,src:000531.bmp │ ├── id:000629,sync:fuzz04,src:000388,+cov.bmp │ ├── id:000630,sync:fuzz06,src:000629.bmp │ ├── id:000632,sync:fuzz06,src:000630.bmp │ ├── id:000633,sync:fuzz04,src:000617.bmp │ ├── id:000634,sync:fuzz04,src:000618.bmp │ ├── id:000635,sync:fuzz04,src:000623.bmp │ ├── id:000638,sync:fuzz04,src:000629.bmp │ ├── id:000639,sync:fuzz04,src:000601.bmp │ ├── id:000639,sync:fuzz04,src:000622.bmp │ ├── id:000640,sync:fuzz04,src:000627.bmp │ ├── id:000640,sync:fuzz07,src:000605.bmp │ ├── id:000641,sync:fuzz04,src:000392.bmp │ ├── id:000641,sync:fuzz04,src:000630.bmp │ ├── id:000642,sync:fuzz02,src:000638.bmp │ ├── id:000647,sync:fuzz07,src:000613.bmp │ ├── id:000648,sync:fuzz04,src:000640.bmp │ ├── id:000651,sync:fuzz04,src:000633.bmp │ ├── id:000651,sync:fuzz07,src:000617.bmp │ ├── id:000654,sync:fuzz04,src:000636.bmp │ ├── id:000654,sync:fuzz04,src:000646.bmp │ ├── id:000656,sync:fuzz04,src:000648.bmp │ ├── id:000657,sync:fuzz04,src:000635.bmp │ ├── id:000658,sync:fuzz04,src:000643.bmp │ ├── id:000659,sync:fuzz04,src:000639.bmp │ ├── id:000661,sync:fuzz03,src:000656.bmp │ ├── id:000662,sync:fuzz04,src:000650,+cov.bmp │ ├── id:000666,src:000437+000635,op:splice,rep:32.bmp │ ├── id:000666,sync:fuzz02,src:000661.bmp │ ├── id:000667,sync:fuzz02,src:000659.bmp │ ├── id:000668,sync:fuzz04,src:000652,+cov.bmp │ ├── id:000670,sync:fuzz04,src:000663,+cov.bmp │ ├── id:000671,sync:fuzz04,src:000661.bmp │ ├── id:000673,sync:fuzz04,src:000659.bmp │ ├── id:000676,sync:fuzz04,src:000665.bmp │ ├── id:000679,sync:fuzz04,src:000666.bmp │ ├── id:000680,sync:fuzz04,src:000667.bmp │ ├── id:000681,sync:fuzz04,src:000672.bmp │ ├── id:000682,sync:fuzz04,src:000670.bmp │ ├── id:000683,sync:fuzz04,src:000668.bmp │ ├── id:000684,sync:fuzz02,src:000681.bmp │ ├── id:000686,sync:fuzz02,src:000684.bmp │ ├── id:000687,sync:fuzz02,src:000682.bmp │ ├── id:000687,sync:fuzz06,src:000685.bmp │ ├── id:000691,sync:fuzz02,src:000688.bmp │ ├── id:000693,src:000624+000664,op:splice,rep:8.bmp │ ├── id:000695,src:000624+000664,op:splice,rep:16.bmp │ ├── id:000696,src:000638,op:havoc,rep:4.bmp │ ├── id:000698,src:000644,op:havoc,rep:8.bmp │ ├── id:000698,sync:fuzz04,src:000682.bmp │ ├── id:000699,src:000640+000653,op:splice,rep:2.bmp │ ├── id:000699,sync:fuzz04,src:000679.bmp │ ├── id:000700,sync:fuzz04,src:000687.bmp │ ├── id:000701,sync:fuzz04,src:000684.bmp │ ├── id:000702,src:000674,op:havoc,rep:2.bmp │ ├── id:000702,sync:fuzz02,src:000696.bmp │ ├── id:000703,sync:fuzz02,src:000697.bmp │ ├── id:000705,sync:fuzz04,src:000694.bmp │ ├── id:000706,sync:fuzz03,src:000701.bmp │ ├── id:000706,sync:fuzz04,src:000758.bmp │ ├── id:000707,sync:fuzz03,src:000702.bmp │ ├── id:000708,src:000678,op:havoc,rep:2.bmp │ ├── id:000708,src:000697,op:havoc,rep:2.bmp │ ├── id:000709,src:000686,op:havoc,rep:2.bmp │ ├── id:000710,src:000698,op:havoc,rep:4.bmp │ ├── id:000711,src:000699+000581,op:splice,rep:4.bmp │ ├── id:000712,src:000040+000398,op:splice,rep:8.bmp │ ├── id:000712,sync:fuzz02,src:000706.bmp │ ├── id:000716,src:000040+000392,op:splice,rep:64.bmp │ ├── id:000718,sync:fuzz03,src:000708.bmp │ ├── id:000719,sync:fuzz03,src:000713.bmp │ ├── id:000720,sync:fuzz03,src:000709.bmp │ ├── id:000721,sync:fuzz03,src:000714.bmp │ ├── id:000722,sync:fuzz02,src:000717.bmp │ ├── id:000724,sync:fuzz03,src:000718.bmp │ ├── id:000725,sync:fuzz04,src:000713.bmp │ ├── id:000727,sync:fuzz05,src:000722.bmp │ ├── id:000728,sync:fuzz03,src:000722.bmp │ ├── id:000730,src:000194+000325,op:splice,rep:32.bmp │ ├── id:000731,sync:fuzz07,src:000693.bmp │ ├── id:000733,sync:fuzz03,src:000727.bmp │ ├── id:000734,sync:fuzz03,src:000728.bmp │ ├── id:000736,sync:fuzz03,src:000730.bmp │ ├── id:000737,sync:fuzz03,src:000731.bmp │ ├── id:000738,src:000687+000276,op:splice,rep:32.bmp │ ├── id:000739,sync:fuzz04,src:000726.bmp │ ├── id:000740,src:000739,op:havoc,rep:2.bmp │ ├── id:000741,src:000363+000737,op:splice,rep:4.bmp │ ├── id:000743,src:000374+000739,op:splice,rep:4.bmp │ ├── id:000744,src:000489+000038,op:splice,rep:16.bmp │ ├── id:000745,sync:fuzz04,src:000733.bmp │ ├── id:000749,sync:fuzz04,src:000737.bmp │ ├── id:000750,sync:fuzz04,src:000738.bmp │ ├── id:000751,sync:fuzz04,src:000739.bmp │ ├── id:000752,src:000091+000751,op:splice,rep:32.bmp │ ├── id:000753,sync:fuzz05,src:000748.bmp │ ├── id:000755,sync:fuzz04,src:000743.bmp │ ├── id:000756,sync:fuzz03,src:000750.bmp │ ├── id:000757,sync:fuzz04,src:000745.bmp │ ├── id:000758,sync:fuzz04,src:000746.bmp │ ├── id:000760,sync:fuzz04,src:000748.bmp │ ├── id:000761,sync:fuzz04,src:000749.bmp │ ├── id:000762,src:000098+000760,op:splice,rep:4.bmp │ ├── id:000763,sync:fuzz04,src:000751.bmp │ ├── id:000764,sync:fuzz03,src:000758.bmp │ ├── id:000765,sync:fuzz04,src:000753.bmp │ ├── id:000766,sync:fuzz04,src:000754.bmp │ ├── id:000767,sync:fuzz04,src:000755.bmp │ ├── id:000768,sync:fuzz04,src:000756.bmp │ ├── id:000769,sync:fuzz04,src:000757.bmp │ ├── id:000771,sync:fuzz04,src:000759.bmp │ ├── id:000774,src:000773,op:havoc,rep:4.bmp │ ├── id:000777,sync:fuzz03,src:000772.bmp │ ├── id:000780,sync:fuzz03,src:000775.bmp │ └── id:000781,sync:fuzz03,src:000776.bmp │ ├── ns-afl-ico │ ├── id:000000,orig:id:000010,src:000000,op:flip1,pos:4,+cov.ico.min.ico │ ├── id:000001,orig:id:000134,src:000000,op:havoc,rep:128.ico.min.ico │ ├── id:000002,orig:id:000165,src:000000,op:havoc,rep:16.ico.min.ico │ ├── id:000003,orig:id:000501,src:000296,op:int16,pos:6,val:be:+1000.ico.min.ico │ ├── id:000004,orig:id:001590,src:000555,op:havoc,rep:2.ico.min.ico │ ├── id:000005,orig:id:000396,src:000019,op:flip1,pos:18,+cov.min.ico │ ├── id:000006,orig:id:000397,src:000019,op:flip1,pos:18,+cov.min.ico │ ├── id:000007,orig:id:000402,src:000019,op:flip1,pos:27,+cov.min.ico │ ├── id:000008,orig:id:000403,src:000019,op:flip1,pos:29,+cov.min.ico │ ├── id:000009,orig:id:000408,src:000019,op:flip1,pos:33,+cov.min.ico │ ├── id:000010,orig:id:000409,src:000019,op:flip1,pos:34,+cov.min.ico │ ├── id:000011,orig:id:000412,src:000019,op:flip1,pos:38,+cov.min.ico │ ├── id:000012,orig:id:000413,src:000019,op:flip1,pos:38,+cov.min.ico │ ├── id:000013,orig:id:000414,src:000019,op:flip1,pos:38,+cov.min.ico │ ├── id:000014,orig:id:000418,src:000019,op:flip1,pos:54.min.ico │ ├── id:000015,orig:id:000424,src:000019,op:flip2,pos:38,+cov.min.ico │ ├── id:000016,orig:id:000431,src:000019,op:arith8,pos:22,val:-28,+cov.min.ico │ ├── id:000017,orig:id:000438,src:000019,op:arith8,pos:54,val:-4.min.ico │ ├── id:000018,orig:id:000439,src:000019,op:arith8,pos:54,val:-10.min.ico │ ├── id:000019,orig:id:000442,src:000019,op:arith8,pos:54,val:-14.min.ico │ ├── id:000020,orig:id:000449,src:000019,op:int8,pos:30,val:+16.min.ico │ ├── id:000021,orig:id:000454,src:000019,op:int32,pos:30,val:-2147483648,+cov.min.ico │ ├── id:000022,orig:id:000455,src:000019,op:int32,pos:35,val:be:+1,+cov.min.ico │ ├── id:000023,orig:id:000456,src:000019,op:int32,pos:36,val:be:+512,+cov.min.ico │ ├── id:000024,orig:id:000459,src:000392,op:flip1,pos:36.min.ico │ ├── id:000025,orig:id:000460,src:000392,op:flip2,pos:26.min.ico │ ├── id:000026,orig:id:000461,src:000392,op:flip4,pos:54.min.ico │ ├── id:000027,orig:id:000463,src:000392,op:arith8,pos:54,val:-13.min.ico │ ├── id:000028,orig:id:000467,src:000400,op:flip4,pos:54.min.ico │ ├── id:000029,orig:id:000468,src:000400,op:arith8,pos:30,val:+10.min.ico │ ├── id:000030,orig:id:000472,src:000400,op:arith8,pos:54,val:-6.min.ico │ ├── id:000031,orig:id:000474,src:000400,op:int16,pos:29,val:+512.min.ico │ ├── id:000032,orig:id:000475,src:000400,op:int16,pos:29,val:+1024.min.ico │ ├── id:000033,orig:id:000476,src:000403,op:arith8,pos:22,val:-28,+cov.min.ico │ ├── id:000034,orig:id:000481,src:000430,op:flip1,pos:23.min.ico │ ├── id:000035,orig:id:000482,src:000430,op:flip1,pos:26.min.ico │ ├── id:000036,orig:id:000483,src:000430,op:flip2,pos:26.min.ico │ ├── id:000037,orig:id:000484,src:000430,op:arith8,pos:36,val:+12,+cov.min.ico │ ├── id:000038,orig:id:000485,src:000430,op:arith8,pos:36,val:+20,+cov.min.ico │ ├── id:000039,orig:id:000486,src:000430,op:arith8,pos:36,val:+28,+cov.min.ico │ ├── id:000040,orig:id:000487,src:000430,op:int16,pos:14,val:+127.min.ico │ ├── id:000041,orig:id:000488,src:000431,op:flip1,pos:28,+cov.min.ico │ ├── id:000042,orig:id:000489,src:000431,op:flip2,pos:27,+cov.min.ico │ ├── id:000043,orig:id:000490,src:000431,op:flip16,pos:27,+cov.min.ico │ ├── id:000044,orig:id:000491,src:000432,op:arith8,pos:36,val:+12,+cov.min.ico │ ├── id:000045,orig:id:000492,src:000432,op:arith8,pos:36,val:+20,+cov.min.ico │ ├── id:000046,orig:id:000493,src:000432,op:arith8,pos:36,val:+28,+cov.min.ico │ ├── id:000047,orig:id:000494,src:000432,op:int16,pos:14,val:+127,+cov.min.ico │ ├── id:000048,orig:id:000495,src:000434,op:flip1,pos:26.min.ico │ ├── id:000049,orig:id:000496,src:000434,op:flip1,pos:31.min.ico │ ├── id:000050,orig:id:000497,src:000447,op:flip2,pos:26.min.ico │ ├── id:000051,orig:id:000498,src:000447,op:flip2,pos:26.min.ico │ ├── id:000052,orig:id:000499,src:000447,op:arith8,pos:54,val:-12.min.ico │ ├── id:000053,orig:id:000503,src:000452,op:flip2,pos:26.min.ico │ ├── id:000054,orig:id:000505,src:000452,op:arith8,pos:26,val:-26.min.ico │ ├── id:000055,orig:id:000506,src:000452,op:arith8,pos:26,val:-27.min.ico │ ├── id:000056,orig:id:000507,src:000452,op:arith8,pos:26,val:-28.min.ico │ ├── id:000057,orig:id:000508,src:000452,op:arith8,pos:26,val:-29.min.ico │ ├── id:000058,orig:id:000510,src:000452,op:arith8,pos:36,val:+12,+cov.min.ico │ ├── id:000059,orig:id:000513,src:000452,op:arith32,pos:30,val:-6.min.ico │ ├── id:000060,orig:id:000514,src:000452,op:arith32,pos:30,val:-8.min.ico │ ├── id:000061,orig:id:000515,src:000452,op:arith32,pos:30,val:-10.min.ico │ ├── id:000062,orig:id:000518,src:000462,op:flip1,pos:26.min.ico │ ├── id:000063,orig:id:000521,src:000462,op:flip32,pos:30.min.ico │ ├── id:000064,orig:id:000523,src:000462,op:int8,pos:30,val:+1,+cov.min.ico │ ├── id:000065,orig:id:000524,src:000464,op:arith8,pos:36,val:+20.min.ico │ ├── id:000066,orig:id:000525,src:000470,op:flip1,pos:14.min.ico │ ├── id:000067,orig:id:000526,src:000470,op:flip1,pos:15.min.ico │ ├── id:000068,orig:id:000528,src:000470,op:flip1,pos:26.min.ico │ ├── id:000069,orig:id:000529,src:000470,op:flip1,pos:26,+cov.min.ico │ ├── id:000070,orig:id:000531,src:000470,op:flip4,pos:26.min.ico │ ├── id:000071,orig:id:000532,src:000470,op:flip32,pos:30.min.ico │ ├── id:000072,orig:id:000534,src:000470,op:arith8,pos:26,val:+18.min.ico │ ├── id:000073,orig:id:000535,src:000470,op:int8,pos:26,val:-128.min.ico │ ├── id:000074,orig:id:000536,src:000470,op:int8,pos:26,val:+64.min.ico │ ├── id:000075,orig:id:000537,src:000470,op:int8,pos:26,val:+100.min.ico │ ├── id:000076,orig:id:000538,src:000470,op:int8,pos:30,val:+1,+cov.min.ico │ ├── id:000077,orig:id:000539,src:000477,op:arith8,pos:36,val:+12,+cov.min.ico │ ├── id:000078,orig:id:000547,src:000478,op:flip1,pos:26,+cov.min.ico │ ├── id:000079,orig:id:000549,src:000478,op:flip1,pos:62,+cov.min.ico │ ├── id:000080,orig:id:000568,src:000478,op:int8,pos:26,val:+127.min.ico │ ├── id:000081,orig:id:000569,src:000478,op:int16,pos:14,val:+64,+cov.min.ico │ ├── id:000082,orig:id:000570,src:000478,op:int16,pos:14,val:+100,+cov.min.ico │ ├── id:000083,orig:id:000574,src:000478,op:havoc,rep:8.min.ico │ ├── id:000084,orig:id:000579,src:000478,op:havoc,rep:16.min.ico │ ├── id:000085,orig:id:000583,src:000478,op:havoc,rep:16.min.ico │ ├── id:000086,orig:id:000586,src:000478,op:havoc,rep:16.min.ico │ ├── id:000087,orig:id:000589,src:000478,op:havoc,rep:32.min.ico │ ├── id:000088,orig:id:000590,src:000478,op:havoc,rep:16.min.ico │ ├── id:000089,orig:id:000591,src:000478,op:havoc,rep:4.min.ico │ ├── id:000090,orig:id:000592,src:000478,op:havoc,rep:64.min.ico │ ├── id:000091,orig:id:000594,src:000484,op:flip1,pos:15.min.ico │ ├── id:000092,orig:id:000596,src:000484,op:flip1,pos:26.min.ico │ ├── id:000093,orig:id:000597,src:000484,op:flip1,pos:26.min.ico │ ├── id:000094,orig:id:000598,src:000484,op:flip1,pos:26.min.ico │ ├── id:000095,orig:id:000599,src:000484,op:flip2,pos:26.min.ico │ ├── id:000096,orig:id:000600,src:000484,op:flip4,pos:26.min.ico │ ├── id:000097,orig:id:000601,src:000484,op:arith8,pos:26,val:+15.min.ico │ ├── id:000098,orig:id:000602,src:000484,op:arith8,pos:26,val:-21.min.ico │ ├── id:000099,orig:id:000603,src:000484,op:int8,pos:26,val:+127.min.ico │ ├── id:000100,orig:id:000604,src:000488,op:int8,pos:30,val:+1,+cov.min.ico │ ├── id:000101,orig:id:000606,src:000504,op:flip1,pos:30.min.ico │ ├── id:000102,orig:id:000607,src:000510,op:arith8,pos:30,val:+6.min.ico │ ├── id:000103,orig:id:000608,src:000510,op:arith32,pos:30,val:-10.min.ico │ ├── id:000104,orig:id:000610,src:000512,op:arith32,pos:30,val:-6.min.ico │ ├── id:000105,orig:id:000611,src:000512,op:arith32,pos:30,val:-8.min.ico │ ├── id:000106,orig:id:000612,src:000513,op:arith8,pos:36,val:+20.min.ico │ ├── id:000107,orig:id:000614,src:000519,op:flip32,pos:30.min.ico │ ├── id:000108,orig:id:000617,src:000522,op:arith32,pos:30,val:be:-1.min.ico │ ├── id:000109,orig:id:000618,src:000533,op:flip1,pos:30.min.ico │ ├── id:000110,orig:id:000619,src:000533,op:flip32,pos:30.min.ico │ ├── id:000111,orig:id:000620,src:000533,op:arith32,pos:30,val:be:-1.min.ico │ ├── id:000112,orig:id:000622,src:000538,op:arith32,pos:30,val:-7.min.ico │ ├── id:000113,orig:id:000623,src:000538,op:arith32,pos:30,val:-9.min.ico │ ├── id:000114,orig:id:000624,src:000553,op:flip1,pos:14.min.ico │ ├── id:000115,orig:id:000625,src:000553,op:flip1,pos:22.min.ico │ ├── id:000116,orig:id:000626,src:000553,op:flip1,pos:23.min.ico │ ├── id:000117,orig:id:000627,src:000553,op:flip1,pos:26.min.ico │ ├── id:000118,orig:id:000629,src:000555,op:arith32,pos:69,val:be:+1.min.ico │ ├── id:000119,orig:id:000631,src:000567,op:flip1,pos:30.min.ico │ ├── id:000120,orig:id:000632,src:000567,op:flip2,pos:14.min.ico │ ├── id:000121,orig:id:000633,src:000567,op:flip2,pos:26.min.ico │ ├── id:000122,orig:id:000634,src:000567,op:arith32,pos:30,val:be:-1.min.ico │ ├── id:000123,orig:id:000636,src:000577,op:flip1,pos:22,+cov.min.ico │ ├── id:000124,orig:id:000637,src:000577,op:flip1,pos:22.min.ico │ ├── id:000125,orig:id:000638,src:000577,op:flip1,pos:23.min.ico │ ├── id:000126,orig:id:000641,src:000589,op:int16,pos:14,val:+127.min.ico │ ├── id:000127,orig:id:000642,src:000589,op:havoc,rep:4.min.ico │ ├── id:000128,orig:id:000645,src:000593,op:flip2,pos:36.min.ico │ ├── id:000129,orig:id:000651,src:000602,op:flip2,pos:26.min.ico │ ├── id:000130,orig:id:000652,src:000604,op:flip1,pos:32,+cov.min.ico │ ├── id:000131,orig:id:000653,src:000604,op:flip1,pos:32,+cov.min.ico │ ├── id:000132,orig:id:000654,src:000614,op:flip1,pos:23.min.ico │ ├── id:000133,orig:id:000656,src:000616,op:flip1,pos:22,+cov.min.ico │ ├── id:000134,orig:id:000660,src:000616,op:flip1,pos:26.min.ico │ ├── id:000135,orig:id:000664,src:000616,op:havoc,rep:8.min.ico │ ├── id:000136,orig:id:000666,src:000616,op:havoc,rep:16.min.ico │ ├── id:000137,orig:id:000668,src:000616,op:havoc,rep:8.min.ico │ ├── id:000138,orig:id:000669,src:000628,op:flip1,pos:14.min.ico │ ├── id:000139,orig:id:000670,src:000628,op:flip1,pos:15.min.ico │ ├── id:000140,orig:id:000671,src:000628,op:havoc,rep:8.min.ico │ ├── id:000141,orig:id:000672,src:000628,op:havoc,rep:2,+cov.min.ico │ ├── id:000142,orig:id:000673,src:000628,op:havoc,rep:32.min.ico │ ├── id:000143,orig:id:000674,src:000628,op:havoc,rep:64.min.ico │ ├── id:000144,orig:id:000675,src:000628,op:havoc,rep:64.min.ico │ ├── id:000145,orig:id:000676,src:000635,op:int32,pos:66,val:+16.min.ico │ ├── id:000146,orig:id:000679,src:000640,op:flip1,pos:23.min.ico │ ├── id:000147,orig:id:000680,src:000643,op:flip2,pos:26.min.ico │ ├── id:000148,orig:id:000681,src:000643,op:arith8,pos:26,val:-27.min.ico │ ├── id:000149,orig:id:000682,src:000643,op:arith8,pos:26,val:-28.min.ico │ ├── id:000150,orig:id:000683,src:000643,op:arith8,pos:26,val:-29.min.ico │ ├── id:000151,orig:id:000684,src:000643,op:havoc,rep:32.min.ico │ ├── id:000152,orig:id:000686,src:000643,op:havoc,rep:8.min.ico │ ├── id:000153,orig:id:000688,src:000643,op:havoc,rep:32.min.ico │ ├── id:000154,orig:id:000692,src:000645,op:arith8,pos:26,val:-28.min.ico │ ├── id:000155,orig:id:000696,src:000648,op:flip1,pos:72.min.ico │ ├── id:000156,orig:id:000697,src:000648,op:int16,pos:63,val:+0.min.ico │ ├── id:000157,orig:id:000698,src:000648,op:int16,pos:68,val:+0.min.ico │ ├── id:000158,orig:id:000699,src:000649,op:flip1,pos:72.min.ico │ ├── id:000159,orig:id:000700,src:000649,op:int16,pos:63,val:+0.min.ico │ ├── id:000160,orig:id:000701,src:000649,op:int16,pos:68,val:+0.min.ico │ ├── id:000161,orig:id:000702,src:000658,op:flip1,pos:14.min.ico │ ├── id:000162,orig:id:000703,src:000658,op:flip4,pos:22.min.ico │ ├── id:000163,orig:id:000705,src:000667,op:flip1,pos:23.min.ico │ ├── id:000164,orig:id:000707,src:000676,op:flip1,pos:26.min.ico │ ├── id:000165,orig:id:000708,src:000676,op:arith8,pos:26,val:+7.min.ico │ ├── id:000166,orig:id:000709,src:000682,op:flip1,pos:72.min.ico │ ├── id:000167,orig:id:000711,src:000687,op:arith8,pos:26,val:-27.min.ico │ ├── id:000168,orig:id:000712,src:000687,op:arith8,pos:26,val:-29.min.ico │ ├── id:000169,orig:id:000713,src:000693,op:flip1,pos:22.min.ico │ ├── id:000170,orig:id:000714,src:000693,op:flip1,pos:72.min.ico │ ├── id:000171,orig:id:000715,src:000693,op:int16,pos:63,val:+0.min.ico │ ├── id:000172,orig:id:000716,src:000693,op:int16,pos:68,val:+0.min.ico │ ├── id:000173,orig:id:000718,src:000693,op:havoc,rep:16.min.ico │ ├── id:000174,orig:id:000719,src:000700,op:flip1,pos:26.min.ico │ ├── id:000175,orig:id:000720,src:000700,op:flip1,pos:26.min.ico │ ├── id:000176,orig:id:000721,src:000706,op:flip1,pos:62.min.ico │ ├── id:000177,orig:id:000722,src:000706,op:flip1,pos:66.min.ico │ ├── id:000178,orig:id:000723,src:000706,op:flip2,pos:26.min.ico │ ├── id:000179,orig:id:000725,src:000706,op:arith8,pos:26,val:-3.min.ico │ ├── id:000180,orig:id:000726,src:000706,op:int8,pos:73,val:+0.min.ico │ ├── id:000181,orig:id:000729,src:000710,op:flip1,pos:26.min.ico │ ├── id:000182,orig:id:000730,src:000710,op:flip1,pos:26.min.ico │ ├── id:000183,orig:id:000731,src:000710,op:int16,pos:63,val:+0.min.ico │ ├── id:000184,orig:id:000732,src:000710,op:int16,pos:68,val:+0.min.ico │ ├── id:000185,orig:id:000733,src:000711,op:flip1,pos:22.min.ico │ ├── id:000186,orig:id:000735,src:000717,op:flip1,pos:26.min.ico │ ├── id:000187,orig:id:000736,src:000717,op:flip1,pos:26.min.ico │ ├── id:000188,orig:id:000737,src:000724,op:flip1,pos:66.min.ico │ ├── id:000189,orig:id:000738,src:000724,op:int8,pos:73,val:+0.min.ico │ ├── id:000190,orig:id:000739,src:000730,op:havoc,rep:32.min.ico │ ├── id:000191,orig:id:000740,src:000731,op:flip1,pos:26.min.ico │ ├── id:000192,orig:id:000741,src:000731,op:havoc,rep:2.min.ico │ ├── id:000193,orig:id:000742,src:000738,op:flip1,pos:26.min.ico │ ├── id:000194,orig:id:000743,src:000664,op:flip1,pos:64.min.ico │ ├── id:000195,orig:id:000744,src:000678,op:havoc,rep:2.min.ico │ ├── id:000196,orig:id:000745,src:000685,op:int16,pos:66,val:+1.min.ico │ ├── id:000197,orig:id:000746,src:000685,op:havoc,rep:8.min.ico │ ├── id:000198,orig:id:000206,src:000055,op:flip32,pos:30.min.ico │ ├── id:000200,orig:id:000208,src:000205,op:flip1,pos:4.min.ico │ ├── id:000201,orig:id:000209,src:000205,op:flip1,pos:4.min.ico │ ├── id:000202,orig:id:000210,src:000205,op:flip1,pos:58.min.ico │ ├── id:000203,orig:id:000211,src:000205,op:flip1,pos:1388.min.ico │ ├── id:000204,orig:id:000212,src:000205,op:flip2,pos:70.min.ico │ ├── id:000205,orig:id:000213,src:000205,op:havoc,rep:16.min.ico │ ├── id:000207,orig:id:000215,src:000124,op:int32,pos:65,val:+256.min.ico │ ├── id:000208,orig:id:000216,src:000204,op:havoc,rep:2.min.ico │ ├── id:000209,src:000000,op:havoc,rep:128,+cov.ico │ ├── id:000210,src:000206,op:flip1,pos:1388.ico │ ├── id:000211,src:000199,op:flip2,pos:36.ico │ ├── id:000212,src:000199,op:flip2,pos:38.ico │ ├── id:000213,src:000199,op:flip32,pos:30.ico │ ├── id:000215,src:000214,op:flip1,pos:36.ico │ ├── id:000216,src:000214,op:flip2,pos:26.ico │ ├── id:000217,src:000214,op:flip32,pos:30.ico │ └── id:000218,src:000217,op:flip1,pos:36.ico │ └── runtest.sh ├── libnsfb ├── COPYING ├── Makefile ├── README ├── include │ ├── libnsfb.h │ ├── libnsfb_cursor.h │ ├── libnsfb_event.h │ ├── libnsfb_plot.h │ └── libnsfb_plot_util.h ├── libnsfb.pc.in ├── src │ ├── Makefile │ ├── cursor.c │ ├── cursor.h │ ├── dump.c │ ├── libnsfb.c │ ├── nsfb.h │ ├── palette.c │ ├── palette.h │ ├── plot.h │ ├── plot │ │ ├── 16bpp.c │ │ ├── 1bpp.c │ │ ├── 24bpp.c │ │ ├── 32bpp-common.c │ │ ├── 32bpp-xbgr8888.c │ │ ├── 32bpp-xrgb8888.c │ │ ├── 8bpp.c │ │ ├── Makefile │ │ ├── api.c │ │ ├── common.c │ │ ├── generic.c │ │ └── util.c │ ├── surface.h │ └── surface │ │ ├── Makefile │ │ ├── ram.c │ │ ├── sdl.c │ │ ├── surface.c │ │ ├── vnc.c │ │ ├── wld.c │ │ └── x.c ├── test │ ├── Makefile │ ├── bezier.c │ ├── bitmap.c │ ├── frontend.c │ ├── nsglobe.c │ ├── path.c │ ├── plottest.c │ ├── polygon.c │ ├── polystar.c │ ├── polystar2.c │ ├── runtest.sh │ ├── svgtiny.c │ └── text-speed.c └── usage ├── libnsgif ├── .github │ └── workflows │ │ ├── build.yaml │ │ └── static-analysis.yaml ├── COPYING ├── Makefile ├── README.md ├── docs │ └── Doxyfile ├── examples │ ├── disassemble_gif.pl │ └── gif_display ├── include │ └── nsgif.h ├── libnsgif.pc.in ├── src │ ├── Makefile │ ├── gif.c │ ├── lzw.c │ └── lzw.h └── test │ ├── Makefile │ ├── cli.c │ ├── cli.h │ ├── data │ ├── lzwof.gif │ ├── lzwoob.gif │ └── waves.gif │ ├── ns-afl-gif │ ├── id:000001,orig:id:000192,src:000000,op:havoc,rep:128,+cov.gif │ ├── id:000002,orig:id:000241,src:000000,op:havoc,rep:1.gif │ ├── id:000005,orig:id:000479,src:000000,op:havoc,rep:4.gif │ ├── id:000007,orig:id:000516,src:000037,op:havoc,rep:1.gif │ ├── id:000008,orig:id:000523,src:000037,op:havoc,rep:8.gif │ ├── id:000009,orig:id:000542,src:000080,op:havoc,rep:4.gif │ ├── id:000010,orig:id:000547,src:000080,op:havoc,rep:2.gif │ ├── id:000011,orig:id:000565,src:000080,op:havoc,rep:8.gif │ ├── id:000013,orig:id:000579,src:000080,op:havoc,rep:8.gif │ ├── id:000014,orig:id:000589,src:000080,op:havoc,rep:8.gif │ ├── id:000015,orig:id:000632,src:000116,op:havoc,rep:4.gif │ ├── id:000017,orig:id:000810,src:000479,op:flip1,pos:49.gif │ ├── id:000019,orig:id:001022,src:000935,op:flip1,pos:28.gif │ ├── id:000020,orig:id:001023,src:000935,op:arith8,pos:26,val:+22.gif │ ├── id:000021,orig:id:001030,src:000947,op:flip1,pos:38.gif │ ├── id:000023,orig:id:001366,src:001321,op:flip4,pos:10.gif │ ├── id:000024,orig:id:001424,src:001372,op:flip1,pos:10.gif │ ├── id:000027,orig:id:001759,src:001423,op:arith8,pos:15139,val:+5.gif │ ├── id:000028,orig:id:000452,src:000005,op:flip1,pos:0,+cov.gif │ ├── id:000029,orig:id:000453,src:000005,op:flip1,pos:10,+cov.gif │ ├── id:000031,orig:id:000456,src:000005,op:flip1,pos:42,+cov.gif │ ├── id:000032,orig:id:000458,src:000005,op:arith8,pos:25,val:+26,+cov.gif │ ├── id:000033,orig:id:000459,src:000005,op:arith8,pos:32,val:+35,+cov.gif │ ├── id:000034,orig:id:000461,src:000005,op:arith8,pos:33,val:+15,+cov.gif │ ├── id:000035,orig:id:000462,src:000005,op:arith16,pos:42,val:+6,+cov.gif │ ├── id:000036,orig:id:000463,src:000005,op:int8,pos:67,val:+0,+cov.gif │ ├── id:000040,orig:id:000471,src:000005,op:havoc,rep:4,+cov.gif │ ├── id:000041,orig:id:000472,src:000005,op:havoc,rep:16.gif │ ├── id:000042,orig:id:000474,src:000005,op:havoc,rep:2,+cov.gif │ ├── id:000043,orig:id:000477,src:000005,op:havoc,rep:16.gif │ ├── id:000045,orig:id:000483,src:000005,op:havoc,rep:4,+cov.gif │ ├── id:000046,orig:id:000484,src:000005,op:havoc,rep:8.gif │ ├── id:000047,orig:id:000485,src:000025,op:flip2,pos:26,+cov.gif │ ├── id:000049,orig:id:000491,src:000046,op:flip1,pos:25.gif │ ├── id:000050,orig:id:000495,src:000046,op:flip1,pos:26.gif │ ├── id:000053,orig:id:000500,src:000046,op:flip1,pos:28.gif │ ├── id:000055,orig:id:000507,src:000046,op:flip1,pos:35.gif │ ├── id:000056,orig:id:000509,src:000046,op:flip1,pos:44.gif │ ├── id:000059,orig:id:000518,src:000046,op:flip32,pos:81,+cov.gif │ ├── id:000062,orig:id:000527,src:000046,op:int32,pos:17,val:be:+1.gif │ ├── id:000063,orig:id:000528,src:000046,op:int32,pos:17,val:be:+16.gif │ ├── id:000065,orig:id:000530,src:000046,op:int32,pos:18,val:be:+512.gif │ ├── id:000066,orig:id:000531,src:000046,op:int32,pos:18,val:be:+1000.gif │ ├── id:000067,orig:id:000532,src:000046,op:int32,pos:18,val:be:+1024.gif │ ├── id:000070,orig:id:000536,src:000046,op:int32,pos:156,val:+256,+cov.gif │ ├── id:000071,orig:id:000537,src:000046,op:havoc,rep:32.gif │ ├── id:000073,orig:id:000540,src:000046,op:havoc,rep:4.gif │ ├── id:000074,orig:id:000541,src:000046,op:havoc,rep:64.gif │ ├── id:000075,orig:id:000542,src:000046,op:havoc,rep:8.gif │ ├── id:000082,orig:id:000556,src:000046,op:havoc,rep:4.gif │ ├── id:000083,orig:id:000557,src:000046,op:havoc,rep:8,+cov.gif │ ├── id:000085,orig:id:000559,src:000046,op:havoc,rep:16.gif │ ├── id:000086,orig:id:000561,src:000097,op:havoc,rep:32.gif │ ├── id:000092,orig:id:000580,src:000099,op:flip4,pos:44.gif │ ├── id:000097,orig:id:000592,src:000099,op:havoc,rep:4.gif │ ├── id:000098,orig:id:000595,src:000099,op:havoc,rep:8.gif │ ├── id:000100,orig:id:000600,src:000107,op:flip4,pos:27,+cov.gif │ ├── id:000103,orig:id:000608,src:000136,op:flip1,pos:40.gif │ ├── id:000108,orig:id:000614,src:000136,op:arith8,pos:140,val:-22.gif │ ├── id:000113,orig:id:000621,src:000136,op:int32,pos:161,val:+128.gif │ ├── id:000114,orig:id:000626,src:000185,op:flip1,pos:26,+cov.gif │ ├── id:000116,orig:id:000628,src:000185,op:flip1,pos:26.gif │ ├── id:000117,orig:id:000629,src:000185,op:flip1,pos:26.gif │ ├── id:000118,orig:id:000630,src:000185,op:flip1,pos:26.gif │ ├── id:000119,orig:id:000634,src:000185,op:flip1,pos:28.gif │ ├── id:000121,orig:id:000637,src:000185,op:flip1,pos:28.gif │ ├── id:000122,orig:id:000638,src:000185,op:flip1,pos:28.gif │ ├── id:000123,orig:id:000644,src:000185,op:havoc,rep:8.gif │ ├── id:000124,orig:id:000655,src:000185,op:havoc,rep:2.gif │ ├── id:000125,orig:id:000656,src:000185,op:havoc,rep:16.gif │ ├── id:000126,orig:id:000660,src:000460,op:arith8,pos:37,val:+33.gif │ ├── id:000127,orig:id:000661,src:000465,op:havoc,rep:2.gif │ ├── id:000128,orig:id:000662,src:000473,op:arith8,pos:13,val:-31,+cov.gif │ ├── id:000129,orig:id:000663,src:000477,op:arith16,pos:34,val:+6.gif │ ├── id:000130,orig:id:000664,src:000480,op:arith8,pos:40,val:-17.gif │ ├── id:000134,orig:id:000668,src:000577,op:flip1,pos:43.gif │ ├── id:000135,orig:id:000669,src:000577,op:arith8,pos:43,val:+11.gif │ ├── id:000136,orig:id:000670,src:000580,op:flip1,pos:43.gif │ ├── id:000138,orig:id:000672,src:000587,op:flip1,pos:43.gif │ ├── id:000140,orig:id:000674,src:000589,op:flip2,pos:27.gif │ ├── id:000144,orig:id:000682,src:000594,op:havoc,rep:2.gif │ ├── id:000145,orig:id:000684,src:000629,op:flip2,pos:19.gif │ ├── id:000146,orig:id:000685,src:000629,op:flip2,pos:33.gif │ ├── id:000147,orig:id:000686,src:000629,op:flip4,pos:34.gif │ ├── id:000148,orig:id:000687,src:000629,op:int8,pos:34,val:+0.gif │ ├── id:000149,orig:id:000689,src:000631,op:havoc,rep:4.gif │ ├── id:000152,orig:id:000692,src:000631,op:havoc,rep:8.gif │ ├── id:000154,orig:id:000695,src:000631,op:havoc,rep:16.gif │ ├── id:000155,orig:id:000696,src:000639,op:flip1,pos:27.gif │ ├── id:000156,orig:id:000698,src:000639,op:havoc,rep:4.gif │ ├── id:000164,orig:id:000706,src:000668,op:arith8,pos:57,val:+7.gif │ ├── id:000169,orig:id:000714,src:000676,op:flip2,pos:40.gif │ ├── id:000170,orig:id:000715,src:000676,op:arith8,pos:40,val:-20.gif │ ├── id:000171,orig:id:000716,src:000676,op:arith8,pos:40,val:-24.gif │ ├── id:000174,orig:id:000719,src:000677,op:flip1,pos:40.gif │ ├── id:000175,orig:id:000720,src:000677,op:flip1,pos:41.gif │ ├── id:000176,orig:id:000721,src:000677,op:flip2,pos:40.gif │ ├── id:000177,orig:id:000722,src:000677,op:arith8,pos:40,val:-20.gif │ ├── id:000178,orig:id:000723,src:000677,op:arith8,pos:40,val:-24.gif │ ├── id:000180,orig:id:000727,src:000709,op:flip1,pos:86.gif │ ├── id:000182,orig:id:000729,src:000711,op:havoc,rep:4.gif │ ├── id:000185,orig:id:000732,src:000713,op:havoc,rep:4.gif │ ├── id:000186,orig:id:000733,src:000713,op:havoc,rep:16.gif │ ├── id:000188,orig:id:000735,src:000724,op:flip2,pos:33.gif │ ├── id:000189,orig:id:000737,src:000724,op:havoc,rep:8.gif │ ├── id:000190,orig:id:000739,src:000724,op:havoc,rep:2.gif │ ├── id:000196,src:000043+000016,op:splice,rep:2.gif │ ├── id:000197,src:000043+000016,op:splice,rep:8.gif │ ├── id:000207,src:000190+000016,op:splice,rep:4.gif │ ├── id:000210,src:000190+000016,op:splice,rep:2.gif │ ├── id:000215,src:000131+000210,op:splice,rep:4.gif │ ├── id:000216,sync:gif_fuzz02,src:000202.gif │ ├── id:000216,sync:gif_fuzz03,src:000212.gif │ ├── id:000218,sync:gif_fuzz03,src:000214.gif │ ├── id:000220,sync:gif_fuzz03,src:000217.gif │ ├── id:000221,sync:gif_fuzz02,src:000201,+cov.gif │ ├── id:000222,sync:gif_fuzz03,src:000220.gif │ ├── id:000231,src:000043,op:havoc,rep:2.gif │ ├── id:000234,src:000084+000207,op:splice,rep:2.gif │ ├── id:000235,src:000084+000207,op:splice,rep:2.gif │ ├── id:000238,src:000084+000207,op:splice,rep:4.gif │ ├── id:000243,src:000115+000225,op:splice,rep:4.gif │ ├── id:000248,src:000203+000246,op:splice,rep:16.gif │ ├── id:000249,src:000206,op:havoc,rep:4.gif │ ├── id:000252,sync:gif_fuzz03,src:000242.gif │ ├── id:000256,src:000002+000246,op:splice,rep:2.gif │ ├── id:000258,sync:gif_fuzz03,src:000250.gif │ ├── id:000260,src:000127+000249,op:splice,rep:8.gif │ ├── id:000261,src:000127+000249,op:splice,rep:32.gif │ ├── id:000262,src:000218,op:havoc,rep:2.gif │ ├── id:000268,src:000258,op:havoc,rep:8.gif │ ├── id:000269,src:000263,op:havoc,rep:4.gif │ ├── id:000270,src:000263,op:havoc,rep:16.gif │ ├── id:000271,src:000263,op:havoc,rep:8.gif │ ├── id:000273,sync:gif_fuzz01,src:000257.gif │ ├── id:000281,sync:gif_fuzz03,src:000273.gif │ ├── id:000290,sync:gif_fuzz03,src:000282.gif │ ├── id:000293,src:000123+000247,op:splice,rep:64.gif │ ├── id:000306,src:000294,op:havoc,rep:2.gif │ ├── id:000309,sync:gif_fuzz01,src:000286.gif │ ├── id:000312,src:000101+000289,op:splice,rep:8.gif │ ├── id:000313,src:000101+000289,op:splice,rep:8.gif │ ├── id:000317,src:000298,op:havoc,rep:2.gif │ ├── id:000319,sync:gif_fuzz03,src:000307.gif │ ├── id:000320,sync:gif_fuzz03,src:000308.gif │ ├── id:000322,sync:gif_fuzz03,src:000310,+cov.gif │ ├── id:000323,sync:gif_fuzz03,src:000311.gif │ ├── id:000324,sync:gif_fuzz03,src:000312.gif │ ├── id:000325,src:000031+000320,op:splice,rep:2.gif │ ├── id:000331,sync:gif_fuzz03,src:000318.gif │ ├── id:000332,src:000331+000250,op:splice,rep:8.gif │ ├── id:000337,src:000059+000114,op:splice,rep:8.gif │ ├── id:000338,src:000083+000066,op:splice,rep:4.gif │ ├── id:000341,sync:gif_fuzz03,src:000328.gif │ ├── id:000345,sync:gif_fuzz03,src:000332.gif │ ├── id:000349,src:000344+000293,op:splice,rep:2.gif │ ├── id:000350,sync:gif_fuzz03,src:000337.gif │ ├── id:000353,src:000351,op:havoc,rep:2.gif │ ├── id:000354,sync:gif_fuzz03,src:000341.gif │ ├── id:000355,src:000348,op:havoc,rep:4.gif │ ├── id:000356,src:000101+000345,op:splice,rep:2.gif │ ├── id:000357,sync:gif_fuzz03,src:000344.gif │ ├── id:000360,sync:gif_fuzz03,src:000347.gif │ ├── id:000368,sync:gif_fuzz03,src:000357.gif │ ├── id:000369,sync:gif_fuzz03,src:000352,+cov.gif │ ├── id:000371,sync:gif_fuzz03,src:000358.gif │ ├── id:000372,sync:gif_fuzz03,src:000359.gif │ ├── id:000373,src:000371,op:havoc,rep:2.gif │ ├── id:000375,src:000374,op:havoc,rep:2.gif │ ├── id:000376,src:000374,op:havoc,rep:16.gif │ ├── id:000377,sync:gif_fuzz03,src:000364,+cov.gif │ ├── id:000390,src:000353,op:flip1,pos:28.gif │ ├── id:000390,src:000383,op:havoc,rep:8.gif │ ├── id:000391,src:000353,op:flip1,pos:28.gif │ ├── id:000391,src:000388,op:havoc,rep:4.gif │ ├── id:000392,sync:gif_fuzz03,src:000370,+cov.gif │ ├── id:000394,src:000353,op:arith8,pos:28,val:-33.gif │ ├── id:000394,src:000390,op:havoc,rep:4.gif │ ├── id:000396,src:000353,op:int32,pos:301,val:+128.gif │ ├── id:000397,src:000353,op:ext_AO,pos:32,+cov.gif │ ├── id:000398,src:000359,op:flip2,pos:31.gif │ ├── id:000409,src:000403,op:havoc,rep:16,+cov.gif │ ├── id:000418,src:000414,op:havoc,rep:4.gif │ ├── id:000425,src:000419+000413,op:splice,rep:2.gif │ ├── id:000428,src:000420,op:havoc,rep:8.gif │ ├── id:000433,src:000430,op:havoc,rep:2,+cov.gif │ ├── id:000438,src:000433,op:havoc,rep:4.gif │ ├── id:000440,src:000083+000367,op:splice,rep:8.gif │ ├── id:000443,sync:gif_fuzz03,src:000431.gif │ ├── id:000449,src:000448,op:havoc,rep:4.gif │ ├── id:000449,sync:gif_fuzz03,src:000442.gif │ ├── id:000450,sync:gif_fuzz03,src:000436.gif │ ├── id:000457,sync:gif_fuzz03,src:000443.gif │ ├── id:000462,src:000461,op:havoc,rep:4.gif │ ├── id:000463,sync:gif_fuzz02,src:000475.gif │ ├── id:000466,sync:gif_fuzz03,src:000453.gif │ ├── id:000468,sync:gif_fuzz03,src:000455.gif │ ├── id:000469,src:000467,op:havoc,rep:2.gif │ ├── id:000479,src:000475,op:havoc,rep:8.gif │ ├── id:000483,sync:gif_fuzz02,src:000441.gif │ ├── id:000485,sync:gif_fuzz03,src:000472.gif │ ├── id:000487,src:000167+000469,op:splice,rep:2.gif │ ├── id:000489,sync:gif_fuzz02,src:000508.gif │ ├── id:000491,src:000167+000401,op:splice,rep:4.gif │ ├── id:000495,sync:gif_fuzz03,src:000481.gif │ ├── id:000496,src:000452,op:havoc,rep:8.gif │ ├── id:000496,sync:gif_fuzz02,src:000587.gif │ ├── id:000498,sync:gif_fuzz03,src:000487.gif │ ├── id:000499,sync:gif_fuzz03,src:000486.gif │ ├── id:000509,src:000044+000479,op:splice,rep:4.gif │ ├── id:000510,src:000127+000503,op:splice,rep:2.gif │ ├── id:000514,sync:gif_fuzz03,src:000502.gif │ ├── id:000518,src:000507,op:havoc,rep:8.gif │ ├── id:000519,sync:gif_fuzz03,src:000504.gif │ ├── id:000526,src:000482+000491,op:splice,rep:2.gif │ ├── id:000531,src:000509,op:havoc,rep:4.gif │ ├── id:000532,src:000044+000341,op:splice,rep:8.gif │ ├── id:000535,src:000059+000527,op:splice,rep:16.gif │ ├── id:000536,sync:gif_fuzz03,src:000524.gif │ ├── id:000545,sync:gif_fuzz03,src:000531.gif │ ├── id:000549,sync:gif_fuzz03,src:000533.gif │ ├── id:000553,sync:gif_fuzz03,src:000540.gif │ ├── id:000567,sync:gif_fuzz03,src:000552.gif │ ├── id:000568,src:000545+000541,op:splice,rep:2.gif │ ├── id:000569,src:000565,op:havoc,rep:8.gif │ ├── id:000572,sync:gif_fuzz03,src:000560.gif │ ├── id:000573,sync:gif_fuzz03,src:000562.gif │ ├── id:000574,sync:gif_fuzz03,src:000561.gif │ ├── id:000575,src:000369+000545,op:splice,rep:2.gif │ ├── id:000576,sync:gif_fuzz03,src:000564.gif │ ├── id:000578,sync:gif_fuzz03,src:000566.gif │ ├── id:000588,src:000167+000583,op:splice,rep:2.gif │ ├── id:000592,src:000017+000588,op:splice,rep:8.gif │ ├── id:000594,sync:gif_fuzz03,src:000583.gif │ ├── id:000595,sync:gif_fuzz03,src:000584.gif │ ├── id:000598,src:000575,op:havoc,rep:16.gif │ ├── id:000599,src:000558+000588,op:splice,rep:2.gif │ ├── id:000599,sync:gif_fuzz03,src:000587.gif │ ├── id:000601,sync:gif_fuzz03,src:000590.gif │ ├── id:000602,sync:gif_fuzz03,src:000591.gif │ ├── id:000603,src:000275+000565,op:splice,rep:4.gif │ ├── id:000604,sync:gif_fuzz03,src:000593.gif │ ├── id:000605,src:000168+000590,op:splice,rep:8.gif │ ├── id:000607,sync:gif_fuzz03,src:000597.gif │ ├── id:000609,src:000050+000547,op:splice,rep:2.gif │ ├── id:000610,src:000471+000572,op:splice,rep:4.gif │ ├── id:000611,sync:gif_fuzz03,src:000602.gif │ ├── id:000612,sync:gif_fuzz03,src:000603.gif │ ├── id:000613,src:000010+000561,op:splice,rep:4.gif │ ├── id:000614,sync:gif_fuzz03,src:000605.gif │ ├── id:000615,src:000104+000584,op:splice,rep:2.gif │ ├── id:000616,src:000267+000596,op:splice,rep:8.gif │ ├── id:000618,src:000367+000589,op:splice,rep:8.gif │ ├── id:000621,sync:gif_fuzz03,src:000612.gif │ ├── id:000623,sync:gif_fuzz03,src:000614.gif │ ├── id:000624,sync:gif_fuzz03,src:000615.gif │ ├── id:000626,src:000370+000563,op:splice,rep:2.gif │ ├── id:000627,src:000467+000621,op:splice,rep:2.gif │ ├── id:000628,sync:gif_fuzz03,src:000619.gif │ ├── id:000631,sync:gif_fuzz03,src:000622.gif │ ├── id:000632,sync:gif_fuzz03,src:000623.gif │ ├── id:000633,sync:gif_fuzz03,src:000624.gif │ ├── id:000646,sync:gif_fuzz03,src:000639.gif │ ├── id:000648,src:000642,op:havoc,rep:2.gif │ ├── id:000649,src:000580+000621,op:splice,rep:4.gif │ ├── id:000651,src:000542,op:havoc,rep:2.gif │ ├── id:000652,src:000651,op:havoc,rep:2.gif │ ├── id:000654,src:000185+000648,op:splice,rep:4.gif │ ├── id:000655,sync:gif_fuzz03,src:000648.gif │ ├── id:000658,sync:gif_fuzz03,src:000651.gif │ ├── id:000659,src:000168+000655,op:splice,rep:2.gif │ ├── id:000661,src:000641,op:havoc,rep:4.gif │ ├── id:000662,src:000661,op:havoc,rep:2.gif │ ├── id:000663,src:000660,op:havoc,rep:4.gif │ ├── id:000666,sync:gif_fuzz03,src:000659.gif │ ├── id:000668,src:000377+000666,op:splice,rep:2.gif │ ├── id:000668,src:000663,op:havoc,rep:4.gif │ ├── id:000669,sync:gif_fuzz03,src:000662.gif │ ├── id:000672,sync:gif_fuzz03,src:000665.gif │ ├── id:000673,sync:gif_fuzz03,src:000666.gif │ └── id:000674,src:000673+000597,op:splice,rep:16.gif │ ├── nsgif.c │ └── runtest.sh ├── libnslog ├── COPYING ├── Makefile ├── README ├── docs │ ├── Doxyfile │ ├── examples.md │ └── mainpage.md ├── include │ └── nslog │ │ └── nslog.h ├── libnslog.pc.in ├── src │ ├── Makefile │ ├── core.c │ ├── filter-lexer.l │ ├── filter-parser.y │ ├── filter.c │ └── nslog_internal.h └── test │ ├── Makefile │ ├── basictests.c │ ├── runtest.sh │ ├── testmain.c │ └── tests.h ├── libnspsl ├── COPYING ├── Makefile ├── README ├── docs │ ├── huffing.svg │ └── psltree.svg ├── include │ └── nspsl.h ├── libnspsl.pc.in ├── public_suffix_list.dat ├── src │ ├── Makefile │ ├── genpubsuffix.pl │ ├── nspsl.c │ └── psl.inc └── test │ ├── Makefile │ ├── nspsl.c │ └── runtest.sh ├── libnsutils ├── COPYING ├── Makefile ├── README ├── include │ └── nsutils │ │ ├── assert.h │ │ ├── base64.h │ │ ├── endian.h │ │ ├── errors.h │ │ ├── time.h │ │ └── unistd.h ├── libnsutils.pc.in ├── src │ ├── Makefile │ ├── base64.c │ ├── time.c │ └── unistd.c └── test │ ├── Makefile │ ├── base64.c │ └── runtest.sh ├── libparserutils ├── COPYING ├── Makefile ├── Makefile.config ├── README ├── build │ ├── Aliases │ ├── Doxyfile │ ├── conv.pl │ └── make-aliases.pl ├── docs │ └── Todo ├── include │ └── parserutils │ │ ├── charset │ │ ├── codec.h │ │ ├── mibenum.h │ │ ├── utf16.h │ │ └── utf8.h │ │ ├── errors.h │ │ ├── functypes.h │ │ ├── input │ │ └── inputstream.h │ │ ├── parserutils.h │ │ ├── types.h │ │ └── utils │ │ ├── buffer.h │ │ ├── stack.h │ │ └── vector.h ├── libparserutils.pc.in ├── src │ ├── Makefile │ ├── charset │ │ ├── Makefile │ │ ├── aliases.c │ │ ├── aliases.h │ │ ├── codec.c │ │ ├── codecs │ │ │ ├── 8859_tables.h │ │ │ ├── Makefile │ │ │ ├── codec_8859.c │ │ │ ├── codec_ascii.c │ │ │ ├── codec_ext8.c │ │ │ ├── codec_impl.h │ │ │ ├── codec_utf16.c │ │ │ ├── codec_utf8.c │ │ │ └── ext8_tables.h │ │ └── encodings │ │ │ ├── Makefile │ │ │ ├── utf16.c │ │ │ ├── utf8.c │ │ │ └── utf8impl.h │ ├── input │ │ ├── Makefile │ │ ├── filter.c │ │ ├── filter.h │ │ └── inputstream.c │ └── utils │ │ ├── Makefile │ │ ├── buffer.c │ │ ├── endian.h │ │ ├── errors.c │ │ ├── stack.c │ │ ├── utils.h │ │ └── vector.c └── test │ ├── INDEX │ ├── Makefile │ ├── README │ ├── aliases.c │ ├── cscodec-8859.c │ ├── cscodec-ext8.c │ ├── cscodec-utf16.c │ ├── cscodec-utf8.c │ ├── data │ ├── cscodec-8859 │ │ ├── 1.dat │ │ ├── 10.dat │ │ ├── 11.dat │ │ ├── 13.dat │ │ ├── 14.dat │ │ ├── 15.dat │ │ ├── 16.dat │ │ ├── 2.dat │ │ ├── 3.dat │ │ ├── 4.dat │ │ ├── 5.dat │ │ ├── 6.dat │ │ ├── 7.dat │ │ ├── 8.dat │ │ ├── 9.dat │ │ └── INDEX │ ├── cscodec-ext8 │ │ ├── INDEX │ │ ├── cp1250.dat │ │ ├── cp1251.dat │ │ ├── cp1252.dat │ │ ├── cp1253.dat │ │ ├── cp1254.dat │ │ ├── cp1255.dat │ │ ├── cp1256.dat │ │ ├── cp1257.dat │ │ └── cp1258.dat │ ├── cscodec-utf16 │ │ ├── INDEX │ │ └── simple.dat │ ├── cscodec-utf8 │ │ ├── INDEX │ │ ├── UTF-8-test.txt │ │ └── simple.dat │ └── input │ │ ├── INDEX │ │ └── UTF-8-test.txt │ ├── filter.c │ ├── inputstream.c │ ├── regression │ ├── INDEX │ ├── Makefile │ ├── buffer-discard.c │ ├── filter-badenc-segv.c │ ├── filter-segv.c │ └── stream-nomem.c │ └── testutils.h ├── libpencil ├── Makefile ├── include │ └── pencil.h ├── libpencil.pc.in ├── src │ ├── Makefile │ ├── pencil_build.c │ ├── pencil_internal.h │ └── pencil_save.c └── test │ ├── Makefile │ └── pencil_test.c ├── librosprite ├── COPYING ├── Doxyfile ├── Makefile ├── examples │ └── example.c ├── include │ └── librosprite.h ├── librosprite.pc.in ├── palettes │ ├── 16colour │ ├── 16mono │ ├── 256colour │ ├── 256mono │ ├── 2mono │ └── 4mono ├── src │ ├── Makefile │ ├── librosprite.c │ └── palette2c.c └── test │ ├── Makefile │ ├── decode_rosprite.c │ ├── runtest.sh │ └── sprite │ ├── 32bpp-alpha-test.spr │ ├── primary-color-16bpp.spr │ └── small.spr ├── librufl ├── .cvsignore ├── Makefile ├── include │ └── rufl.h ├── librufl.pc.in ├── python │ ├── Mk.old │ └── ruflmodule.c ├── src │ ├── Glyphs │ ├── Makefile │ ├── rufl_character_set_test.c │ ├── rufl_decompose.c │ ├── rufl_dump_state.c │ ├── rufl_find.c │ ├── rufl_init.c │ ├── rufl_internal.h │ ├── rufl_invalidate_cache.c │ ├── rufl_metrics.c │ ├── rufl_paint.c │ ├── rufl_quit.c │ ├── rufl_substitution_table.c │ ├── strfuncs.c │ └── strfuncs.h ├── test │ ├── INDEX │ ├── Makefile │ ├── data │ │ └── oldfminit │ │ │ ├── Allerta │ │ │ ├── INDEX │ │ │ ├── Latin1 │ │ │ ├── brokenencoding.cfg │ │ │ ├── latin1.cfg │ │ │ ├── mergeumap.cfg │ │ │ ├── nomapping.cfg │ │ │ └── symbol.cfg │ ├── harness-priv.h │ ├── harness.c │ ├── harness.h │ ├── manyfonts.c │ ├── mocks.c │ ├── nofonts.c │ ├── oldfminit.c │ ├── olducsinit.c │ ├── rufl_chars.c │ ├── rufl_test.c │ ├── testutils.h │ └── ucsinit.c └── tools │ └── makeglyphs ├── libsvgtiny ├── COPYING ├── Makefile ├── README ├── build-x86_64-pc-linux-gnu-arm-none-eabi-release-lib-static │ └── stamp ├── examples │ ├── svgtiny_display │ └── svgtiny_display_x11.c ├── include │ └── svgtiny.h ├── libsvgtiny.pc.in ├── src │ ├── Makefile │ ├── autogenerated_colors.c │ ├── colors.gperf │ ├── svgtiny.c │ ├── svgtiny_gradient.c │ ├── svgtiny_internal.h │ ├── svgtiny_list.c │ └── svgtiny_strings.h └── test │ ├── Makefile │ ├── afl-svg.dict │ ├── data │ ├── SpglGrfC.svg │ ├── afl-expat-crash.svg │ ├── arc-path.svg │ ├── bad-grad.svg │ ├── bad_gradient_points.svg │ ├── excess-params.svg │ ├── move.svg │ ├── polyline.svg │ ├── range.svg │ ├── social.svg │ ├── sprite.svg │ └── tiger.svg │ ├── decode_svg.c │ ├── ns-afl-svg │ ├── 0001.svg │ ├── 0002.svg │ ├── 0003.svg │ ├── 0004.svg │ ├── 0005.svg │ ├── 0006.svg │ ├── 0007.svg │ ├── 0008.svg │ ├── 0009.svg │ ├── 0010.svg │ ├── 0011.svg │ ├── 0012.svg │ ├── 0013.svg │ ├── 0014.svg │ ├── 0015.svg │ ├── 0016.svg │ ├── 0017.svg │ ├── 0018.svg │ ├── 0019.svg │ ├── 0020.svg │ ├── 0021.svg │ ├── 0022.svg │ ├── 0023.svg │ ├── 0024.svg │ ├── 0025.svg │ ├── 0026.svg │ ├── 0027.svg │ ├── 0028.svg │ ├── 0029.svg │ ├── 0030.svg │ ├── 0031.svg │ ├── 0032.svg │ ├── 0033.svg │ ├── 0034.svg │ ├── 0035.svg │ ├── 0036.svg │ ├── 0037.svg │ ├── 0038.svg │ ├── 0039.svg │ ├── 0040.svg │ ├── 0041.svg │ ├── 0042.svg │ ├── 0043.svg │ ├── 0044.svg │ ├── 0045.svg │ ├── 0046.svg │ ├── 0047.svg │ ├── 0048.svg │ ├── 0049.svg │ ├── 0050.svg │ ├── 0051.svg │ ├── 0052.svg │ ├── 0053.svg │ ├── 0054.svg │ ├── 0055.svg │ ├── 0056.svg │ ├── 0057.svg │ ├── 0058.svg │ ├── 0059.svg │ ├── 0060.svg │ ├── 0061.svg │ ├── 0062.svg │ ├── 0063.svg │ ├── 0064.svg │ ├── 0065.svg │ ├── 0066.svg │ ├── 0067.svg │ ├── 0068.svg │ ├── 0069.svg │ ├── 0070.svg │ ├── 0071.svg │ ├── 0072.svg │ ├── 0073.svg │ ├── 0074.svg │ ├── 0075.svg │ ├── 0076.svg │ ├── 0077.svg │ ├── 0078.svg │ ├── 0079.svg │ ├── 0080.svg │ ├── 0081.svg │ ├── 0082.svg │ ├── 0083.svg │ ├── 0084.svg │ ├── 0085.svg │ ├── 0086.svg │ ├── 0087.svg │ ├── 0088.svg │ ├── 0089.svg │ ├── 0090.svg │ ├── 0091.svg │ ├── 0092.svg │ ├── 0093.svg │ ├── 0094.svg │ ├── 0095.svg │ ├── 0096.svg │ ├── 0097.svg │ ├── 0098.svg │ ├── 0099.svg │ ├── 0100.svg │ ├── 0101.svg │ ├── 0102.svg │ ├── 0103.svg │ ├── 0104.svg │ ├── 0105.svg │ ├── 0106.svg │ ├── 0107.svg │ ├── 0108.svg │ ├── 0109.svg │ ├── 0110.svg │ ├── 0111.svg │ ├── 0112.svg │ ├── 0113.svg │ ├── 0114.svg │ ├── 0115.svg │ ├── 0116.svg │ ├── 0117.svg │ ├── 0118.svg │ ├── 0119.svg │ ├── 0120.svg │ ├── 0121.svg │ ├── 0122.svg │ ├── 0123.svg │ ├── 0124.svg │ ├── 0125.svg │ ├── 0126.svg │ ├── 0127.svg │ ├── 0128.svg │ ├── 0129.svg │ ├── 0130.svg │ ├── 0131.svg │ ├── 0132.svg │ ├── 0133.svg │ ├── 0134.svg │ ├── 0135.svg │ ├── 0136.svg │ ├── 0137.svg │ ├── 0138.svg │ ├── 0139.svg │ ├── 0140.svg │ ├── 0141.svg │ ├── 0142.svg │ ├── 0143.svg │ ├── 0144.svg │ ├── 0145.svg │ ├── 0146.svg │ ├── 0147.svg │ ├── 0148.svg │ ├── 0149.svg │ ├── 0150.svg │ ├── 0151.svg │ ├── 0152.svg │ ├── 0153.svg │ ├── 0154.svg │ ├── 0155.svg │ ├── 0156.svg │ ├── 0157.svg │ ├── 0158.svg │ ├── 0159.svg │ ├── 0160.svg │ ├── 0161.svg │ ├── 0162.svg │ ├── 0163.svg │ ├── 0164.svg │ ├── 0165.svg │ ├── 0166.svg │ ├── 0167.svg │ ├── 0168.svg │ ├── 0169.svg │ ├── 0170.svg │ ├── 0171.svg │ ├── 0172.svg │ ├── 0173.svg │ ├── 0174.svg │ ├── 0175.svg │ ├── 0176.svg │ ├── 0177.svg │ ├── 0178.svg │ ├── 0179.svg │ ├── 0180.svg │ ├── 0181.svg │ ├── 0182.svg │ ├── 0183.svg │ ├── 0184.svg │ ├── 0185.svg │ ├── 0186.svg │ ├── 0187.svg │ ├── 0188.svg │ ├── 0189.svg │ ├── 0190.svg │ ├── 0191.svg │ ├── 0192.svg │ ├── 0193.svg │ ├── 0194.svg │ ├── 0195.svg │ ├── 0196.svg │ ├── 0197.svg │ ├── 0198.svg │ ├── 0199.svg │ ├── 0200.svg │ ├── 0201.svg │ ├── 0202.svg │ ├── 0203.svg │ ├── 0204.svg │ ├── 0205.svg │ ├── 0206.svg │ ├── 0207.svg │ ├── 0208.svg │ ├── 0209.svg │ ├── 0210.svg │ ├── 0211.svg │ ├── 0212.svg │ ├── 0213.svg │ ├── 0214.svg │ ├── 0215.svg │ ├── 0216.svg │ ├── 0217.svg │ ├── 0218.svg │ ├── 0219.svg │ ├── 0220.svg │ ├── 0221.svg │ ├── 0222.svg │ ├── 0223.svg │ ├── 0224.svg │ ├── 0225.svg │ ├── 0226.svg │ ├── 0227.svg │ ├── 0228.svg │ ├── 0229.svg │ ├── 0230.svg │ ├── 0231.svg │ ├── 0232.svg │ ├── 0233.svg │ ├── 0234.svg │ ├── 0235.svg │ ├── 0236.svg │ ├── 0237.svg │ ├── 0238.svg │ ├── 0239.svg │ ├── 0240.svg │ ├── 0241.svg │ ├── 0242.svg │ ├── 0243.svg │ ├── 0244.svg │ ├── 0245.svg │ ├── 0246.svg │ ├── 0247.svg │ ├── 0248.svg │ ├── 0249.svg │ ├── 0250.svg │ ├── 0251.svg │ ├── 0252.svg │ ├── 0253.svg │ ├── 0254.svg │ ├── 0255.svg │ ├── 0256.svg │ ├── 0257.svg │ ├── 0258.svg │ ├── 0259.svg │ ├── 0260.svg │ ├── 0261.svg │ ├── 0262.svg │ ├── 0263.svg │ ├── 0264.svg │ ├── 0265.svg │ ├── 0266.svg │ ├── 0267.svg │ ├── 0268.svg │ ├── 0269.svg │ ├── 0270.svg │ ├── 0271.svg │ ├── 0272.svg │ ├── 0273.svg │ ├── 0274.svg │ ├── 0275.svg │ ├── 0276.svg │ ├── 0277.svg │ ├── 0278.svg │ ├── 0279.svg │ ├── 0280.svg │ ├── 0281.svg │ ├── 0282.svg │ ├── 0283.svg │ ├── 0284.svg │ ├── 0285.svg │ ├── 0286.svg │ ├── 0287.svg │ ├── 0288.svg │ ├── 0289.svg │ ├── 0290.svg │ ├── 0291.svg │ ├── 0292.svg │ ├── 0293.svg │ ├── 0294.svg │ ├── 0295.svg │ ├── 0296.svg │ ├── 0297.svg │ ├── 0298.svg │ ├── 0299.svg │ ├── 0300.svg │ ├── 0301.svg │ ├── 0302.svg │ ├── 0303.svg │ ├── 0304.svg │ ├── 0305.svg │ ├── 0306.svg │ ├── 0307.svg │ ├── 0308.svg │ ├── 0309.svg │ ├── 0310.svg │ ├── 0311.svg │ ├── 0312.svg │ ├── 0313.svg │ ├── 0314.svg │ ├── 0315.svg │ ├── 0316.svg │ ├── 0317.svg │ ├── 0318.svg │ ├── 0319.svg │ ├── 0320.svg │ ├── 0321.svg │ ├── 0322.svg │ ├── 0323.svg │ ├── 0324.svg │ ├── 0325.svg │ ├── 0326.svg │ ├── 0327.svg │ ├── 0328.svg │ ├── 0329.svg │ ├── 0330.svg │ ├── 0331.svg │ ├── 0332.svg │ ├── 0333.svg │ ├── 0334.svg │ ├── 0335.svg │ ├── 0336.svg │ ├── 0337.svg │ ├── 0338.svg │ ├── 0339.svg │ ├── 0340.svg │ ├── 0341.svg │ ├── 0342.svg │ ├── 0343.svg │ ├── 0344.svg │ ├── 0345.svg │ ├── 0346.svg │ ├── 0347.svg │ ├── 0348.svg │ ├── 0349.svg │ ├── 0350.svg │ ├── 0351.svg │ ├── 0352.svg │ ├── 0353.svg │ ├── 0354.svg │ ├── 0355.svg │ ├── 0356.svg │ ├── 0357.svg │ ├── 0358.svg │ ├── 0359.svg │ ├── 0360.svg │ ├── 0361.svg │ ├── 0362.svg │ ├── 0363.svg │ ├── 0364.svg │ ├── 0365.svg │ ├── 0366.svg │ ├── 0367.svg │ ├── 0368.svg │ ├── 0369.svg │ ├── 0370.svg │ ├── 0371.svg │ ├── 0372.svg │ ├── 0373.svg │ ├── 0374.svg │ ├── 0375.svg │ ├── 0376.svg │ ├── 0377.svg │ ├── 0378.svg │ ├── 0379.svg │ ├── 0380.svg │ ├── 0381.svg │ ├── 0382.svg │ ├── 0383.svg │ ├── 0384.svg │ ├── 0385.svg │ ├── 0386.svg │ ├── 0387.svg │ ├── 0388.svg │ ├── 0389.svg │ ├── 0390.svg │ ├── 0391.svg │ ├── 0392.svg │ ├── 0393.svg │ ├── 0394.svg │ ├── 0395.svg │ ├── 0396.svg │ ├── 0397.svg │ ├── 0398.svg │ ├── 0399.svg │ ├── 0400.svg │ ├── 0401.svg │ ├── 0402.svg │ ├── 0403.svg │ ├── 0404.svg │ ├── 0405.svg │ ├── 0406.svg │ ├── 0407.svg │ ├── 0408.svg │ ├── 0409.svg │ ├── 0410.svg │ ├── 0411.svg │ ├── 0412.svg │ ├── 0413.svg │ ├── 0414.svg │ ├── 0415.svg │ ├── 0416.svg │ ├── 0417.svg │ ├── 0418.svg │ ├── 0419.svg │ ├── 0420.svg │ ├── 0421.svg │ ├── 0422.svg │ ├── 0423.svg │ ├── 0424.svg │ ├── 0425.svg │ ├── 0426.svg │ ├── 0427.svg │ ├── 0428.svg │ ├── 0429.svg │ ├── 0430.svg │ ├── 0431.svg │ ├── 0432.svg │ ├── 0433.svg │ ├── 0434.svg │ ├── 0435.svg │ ├── 0436.svg │ ├── 0437.svg │ ├── 0438.svg │ ├── 0439.svg │ ├── 0440.svg │ ├── 0441.svg │ ├── 0442.svg │ ├── 0443.svg │ ├── 0444.svg │ ├── 0445.svg │ ├── 0446.svg │ ├── 0447.svg │ ├── 0448.svg │ ├── 0449.svg │ ├── 0450.svg │ ├── 0451.svg │ ├── 0452.svg │ ├── 0453.svg │ ├── 0454.svg │ ├── 0455.svg │ ├── 0456.svg │ ├── 0457.svg │ ├── 0458.svg │ ├── 0459.svg │ ├── 0460.svg │ ├── 0461.svg │ ├── 0462.svg │ ├── 0463.svg │ ├── 0464.svg │ ├── 0465.svg │ ├── 0466.svg │ ├── 0467.svg │ ├── 0468.svg │ ├── 0469.svg │ ├── 0470.svg │ ├── 0471.svg │ ├── 0472.svg │ ├── 0473.svg │ ├── 0474.svg │ ├── 0475.svg │ ├── 0476.svg │ ├── 0477.svg │ ├── 0478.svg │ ├── 0479.svg │ ├── 0480.svg │ ├── 0481.svg │ ├── 0482.svg │ ├── 0483.svg │ ├── 0484.svg │ ├── 0485.svg │ ├── 0486.svg │ ├── 0487.svg │ ├── 0488.svg │ ├── 0489.svg │ ├── 0490.svg │ ├── 0491.svg │ ├── 0492.svg │ ├── 0493.svg │ ├── 0494.svg │ ├── 0495.svg │ ├── 0496.svg │ ├── 0497.svg │ ├── 0498.svg │ ├── 0499.svg │ ├── 0500.svg │ ├── 0501.svg │ ├── 0502.svg │ ├── 0503.svg │ ├── 0504.svg │ ├── 0505.svg │ ├── 0506.svg │ ├── 0507.svg │ ├── 0508.svg │ ├── 0509.svg │ ├── 0510.svg │ ├── 0511.svg │ ├── 0512.svg │ ├── 0513.svg │ ├── 0514.svg │ ├── 0515.svg │ ├── 0516.svg │ ├── 0517.svg │ ├── 0518.svg │ ├── 0519.svg │ ├── 0520.svg │ ├── 0521.svg │ ├── 0522.svg │ ├── 0523.svg │ ├── 0524.svg │ ├── 0525.svg │ ├── 0526.svg │ ├── 0527.svg │ ├── 0528.svg │ ├── 0529.svg │ ├── 0530.svg │ ├── 0531.svg │ ├── 0532.svg │ ├── 0533.svg │ ├── 0534.svg │ ├── 0535.svg │ ├── 0536.svg │ ├── 0537.svg │ ├── 0538.svg │ ├── 0539.svg │ ├── 0540.svg │ ├── 0541.svg │ ├── 0542.svg │ ├── 0543.svg │ ├── 0544.svg │ ├── 0545.svg │ ├── 0546.svg │ ├── 0547.svg │ ├── 0548.svg │ ├── 0549.svg │ ├── 0550.svg │ ├── 0551.svg │ ├── 0552.svg │ ├── 0553.svg │ ├── 0554.svg │ ├── 0555.svg │ ├── 0556.svg │ ├── 0557.svg │ ├── 0558.svg │ ├── 0559.svg │ ├── 0560.svg │ ├── 0561.svg │ ├── 0562.svg │ ├── 0563.svg │ ├── 0564.svg │ ├── 0565.svg │ ├── 0566.svg │ ├── 0567.svg │ ├── 0568.svg │ ├── 0569.svg │ ├── 0570.svg │ ├── 0571.svg │ ├── 0572.svg │ ├── 0573.svg │ ├── 0574.svg │ ├── 0575.svg │ ├── 0576.svg │ ├── 0577.svg │ ├── 0578.svg │ ├── 0579.svg │ ├── 0580.svg │ ├── 0581.svg │ ├── 0582.svg │ ├── 0583.svg │ ├── 0584.svg │ ├── 0585.svg │ ├── 0586.svg │ ├── 0587.svg │ ├── 0588.svg │ ├── 0589.svg │ ├── 0590.svg │ ├── 0591.svg │ ├── 0592.svg │ ├── 0593.svg │ ├── 0594.svg │ ├── 0595.svg │ ├── 0596.svg │ ├── 0597.svg │ ├── 0598.svg │ ├── 0599.svg │ ├── 0600.svg │ ├── 0601.svg │ ├── 0602.svg │ ├── 0603.svg │ ├── 0604.svg │ ├── 0605.svg │ ├── 0606.svg │ ├── 0607.svg │ ├── 0608.svg │ ├── 0609.svg │ ├── 0610.svg │ ├── 0611.svg │ ├── 0612.svg │ ├── 0613.svg │ ├── 0614.svg │ ├── 0615.svg │ ├── 0616.svg │ ├── 0617.svg │ ├── 0618.svg │ ├── 0619.svg │ ├── 0620.svg │ ├── 0621.svg │ ├── 0622.svg │ ├── 0623.svg │ ├── 0624.svg │ ├── 0625.svg │ ├── 0626.svg │ ├── 0627.svg │ ├── 0628.svg │ ├── 0629.svg │ ├── 0630.svg │ ├── 0631.svg │ ├── 0632.svg │ ├── 0633.svg │ ├── 0634.svg │ ├── 0635.svg │ ├── 0636.svg │ ├── 0637.svg │ ├── 0638.svg │ ├── 0639.svg │ ├── 0640.svg │ ├── 0641.svg │ ├── 0642.svg │ ├── 0643.svg │ ├── 0644.svg │ ├── 0645.svg │ ├── 0646.svg │ ├── 0647.svg │ ├── 0648.svg │ ├── 0649.svg │ ├── 0650.svg │ ├── 0651.svg │ ├── 0652.svg │ ├── 0653.svg │ ├── 0654.svg │ ├── 0655.svg │ ├── 0656.svg │ ├── 0657.svg │ ├── 0658.svg │ ├── 0659.svg │ ├── 0660.svg │ ├── 0661.svg │ ├── 0662.svg │ ├── 0663.svg │ ├── 0664.svg │ ├── 0665.svg │ ├── 0666.svg │ ├── 0667.svg │ ├── 0668.svg │ ├── 0669.svg │ ├── 0670.svg │ ├── 0671.svg │ ├── 0672.svg │ ├── 0673.svg │ ├── 0674.svg │ ├── 0675.svg │ ├── 0676.svg │ ├── 0677.svg │ ├── 0678.svg │ ├── 0679.svg │ ├── 0680.svg │ ├── 0681.svg │ ├── 0682.svg │ ├── 0683.svg │ ├── 0684.svg │ ├── 0685.svg │ ├── 0686.svg │ ├── 0687.svg │ ├── 0688.svg │ ├── 0689.svg │ ├── 0690.svg │ ├── 0691.svg │ ├── 0692.svg │ ├── 0693.svg │ ├── 0694.svg │ ├── 0695.svg │ ├── 0696.svg │ ├── 0697.svg │ ├── 0698.svg │ ├── 0699.svg │ ├── 0700.svg │ ├── 0701.svg │ ├── 0702.svg │ ├── 0703.svg │ ├── 0704.svg │ ├── 0705.svg │ ├── 0706.svg │ ├── 0707.svg │ ├── 0708.svg │ ├── 0709.svg │ ├── 0710.svg │ ├── 0711.svg │ ├── 0712.svg │ ├── 0713.svg │ ├── 0714.svg │ ├── 0715.svg │ ├── 0716.svg │ ├── 0717.svg │ ├── 0718.svg │ ├── 0719.svg │ ├── 0720.svg │ ├── 0721.svg │ ├── 0722.svg │ ├── 0723.svg │ ├── 0724.svg │ ├── 0725.svg │ ├── 0726.svg │ ├── 0727.svg │ ├── 0728.svg │ ├── 0729.svg │ ├── 0730.svg │ ├── 0731.svg │ ├── 0732.svg │ ├── 0733.svg │ ├── 0734.svg │ ├── 0735.svg │ ├── 0736.svg │ ├── 0737.svg │ ├── 0738.svg │ ├── 0739.svg │ ├── 0740.svg │ ├── 0741.svg │ ├── 0742.svg │ ├── 0743.svg │ ├── 0744.svg │ ├── 0745.svg │ ├── 0746.svg │ ├── 0747.svg │ ├── 0748.svg │ ├── 0749.svg │ ├── 0750.svg │ ├── 0751.svg │ ├── 0752.svg │ ├── 0753.svg │ ├── 0754.svg │ ├── 0755.svg │ ├── 0756.svg │ ├── 0757.svg │ ├── 0758.svg │ ├── 0759.svg │ ├── 0760.svg │ ├── 0761.svg │ ├── 0762.svg │ ├── 0763.svg │ ├── 0764.svg │ ├── 0765.svg │ ├── 0766.svg │ ├── 0767.svg │ ├── 0768.svg │ ├── 0769.svg │ ├── 0770.svg │ ├── 0771.svg │ ├── 0772.svg │ ├── 0773.svg │ ├── 0774.svg │ ├── 0775.svg │ ├── 0776.svg │ ├── 0777.svg │ ├── 0778.svg │ ├── 0779.svg │ ├── 0780.svg │ ├── 0781.svg │ ├── 0782.svg │ ├── 0783.svg │ ├── 0784.svg │ ├── 0785.svg │ ├── 0786.svg │ ├── 0787.svg │ ├── 0788.svg │ ├── 0789.svg │ ├── 0790.svg │ ├── 0791.svg │ ├── 0792.svg │ ├── 0793.svg │ ├── 0794.svg │ ├── 0795.svg │ ├── 0796.svg │ ├── 0797.svg │ ├── 0798.svg │ ├── 0799.svg │ ├── 0800.svg │ ├── 0801.svg │ ├── 0802.svg │ ├── 0803.svg │ ├── 0804.svg │ ├── 0805.svg │ ├── 0806.svg │ ├── 0807.svg │ ├── 0808.svg │ ├── 0809.svg │ ├── 0810.svg │ ├── 0811.svg │ ├── 0812.svg │ ├── 0813.svg │ ├── 0814.svg │ ├── 0815.svg │ ├── 0816.svg │ ├── 0817.svg │ ├── 0818.svg │ ├── 0819.svg │ ├── 0820.svg │ ├── 0821.svg │ ├── 0822.svg │ ├── 0823.svg │ ├── 0824.svg │ ├── 0825.svg │ ├── 0826.svg │ ├── 0827.svg │ ├── 0828.svg │ ├── 0829.svg │ ├── 0830.svg │ ├── 0831.svg │ ├── 0832.svg │ ├── 0833.svg │ ├── 0834.svg │ ├── 0835.svg │ ├── 0836.svg │ ├── 0837.svg │ ├── 0838.svg │ ├── 0839.svg │ ├── 0840.svg │ ├── 0841.svg │ ├── 0842.svg │ ├── 0843.svg │ ├── 0844.svg │ ├── 0845.svg │ ├── 0846.svg │ ├── 0847.svg │ ├── 0848.svg │ ├── 0849.svg │ ├── 0850.svg │ ├── 0851.svg │ ├── 0852.svg │ ├── 0853.svg │ ├── 0854.svg │ ├── 0855.svg │ ├── 0856.svg │ ├── 0857.svg │ ├── 0858.svg │ ├── 0859.svg │ ├── 0860.svg │ ├── 0861.svg │ ├── 0862.svg │ ├── 0863.svg │ ├── 0864.svg │ ├── 0865.svg │ ├── 0866.svg │ ├── 0867.svg │ ├── 0868.svg │ ├── 0869.svg │ ├── 0870.svg │ ├── 0871.svg │ ├── 0872.svg │ ├── 0873.svg │ ├── 0874.svg │ ├── 0875.svg │ ├── 0876.svg │ ├── 0877.svg │ ├── 0878.svg │ ├── 0879.svg │ ├── 0880.svg │ ├── 0881.svg │ ├── 0882.svg │ ├── 0883.svg │ ├── 0884.svg │ ├── 0885.svg │ ├── 0886.svg │ ├── 0887.svg │ ├── 0888.svg │ ├── 0889.svg │ ├── 0890.svg │ ├── 0891.svg │ ├── 0892.svg │ ├── 0893.svg │ ├── 0894.svg │ ├── 0895.svg │ ├── 0896.svg │ ├── 0897.svg │ ├── 0898.svg │ ├── 0899.svg │ ├── 0900.svg │ ├── 0901.svg │ ├── 0902.svg │ ├── 0903.svg │ ├── 0904.svg │ ├── 0905.svg │ ├── 0906.svg │ ├── 0907.svg │ ├── 0908.svg │ ├── 0909.svg │ ├── 0910.svg │ ├── 0911.svg │ ├── 0912.svg │ ├── 0913.svg │ ├── 0914.svg │ ├── 0915.svg │ ├── 0916.svg │ ├── 0917.svg │ ├── 0918.svg │ ├── 0919.svg │ ├── 0920.svg │ ├── 0921.svg │ ├── 0922.svg │ ├── 0923.svg │ ├── 0924.svg │ ├── 0925.svg │ ├── 0926.svg │ ├── 0927.svg │ ├── 0928.svg │ ├── 0929.svg │ ├── 0930.svg │ ├── 0931.svg │ ├── 0932.svg │ ├── 0933.svg │ ├── 0934.svg │ ├── 0935.svg │ ├── 0936.svg │ ├── 0937.svg │ ├── 0938.svg │ ├── 0939.svg │ ├── 0940.svg │ ├── 0941.svg │ ├── 0942.svg │ ├── 0943.svg │ ├── 0944.svg │ ├── 0945.svg │ ├── 0946.svg │ ├── 0947.svg │ ├── 0948.svg │ ├── 0949.svg │ ├── 0950.svg │ ├── 0951.svg │ ├── 0952.svg │ ├── 0953.svg │ ├── 0954.svg │ ├── 0955.svg │ ├── 0956.svg │ ├── 0957.svg │ ├── 0958.svg │ ├── 0959.svg │ ├── 0960.svg │ ├── 0961.svg │ ├── 0962.svg │ ├── 0963.svg │ ├── 0964.svg │ ├── 0965.svg │ ├── 0966.svg │ ├── 0967.svg │ ├── 0968.svg │ ├── 0969.svg │ ├── 0970.svg │ ├── 0971.svg │ ├── 0972.svg │ ├── 0973.svg │ ├── 0974.svg │ ├── 0975.svg │ ├── 0976.svg │ ├── 0977.svg │ ├── 0978.svg │ ├── 0979.svg │ ├── 0980.svg │ ├── 0981.svg │ ├── 0982.svg │ ├── 0983.svg │ ├── 0984.svg │ ├── 0985.svg │ ├── 0986.svg │ ├── 0987.svg │ ├── 0988.svg │ ├── 0989.svg │ ├── 0990.svg │ ├── 0991.svg │ ├── 0992.svg │ ├── 0993.svg │ ├── 0994.svg │ ├── 0995.svg │ ├── 0996.svg │ ├── 0997.svg │ ├── 0998.svg │ ├── 0999.svg │ ├── 1000.svg │ ├── 1001.svg │ ├── 1002.svg │ ├── 1003.svg │ ├── 1004.svg │ ├── 1005.svg │ ├── 1006.svg │ ├── 1007.svg │ ├── 1008.svg │ ├── 1009.svg │ ├── 1010.svg │ ├── 1011.svg │ ├── 1012.svg │ ├── 1013.svg │ ├── 1014.svg │ ├── 1015.svg │ ├── 1016.svg │ ├── 1017.svg │ ├── 1018.svg │ ├── 1019.svg │ ├── 1020.svg │ ├── 1021.svg │ ├── 1022.svg │ ├── 1023.svg │ ├── 1024.svg │ ├── 1025.svg │ ├── 1026.svg │ ├── 1027.svg │ ├── 1028.svg │ ├── 1029.svg │ ├── 1030.svg │ ├── 1031.svg │ ├── 1032.svg │ ├── 1033.svg │ ├── 1034.svg │ ├── 1035.svg │ ├── 1036.svg │ ├── 1037.svg │ ├── 1038.svg │ ├── 1039.svg │ ├── 1040.svg │ ├── 1041.svg │ ├── 1042.svg │ ├── 1043.svg │ ├── 1044.svg │ ├── 1045.svg │ ├── 1046.svg │ ├── 1047.svg │ ├── 1048.svg │ ├── 1049.svg │ ├── 1050.svg │ ├── 1051.svg │ ├── 1052.svg │ ├── 1053.svg │ ├── 1054.svg │ ├── 1055.svg │ ├── 1056.svg │ ├── 1057.svg │ ├── 1058.svg │ ├── 1059.svg │ ├── 1060.svg │ ├── 1061.svg │ ├── 1062.svg │ ├── 1063.svg │ ├── 1064.svg │ ├── 1065.svg │ ├── 1066.svg │ ├── 1067.svg │ ├── 1068.svg │ ├── 1069.svg │ ├── 1070.svg │ ├── 1071.svg │ ├── 1072.svg │ ├── 1073.svg │ ├── 1074.svg │ ├── 1075.svg │ ├── 1076.svg │ ├── 1077.svg │ ├── 1078.svg │ ├── 1079.svg │ ├── 1080.svg │ ├── 1081.svg │ ├── 1082.svg │ ├── 1083.svg │ ├── 1084.svg │ ├── 1085.svg │ ├── 1086.svg │ ├── 1087.svg │ ├── 1088.svg │ ├── 1089.svg │ ├── 1090.svg │ ├── 1091.svg │ ├── 1092.svg │ ├── 1093.svg │ ├── 1094.svg │ ├── 1095.svg │ ├── 1096.svg │ ├── 1097.svg │ ├── 1098.svg │ ├── 1099.svg │ ├── 1100.svg │ ├── 1101.svg │ ├── 1102.svg │ ├── 1103.svg │ ├── 1104.svg │ ├── 1105.svg │ ├── 1106.svg │ ├── 1107.svg │ ├── 1108.svg │ ├── 1109.svg │ ├── 1110.svg │ ├── 1111.svg │ ├── 1112.svg │ ├── 1113.svg │ ├── 1114.svg │ ├── 1115.svg │ ├── 1116.svg │ ├── 1117.svg │ ├── 1118.svg │ ├── 1119.svg │ ├── 1120.svg │ ├── 1121.svg │ ├── 1122.svg │ ├── 1123.svg │ ├── 1124.svg │ ├── 1125.svg │ ├── 1126.svg │ ├── 1127.svg │ ├── 1128.svg │ ├── 1129.svg │ ├── 1130.svg │ ├── 1131.svg │ ├── 1132.svg │ ├── 1133.svg │ ├── 1134.svg │ ├── 1135.svg │ ├── 1136.svg │ ├── 1137.svg │ ├── 1138.svg │ ├── 1139.svg │ ├── 1140.svg │ ├── 1141.svg │ ├── 1142.svg │ ├── 1143.svg │ ├── 1144.svg │ ├── 1145.svg │ ├── 1146.svg │ ├── 1147.svg │ ├── 1148.svg │ ├── 1149.svg │ ├── 1150.svg │ ├── 1151.svg │ ├── 1152.svg │ ├── 1153.svg │ ├── 1154.svg │ ├── 1155.svg │ ├── 1156.svg │ ├── 1157.svg │ ├── 1158.svg │ ├── 1159.svg │ ├── 1160.svg │ ├── 1161.svg │ ├── 1162.svg │ ├── 1163.svg │ ├── 1164.svg │ ├── 1165.svg │ ├── 1166.svg │ ├── 1167.svg │ ├── 1168.svg │ ├── 1169.svg │ ├── 1170.svg │ ├── 1171.svg │ ├── 1172.svg │ ├── 1173.svg │ ├── 1174.svg │ ├── 1175.svg │ ├── 1176.svg │ ├── 1177.svg │ ├── 1178.svg │ ├── 1179.svg │ ├── 1180.svg │ ├── 1181.svg │ ├── 1182.svg │ ├── 1183.svg │ ├── 1184.svg │ ├── 1185.svg │ ├── 1186.svg │ ├── 1187.svg │ ├── 1188.svg │ ├── 1189.svg │ ├── 1190.svg │ ├── 1191.svg │ ├── 1192.svg │ ├── 1193.svg │ ├── 1194.svg │ ├── 1195.svg │ ├── 1196.svg │ ├── 1197.svg │ ├── 1198.svg │ ├── 1199.svg │ ├── 1200.svg │ ├── 1201.svg │ ├── 1202.svg │ ├── 1203.svg │ ├── 1204.svg │ ├── 1205.svg │ ├── 1206.svg │ ├── 1207.svg │ ├── 1208.svg │ ├── 1209.svg │ ├── 1210.svg │ ├── 1211.svg │ ├── 1212.svg │ ├── 1213.svg │ ├── 1214.svg │ ├── 1215.svg │ ├── 1216.svg │ ├── 1217.svg │ ├── 1218.svg │ ├── 1219.svg │ ├── 1220.svg │ ├── 1221.svg │ ├── 1222.svg │ ├── 1223.svg │ ├── 1224.svg │ ├── 1225.svg │ ├── 1226.svg │ ├── 1227.svg │ ├── 1228.svg │ ├── 1229.svg │ ├── 1230.svg │ ├── 1231.svg │ ├── 1232.svg │ ├── 1233.svg │ ├── 1234.svg │ ├── 1235.svg │ ├── 1236.svg │ ├── 1237.svg │ ├── 1238.svg │ ├── 1239.svg │ ├── 1240.svg │ ├── 1241.svg │ ├── 1242.svg │ ├── 1243.svg │ ├── 1244.svg │ ├── 1245.svg │ ├── 1246.svg │ ├── 1247.svg │ ├── 1248.svg │ ├── 1249.svg │ ├── 1250.svg │ ├── 1251.svg │ ├── 1252.svg │ ├── 1253.svg │ ├── 1254.svg │ ├── 1255.svg │ ├── 1256.svg │ ├── 1257.svg │ ├── 1258.svg │ ├── 1259.svg │ ├── 1260.svg │ ├── 1261.svg │ ├── 1262.svg │ ├── 1263.svg │ ├── 1264.svg │ ├── 1265.svg │ ├── 1266.svg │ ├── 1267.svg │ ├── 1268.svg │ ├── 1269.svg │ ├── 1270.svg │ ├── 1271.svg │ ├── 1272.svg │ ├── 1273.svg │ ├── 1274.svg │ ├── 1275.svg │ ├── 1276.svg │ ├── 1277.svg │ ├── 1278.svg │ ├── 1279.svg │ ├── 1280.svg │ ├── 1281.svg │ ├── 1282.svg │ ├── 1283.svg │ ├── 1284.svg │ ├── 1285.svg │ ├── 1286.svg │ ├── 1287.svg │ ├── 1288.svg │ ├── 1289.svg │ ├── 1290.svg │ ├── 1291.svg │ ├── 1292.svg │ ├── 1293.svg │ ├── 1294.svg │ ├── 1295.svg │ ├── 1296.svg │ ├── 1297.svg │ ├── 1298.svg │ ├── 1299.svg │ ├── 1300.svg │ ├── 1301.svg │ ├── 1302.svg │ ├── 1303.svg │ ├── 1304.svg │ ├── 1305.svg │ ├── 1306.svg │ ├── 1307.svg │ ├── 1308.svg │ ├── 1309.svg │ ├── 1310.svg │ ├── 1311.svg │ ├── 1312.svg │ ├── 1313.svg │ ├── 1314.svg │ ├── 1315.svg │ ├── 1316.svg │ ├── 1317.svg │ ├── 1318.svg │ ├── 1319.svg │ ├── 1320.svg │ ├── 1321.svg │ ├── 1322.svg │ ├── 1323.svg │ ├── 1324.svg │ ├── 1325.svg │ ├── 1326.svg │ ├── 1327.svg │ ├── 1328.svg │ ├── 1329.svg │ ├── 1330.svg │ ├── 1331.svg │ ├── 1332.svg │ ├── 1333.svg │ ├── 1334.svg │ ├── 1335.svg │ ├── 1336.svg │ ├── 1337.svg │ ├── 1338.svg │ ├── 1339.svg │ ├── 1340.svg │ ├── 1341.svg │ ├── 1342.svg │ ├── 1343.svg │ ├── 1344.svg │ ├── 1345.svg │ ├── 1346.svg │ ├── 1347.svg │ ├── 1348.svg │ ├── 1349.svg │ ├── 1350.svg │ ├── 1351.svg │ ├── 1352.svg │ ├── 1353.svg │ ├── 1354.svg │ ├── 1355.svg │ ├── 1356.svg │ ├── 1357.svg │ ├── 1358.svg │ ├── 1359.svg │ ├── 1360.svg │ ├── 1361.svg │ ├── 1362.svg │ ├── 1363.svg │ ├── 1364.svg │ ├── 1365.svg │ ├── 1366.svg │ ├── 1367.svg │ ├── 1368.svg │ ├── 1369.svg │ ├── 1370.svg │ ├── 1371.svg │ ├── 1372.svg │ ├── 1373.svg │ ├── 1374.svg │ ├── 1375.svg │ ├── 1376.svg │ ├── 1377.svg │ ├── 1378.svg │ ├── 1379.svg │ ├── 1380.svg │ ├── 1381.svg │ ├── 1382.svg │ ├── 1383.svg │ ├── 1384.svg │ ├── 1385.svg │ ├── 1386.svg │ ├── 1387.svg │ ├── 1388.svg │ ├── 1389.svg │ ├── 1390.svg │ ├── 1391.svg │ ├── 1392.svg │ ├── 1393.svg │ ├── 1394.svg │ ├── 1395.svg │ ├── 1396.svg │ ├── 1397.svg │ ├── 1398.svg │ ├── 1399.svg │ ├── 1400.svg │ ├── 1401.svg │ ├── 1402.svg │ ├── 1403.svg │ ├── 1404.svg │ ├── 1405.svg │ ├── 1406.svg │ ├── 1407.svg │ ├── 1408.svg │ ├── 1409.svg │ ├── 1410.svg │ ├── 1411.svg │ ├── 1412.svg │ ├── 1413.svg │ ├── 1414.svg │ ├── 1415.svg │ ├── 1416.svg │ ├── 1417.svg │ ├── 1418.svg │ ├── 1419.svg │ ├── 1420.svg │ ├── 1421.svg │ ├── 1422.svg │ ├── 1423.svg │ ├── 1424.svg │ ├── 1425.svg │ ├── 1426.svg │ ├── 1427.svg │ ├── 1428.svg │ ├── 1429.svg │ ├── 1430.svg │ ├── 1431.svg │ ├── 1432.svg │ ├── 1433.svg │ ├── 1434.svg │ ├── 1435.svg │ ├── 1436.svg │ ├── 1437.svg │ ├── 1438.svg │ ├── 1439.svg │ ├── 1440.svg │ ├── 1441.svg │ ├── 1442.svg │ ├── 1443.svg │ ├── 1444.svg │ ├── 1445.svg │ ├── 1446.svg │ ├── 1447.svg │ ├── 1448.svg │ ├── 1449.svg │ ├── 1450.svg │ ├── 1451.svg │ ├── 1452.svg │ ├── 1453.svg │ ├── 1454.svg │ ├── 1455.svg │ ├── 1456.svg │ ├── 1457.svg │ ├── 1458.svg │ ├── 1459.svg │ ├── 1460.svg │ ├── 1461.svg │ ├── 1462.svg │ ├── 1463.svg │ ├── 1464.svg │ ├── 1465.svg │ ├── 1466.svg │ ├── 1467.svg │ ├── 1468.svg │ ├── 1469.svg │ ├── 1470.svg │ ├── 1471.svg │ ├── 1472.svg │ ├── 1473.svg │ ├── 1474.svg │ ├── 1475.svg │ ├── 1476.svg │ ├── 1477.svg │ ├── 1478.svg │ ├── 1479.svg │ ├── 1480.svg │ ├── 1481.svg │ ├── 1482.svg │ ├── 1483.svg │ ├── 1484.svg │ ├── 1485.svg │ ├── 1486.svg │ ├── 1487.svg │ ├── 1488.svg │ ├── 1489.svg │ ├── 1490.svg │ ├── 1491.svg │ ├── 1492.svg │ ├── 1493.svg │ ├── 1494.svg │ ├── 1495.svg │ ├── 1496.svg │ ├── 1497.svg │ ├── 1498.svg │ ├── 1499.svg │ ├── 1500.svg │ ├── 1501.svg │ ├── 1502.svg │ ├── 1503.svg │ ├── 1504.svg │ ├── 1505.svg │ ├── 1506.svg │ ├── 1507.svg │ ├── 1508.svg │ ├── 1509.svg │ ├── 1510.svg │ ├── 1511.svg │ ├── 1512.svg │ ├── 1513.svg │ ├── 1514.svg │ ├── 1515.svg │ ├── 1516.svg │ ├── 1517.svg │ ├── 1518.svg │ ├── 1519.svg │ ├── 1520.svg │ ├── 1521.svg │ ├── 1522.svg │ ├── 1523.svg │ ├── 1524.svg │ ├── 1525.svg │ ├── 1526.svg │ ├── 1527.svg │ ├── 1528.svg │ ├── 1529.svg │ ├── 1530.svg │ ├── 1531.svg │ ├── 1532.svg │ ├── 1533.svg │ ├── 1534.svg │ ├── 1535.svg │ ├── 1536.svg │ ├── 1537.svg │ ├── 1538.svg │ ├── 1539.svg │ ├── 1540.svg │ ├── 1541.svg │ ├── 1542.svg │ ├── 1543.svg │ ├── 1544.svg │ ├── 1545.svg │ ├── 1546.svg │ ├── 1547.svg │ ├── 1548.svg │ ├── 1549.svg │ ├── 1550.svg │ ├── 1551.svg │ ├── 1552.svg │ ├── 1553.svg │ ├── 1554.svg │ ├── 1555.svg │ ├── 1556.svg │ ├── 1557.svg │ ├── 1558.svg │ ├── 1559.svg │ ├── 1560.svg │ ├── 1561.svg │ ├── 1562.svg │ ├── 1563.svg │ ├── 1564.svg │ ├── 1565.svg │ ├── 1566.svg │ ├── 1567.svg │ ├── 1568.svg │ ├── 1569.svg │ ├── 1570.svg │ ├── 1571.svg │ ├── 1572.svg │ ├── 1573.svg │ ├── 1574.svg │ ├── 1575.svg │ ├── 1576.svg │ ├── 1577.svg │ ├── 1578.svg │ ├── 1579.svg │ ├── 1580.svg │ ├── 1581.svg │ ├── 1582.svg │ ├── 1583.svg │ ├── 1584.svg │ ├── 1585.svg │ ├── 1586.svg │ ├── 1587.svg │ ├── 1588.svg │ ├── 1589.svg │ ├── 1590.svg │ ├── 1591.svg │ ├── 1592.svg │ ├── 1593.svg │ ├── 1594.svg │ ├── 1595.svg │ ├── 1596.svg │ ├── 1597.svg │ ├── 1598.svg │ ├── 1599.svg │ ├── 1600.svg │ ├── 1601.svg │ ├── 1602.svg │ ├── 1603.svg │ ├── 1604.svg │ ├── 1605.svg │ ├── 1606.svg │ ├── 1607.svg │ ├── 1608.svg │ ├── 1609.svg │ ├── 1610.svg │ ├── 1611.svg │ ├── 1612.svg │ ├── 1613.svg │ ├── 1614.svg │ ├── 1615.svg │ ├── 1616.svg │ ├── 1617.svg │ ├── 1618.svg │ ├── 1619.svg │ ├── 1620.svg │ ├── 1621.svg │ ├── 1622.svg │ ├── 1623.svg │ ├── 1624.svg │ ├── 1625.svg │ ├── 1626.svg │ ├── 1627.svg │ ├── 1628.svg │ ├── 1629.svg │ ├── 1630.svg │ ├── 1631.svg │ ├── 1632.svg │ ├── 1633.svg │ ├── 1634.svg │ ├── 1635.svg │ ├── 1636.svg │ ├── 1637.svg │ ├── 1638.svg │ ├── 1639.svg │ ├── 1640.svg │ ├── 1641.svg │ ├── 1642.svg │ ├── 1643.svg │ ├── 1644.svg │ ├── 1645.svg │ ├── 1646.svg │ ├── 1647.svg │ ├── 1648.svg │ ├── 1649.svg │ ├── 1650.svg │ ├── 1651.svg │ ├── 1652.svg │ ├── 1653.svg │ ├── 1654.svg │ ├── 1655.svg │ ├── 1656.svg │ ├── 1657.svg │ ├── 1658.svg │ ├── 1659.svg │ ├── 1660.svg │ ├── 1661.svg │ ├── 1662.svg │ ├── 1663.svg │ ├── 1664.svg │ ├── 1665.svg │ ├── 1666.svg │ ├── 1667.svg │ ├── 1668.svg │ ├── 1669.svg │ ├── 1670.svg │ ├── 1671.svg │ ├── 1672.svg │ ├── 1673.svg │ ├── 1674.svg │ ├── 1675.svg │ ├── 1676.svg │ ├── 1677.svg │ ├── 1678.svg │ ├── 1679.svg │ ├── 1680.svg │ ├── 1681.svg │ ├── 1682.svg │ ├── 1683.svg │ ├── 1684.svg │ ├── 1685.svg │ ├── 1686.svg │ ├── 1687.svg │ ├── 1688.svg │ ├── 1689.svg │ ├── 1690.svg │ ├── 1691.svg │ ├── 1692.svg │ ├── 1693.svg │ ├── 1694.svg │ ├── 1695.svg │ ├── 1696.svg │ ├── 1697.svg │ ├── 1698.svg │ ├── 1699.svg │ ├── 1700.svg │ ├── 1701.svg │ ├── 1702.svg │ ├── 1703.svg │ ├── 1704.svg │ ├── 1705.svg │ ├── 1706.svg │ ├── 1707.svg │ ├── 1708.svg │ ├── 1709.svg │ ├── 1710.svg │ ├── 1711.svg │ ├── 1712.svg │ ├── 1713.svg │ ├── 1714.svg │ ├── 1715.svg │ ├── 1716.svg │ ├── 1717.svg │ ├── 1718.svg │ ├── 1719.svg │ ├── 1720.svg │ ├── 1721.svg │ ├── 1722.svg │ ├── 1723.svg │ ├── 1724.svg │ ├── 1725.svg │ ├── 1726.svg │ ├── 1727.svg │ ├── 1728.svg │ ├── 1729.svg │ ├── 1730.svg │ ├── 1731.svg │ ├── 1732.svg │ ├── 1733.svg │ ├── 1734.svg │ ├── 1735.svg │ ├── 1736.svg │ ├── 1737.svg │ ├── 1738.svg │ ├── 1739.svg │ ├── 1740.svg │ ├── 1741.svg │ ├── 1742.svg │ ├── 1743.svg │ ├── 1744.svg │ ├── 1745.svg │ ├── 1746.svg │ ├── 1747.svg │ ├── 1748.svg │ ├── 1749.svg │ ├── 1750.svg │ ├── 1751.svg │ ├── 1752.svg │ ├── 1753.svg │ ├── 1754.svg │ ├── 1755.svg │ ├── 1756.svg │ ├── 1757.svg │ ├── 1758.svg │ ├── 1759.svg │ ├── 1760.svg │ ├── 1761.svg │ ├── 1762.svg │ ├── 1763.svg │ ├── 1764.svg │ ├── 1765.svg │ ├── 1766.svg │ ├── 1767.svg │ ├── 1768.svg │ ├── 1769.svg │ ├── 1770.svg │ ├── 1771.svg │ ├── 1772.svg │ ├── 1773.svg │ ├── 1774.svg │ ├── 1775.svg │ ├── 1776.svg │ ├── 1777.svg │ ├── 1778.svg │ ├── 1779.svg │ ├── 1780.svg │ ├── 1781.svg │ ├── 1782.svg │ ├── 1783.svg │ ├── 1784.svg │ ├── 1785.svg │ ├── 1786.svg │ ├── 1787.svg │ ├── 1788.svg │ ├── 1789.svg │ ├── 1790.svg │ ├── 1791.svg │ ├── 1792.svg │ ├── 1793.svg │ ├── 1794.svg │ ├── 1795.svg │ ├── 1796.svg │ ├── 1797.svg │ ├── 1798.svg │ ├── 1799.svg │ ├── 1800.svg │ ├── 1801.svg │ ├── 1802.svg │ ├── 1803.svg │ ├── 1804.svg │ ├── 1805.svg │ ├── 1806.svg │ ├── 1807.svg │ ├── 1808.svg │ ├── 1809.svg │ ├── 1810.svg │ ├── 1811.svg │ ├── 1812.svg │ ├── 1813.svg │ ├── 1814.svg │ ├── 1815.svg │ ├── 1816.svg │ ├── 1817.svg │ ├── 1818.svg │ ├── 1819.svg │ ├── 1820.svg │ ├── 1821.svg │ ├── 1822.svg │ ├── 1823.svg │ ├── 1824.svg │ ├── 1825.svg │ ├── 1826.svg │ ├── 1827.svg │ ├── 1828.svg │ ├── 1829.svg │ ├── 1830.svg │ ├── 1831.svg │ ├── 1832.svg │ ├── 1833.svg │ ├── 1834.svg │ ├── 1835.svg │ ├── 1836.svg │ ├── 1837.svg │ ├── 1838.svg │ ├── 1839.svg │ ├── 1840.svg │ ├── 1841.svg │ ├── 1842.svg │ ├── 1843.svg │ ├── 1844.svg │ ├── 1845.svg │ ├── 1846.svg │ ├── 1847.svg │ ├── 1848.svg │ ├── 1849.svg │ ├── 1850.svg │ ├── 1851.svg │ ├── 1852.svg │ ├── 1853.svg │ ├── 1854.svg │ ├── 1855.svg │ ├── 1856.svg │ ├── 1857.svg │ ├── 1858.svg │ ├── 1859.svg │ ├── 1860.svg │ ├── 1861.svg │ ├── 1862.svg │ ├── 1863.svg │ ├── 1864.svg │ ├── 1865.svg │ ├── 1866.svg │ ├── 1867.svg │ ├── 1868.svg │ ├── 1869.svg │ ├── 1870.svg │ ├── 1871.svg │ ├── 1872.svg │ ├── 1873.svg │ ├── 1874.svg │ ├── 1875.svg │ ├── 1876.svg │ ├── 1877.svg │ ├── 1878.svg │ ├── 1879.svg │ ├── 1880.svg │ ├── 1881.svg │ ├── 1882.svg │ ├── 1883.svg │ ├── 1884.svg │ ├── 1885.svg │ ├── 1886.svg │ ├── 1887.svg │ ├── 1888.svg │ ├── 1889.svg │ ├── 1890.svg │ ├── 1891.svg │ ├── 1892.svg │ ├── 1893.svg │ ├── 1894.svg │ ├── 1895.svg │ ├── 1896.svg │ ├── 1897.svg │ ├── 1898.svg │ ├── 1899.svg │ ├── 1900.svg │ ├── 1901.svg │ ├── 1902.svg │ ├── 1903.svg │ ├── 1904.svg │ ├── 1905.svg │ ├── 1906.svg │ ├── 1907.svg │ ├── 1908.svg │ ├── 1909.svg │ ├── 1910.svg │ ├── 1911.svg │ ├── 1912.svg │ ├── 1913.svg │ ├── 1914.svg │ ├── 1915.svg │ ├── 1916.svg │ ├── 1917.svg │ ├── 1918.svg │ ├── 1919.svg │ ├── 1920.svg │ ├── 1921.svg │ ├── 1922.svg │ ├── 1923.svg │ ├── 1924.svg │ ├── 1925.svg │ ├── 1926.svg │ ├── 1927.svg │ ├── 1928.svg │ ├── 1929.svg │ ├── 1930.svg │ ├── 1931.svg │ ├── 1932.svg │ ├── 1933.svg │ ├── 1934.svg │ ├── 1935.svg │ ├── 1936.svg │ ├── 1937.svg │ ├── 1938.svg │ ├── 1939.svg │ ├── 1940.svg │ ├── 1941.svg │ ├── 1942.svg │ ├── 1943.svg │ ├── 1944.svg │ ├── 1945.svg │ ├── 1946.svg │ ├── 1947.svg │ ├── 1948.svg │ ├── 1949.svg │ ├── 1950.svg │ ├── 1951.svg │ ├── 1952.svg │ ├── 1953.svg │ ├── 1954.svg │ ├── 1955.svg │ ├── 1956.svg │ ├── 1957.svg │ ├── 1958.svg │ ├── 1959.svg │ ├── 1960.svg │ ├── 1961.svg │ ├── 1962.svg │ ├── 1963.svg │ ├── 1964.svg │ ├── 1965.svg │ ├── 1966.svg │ ├── 1967.svg │ ├── 1968.svg │ ├── 1969.svg │ ├── 1970.svg │ ├── 1971.svg │ ├── 1972.svg │ ├── 1973.svg │ ├── 1974.svg │ ├── 1975.svg │ ├── 1976.svg │ ├── 1977.svg │ ├── 1978.svg │ ├── 1979.svg │ ├── 1980.svg │ ├── 1981.svg │ ├── 1982.svg │ ├── 1983.svg │ ├── 1984.svg │ ├── 1985.svg │ ├── 1986.svg │ ├── 1987.svg │ ├── 1988.svg │ ├── 1989.svg │ ├── 1990.svg │ ├── 1991.svg │ ├── 1992.svg │ ├── 1993.svg │ ├── 1994.svg │ ├── 1995.svg │ ├── 1996.svg │ ├── 1997.svg │ ├── 1998.svg │ ├── 1999.svg │ ├── 2000.svg │ ├── 2001.svg │ ├── 2002.svg │ ├── 2003.svg │ ├── 2004.svg │ ├── 2005.svg │ ├── 2006.svg │ ├── 2007.svg │ ├── 2008.svg │ ├── 2009.svg │ ├── 2010.svg │ ├── 2011.svg │ ├── 2012.svg │ ├── 2013.svg │ ├── 2014.svg │ ├── 2015.svg │ ├── 2016.svg │ ├── 2017.svg │ ├── 2018.svg │ ├── 2019.svg │ ├── 2020.svg │ ├── 2021.svg │ ├── 2022.svg │ ├── 2023.svg │ ├── 2024.svg │ ├── 2025.svg │ ├── 2026.svg │ ├── 2027.svg │ ├── 2028.svg │ ├── 2029.svg │ ├── 2030.svg │ ├── 2031.svg │ ├── 2032.svg │ ├── 2033.svg │ ├── 2034.svg │ ├── 2035.svg │ ├── 2036.svg │ ├── 2037.svg │ ├── 2038.svg │ ├── 2039.svg │ ├── 2040.svg │ ├── 2041.svg │ ├── 2042.svg │ ├── 2043.svg │ ├── 2044.svg │ ├── 2045.svg │ ├── 2046.svg │ ├── 2047.svg │ ├── 2048.svg │ ├── 2049.svg │ ├── 2050.svg │ ├── 2051.svg │ ├── 2052.svg │ ├── 2053.svg │ ├── 2054.svg │ ├── 2055.svg │ ├── 2056.svg │ ├── 2057.svg │ ├── 2058.svg │ ├── 2059.svg │ ├── 2060.svg │ ├── 2061.svg │ ├── 2062.svg │ ├── 2063.svg │ ├── 2064.svg │ ├── 2065.svg │ ├── 2066.svg │ ├── 2067.svg │ ├── 2068.svg │ ├── 2069.svg │ ├── 2070.svg │ ├── 2071.svg │ ├── 2072.svg │ ├── 2073.svg │ ├── 2074.svg │ ├── 2075.svg │ ├── 2076.svg │ ├── 2077.svg │ ├── 2078.svg │ ├── 2079.svg │ ├── 2080.svg │ ├── 2081.svg │ ├── 2082.svg │ ├── 2083.svg │ ├── 2084.svg │ ├── 2085.svg │ ├── 2086.svg │ ├── 2087.svg │ ├── 2088.svg │ ├── 2089.svg │ ├── 2090.svg │ ├── 2091.svg │ ├── 2092.svg │ ├── 2093.svg │ ├── 2094.svg │ ├── 2095.svg │ ├── 2096.svg │ ├── 2097.svg │ ├── 2098.svg │ ├── 2099.svg │ ├── 2100.svg │ ├── 2101.svg │ ├── 2102.svg │ ├── 2103.svg │ ├── 2104.svg │ ├── 2105.svg │ ├── 2106.svg │ ├── 2107.svg │ ├── 2108.svg │ ├── 2109.svg │ ├── 2110.svg │ ├── 2111.svg │ ├── 2112.svg │ ├── 2113.svg │ ├── 2114.svg │ ├── 2115.svg │ ├── 2116.svg │ ├── 2117.svg │ ├── 2118.svg │ ├── 2119.svg │ ├── 2120.svg │ ├── 2121.svg │ ├── 2122.svg │ ├── 2123.svg │ ├── 2124.svg │ ├── 2125.svg │ ├── 2126.svg │ ├── 2127.svg │ ├── 2128.svg │ ├── 2129.svg │ ├── 2130.svg │ ├── 2131.svg │ ├── 2132.svg │ ├── 2133.svg │ ├── 2134.svg │ ├── 2135.svg │ ├── 2136.svg │ ├── 2137.svg │ ├── 2138.svg │ ├── 2139.svg │ ├── 2140.svg │ ├── 2141.svg │ ├── 2142.svg │ ├── 2143.svg │ ├── 2144.svg │ ├── 2145.svg │ ├── 2146.svg │ ├── 2147.svg │ ├── 2148.svg │ ├── 2149.svg │ ├── 2150.svg │ ├── 2151.svg │ ├── 2152.svg │ ├── 2153.svg │ ├── 2154.svg │ ├── 2155.svg │ ├── 2156.svg │ ├── 2157.svg │ ├── 2158.svg │ ├── 2159.svg │ ├── 2160.svg │ ├── 2161.svg │ ├── 2162.svg │ ├── 2163.svg │ ├── 2164.svg │ ├── 2165.svg │ ├── 2166.svg │ ├── 2167.svg │ ├── 2168.svg │ ├── 2169.svg │ ├── 2170.svg │ ├── 2171.svg │ ├── 2172.svg │ ├── 2173.svg │ ├── 2174.svg │ ├── 2175.svg │ ├── 2176.svg │ ├── 2177.svg │ ├── 2178.svg │ ├── 2179.svg │ ├── 2180.svg │ ├── 2181.svg │ ├── 2182.svg │ ├── 2183.svg │ ├── 2184.svg │ ├── 2185.svg │ ├── 2186.svg │ ├── 2187.svg │ ├── 2188.svg │ ├── 2189.svg │ ├── 2190.svg │ ├── 2191.svg │ ├── 2192.svg │ ├── 2193.svg │ ├── 2194.svg │ ├── 2195.svg │ ├── 2196.svg │ ├── 2197.svg │ ├── 2198.svg │ ├── 2199.svg │ ├── 2200.svg │ ├── 2201.svg │ ├── 2202.svg │ ├── 2203.svg │ ├── 2204.svg │ ├── 2205.svg │ ├── 2206.svg │ ├── 2207.svg │ ├── 2208.svg │ ├── 2209.svg │ ├── 2210.svg │ ├── 2211.svg │ ├── 2212.svg │ ├── 2213.svg │ ├── 2214.svg │ ├── 2215.svg │ ├── 2216.svg │ ├── 2217.svg │ ├── 2218.svg │ ├── 2219.svg │ ├── 2220.svg │ ├── 2221.svg │ ├── 2222.svg │ ├── 2223.svg │ ├── 2224.svg │ ├── 2225.svg │ ├── 2226.svg │ ├── 2227.svg │ ├── 2228.svg │ ├── 2229.svg │ ├── 2230.svg │ ├── 2231.svg │ ├── 2232.svg │ ├── 2233.svg │ ├── 2234.svg │ ├── 2235.svg │ ├── 2236.svg │ ├── 2237.svg │ ├── 2238.svg │ ├── 2239.svg │ ├── 2240.svg │ ├── 2241.svg │ ├── 2242.svg │ ├── 2243.svg │ ├── 2244.svg │ ├── 2245.svg │ ├── 2246.svg │ ├── 2247.svg │ ├── 2248.svg │ ├── 2249.svg │ ├── 2250.svg │ ├── 2251.svg │ ├── 2252.svg │ ├── 2253.svg │ ├── 2254.svg │ ├── 2255.svg │ ├── 2256.svg │ ├── 2257.svg │ ├── 2258.svg │ ├── 2259.svg │ ├── 2260.svg │ ├── 2261.svg │ ├── 2262.svg │ ├── 2263.svg │ ├── 2264.svg │ ├── 2265.svg │ ├── 2266.svg │ ├── 2267.svg │ ├── 2268.svg │ ├── 2269.svg │ ├── 2270.svg │ ├── 2271.svg │ ├── 2272.svg │ ├── 2273.svg │ ├── 2274.svg │ ├── 2275.svg │ ├── 2276.svg │ ├── 2277.svg │ ├── 2278.svg │ ├── 2279.svg │ ├── 2280.svg │ ├── 2281.svg │ ├── 2282.svg │ ├── 2283.svg │ ├── 2284.svg │ ├── 2285.svg │ ├── 2286.svg │ ├── 2287.svg │ ├── 2288.svg │ ├── 2289.svg │ ├── 2290.svg │ ├── 2291.svg │ ├── 2292.svg │ ├── 2293.svg │ ├── 2294.svg │ ├── 2295.svg │ ├── 2296.svg │ ├── 2297.svg │ ├── 2298.svg │ ├── 2299.svg │ ├── 2300.svg │ ├── 2301.svg │ ├── 2302.svg │ ├── 2303.svg │ ├── 2304.svg │ ├── 2305.svg │ ├── 2306.svg │ ├── 2307.svg │ ├── 2308.svg │ ├── 2309.svg │ ├── 2310.svg │ ├── 2311.svg │ ├── 2312.svg │ ├── 2313.svg │ ├── 2314.svg │ ├── 2315.svg │ ├── 2316.svg │ ├── 2317.svg │ ├── 2318.svg │ ├── 2319.svg │ ├── 2320.svg │ ├── 2321.svg │ ├── 2322.svg │ ├── 2323.svg │ ├── 2324.svg │ ├── 2325.svg │ ├── 2326.svg │ ├── 2327.svg │ ├── 2328.svg │ ├── 2329.svg │ ├── 2330.svg │ ├── 2331.svg │ ├── 2332.svg │ ├── 2333.svg │ ├── 2334.svg │ ├── 2335.svg │ ├── 2336.svg │ ├── 2337.svg │ ├── 2338.svg │ ├── 2339.svg │ ├── 2340.svg │ ├── 2341.svg │ ├── 2342.svg │ ├── 2343.svg │ ├── 2344.svg │ ├── 2345.svg │ ├── 2346.svg │ ├── 2347.svg │ ├── 2348.svg │ ├── 2349.svg │ ├── 2350.svg │ ├── 2351.svg │ ├── 2352.svg │ ├── 2353.svg │ ├── 2354.svg │ ├── 2355.svg │ ├── 2356.svg │ ├── 2357.svg │ ├── 2358.svg │ ├── 2359.svg │ ├── 2360.svg │ ├── 2361.svg │ ├── 2362.svg │ ├── 2363.svg │ ├── 2364.svg │ ├── 2365.svg │ ├── 2366.svg │ ├── 2367.svg │ ├── 2368.svg │ ├── 2369.svg │ ├── 2370.svg │ ├── 2371.svg │ ├── 2372.svg │ ├── 2373.svg │ ├── 2374.svg │ ├── 2375.svg │ ├── 2376.svg │ ├── 2377.svg │ ├── 2378.svg │ ├── 2379.svg │ ├── 2380.svg │ ├── 2381.svg │ ├── 2382.svg │ ├── 2383.svg │ ├── 2384.svg │ ├── 2385.svg │ ├── 2386.svg │ ├── 2387.svg │ ├── 2388.svg │ ├── 2389.svg │ ├── 2390.svg │ ├── 2391.svg │ ├── 2392.svg │ ├── 2393.svg │ ├── 2394.svg │ ├── 2395.svg │ ├── 2396.svg │ ├── 2397.svg │ ├── 2398.svg │ ├── 2399.svg │ ├── 2400.svg │ ├── 2401.svg │ ├── 2402.svg │ ├── 2403.svg │ ├── 2404.svg │ ├── 2405.svg │ ├── 2406.svg │ ├── 2407.svg │ ├── 2408.svg │ ├── 2409.svg │ ├── 2410.svg │ ├── 2411.svg │ ├── 2412.svg │ ├── 2413.svg │ ├── 2414.svg │ ├── 2415.svg │ ├── 2416.svg │ ├── 2417.svg │ ├── 2418.svg │ ├── 2419.svg │ ├── 2420.svg │ ├── 2421.svg │ ├── 2422.svg │ ├── 2423.svg │ ├── 2424.svg │ ├── 2425.svg │ ├── 2426.svg │ ├── 2427.svg │ ├── 2428.svg │ ├── 2429.svg │ ├── 2430.svg │ ├── 2431.svg │ ├── 2432.svg │ ├── 2433.svg │ ├── 2434.svg │ ├── 2435.svg │ ├── 2436.svg │ ├── 2437.svg │ ├── 2438.svg │ ├── 2439.svg │ ├── 2440.svg │ ├── 2441.svg │ ├── 2442.svg │ ├── 2443.svg │ ├── 2444.svg │ ├── 2445.svg │ ├── 2446.svg │ ├── 2447.svg │ ├── 2448.svg │ ├── 2449.svg │ ├── 2450.svg │ ├── 2451.svg │ ├── 2452.svg │ ├── 2453.svg │ ├── 2454.svg │ ├── 2455.svg │ ├── 2456.svg │ ├── 2457.svg │ ├── 2458.svg │ ├── 2459.svg │ ├── 2460.svg │ ├── 2461.svg │ ├── 2462.svg │ ├── 2463.svg │ ├── 2464.svg │ ├── 2465.svg │ ├── 2466.svg │ ├── 2467.svg │ ├── 2468.svg │ ├── 2469.svg │ ├── 2470.svg │ ├── 2471.svg │ ├── 2472.svg │ ├── 2473.svg │ ├── 2474.svg │ ├── 2475.svg │ ├── 2476.svg │ ├── 2477.svg │ ├── 2478.svg │ ├── 2479.svg │ ├── 2480.svg │ ├── 2481.svg │ ├── 2482.svg │ ├── 2483.svg │ ├── 2484.svg │ ├── 2485.svg │ ├── 2486.svg │ ├── 2487.svg │ ├── 2488.svg │ ├── 2489.svg │ ├── 2490.svg │ ├── 2491.svg │ ├── 2492.svg │ ├── 2493.svg │ ├── 2494.svg │ ├── 2495.svg │ ├── 2496.svg │ ├── 2497.svg │ ├── 2498.svg │ ├── 2499.svg │ ├── 2500.svg │ ├── 2501.svg │ ├── 2502.svg │ ├── 2503.svg │ ├── 2504.svg │ ├── 2505.svg │ ├── 2506.svg │ ├── 2507.svg │ ├── 2508.svg │ ├── 2509.svg │ ├── 2510.svg │ ├── 2511.svg │ ├── 2512.svg │ ├── 2513.svg │ ├── 2514.svg │ ├── 2515.svg │ ├── 2516.svg │ ├── 2517.svg │ ├── 2518.svg │ ├── 2519.svg │ ├── 2520.svg │ ├── 2521.svg │ ├── 2522.svg │ ├── 2523.svg │ ├── 2524.svg │ ├── 2525.svg │ ├── 2526.svg │ ├── 2527.svg │ ├── 2528.svg │ ├── 2529.svg │ ├── 2530.svg │ ├── 2531.svg │ ├── 2532.svg │ ├── 2533.svg │ ├── 2534.svg │ ├── 2535.svg │ ├── 2536.svg │ ├── 2537.svg │ ├── 2538.svg │ ├── 2539.svg │ ├── 2540.svg │ ├── 2541.svg │ ├── 2542.svg │ ├── 2543.svg │ ├── 2544.svg │ ├── 2545.svg │ ├── 2546.svg │ ├── 2547.svg │ ├── 2548.svg │ ├── 2549.svg │ ├── 2550.svg │ ├── 2551.svg │ ├── 2552.svg │ ├── 2553.svg │ ├── 2554.svg │ ├── 2555.svg │ ├── 2556.svg │ ├── 2557.svg │ ├── 2558.svg │ ├── 2559.svg │ ├── 2560.svg │ ├── 2561.svg │ ├── 2562.svg │ ├── 2563.svg │ ├── 2564.svg │ ├── 2565.svg │ ├── 2566.svg │ ├── 2567.svg │ ├── 2568.svg │ ├── 2569.svg │ ├── 2570.svg │ ├── 2571.svg │ ├── 2572.svg │ ├── 2573.svg │ ├── 2574.svg │ ├── 2575.svg │ ├── 2576.svg │ ├── 2577.svg │ ├── 2578.svg │ ├── 2579.svg │ ├── 2580.svg │ ├── 2581.svg │ ├── 2582.svg │ ├── 2583.svg │ ├── 2584.svg │ ├── 2585.svg │ ├── 2586.svg │ ├── 2587.svg │ ├── 2588.svg │ ├── 2589.svg │ ├── 2590.svg │ ├── 2591.svg │ ├── 2592.svg │ ├── 2593.svg │ ├── 2594.svg │ ├── 2595.svg │ ├── 2596.svg │ ├── 2597.svg │ ├── 2598.svg │ ├── 2599.svg │ ├── 2600.svg │ ├── 2601.svg │ ├── 2602.svg │ ├── 2603.svg │ ├── 2604.svg │ ├── 2605.svg │ ├── 2606.svg │ ├── 2607.svg │ ├── 2608.svg │ ├── 2609.svg │ ├── 2610.svg │ ├── 2611.svg │ └── 2612.svg │ └── runtest.sh ├── libutf8proc ├── .travis.yml ├── CMakeLists.txt ├── Doxyfile ├── LICENSE.md ├── MANIFEST ├── Makefile ├── NEWS.md ├── README ├── README.md ├── appveyor.yml ├── bench │ ├── bench.c │ ├── icu.c │ ├── unistring.c │ ├── util.c │ └── util.h ├── data │ ├── charwidths.jl │ └── data_generator.rb ├── include │ └── libutf8proc │ │ └── utf8proc.h ├── libutf8proc.pc.in ├── lump.md ├── src │ ├── Makefile │ ├── utf8proc.c │ └── utf8proc_data.c ├── test │ ├── case.c │ ├── charwidth.c │ ├── custom.c │ ├── graphemetest.c │ ├── iterate.c │ ├── misc.c │ ├── normtest.c │ ├── printproperty.c │ ├── tests.c │ ├── tests.h │ └── valid.c └── utils.cmake ├── libwapcaplet ├── COPYING ├── Makefile ├── README ├── docs │ └── Doxyfile ├── include │ └── libwapcaplet │ │ └── libwapcaplet.h ├── libwapcaplet.pc.in ├── src │ ├── Makefile │ └── libwapcaplet.c └── test │ ├── Makefile │ ├── basictests.c │ ├── testmain.c │ └── tests.h ├── netsurf ├── .clang-format ├── .github │ └── workflows │ │ ├── build.yaml │ │ ├── monkey-test.yaml │ │ └── static-analysis.yaml ├── COPYING ├── Logo.png ├── Makefile ├── Makefile.config ├── Makefile.config.example ├── Makefile.defaults ├── Makefile.macros ├── README.md ├── build │ └── tools │ │ ├── DerivedJoiningType.txt │ │ ├── Makefile │ │ ├── convert_font.c │ │ ├── convert_image.c │ │ ├── coverity-build.sh │ │ ├── fetch-transifex.pl │ │ ├── git-date.sh │ │ ├── git-testament.pl │ │ ├── idna-derived-props-gen.pl │ │ ├── idna-tables-properties.csv │ │ ├── import-messages.pl │ │ ├── jenkins-build.sh │ │ ├── linktrace-to-depfile.pl │ │ ├── memanalyze.pl │ │ ├── split-messages.c │ │ ├── split-messages.pl │ │ ├── test-netsurf │ │ ├── valgrind.supp │ │ └── xxd.c ├── content │ ├── Makefile │ ├── backing_store.h │ ├── content.c │ ├── content.h │ ├── content_debug.h │ ├── content_factory.c │ ├── content_factory.h │ ├── content_protected.h │ ├── fetch.c │ ├── fetch.h │ ├── fetchers.h │ ├── fetchers │ │ ├── Makefile │ │ ├── about │ │ │ ├── Makefile │ │ │ ├── about.c │ │ │ ├── about.h │ │ │ ├── atestament.h │ │ │ ├── blank.c │ │ │ ├── blank.h │ │ │ ├── certificate.c │ │ │ ├── certificate.h │ │ │ ├── chart.c │ │ │ ├── chart.h │ │ │ ├── choices.c │ │ │ ├── choices.h │ │ │ ├── config.c │ │ │ ├── config.h │ │ │ ├── imagecache.c │ │ │ ├── imagecache.h │ │ │ ├── nscolours.c │ │ │ ├── nscolours.h │ │ │ ├── private.h │ │ │ ├── query.c │ │ │ ├── query.h │ │ │ ├── query_auth.c │ │ │ ├── query_auth.h │ │ │ ├── query_fetcherror.c │ │ │ ├── query_fetcherror.h │ │ │ ├── query_privacy.c │ │ │ ├── query_privacy.h │ │ │ ├── query_timeout.c │ │ │ ├── query_timeout.h │ │ │ └── testament.c │ │ ├── curl.c │ │ ├── curl.h │ │ ├── data.c │ │ ├── data.h │ │ ├── file │ │ │ ├── Makefile │ │ │ ├── dirlist.c │ │ │ ├── dirlist.h │ │ │ ├── file.c │ │ │ └── file.h │ │ ├── resource.c │ │ └── resource.h │ ├── fs_backing_store.c │ ├── handlers │ │ ├── Makefile │ │ ├── css │ │ │ ├── Makefile │ │ │ ├── css.c │ │ │ ├── css.h │ │ │ ├── dump.c │ │ │ ├── dump.h │ │ │ ├── hints.c │ │ │ ├── hints.h │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── select.c │ │ │ ├── select.h │ │ │ └── utils.h │ │ ├── html │ │ │ ├── Makefile │ │ │ ├── box.h │ │ │ ├── box_construct.c │ │ │ ├── box_construct.h │ │ │ ├── box_inspect.c │ │ │ ├── box_inspect.h │ │ │ ├── box_manipulate.c │ │ │ ├── box_manipulate.h │ │ │ ├── box_normalise.c │ │ │ ├── box_normalise.h │ │ │ ├── box_special.c │ │ │ ├── box_special.h │ │ │ ├── box_textarea.c │ │ │ ├── box_textarea.h │ │ │ ├── css.c │ │ │ ├── css.h │ │ │ ├── css_fetcher.c │ │ │ ├── dom_event.c │ │ │ ├── dom_event.h │ │ │ ├── font.c │ │ │ ├── font.h │ │ │ ├── form.c │ │ │ ├── form_internal.h │ │ │ ├── forms.c │ │ │ ├── html.c │ │ │ ├── html.h │ │ │ ├── html_save.h │ │ │ ├── imagemap.c │ │ │ ├── imagemap.h │ │ │ ├── interaction.c │ │ │ ├── interaction.h │ │ │ ├── layout.c │ │ │ ├── layout.h │ │ │ ├── layout_flex.c │ │ │ ├── layout_internal.h │ │ │ ├── object.c │ │ │ ├── object.h │ │ │ ├── private.h │ │ │ ├── redraw.c │ │ │ ├── redraw_border.c │ │ │ ├── script.c │ │ │ ├── table.c │ │ │ ├── table.h │ │ │ ├── textselection.c │ │ │ └── textselection.h │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── bmp.c │ │ │ ├── bmp.h │ │ │ ├── gif.c │ │ │ ├── gif.h │ │ │ ├── ico.c │ │ │ ├── ico.h │ │ │ ├── image.c │ │ │ ├── image.h │ │ │ ├── image_cache.c │ │ │ ├── image_cache.h │ │ │ ├── jpeg.c │ │ │ ├── jpeg.h │ │ │ ├── jpegxl.c │ │ │ ├── jpegxl.h │ │ │ ├── nssprite.c │ │ │ ├── nssprite.h │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── rsvg.c │ │ │ ├── rsvg.h │ │ │ ├── rsvg246.c │ │ │ ├── svg.c │ │ │ ├── svg.h │ │ │ ├── video.c │ │ │ ├── video.h │ │ │ ├── webp.c │ │ │ └── webp.h │ │ ├── javascript │ │ │ ├── Makefile │ │ │ ├── WebIDL │ │ │ │ ├── Makefile │ │ │ │ ├── console.idl │ │ │ │ ├── cssom.idl │ │ │ │ ├── dom-parsing.idl │ │ │ │ ├── dom.idl │ │ │ │ ├── html.idl │ │ │ │ ├── uievents.idl │ │ │ │ └── urlutils.idl │ │ │ ├── content.c │ │ │ ├── content.h │ │ │ ├── duktape │ │ │ │ ├── CSSRule.bnd │ │ │ │ ├── CSSStyleSheet.bnd │ │ │ │ ├── CanvasRenderingContext2D.bnd │ │ │ │ ├── Console.bnd │ │ │ │ ├── DOMImplementation.bnd │ │ │ │ ├── DOMSettableTokenList.bnd │ │ │ │ ├── DOMTokenList.bnd │ │ │ │ ├── Document.bnd │ │ │ │ ├── Element.bnd │ │ │ │ ├── Event.bnd │ │ │ │ ├── EventTarget.bnd │ │ │ │ ├── HTMLAnchorElement.bnd │ │ │ │ ├── HTMLAppletElement.bnd │ │ │ │ ├── HTMLAreaElement.bnd │ │ │ │ ├── HTMLBRElement.bnd │ │ │ │ ├── HTMLBaseElement.bnd │ │ │ │ ├── HTMLBodyElement.bnd │ │ │ │ ├── HTMLButtonElement.bnd │ │ │ │ ├── HTMLCanvasElement.bnd │ │ │ │ ├── HTMLCollection.bnd │ │ │ │ ├── HTMLDivElement.bnd │ │ │ │ ├── HTMLElement.bnd │ │ │ │ ├── HTMLFontElement.bnd │ │ │ │ ├── HTMLFormElement.bnd │ │ │ │ ├── HTMLFrameElement.bnd │ │ │ │ ├── HTMLFrameSetElement.bnd │ │ │ │ ├── HTMLHRElement.bnd │ │ │ │ ├── HTMLHTMLElement.bnd │ │ │ │ ├── HTMLHeadingElement.bnd │ │ │ │ ├── HTMLIFrameElement.bnd │ │ │ │ ├── HTMLImageElement.bnd │ │ │ │ ├── HTMLInputElement.bnd │ │ │ │ ├── HTMLLIElement.bnd │ │ │ │ ├── HTMLLabelElement.bnd │ │ │ │ ├── HTMLLegendElement.bnd │ │ │ │ ├── HTMLLinkElement.bnd │ │ │ │ ├── HTMLMapElement.bnd │ │ │ │ ├── HTMLMarqueeElement.bnd │ │ │ │ ├── HTMLMenuElement.bnd │ │ │ │ ├── HTMLMetaElement.bnd │ │ │ │ ├── HTMLOListElement.bnd │ │ │ │ ├── HTMLObjectElement.bnd │ │ │ │ ├── HTMLOptionElement.bnd │ │ │ │ ├── HTMLParagraphElement.bnd │ │ │ │ ├── HTMLParamElement.bnd │ │ │ │ ├── HTMLPreElement.bnd │ │ │ │ ├── HTMLQuoteElement.bnd │ │ │ │ ├── HTMLScriptElement.bnd │ │ │ │ ├── HTMLSelectElement.bnd │ │ │ │ ├── HTMLStyleElement.bnd │ │ │ │ ├── HTMLTableCaptionElement.bnd │ │ │ │ ├── HTMLTableCellElement.bnd │ │ │ │ ├── HTMLTableColElement.bnd │ │ │ │ ├── HTMLTableElement.bnd │ │ │ │ ├── HTMLTableRowElement.bnd │ │ │ │ ├── HTMLTableSectionElement.bnd │ │ │ │ ├── HTMLTextAreaElement.bnd │ │ │ │ ├── HTMLTitleElement.bnd │ │ │ │ ├── ImageData.bnd │ │ │ │ ├── KeyboardEvent.bnd │ │ │ │ ├── Location.bnd │ │ │ │ ├── Makefile │ │ │ │ ├── NamedNodeMap.bnd │ │ │ │ ├── Navigator.bnd │ │ │ │ ├── Node.bnd │ │ │ │ ├── NodeList.bnd │ │ │ │ ├── Window.bnd │ │ │ │ ├── duk_config.h │ │ │ │ ├── duk_custom.h │ │ │ │ ├── dukky.c │ │ │ │ ├── dukky.h │ │ │ │ ├── duktape.c │ │ │ │ ├── duktape.h │ │ │ │ ├── generics.js │ │ │ │ ├── netsurf.bnd │ │ │ │ └── polyfill.js │ │ │ ├── fetcher.c │ │ │ ├── fetcher.h │ │ │ ├── js.h │ │ │ └── none │ │ │ │ ├── Makefile │ │ │ │ └── none.c │ │ └── text │ │ │ ├── Makefile │ │ │ ├── textplain.c │ │ │ └── textplain.h │ ├── hlcache.c │ ├── hlcache.h │ ├── llcache.c │ ├── llcache.h │ ├── mimesniff.c │ ├── mimesniff.h │ ├── no_backing_store.c │ ├── textsearch.c │ ├── textsearch.h │ ├── urldb.c │ └── urldb.h ├── desktop │ ├── Makefile │ ├── bitmap.c │ ├── bitmap.h │ ├── browser.c │ ├── browser_history.c │ ├── browser_history.h │ ├── browser_private.h │ ├── browser_window.c │ ├── cookie_manager.c │ ├── cookie_manager.h │ ├── cw_helper.c │ ├── cw_helper.h │ ├── download.c │ ├── download.h │ ├── font_haru.c │ ├── font_haru.h │ ├── frame_types.h │ ├── frames.c │ ├── frames.h │ ├── global_history.c │ ├── global_history.h │ ├── gui_factory.c │ ├── gui_internal.h │ ├── gui_table.h │ ├── hotlist.c │ ├── hotlist.h │ ├── knockout.c │ ├── knockout.h │ ├── local_history.c │ ├── local_history.h │ ├── local_history_private.h │ ├── mouse.c │ ├── netsurf.c │ ├── options.h │ ├── page-info.c │ ├── page-info.h │ ├── plot_style.c │ ├── print.c │ ├── print.h │ ├── printer.h │ ├── save_complete.c │ ├── save_complete.h │ ├── save_pdf.c │ ├── save_pdf.h │ ├── save_text.c │ ├── save_text.h │ ├── scrollbar.c │ ├── scrollbar.h │ ├── search.c │ ├── search.h │ ├── searchweb.c │ ├── searchweb.h │ ├── selection.c │ ├── selection.h │ ├── system_colour.c │ ├── system_colour.h │ ├── textarea.c │ ├── textarea.h │ ├── textinput.c │ ├── textinput.h │ ├── theme.h │ ├── treeview.c │ ├── treeview.h │ ├── version.c │ └── version.h ├── docs │ ├── Doxyfile │ ├── PACKAGING-GTK │ ├── UnimplementedJavascript.md │ ├── building-AmigaCross.md │ ├── building-AmigaOS.md │ ├── building-Framebuffer.md │ ├── building-GTK.md │ ├── building-Haiku.md │ ├── building-Windows.md │ ├── core-window-interface.md │ ├── development.md │ ├── env.sh │ ├── gource.sh │ ├── ideas │ │ ├── cache.txt │ │ ├── css-engine.txt │ │ └── render-library.txt │ ├── implementing-new-frontend.md │ ├── integration-testing.md │ ├── jsbinding.md │ ├── logging.md │ ├── mainpage.md │ ├── netsurf-fb.1 │ ├── netsurf-gtk.1 │ ├── netsurf-libraries.md │ ├── netsurf-options.md │ ├── project.md │ ├── quick-start.md │ ├── source-object-backing-store.md │ ├── unit-testing.md │ ├── updating-duktape.md │ ├── user-interface.md │ ├── using-framebuffer.md │ └── using-monkey.md ├── frontends │ ├── Makefile │ ├── Makefile.hts │ ├── amiga │ │ ├── Makefile │ │ ├── Makefile.defaults │ │ ├── Makefile.tools │ │ ├── agclass │ │ │ ├── amigaguide_class.c │ │ │ └── amigaguide_class.h │ │ ├── arexx.c │ │ ├── arexx.h │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── clipboard.c │ │ ├── clipboard.h │ │ ├── cookies.c │ │ ├── cookies.h │ │ ├── corewindow.c │ │ ├── corewindow.h │ │ ├── ctxmenu.c │ │ ├── ctxmenu.h │ │ ├── datatypes.c │ │ ├── datatypes.h │ │ ├── dist │ │ │ ├── Install │ │ │ ├── Install.info │ │ │ ├── NetSurf.guide │ │ │ ├── NetSurf.guide.info │ │ │ ├── Rexx.info │ │ │ └── Rexx │ │ │ │ ├── CloseTabs.nsrx │ │ │ │ ├── SMTube.nsrx │ │ │ │ ├── ShowTitles.nsrx │ │ │ │ ├── YT_download_page.nsrx │ │ │ │ ├── YT_open.nsrx │ │ │ │ ├── YT_play.nsrx │ │ │ │ └── viewsource.nsrx │ │ ├── download.c │ │ ├── download.h │ │ ├── drag.c │ │ ├── drag.h │ │ ├── dt_anim.c │ │ ├── dt_picture.c │ │ ├── dt_sound.c │ │ ├── file.c │ │ ├── file.h │ │ ├── filetype.c │ │ ├── filetype.h │ │ ├── font.c │ │ ├── font.h │ │ ├── font_bullet.c │ │ ├── font_bullet.h │ │ ├── font_cache.c │ │ ├── font_cache.h │ │ ├── font_diskfont.c │ │ ├── font_diskfont.h │ │ ├── font_scan.c │ │ ├── font_scan.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── gui_menu.c │ │ ├── gui_menu.h │ │ ├── gui_options.c │ │ ├── gui_options.h │ │ ├── hash │ │ │ ├── xxhash.c │ │ │ └── xxhash.h │ │ ├── help.c │ │ ├── help.h │ │ ├── history.c │ │ ├── history.h │ │ ├── history_local.c │ │ ├── history_local.h │ │ ├── hotlist.c │ │ ├── hotlist.h │ │ ├── icon.c │ │ ├── icon.h │ │ ├── iff_cset.h │ │ ├── iff_dr2d.c │ │ ├── iff_dr2d.h │ │ ├── launch.c │ │ ├── launch.h │ │ ├── libs.c │ │ ├── libs.h │ │ ├── memory.c │ │ ├── memory.h │ │ ├── menu.c │ │ ├── menu.h │ │ ├── misc.c │ │ ├── misc.h │ │ ├── nsoption.c │ │ ├── nsoption.h │ │ ├── object.c │ │ ├── object.h │ │ ├── options.h │ │ ├── os3support.c │ │ ├── os3support.h │ │ ├── pageinfo.c │ │ ├── pageinfo.h │ │ ├── pkg │ │ │ ├── AutoInstall │ │ │ ├── SearchEngines │ │ │ ├── drawer.info │ │ │ ├── makepackage │ │ │ ├── makereslinks │ │ │ ├── netsurf.readme │ │ │ ├── netsurf.readme.info │ │ │ ├── netsurf_os3.readme │ │ │ └── netsurf_os3.readme.info │ │ ├── plotters.c │ │ ├── plotters.h │ │ ├── plugin_hack.c │ │ ├── plugin_hack.h │ │ ├── print.c │ │ ├── print.h │ │ ├── resources │ │ │ ├── AdBlock.css │ │ │ ├── LangNames │ │ │ ├── Pointers │ │ │ │ ├── Blank │ │ │ │ ├── Blank.info │ │ │ │ ├── Caret │ │ │ │ ├── Caret.info │ │ │ │ ├── Cross.info │ │ │ │ ├── Default │ │ │ │ ├── Default.info │ │ │ │ ├── Down.info │ │ │ │ ├── Drag.info │ │ │ │ ├── Help.info │ │ │ │ ├── Left.info │ │ │ │ ├── LeftDown.info │ │ │ │ ├── LeftUp.info │ │ │ │ ├── Menu │ │ │ │ ├── Menu.info │ │ │ │ ├── Move │ │ │ │ ├── Move.info │ │ │ │ ├── NoDrop.info │ │ │ │ ├── NotAllowed.info │ │ │ │ ├── Point │ │ │ │ ├── Point.info │ │ │ │ ├── Progress.info │ │ │ │ ├── Right.info │ │ │ │ ├── RightDown.info │ │ │ │ ├── RightUp.info │ │ │ │ ├── Up.info │ │ │ │ ├── Wait │ │ │ │ └── Wait.info │ │ │ ├── Resource.map │ │ │ ├── Themes │ │ │ │ ├── AISS │ │ │ │ │ ├── NetSurf.info │ │ │ │ │ ├── Resource.map │ │ │ │ │ ├── Theme │ │ │ │ │ └── Throbber │ │ │ │ └── Default │ │ │ │ │ ├── NetSurf.info │ │ │ │ │ ├── Theme │ │ │ │ │ ├── Throbber │ │ │ │ │ ├── back.png │ │ │ │ │ ├── back_g.png │ │ │ │ │ ├── back_h.png │ │ │ │ │ ├── closetab.png │ │ │ │ │ ├── closetab_g.png │ │ │ │ │ ├── forward.png │ │ │ │ │ ├── forward_g.png │ │ │ │ │ ├── forward_h.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── home_g.png │ │ │ │ │ ├── home_h.png │ │ │ │ │ ├── reload.png │ │ │ │ │ ├── reload_g.png │ │ │ │ │ ├── reload_h.png │ │ │ │ │ ├── search.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stop_g.png │ │ │ │ │ └── stop_h.png │ │ │ ├── blankspace.png │ │ │ ├── ca-bundle │ │ │ ├── default.css │ │ │ ├── default.css.info │ │ │ ├── favicon.png │ │ │ ├── mimetypes │ │ │ ├── nsdefault.css │ │ │ ├── quirks.css │ │ │ └── splash.png │ │ ├── rtg.c │ │ ├── rtg.h │ │ ├── save_pdf.c │ │ ├── save_pdf.h │ │ ├── schedule.c │ │ ├── schedule.h │ │ ├── search.c │ │ ├── search.h │ │ ├── selectmenu.c │ │ ├── selectmenu.h │ │ ├── stringview │ │ │ ├── stringview.c │ │ │ ├── stringview.h │ │ │ ├── urlhistory.c │ │ │ └── urlhistory.h │ │ ├── theme.c │ │ ├── theme.h │ │ ├── utf8.c │ │ ├── utf8.h │ │ └── version.c │ ├── atari │ │ ├── Makefile │ │ ├── Makefile.defaults │ │ ├── Makefile.tools │ │ ├── about.c │ │ ├── about.h │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── clipboard.c │ │ ├── clipboard.h │ │ ├── cookies.c │ │ ├── cookies.h │ │ ├── ctxmenu.c │ │ ├── ctxmenu.h │ │ ├── deskmenu.c │ │ ├── deskmenu.h │ │ ├── doc │ │ │ ├── DejaVu.txt │ │ │ ├── bugs │ │ │ ├── changes.txt │ │ │ ├── faq.txt │ │ │ ├── readme.txt │ │ │ └── todo.txt │ │ ├── download.c │ │ ├── download.h │ │ ├── encoding.c │ │ ├── encoding.h │ │ ├── extract.php │ │ ├── file.c │ │ ├── file.h │ │ ├── filetype.c │ │ ├── filetype.h │ │ ├── findfile.c │ │ ├── findfile.h │ │ ├── font.c │ │ ├── font.h │ │ ├── gemtk │ │ │ ├── aestabs.c │ │ │ ├── aestabs.h │ │ │ ├── dragdrop.c │ │ │ ├── dragdrop.h │ │ │ ├── gemtk.h │ │ │ ├── guiwin.c │ │ │ ├── guiwin.h │ │ │ ├── msgbox.c │ │ │ ├── msgbox.h │ │ │ ├── objc.c │ │ │ ├── objc.h │ │ │ ├── redrawslots.c │ │ │ ├── redrawslots.h │ │ │ ├── utils.c │ │ │ ├── utils.h │ │ │ ├── vaproto.c │ │ │ └── vaproto.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── history.c │ │ ├── history.h │ │ ├── hotlist.c │ │ ├── hotlist.h │ │ ├── misc.c │ │ ├── misc.h │ │ ├── options.h │ │ ├── osspec.c │ │ ├── osspec.h │ │ ├── plot │ │ │ ├── eddi.h │ │ │ ├── eddi.s │ │ │ ├── font_freetype.c │ │ │ ├── font_freetype.h │ │ │ ├── font_internal.c │ │ │ ├── font_internal.h │ │ │ ├── font_vdi.c │ │ │ ├── font_vdi.h │ │ │ ├── fontplot.c │ │ │ ├── fontplot.h │ │ │ ├── plot.c │ │ │ └── plot.h │ │ ├── redrawslots.c │ │ ├── redrawslots.h │ │ ├── res │ │ │ ├── blank │ │ │ ├── favicon.ico │ │ │ ├── icons │ │ │ │ └── toolbar │ │ │ │ │ ├── atfact │ │ │ │ │ ├── main.png │ │ │ │ │ └── throbber.png │ │ │ │ │ └── default │ │ │ │ │ ├── main.png │ │ │ │ │ ├── main.xcf │ │ │ │ │ ├── throbber.png │ │ │ │ │ └── throbber.xcf │ │ │ ├── languages │ │ │ ├── netsurf.rsc │ │ │ ├── netsurf.rsh │ │ │ └── netsurf.rsm │ │ ├── rootwin.c │ │ ├── rootwin.h │ │ ├── save.h │ │ ├── schedule.c │ │ ├── schedule.h │ │ ├── scripts │ │ │ ├── env-v4e.sh │ │ │ └── env-x86.sh │ │ ├── search.c │ │ ├── search.h │ │ ├── settings.c │ │ ├── settings.h │ │ ├── statusbar.c │ │ ├── statusbar.h │ │ ├── toolbar.c │ │ ├── toolbar.h │ │ ├── treeview.c │ │ └── treeview.h │ ├── beos │ │ ├── Makefile │ │ ├── Makefile.defaults │ │ ├── Makefile.tools │ │ ├── WindowStack.h │ │ ├── about.cpp │ │ ├── about.h │ │ ├── beos_res.rsrc │ │ ├── bitmap.cpp │ │ ├── bitmap.h │ │ ├── cookies.cpp │ │ ├── cookies.h │ │ ├── download.cpp │ │ ├── download.h │ │ ├── fetch_rsrc.cpp │ │ ├── fetch_rsrc.h │ │ ├── filetype.cpp │ │ ├── filetype.h │ │ ├── font.cpp │ │ ├── font.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── gui_options.cpp │ │ ├── gui_options.h │ │ ├── login.cpp │ │ ├── options.h │ │ ├── plotters.cpp │ │ ├── plotters.h │ │ ├── res.h │ │ ├── res.rdef │ │ ├── res │ │ │ ├── SearchEngines │ │ │ ├── adblock.css │ │ │ ├── beosdefault.css │ │ │ ├── ca-bundle.txt │ │ │ ├── credits.html │ │ │ ├── de │ │ │ │ └── welcome.html │ │ │ ├── default.css │ │ │ ├── en │ │ │ │ ├── credits.html │ │ │ │ ├── licence.html │ │ │ │ └── welcome.html │ │ │ ├── favicon.png │ │ │ ├── icons │ │ │ ├── internal.css │ │ │ ├── it │ │ │ │ ├── credits.html │ │ │ │ ├── licence.html │ │ │ │ └── welcome.html │ │ │ ├── ja │ │ │ │ └── welcome.html │ │ │ ├── licence.html │ │ │ ├── license │ │ │ ├── netsurf.png │ │ │ ├── quirks.css │ │ │ ├── throbber │ │ │ │ ├── throbber0.png │ │ │ │ ├── throbber1.png │ │ │ │ ├── throbber2.png │ │ │ │ ├── throbber3.png │ │ │ │ ├── throbber4.png │ │ │ │ ├── throbber5.png │ │ │ │ ├── throbber6.png │ │ │ │ ├── throbber7.png │ │ │ │ └── throbber8.png │ │ │ └── welcome.html │ │ ├── scaffolding.cpp │ │ ├── scaffolding.h │ │ ├── schedule.cpp │ │ ├── schedule.h │ │ ├── search.cpp │ │ ├── throbber.cpp │ │ ├── throbber.h │ │ ├── window.cpp │ │ └── window.h │ ├── framebuffer │ │ ├── Makefile │ │ ├── Makefile.defaults │ │ ├── Makefile.tools │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── clipboard.c │ │ ├── clipboard.h │ │ ├── corewindow.c │ │ ├── corewindow.h │ │ ├── fb_search.c │ │ ├── fbtk.h │ │ ├── fbtk │ │ │ ├── bitmap.c │ │ │ ├── event.c │ │ │ ├── fbtk.c │ │ │ ├── fill.c │ │ │ ├── osk.c │ │ │ ├── scroll.c │ │ │ ├── text.c │ │ │ ├── user.c │ │ │ ├── widget.h │ │ │ └── window.c │ │ ├── fetch.c │ │ ├── fetch.h │ │ ├── findfile.c │ │ ├── findfile.h │ │ ├── font.h │ │ ├── font_freetype.c │ │ ├── font_freetype.h │ │ ├── font_internal.c │ │ ├── font_internal.h │ │ ├── framebuffer.c │ │ ├── framebuffer.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── image_data.h │ │ ├── local_history.c │ │ ├── local_history.h │ │ ├── options.h │ │ ├── res │ │ │ ├── Messages │ │ │ ├── adblock.css │ │ │ ├── credits.html │ │ │ ├── de │ │ │ │ └── welcome.html │ │ │ ├── default.css │ │ │ ├── en │ │ │ │ ├── credits.html │ │ │ │ ├── licence.html │ │ │ │ └── welcome.html │ │ │ ├── favicon.png │ │ │ ├── fonts │ │ │ │ └── glyph_data │ │ │ ├── icons │ │ │ │ ├── back.png │ │ │ │ ├── back_g.png │ │ │ │ ├── forward.png │ │ │ │ ├── forward_g.png │ │ │ │ ├── history.png │ │ │ │ ├── history_g.png │ │ │ │ ├── home.png │ │ │ │ ├── home_g.png │ │ │ │ ├── osk.png │ │ │ │ ├── reload.png │ │ │ │ ├── reload_g.png │ │ │ │ ├── scrolld.png │ │ │ │ ├── scrolll.png │ │ │ │ ├── scrollr.png │ │ │ │ ├── scrollu.png │ │ │ │ ├── stop.png │ │ │ │ └── stop_g.png │ │ │ ├── internal.css │ │ │ ├── it │ │ │ │ ├── credits.html │ │ │ │ └── licence.html │ │ │ ├── ja │ │ │ │ └── welcome.html │ │ │ ├── licence.html │ │ │ ├── netsurf.png │ │ │ ├── nl │ │ │ │ ├── credits.html │ │ │ │ ├── licence.html │ │ │ │ └── welcome.html │ │ │ ├── pointers │ │ │ │ ├── caret.png │ │ │ │ ├── cross.png │ │ │ │ ├── default.png │ │ │ │ ├── help.png │ │ │ │ ├── left-right.png │ │ │ │ ├── lu-rd.png │ │ │ │ ├── menu.png │ │ │ │ ├── move.png │ │ │ │ ├── no_drop.png │ │ │ │ ├── not_allowed.png │ │ │ │ ├── point.png │ │ │ │ ├── progress.png │ │ │ │ ├── ru-ld.png │ │ │ │ ├── up-down.png │ │ │ │ └── wait.png │ │ │ ├── quirks.css │ │ │ ├── throbber │ │ │ └── welcome.html │ │ ├── schedule.c │ │ └── schedule.h │ ├── gtk │ │ ├── Makefile │ │ ├── Makefile.defaults │ │ ├── Makefile.tools │ │ ├── about.c │ │ ├── about.h │ │ ├── accelerator.c │ │ ├── accelerator.h │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── compat.c │ │ ├── compat.h │ │ ├── completion.c │ │ ├── completion.h │ │ ├── cookies.c │ │ ├── cookies.h │ │ ├── corewindow.c │ │ ├── corewindow.h │ │ ├── download.c │ │ ├── download.h │ │ ├── fetch.c │ │ ├── fetch.h │ │ ├── gdk.c │ │ ├── gdk.h │ │ ├── gettext.c │ │ ├── gettext.h │ │ ├── global_history.c │ │ ├── global_history.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── hotlist.c │ │ ├── hotlist.h │ │ ├── layout_pango.c │ │ ├── layout_pango.h │ │ ├── local_history.c │ │ ├── local_history.h │ │ ├── menu.c │ │ ├── menu.h │ │ ├── misc.c │ │ ├── misc.h │ │ ├── options.h │ │ ├── page_info.c │ │ ├── page_info.h │ │ ├── plotters.c │ │ ├── plotters.h │ │ ├── preferences.c │ │ ├── preferences.h │ │ ├── print.c │ │ ├── print.h │ │ ├── res │ │ │ ├── Messages │ │ │ ├── SearchEngines │ │ │ ├── accelerators │ │ │ ├── adblock.css │ │ │ ├── ca-bundle.txt │ │ │ ├── credits.html │ │ │ ├── de │ │ │ │ └── welcome.html │ │ │ ├── default.css │ │ │ ├── default.ico │ │ │ ├── en │ │ │ │ ├── credits.html │ │ │ │ ├── licence.html │ │ │ │ └── welcome.html │ │ │ ├── favicon.png │ │ │ ├── gtk2 │ │ │ │ ├── cookies.ui │ │ │ │ ├── downloads.ui │ │ │ │ ├── globalhistory.ui │ │ │ │ ├── hotlist.ui │ │ │ │ ├── localhistory.ui │ │ │ │ ├── netsurf.ui │ │ │ │ ├── options.ui │ │ │ │ ├── pageinfo.ui │ │ │ │ ├── password.ui │ │ │ │ ├── tabcontents.ui │ │ │ │ ├── toolbar.ui │ │ │ │ ├── viewdata.ui │ │ │ │ └── warning.ui │ │ │ ├── gtk3 │ │ │ │ ├── cookies.ui │ │ │ │ ├── downloads.ui │ │ │ │ ├── globalhistory.ui │ │ │ │ ├── hotlist.ui │ │ │ │ ├── localhistory.ui │ │ │ │ ├── netsurf.ui │ │ │ │ ├── options.ui │ │ │ │ ├── pageinfo.ui │ │ │ │ ├── password.ui │ │ │ │ ├── tabcontents.ui │ │ │ │ ├── toolbar.ui │ │ │ │ ├── viewdata.ui │ │ │ │ └── warning.ui │ │ │ ├── icons │ │ │ ├── internal.css │ │ │ ├── it │ │ │ │ ├── credits.html │ │ │ │ ├── licence.html │ │ │ │ └── welcome.html │ │ │ ├── ja │ │ │ │ └── welcome.html │ │ │ ├── languages │ │ │ ├── licence.html │ │ │ ├── menu_cursor.png │ │ │ ├── menu_cursor.xbm │ │ │ ├── menu_cursor_mask.xbm │ │ │ ├── menu_cursor_mask.xpm │ │ │ ├── messages.gresource.xml │ │ │ ├── netsurf-16x16.xpm │ │ │ ├── netsurf-gtk.desktop │ │ │ ├── netsurf.gresource.xml │ │ │ ├── netsurf.png │ │ │ ├── netsurf.xpm │ │ │ ├── nl │ │ │ │ ├── credits.html │ │ │ │ ├── licence.html │ │ │ │ └── welcome.html │ │ │ ├── quirks.css │ │ │ ├── throbber │ │ │ │ ├── throbber0.png │ │ │ │ ├── throbber1.png │ │ │ │ ├── throbber2.png │ │ │ │ ├── throbber3.png │ │ │ │ ├── throbber4.png │ │ │ │ ├── throbber5.png │ │ │ │ ├── throbber6.png │ │ │ │ ├── throbber7.png │ │ │ │ └── throbber8.png │ │ │ ├── ui.gresource.xml │ │ │ ├── welcome.html │ │ │ └── zh_CN │ │ │ │ ├── credits.html │ │ │ │ ├── licence.html │ │ │ │ └── welcome.html │ │ ├── resources.c │ │ ├── resources.h │ │ ├── scaffolding.c │ │ ├── scaffolding.h │ │ ├── schedule.c │ │ ├── schedule.h │ │ ├── search.c │ │ ├── search.h │ │ ├── selection.c │ │ ├── selection.h │ │ ├── sexy_icon_entry.c │ │ ├── sexy_icon_entry.h │ │ ├── tabs.c │ │ ├── tabs.h │ │ ├── throbber.c │ │ ├── throbber.h │ │ ├── toolbar.c │ │ ├── toolbar.h │ │ ├── toolbar_items.h │ │ ├── viewdata.c │ │ ├── viewdata.h │ │ ├── viewsource.c │ │ ├── viewsource.h │ │ ├── warn.h │ │ ├── window.c │ │ └── window.h │ ├── monkey │ │ ├── 401login.c │ │ ├── 401login.h │ │ ├── Makefile │ │ ├── Makefile.defaults │ │ ├── Makefile.tools │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── browser.c │ │ ├── browser.h │ │ ├── dispatch.c │ │ ├── dispatch.h │ │ ├── download.c │ │ ├── fetch.c │ │ ├── fetch.h │ │ ├── filetype.c │ │ ├── filetype.h │ │ ├── layout.c │ │ ├── layout.h │ │ ├── main.c │ │ ├── options.h │ │ ├── output.c │ │ ├── output.h │ │ ├── plot.c │ │ ├── plot.h │ │ ├── res │ │ ├── schedule.c │ │ └── schedule.h │ ├── riscos │ │ ├── Makefile │ │ ├── Makefile.defaults │ │ ├── Makefile.tools │ │ ├── appdir │ │ │ ├── !Boot,feb │ │ │ ├── !Sprites,ff9 │ │ │ ├── !Sprites22,ff9 │ │ │ ├── 5Sprites,ff9 │ │ │ ├── 5Sprites11,ff9 │ │ │ ├── 5Sprites22,ff9 │ │ │ ├── ASprites,ff9 │ │ │ ├── ASprites11,ff9 │ │ │ ├── ASprites22,ff9 │ │ │ ├── ChkSprites,ffb │ │ │ ├── Docs │ │ │ │ └── online,b60 │ │ │ ├── FixFonts,ffb │ │ │ ├── KickNS,ffb │ │ │ ├── OpenChoices,feb │ │ │ ├── OpenHelp,ffb │ │ │ ├── OpenScrap,feb │ │ │ └── Resources │ │ │ │ ├── AdBlock,f79 │ │ │ │ ├── Aletheia,ffd │ │ │ │ ├── CSS,f79 │ │ │ │ ├── Fonts │ │ │ │ └── NSSymbol │ │ │ │ │ ├── Encoding │ │ │ │ │ ├── IntMetrics,ff6 │ │ │ │ │ └── Outlines,ff6 │ │ │ │ ├── Icons │ │ │ │ ├── Image,ff9 │ │ │ │ ├── LangNames │ │ │ │ ├── Quirks,f79 │ │ │ │ ├── SearchEngines │ │ │ │ ├── Sprites,ff9 │ │ │ │ ├── ca-bundle │ │ │ │ ├── de │ │ │ │ ├── Messages │ │ │ │ └── welcome.html,faf │ │ │ │ ├── en │ │ │ │ ├── !Help │ │ │ │ ├── Messages │ │ │ │ ├── credits.html,faf │ │ │ │ ├── licence.html,faf │ │ │ │ └── welcome.html,faf │ │ │ │ ├── fr │ │ │ │ └── Messages │ │ │ │ ├── internal.css,f79 │ │ │ │ ├── it │ │ │ │ ├── Messages │ │ │ │ ├── credits.html,faf │ │ │ │ ├── licence.html,faf │ │ │ │ └── welcome.html,faf │ │ │ │ ├── ja │ │ │ │ └── welcome.html,faf │ │ │ │ ├── netsurf.png,b60 │ │ │ │ └── nl │ │ │ │ ├── !Help │ │ │ │ ├── Messages │ │ │ │ ├── credits.html,faf │ │ │ │ ├── licence.html,faf │ │ │ │ └── welcome.html,faf │ │ ├── assert.c │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── configure.c │ │ ├── configure.h │ │ ├── configure │ │ │ ├── con_cache.c │ │ │ ├── con_connect.c │ │ │ ├── con_content.c │ │ │ ├── con_fonts.c │ │ │ ├── con_home.c │ │ │ ├── con_image.c │ │ │ ├── con_inter.c │ │ │ ├── con_language.c │ │ │ ├── con_secure.c │ │ │ ├── con_theme.c │ │ │ └── configure.h │ │ ├── content-handlers │ │ │ ├── artworks.c │ │ │ ├── artworks.h │ │ │ ├── awrender.s │ │ │ ├── draw.c │ │ │ ├── draw.h │ │ │ ├── sprite.c │ │ │ └── sprite.h │ │ ├── cookies.c │ │ ├── cookies.h │ │ ├── corewindow.c │ │ ├── corewindow.h │ │ ├── dialog.c │ │ ├── dialog.h │ │ ├── distribution │ │ │ ├── !Boot │ │ │ │ └── Resources │ │ │ │ │ ├── !Cache │ │ │ │ │ ├── !Boot,feb │ │ │ │ │ ├── !Help,feb │ │ │ │ │ ├── !Run,feb │ │ │ │ │ ├── !RunImage,ffb │ │ │ │ │ ├── !Sprites,ff9 │ │ │ │ │ ├── !Sprites22,ff9 │ │ │ │ │ ├── Caches │ │ │ │ │ │ └── Blank │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── MultiError,ffb │ │ │ │ │ │ ├── ResFind,ffb │ │ │ │ │ │ └── UK │ │ │ │ │ │ ├── !Meta │ │ │ │ │ │ ├── Help │ │ │ │ │ │ ├── Messages │ │ │ │ │ │ └── Templates,fec │ │ │ │ │ └── !Unicode │ │ │ │ │ ├── !Boot,feb │ │ │ │ │ ├── !Help │ │ │ │ │ ├── !Run,feb │ │ │ │ │ ├── Encodings │ │ │ │ │ ├── Acorn │ │ │ │ │ │ └── Latin1,ffd │ │ │ │ │ ├── Apple │ │ │ │ │ │ ├── CentEuro,ffd │ │ │ │ │ │ ├── Cyrillic,ffd │ │ │ │ │ │ ├── Roman,ffd │ │ │ │ │ │ └── Ukrainian,ffd │ │ │ │ │ ├── BigFive,ffd │ │ │ │ │ ├── ISO2022 │ │ │ │ │ │ ├── C0 │ │ │ │ │ │ │ └── 40[ISO646],ffd │ │ │ │ │ │ ├── C1 │ │ │ │ │ │ │ └── 43[IS6429],ffd │ │ │ │ │ │ ├── G94 │ │ │ │ │ │ │ ├── 40[646old],ffd │ │ │ │ │ │ │ ├── 41[646-GB],ffd │ │ │ │ │ │ │ ├── 42[646IRV],ffd │ │ │ │ │ │ │ ├── 43[FinSwe],ffd │ │ │ │ │ │ │ ├── 47[646-SE],ffd │ │ │ │ │ │ │ ├── 48[646-SE],ffd │ │ │ │ │ │ │ ├── 49[JS201K],ffd │ │ │ │ │ │ │ ├── 4A[JS201R],ffd │ │ │ │ │ │ │ ├── 4B[646-DE],ffd │ │ │ │ │ │ │ ├── 4C[646-PT],ffd │ │ │ │ │ │ │ ├── 54[GB1988],ffd │ │ │ │ │ │ │ ├── 56[Teltxt],ffd │ │ │ │ │ │ │ ├── 59[646-IT],ffd │ │ │ │ │ │ │ ├── 5A[646-ES],ffd │ │ │ │ │ │ │ ├── 60[646-NO],ffd │ │ │ │ │ │ │ ├── 66[646-FR],ffd │ │ │ │ │ │ │ ├── 69[646-HU],ffd │ │ │ │ │ │ │ ├── 6B[Arabic],ffd │ │ │ │ │ │ │ ├── 6C[IS6937],ffd │ │ │ │ │ │ │ └── 7A[SerbCr],ffd │ │ │ │ │ │ ├── G94x94 │ │ │ │ │ │ │ ├── 40[JS6226],ffd │ │ │ │ │ │ │ ├── 41[GB2312],ffd │ │ │ │ │ │ │ ├── 42[JIS208],ffd │ │ │ │ │ │ │ ├── 43[KS1001],ffd │ │ │ │ │ │ │ ├── 44[JIS212],ffd │ │ │ │ │ │ │ ├── 47[CNS1],ffd │ │ │ │ │ │ │ ├── 48[CNS2],ffd │ │ │ │ │ │ │ ├── 49[CNS3],ffd │ │ │ │ │ │ │ ├── 4A[CNS4],ffd │ │ │ │ │ │ │ ├── 4B[CNS5],ffd │ │ │ │ │ │ │ ├── 4C[CNS6],ffd │ │ │ │ │ │ │ └── 4D[CNS7],ffd │ │ │ │ │ │ └── G96 │ │ │ │ │ │ │ ├── 41[Lat1],ffd │ │ │ │ │ │ │ ├── 42[Lat2],ffd │ │ │ │ │ │ │ ├── 43[Lat3],ffd │ │ │ │ │ │ │ ├── 44[Lat4],ffd │ │ │ │ │ │ │ ├── 46[Greek],ffd │ │ │ │ │ │ │ ├── 47[Arabic],ffd │ │ │ │ │ │ │ ├── 48[Hebrew],ffd │ │ │ │ │ │ │ ├── 4C[Cyrill],ffd │ │ │ │ │ │ │ ├── 4D[Lat5],ffd │ │ │ │ │ │ │ ├── 50[LatSup],ffd │ │ │ │ │ │ │ ├── 52[IS6937],ffd │ │ │ │ │ │ │ ├── 54[Thai],ffd │ │ │ │ │ │ │ ├── 56[Lat6],ffd │ │ │ │ │ │ │ ├── 58[L6Sami],ffd │ │ │ │ │ │ │ ├── 59[Lat7],ffd │ │ │ │ │ │ │ ├── 5C[Welsh],ffd │ │ │ │ │ │ │ ├── 5D[Sami],ffd │ │ │ │ │ │ │ ├── 5E[Hebrew],ffd │ │ │ │ │ │ │ ├── 5F[Lat8],ffd │ │ │ │ │ │ │ ├── 62[Lat9],ffd │ │ │ │ │ │ │ └── 66[Lat10],ffd │ │ │ │ │ ├── KOI8-R,ffd │ │ │ │ │ └── Microsoft │ │ │ │ │ │ ├── CP1250,ffd │ │ │ │ │ │ ├── CP1251,ffd │ │ │ │ │ │ ├── CP1252,ffd │ │ │ │ │ │ ├── CP1253,ffd │ │ │ │ │ │ ├── CP1254,ffd │ │ │ │ │ │ ├── CP1256,ffd │ │ │ │ │ │ ├── CP866,ffd │ │ │ │ │ │ ├── CP874,ffd │ │ │ │ │ │ └── CP932,ffd │ │ │ │ │ ├── Files │ │ │ │ │ ├── Aliases │ │ │ │ │ └── CharNames │ │ │ │ │ └── Themes │ │ │ │ │ ├── !Sprites,ff9 │ │ │ │ │ ├── !Sprites11,ff9 │ │ │ │ │ ├── !Sprites22,ff9 │ │ │ │ │ ├── Morris4 │ │ │ │ │ ├── !Sprites,ff9 │ │ │ │ │ └── !Sprites22,ff9 │ │ │ │ │ └── Ursula │ │ │ │ │ ├── !Sprites,ff9 │ │ │ │ │ └── !Sprites22,ff9 │ │ │ ├── !System │ │ │ │ ├── 310 │ │ │ │ │ └── Modules │ │ │ │ │ │ ├── CryptRand,ffa │ │ │ │ │ │ ├── Iconv,ffa │ │ │ │ │ │ ├── Network │ │ │ │ │ │ └── URI,ffa │ │ │ │ │ │ ├── SharedULib,ffa │ │ │ │ │ │ └── Tinct,ffa │ │ │ │ └── 400 │ │ │ │ │ └── Modules │ │ │ │ │ └── ARMEABISupport,ffa │ │ │ ├── 3rdParty │ │ │ │ ├── ARMEABISupport │ │ │ │ │ ├── Copyright │ │ │ │ │ └── Origin,b28 │ │ │ │ ├── AcornURI │ │ │ │ │ ├── Apache-2.0 │ │ │ │ │ ├── Copying │ │ │ │ │ └── Origin,b28 │ │ │ │ ├── Cache │ │ │ │ │ ├── Copyright │ │ │ │ │ └── Origin,b28 │ │ │ │ ├── CryptRand │ │ │ │ │ ├── Copyright │ │ │ │ │ └── Origin,b28 │ │ │ │ ├── Iconv │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── Origin,b28 │ │ │ │ │ ├── ReadMe │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── API │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ └── Uni-iconv │ │ │ │ │ └── licenses │ │ │ │ │ │ ├── Apache-2.0 │ │ │ │ │ │ └── LGPL-2 │ │ │ │ ├── SharedULib │ │ │ │ │ ├── Copyright │ │ │ │ │ └── Origin,b28 │ │ │ │ ├── Tinct │ │ │ │ │ ├── !Help │ │ │ │ │ └── Origin,b28 │ │ │ │ └── Unicode │ │ │ │ │ ├── Apache-2.0 │ │ │ │ │ ├── Copyright │ │ │ │ │ └── Origin,b28 │ │ │ ├── LeesMij │ │ │ └── ReadMe │ │ ├── download.c │ │ ├── filetype.c │ │ ├── filetype.h │ │ ├── font.c │ │ ├── font.h │ │ ├── global_history.c │ │ ├── global_history.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── gui │ │ │ ├── button_bar.c │ │ │ ├── button_bar.h │ │ │ ├── progress_bar.c │ │ │ ├── progress_bar.h │ │ │ ├── status_bar.c │ │ │ ├── status_bar.h │ │ │ ├── throbber.c │ │ │ ├── throbber.h │ │ │ ├── url_bar.c │ │ │ └── url_bar.h │ │ ├── help.c │ │ ├── help.h │ │ ├── hotlist.c │ │ ├── hotlist.h │ │ ├── iconbar.c │ │ ├── iconbar.h │ │ ├── image.c │ │ ├── image.h │ │ ├── local_history.c │ │ ├── local_history.h │ │ ├── menus.c │ │ ├── menus.h │ │ ├── message.c │ │ ├── message.h │ │ ├── mouse.c │ │ ├── mouse.h │ │ ├── options.h │ │ ├── oslib_pre7.h │ │ ├── pageinfo.c │ │ ├── pageinfo.h │ │ ├── palettes.c │ │ ├── palettes.h │ │ ├── plotters.c │ │ ├── print.c │ │ ├── print.h │ │ ├── query.c │ │ ├── query.h │ │ ├── save.c │ │ ├── save.h │ │ ├── save_draw.c │ │ ├── save_draw.h │ │ ├── save_pdf.c │ │ ├── save_pdf.h │ │ ├── schedule.c │ │ ├── scripts │ │ │ ├── Help │ │ │ └── Run │ │ ├── search.c │ │ ├── searchweb.c │ │ ├── templates │ │ │ ├── de │ │ │ ├── en │ │ │ ├── fr │ │ │ └── nl │ │ ├── textarea.c │ │ ├── textarea.h │ │ ├── textselection.c │ │ ├── textselection.h │ │ ├── theme.c │ │ ├── theme.h │ │ ├── theme_install.c │ │ ├── tinct.h │ │ ├── toolbar.c │ │ ├── toolbar.h │ │ ├── ucstables.c │ │ ├── ucstables.h │ │ ├── uri.c │ │ ├── uri.h │ │ ├── url_complete.c │ │ ├── url_complete.h │ │ ├── url_protocol.c │ │ ├── url_protocol.h │ │ ├── url_suggest.c │ │ ├── url_suggest.h │ │ ├── wimp.c │ │ ├── wimp.h │ │ ├── wimp_event.c │ │ ├── wimp_event.h │ │ ├── wimputils.h │ │ ├── window.c │ │ └── window.h │ └── windows │ │ ├── Makefile │ │ ├── Makefile.defaults │ │ ├── Makefile.tools │ │ ├── about.c │ │ ├── about.h │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── clipboard.c │ │ ├── clipboard.h │ │ ├── cookies.c │ │ ├── cookies.h │ │ ├── corewindow.c │ │ ├── corewindow.h │ │ ├── download.c │ │ ├── download.h │ │ ├── drawable.c │ │ ├── drawable.h │ │ ├── fetch.c │ │ ├── fetch.h │ │ ├── file.c │ │ ├── file.h │ │ ├── findfile.c │ │ ├── findfile.h │ │ ├── font.c │ │ ├── font.h │ │ ├── global_history.c │ │ ├── global_history.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── hotlist.c │ │ ├── hotlist.h │ │ ├── local_history.c │ │ ├── local_history.h │ │ ├── main.c │ │ ├── options.h │ │ ├── plot.c │ │ ├── plot.h │ │ ├── pointers.c │ │ ├── pointers.h │ │ ├── prefs.c │ │ ├── prefs.h │ │ ├── res │ │ ├── NetSurf.ico │ │ ├── adblock.css │ │ ├── banner.bmp │ │ ├── ca-bundle.crt │ │ ├── credits.html │ │ ├── default.css │ │ ├── home.bmp │ │ ├── icons │ │ │ ├── arrow-l.png │ │ │ ├── back.png │ │ │ ├── back_g.png │ │ │ ├── back_h.png │ │ │ ├── content.png │ │ │ ├── directory.png │ │ │ ├── directory2.png │ │ │ ├── forward.png │ │ │ ├── forward_g.png │ │ │ ├── forward_h.png │ │ │ ├── home.png │ │ │ ├── home_g.png │ │ │ ├── home_h.png │ │ │ ├── hotlist-add.png │ │ │ ├── hotlist-rmv.png │ │ │ ├── reload.png │ │ │ ├── reload_g.png │ │ │ ├── reload_h.png │ │ │ ├── search.png │ │ │ ├── stop.png │ │ │ ├── stop_g.png │ │ │ └── stop_h.png │ │ ├── installer.nsi │ │ ├── internal.css │ │ ├── licence.html │ │ ├── netsurf.gif │ │ ├── netsurf.png │ │ ├── page-info-insecure.bmp │ │ ├── page-info-internal.bmp │ │ ├── page-info-local.bmp │ │ ├── page-info-secure.bmp │ │ ├── page-info-warning.bmp │ │ ├── quirks.css │ │ ├── resource.rc │ │ ├── throbber.avi │ │ ├── throbber │ │ │ ├── throbber0.bmp │ │ │ ├── throbber0.png │ │ │ ├── throbber1.bmp │ │ │ ├── throbber1.png │ │ │ ├── throbber2.bmp │ │ │ ├── throbber2.png │ │ │ ├── throbber3.bmp │ │ │ ├── throbber3.png │ │ │ ├── throbber4.bmp │ │ │ ├── throbber4.png │ │ │ ├── throbber5.bmp │ │ │ ├── throbber5.png │ │ │ ├── throbber6.bmp │ │ │ ├── throbber6.png │ │ │ ├── throbber7.bmp │ │ │ ├── throbber7.png │ │ │ └── throbber8.png │ │ ├── toolbar.bmp │ │ ├── toolbarg.bmp │ │ ├── toolbarh.bmp │ │ └── welcome.html │ │ ├── resourceid.h │ │ ├── schedule.c │ │ ├── schedule.h │ │ ├── windbg.c │ │ ├── windbg.h │ │ ├── window.c │ │ └── window.h ├── include │ └── netsurf │ │ ├── bitmap.h │ │ ├── browser.h │ │ ├── browser_window.h │ │ ├── clipboard.h │ │ ├── console.h │ │ ├── content.h │ │ ├── content_type.h │ │ ├── cookie_db.h │ │ ├── core_window.h │ │ ├── css.h │ │ ├── download.h │ │ ├── fetch.h │ │ ├── form.h │ │ ├── inttypes.h │ │ ├── keypress.h │ │ ├── layout.h │ │ ├── misc.h │ │ ├── mouse.h │ │ ├── netsurf.h │ │ ├── plot_style.h │ │ ├── plotters.h │ │ ├── search.h │ │ ├── ssl_certs.h │ │ ├── types.h │ │ ├── url_db.h │ │ ├── utf8.h │ │ └── window.h ├── nsfb.rsf ├── nsfb.smdh ├── out.smdh ├── resources │ ├── FatMessages │ ├── SearchEngines │ ├── adblock.css │ ├── ca-bundle │ ├── de │ │ └── welcome.html │ ├── default.css │ ├── en │ │ ├── credits.html │ │ ├── licence.html │ │ └── welcome.html │ ├── favicon.png │ ├── icons │ │ ├── 16x16 │ │ │ └── actions │ │ │ │ ├── page-info-insecure.png │ │ │ │ ├── page-info-internal.png │ │ │ │ ├── page-info-local.png │ │ │ │ ├── page-info-secure.png │ │ │ │ └── page-info-warning.png │ │ ├── 24x24 │ │ │ └── actions │ │ │ │ ├── page-info-insecure.png │ │ │ │ ├── page-info-internal.png │ │ │ │ ├── page-info-local.png │ │ │ │ ├── page-info-secure.png │ │ │ │ └── page-info-warning.png │ │ ├── 48x48 │ │ │ └── actions │ │ │ │ ├── page-info-insecure.png │ │ │ │ ├── page-info-internal.png │ │ │ │ ├── page-info-local.png │ │ │ │ ├── page-info-secure.png │ │ │ │ └── page-info-warning.png │ │ ├── arrow-l.png │ │ ├── content.png │ │ ├── directory.png │ │ ├── directory2.png │ │ ├── hotlist-add.png │ │ ├── hotlist-rmv.png │ │ ├── local-history.png │ │ ├── page-info-insecure.svg │ │ ├── page-info-internal.svg │ │ ├── page-info-local.svg │ │ ├── page-info-secure.svg │ │ ├── page-info-warning.svg │ │ ├── search.png │ │ └── show-cookie.png │ ├── internal.css │ ├── it │ │ ├── credits.html │ │ ├── licence.html │ │ └── welcome.html │ ├── ja │ │ └── welcome.html │ ├── netsurf.png │ ├── nl │ │ ├── credits.html │ │ ├── licence.html │ │ └── welcome.html │ ├── quirks.css │ └── zh_CN │ │ ├── credits.html │ │ ├── licence.html │ │ └── welcome.html ├── test │ ├── Makefile │ ├── assert.c │ ├── bloom.c │ ├── corestrings.c │ ├── data │ │ ├── Choices │ │ ├── Choices-all │ │ ├── Choices-full │ │ ├── Choices-short │ │ ├── Messages │ │ ├── cookies │ │ ├── cookies-out │ │ ├── urldb │ │ └── urldb-out │ ├── hashmap.c │ ├── hashtable.c │ ├── js │ │ ├── assorted-log-doc-write.html │ │ ├── class-list.html │ │ ├── core.infinite.html │ │ ├── core.recursion.html │ │ ├── doc-dom2.html │ │ ├── doc-write-style.html │ │ ├── document-url.html │ │ ├── dom-body-enumerate.html │ │ ├── dom-change-event.html │ │ ├── dom-doc-cookie.html │ │ ├── dom-doc-location.html │ │ ├── dom-document-enumerate.html │ │ ├── dom-element-attribute.html │ │ ├── dom-element-childElementCount.html │ │ ├── dom-element-create.html │ │ ├── dom-element-firstElementChild.html │ │ ├── dom-element-lastElementChild.html │ │ ├── dom-element-next_prev_ElementSibling.html │ │ ├── dom-element-reflection.html │ │ ├── dom-getElementsByTagName.html │ │ ├── dom-html-div-element.html │ │ ├── dom-node-enumerate.html │ │ ├── dom-node-nodetype.html │ │ ├── dom-node-parentNode.html │ │ ├── event-onclick-insert.html │ │ ├── event-onclick.html │ │ ├── event-onload.html │ │ ├── event-onloadfrombody.html │ │ ├── event-onloadfrombody2.html │ │ ├── idl-treatnullas-emptystring.html │ │ ├── index.html │ │ ├── inline-doc-write-simple.html │ │ ├── inline-doc-write.html │ │ ├── inline-innerhtml.html │ │ ├── inserted-script-async.js │ │ ├── inserted-script-defer.js │ │ ├── inserted-script.html │ │ ├── inserted-script.js │ │ ├── js-fractal.html │ │ ├── js-primes.html │ │ ├── life.html │ │ ├── location-assign.html │ │ ├── location-enumerate.html │ │ ├── location-href.html │ │ ├── location-putforwards.html │ │ ├── location-replace.html │ │ ├── mandelbrot.html │ │ ├── navigator-enumerate.html │ │ ├── noscript-inline-doc-write.html │ │ ├── parameter-error.html │ │ ├── settimeout.html │ │ ├── sleepy-async.html │ │ ├── sync-script-css.html │ │ ├── sync-script-err.html │ │ ├── sync-script.html │ │ ├── tst.css │ │ ├── tst.js │ │ ├── verify-instanceofness.html │ │ ├── wikipedia-lcm.html │ │ ├── wikipedia-lcm.js │ │ ├── window-enumerate.html │ │ └── window.lately.html │ ├── llcache.c │ ├── log.c │ ├── malloc_fig.c │ ├── malloc_fig.h │ ├── message_data_inline.h │ ├── messages.c │ ├── mimesniff.c │ ├── monkey-see-monkey-do │ ├── monkey-tests │ │ ├── 401login.yaml │ │ ├── cache-test.yaml │ │ ├── inserted-script.yaml │ │ ├── quit-mid-fetch.yaml │ │ ├── resource-scheme.yaml │ │ ├── simultanious-fetches.yaml │ │ ├── sslcert.yaml │ │ ├── start-stop-no-js.yaml │ │ ├── start-stop.yaml │ │ └── state-test.yaml │ ├── monkey_driver.py │ ├── monkeyfarmer.py │ ├── nsoption.c │ ├── nsurl.c │ ├── testament.h │ ├── time.c │ ├── urldbtest.c │ ├── urlescape.c │ └── utils.c ├── tools │ ├── DerivedJoiningType.txt │ ├── Makefile │ ├── convert_font.c │ ├── convert_image.c │ ├── coverity-build.sh │ ├── fetch-transifex.pl │ ├── git-date.sh │ ├── git-testament.pl │ ├── idna-derived-props-gen.pl │ ├── idna-tables-properties.csv │ ├── import-messages.pl │ ├── jenkins-build.sh │ ├── linktrace-to-depfile.pl │ ├── memanalyze.pl │ ├── split-messages.c │ ├── split-messages.pl │ ├── test-netsurf │ ├── valgrind.supp │ └── xxd.c └── utils │ ├── Makefile │ ├── ascii.h │ ├── bloom.c │ ├── bloom.h │ ├── config.h │ ├── corestringlist.h │ ├── corestrings.c │ ├── corestrings.h │ ├── dirent.h │ ├── errors.h │ ├── file.c │ ├── file.h │ ├── filename.c │ ├── filename.h │ ├── filepath.c │ ├── filepath.h │ ├── hashmap.c │ ├── hashmap.h │ ├── hashtable.c │ ├── hashtable.h │ ├── http.h │ ├── http │ ├── Makefile │ ├── cache-control.c │ ├── cache-control.h │ ├── challenge.c │ ├── challenge.h │ ├── challenge_internal.h │ ├── content-disposition.c │ ├── content-disposition.h │ ├── content-type.c │ ├── content-type.h │ ├── generics.c │ ├── generics.h │ ├── parameter.c │ ├── parameter.h │ ├── parameter_internal.h │ ├── primitives.c │ ├── primitives.h │ ├── strict-transport-security.c │ ├── strict-transport-security.h │ ├── www-authenticate.c │ └── www-authenticate.h │ ├── idna.c │ ├── idna.h │ ├── idna_props.h │ ├── inet.h │ ├── libdom.c │ ├── libdom.h │ ├── log.c │ ├── log.h │ ├── messages.c │ ├── messages.h │ ├── nscolour.c │ ├── nscolour.h │ ├── nsoption.c │ ├── nsoption.h │ ├── nsurl.h │ ├── nsurl │ ├── Makefile │ ├── nsurl.c │ ├── parse.c │ └── private.h │ ├── punycode.c │ ├── punycode.h │ ├── regex.h │ ├── ring.h │ ├── ssl_certs.c │ ├── string.h │ ├── sys_time.h │ ├── talloc.c │ ├── talloc.h │ ├── time.c │ ├── time.h │ ├── url.c │ ├── url.h │ ├── useragent.c │ ├── useragent.h │ ├── utf8.c │ ├── utf8.h │ ├── utils.c │ ├── utils.h │ └── utsname.h ├── nsgenbind ├── COPYING ├── Makefile ├── README ├── docs │ ├── Doxyfile │ ├── example.bnd │ └── mainpage.md ├── src │ ├── Makefile │ ├── duk-libdom-common.c │ ├── duk-libdom-dictionary.c │ ├── duk-libdom-generated.c │ ├── duk-libdom-interface.c │ ├── duk-libdom.c │ ├── duk-libdom.h │ ├── ir.c │ ├── ir.h │ ├── jsapi-libdom.h │ ├── nsgenbind-ast.c │ ├── nsgenbind-ast.h │ ├── nsgenbind-lexer.l │ ├── nsgenbind-parser.y │ ├── nsgenbind.c │ ├── options.h │ ├── output.c │ ├── output.h │ ├── utils.c │ ├── utils.h │ ├── webidl-ast.c │ ├── webidl-ast.h │ ├── webidl-lexer.l │ └── webidl-parser.y └── test │ ├── Makefile │ ├── data │ ├── bindings │ │ ├── HTMLUnknownElement.bnd │ │ ├── blankidl.bnd │ │ ├── browser-duk.bnd │ │ ├── document.bnd │ │ ├── dom.bnd │ │ ├── emptyidl.bnd │ │ ├── htmldocument.bnd │ │ ├── htmldocument2.bnd │ │ ├── htmlelement.bnd │ │ └── window.bnd │ └── idl │ │ ├── blank.idl │ │ ├── console.idl │ │ ├── document.idl │ │ ├── dom.idl │ │ ├── empty.idl │ │ ├── eventtarget.idl │ │ ├── html.idl │ │ ├── htmldocument.idl │ │ ├── node.idl │ │ ├── uievents.idl │ │ ├── urlutils.idl │ │ └── window.idl │ └── testrunner.sh └── tools ├── convert_font ├── convert_image ├── created ├── split-messages └── xxd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/.gitmodules -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/Makefile -------------------------------------------------------------------------------- /NS_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/NS_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/README.md -------------------------------------------------------------------------------- /libcss/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/COPYING -------------------------------------------------------------------------------- /libcss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/Makefile -------------------------------------------------------------------------------- /libcss/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/Makefile.config -------------------------------------------------------------------------------- /libcss/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/README -------------------------------------------------------------------------------- /libcss/build/mkprops.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/build/mkprops.pl -------------------------------------------------------------------------------- /libcss/docs/API: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/docs/API -------------------------------------------------------------------------------- /libcss/docs/API-ABI-Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/docs/API-ABI-Changes -------------------------------------------------------------------------------- /libcss/docs/Bytecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/docs/Bytecode -------------------------------------------------------------------------------- /libcss/docs/Colour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/docs/Colour -------------------------------------------------------------------------------- /libcss/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/docs/Doxyfile -------------------------------------------------------------------------------- /libcss/docs/Grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/docs/Grammar -------------------------------------------------------------------------------- /libcss/docs/Lexer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/docs/Lexer -------------------------------------------------------------------------------- /libcss/docs/Representation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/docs/Representation -------------------------------------------------------------------------------- /libcss/docs/Tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/docs/Tokens -------------------------------------------------------------------------------- /libcss/examples/example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/examples/example1.c -------------------------------------------------------------------------------- /libcss/include/libcss/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/include/libcss/errors.h -------------------------------------------------------------------------------- /libcss/include/libcss/fpmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/include/libcss/fpmath.h -------------------------------------------------------------------------------- /libcss/include/libcss/hint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/include/libcss/hint.h -------------------------------------------------------------------------------- /libcss/include/libcss/libcss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/include/libcss/libcss.h -------------------------------------------------------------------------------- /libcss/include/libcss/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/include/libcss/select.h -------------------------------------------------------------------------------- /libcss/include/libcss/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/include/libcss/types.h -------------------------------------------------------------------------------- /libcss/include/libcss/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/include/libcss/unit.h -------------------------------------------------------------------------------- /libcss/libcss.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/libcss.pc.in -------------------------------------------------------------------------------- /libcss/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/Makefile -------------------------------------------------------------------------------- /libcss/src/bytecode/Makefile: -------------------------------------------------------------------------------- 1 | # Sources 2 | 3 | include $(NSBUILD)/Makefile.subdir 4 | -------------------------------------------------------------------------------- /libcss/src/bytecode/bytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/bytecode/bytecode.h -------------------------------------------------------------------------------- /libcss/src/bytecode/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/bytecode/opcodes.h -------------------------------------------------------------------------------- /libcss/src/charset/Makefile: -------------------------------------------------------------------------------- 1 | # Sources 2 | DIR_SOURCES := detect.c 3 | 4 | include $(NSBUILD)/Makefile.subdir 5 | -------------------------------------------------------------------------------- /libcss/src/charset/detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/charset/detect.c -------------------------------------------------------------------------------- /libcss/src/charset/detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/charset/detect.h -------------------------------------------------------------------------------- /libcss/src/lex/Makefile: -------------------------------------------------------------------------------- 1 | # Sources 2 | DIR_SOURCES := lex.c 3 | 4 | include $(NSBUILD)/Makefile.subdir 5 | -------------------------------------------------------------------------------- /libcss/src/lex/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/lex/lex.c -------------------------------------------------------------------------------- /libcss/src/lex/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/lex/lex.h -------------------------------------------------------------------------------- /libcss/src/parse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/Makefile -------------------------------------------------------------------------------- /libcss/src/parse/font_face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/font_face.c -------------------------------------------------------------------------------- /libcss/src/parse/font_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/font_face.h -------------------------------------------------------------------------------- /libcss/src/parse/important.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/important.c -------------------------------------------------------------------------------- /libcss/src/parse/important.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/important.h -------------------------------------------------------------------------------- /libcss/src/parse/language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/language.c -------------------------------------------------------------------------------- /libcss/src/parse/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/language.h -------------------------------------------------------------------------------- /libcss/src/parse/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/mq.c -------------------------------------------------------------------------------- /libcss/src/parse/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/mq.h -------------------------------------------------------------------------------- /libcss/src/parse/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/parse.c -------------------------------------------------------------------------------- /libcss/src/parse/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/parse.h -------------------------------------------------------------------------------- /libcss/src/parse/propstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/propstrings.c -------------------------------------------------------------------------------- /libcss/src/parse/propstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/parse/propstrings.h -------------------------------------------------------------------------------- /libcss/src/select/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/Makefile -------------------------------------------------------------------------------- /libcss/src/select/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/arena.c -------------------------------------------------------------------------------- /libcss/src/select/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/arena.h -------------------------------------------------------------------------------- /libcss/src/select/arena_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/arena_hash.h -------------------------------------------------------------------------------- /libcss/src/select/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/assets.py -------------------------------------------------------------------------------- /libcss/src/select/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/bloom.h -------------------------------------------------------------------------------- /libcss/src/select/computed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/computed.c -------------------------------------------------------------------------------- /libcss/src/select/computed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/computed.h -------------------------------------------------------------------------------- /libcss/src/select/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/dispatch.c -------------------------------------------------------------------------------- /libcss/src/select/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/dispatch.h -------------------------------------------------------------------------------- /libcss/src/select/font_face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/font_face.c -------------------------------------------------------------------------------- /libcss/src/select/font_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/font_face.h -------------------------------------------------------------------------------- /libcss/src/select/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/hash.c -------------------------------------------------------------------------------- /libcss/src/select/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/hash.h -------------------------------------------------------------------------------- /libcss/src/select/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/helpers.h -------------------------------------------------------------------------------- /libcss/src/select/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/mq.h -------------------------------------------------------------------------------- /libcss/src/select/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/overrides.py -------------------------------------------------------------------------------- /libcss/src/select/propget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/propget.h -------------------------------------------------------------------------------- /libcss/src/select/propset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/propset.h -------------------------------------------------------------------------------- /libcss/src/select/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/select.c -------------------------------------------------------------------------------- /libcss/src/select/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/select.h -------------------------------------------------------------------------------- /libcss/src/select/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/strings.c -------------------------------------------------------------------------------- /libcss/src/select/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/strings.h -------------------------------------------------------------------------------- /libcss/src/select/unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/unit.c -------------------------------------------------------------------------------- /libcss/src/select/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/select/unit.h -------------------------------------------------------------------------------- /libcss/src/stylesheet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/stylesheet.c -------------------------------------------------------------------------------- /libcss/src/stylesheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/stylesheet.h -------------------------------------------------------------------------------- /libcss/src/utils/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/utils/errors.c -------------------------------------------------------------------------------- /libcss/src/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/utils/utils.c -------------------------------------------------------------------------------- /libcss/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/src/utils/utils.h -------------------------------------------------------------------------------- /libcss/test/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/INDEX -------------------------------------------------------------------------------- /libcss/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/Makefile -------------------------------------------------------------------------------- /libcss/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/README -------------------------------------------------------------------------------- /libcss/test/csdetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/csdetect.c -------------------------------------------------------------------------------- /libcss/test/css21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/css21.c -------------------------------------------------------------------------------- /libcss/test/data/css/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/css/INDEX -------------------------------------------------------------------------------- /libcss/test/data/css/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/css/color.css -------------------------------------------------------------------------------- /libcss/test/data/lex/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/lex/INDEX -------------------------------------------------------------------------------- /libcss/test/data/number/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/number/INDEX -------------------------------------------------------------------------------- /libcss/test/data/parse/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/parse/INDEX -------------------------------------------------------------------------------- /libcss/test/data/parse/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/parse/README -------------------------------------------------------------------------------- /libcss/test/data/parse/nth.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/parse/nth.dat -------------------------------------------------------------------------------- /libcss/test/data/parse2/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/parse2/INDEX -------------------------------------------------------------------------------- /libcss/test/data/parse2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/parse2/README -------------------------------------------------------------------------------- /libcss/test/data/parse2/au.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/parse2/au.dat -------------------------------------------------------------------------------- /libcss/test/data/parse2/bg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/parse2/bg.dat -------------------------------------------------------------------------------- /libcss/test/data/parse2/mq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/parse2/mq.dat -------------------------------------------------------------------------------- /libcss/test/data/select/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/data/select/INDEX -------------------------------------------------------------------------------- /libcss/test/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/dump.h -------------------------------------------------------------------------------- /libcss/test/dump_computed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/dump_computed.h -------------------------------------------------------------------------------- /libcss/test/lex-auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/lex-auto.c -------------------------------------------------------------------------------- /libcss/test/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/lex.c -------------------------------------------------------------------------------- /libcss/test/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/number.c -------------------------------------------------------------------------------- /libcss/test/parse-auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/parse-auto.c -------------------------------------------------------------------------------- /libcss/test/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/parse.c -------------------------------------------------------------------------------- /libcss/test/parse2-auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/parse2-auto.c -------------------------------------------------------------------------------- /libcss/test/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/select.c -------------------------------------------------------------------------------- /libcss/test/testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libcss/test/testutils.h -------------------------------------------------------------------------------- /libdom/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/.clang-format -------------------------------------------------------------------------------- /libdom/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/COPYING -------------------------------------------------------------------------------- /libdom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/Makefile -------------------------------------------------------------------------------- /libdom/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/Makefile.config -------------------------------------------------------------------------------- /libdom/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/README -------------------------------------------------------------------------------- /libdom/bindings/Makefile: -------------------------------------------------------------------------------- 1 | # Bindings 2 | 3 | include $(NSBUILD)/Makefile.subdir 4 | -------------------------------------------------------------------------------- /libdom/bindings/hubbub/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/bindings/hubbub/README -------------------------------------------------------------------------------- /libdom/bindings/hubbub/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/bindings/hubbub/utils.h -------------------------------------------------------------------------------- /libdom/bindings/xml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/bindings/xml/Makefile -------------------------------------------------------------------------------- /libdom/bindings/xml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/bindings/xml/README -------------------------------------------------------------------------------- /libdom/bindings/xml/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/bindings/xml/utils.h -------------------------------------------------------------------------------- /libdom/bindings/xml/xmlerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/bindings/xml/xmlerror.h -------------------------------------------------------------------------------- /libdom/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/docs/Doxyfile -------------------------------------------------------------------------------- /libdom/docs/RefCnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/docs/RefCnt -------------------------------------------------------------------------------- /libdom/docs/TestSuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/docs/TestSuite -------------------------------------------------------------------------------- /libdom/docs/Todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/docs/Todo -------------------------------------------------------------------------------- /libdom/examples/example.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/examples/example.mk -------------------------------------------------------------------------------- /libdom/gdb/libdom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/gdb/libdom.py -------------------------------------------------------------------------------- /libdom/include/dom/core/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/include/dom/core/attr.h -------------------------------------------------------------------------------- /libdom/include/dom/core/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/include/dom/core/node.h -------------------------------------------------------------------------------- /libdom/include/dom/core/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/include/dom/core/pi.h -------------------------------------------------------------------------------- /libdom/include/dom/core/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/include/dom/core/text.h -------------------------------------------------------------------------------- /libdom/include/dom/dom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/include/dom/dom.h -------------------------------------------------------------------------------- /libdom/include/dom/functypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/include/dom/functypes.h -------------------------------------------------------------------------------- /libdom/include/dom/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/include/dom/inttypes.h -------------------------------------------------------------------------------- /libdom/include/dom/walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/include/dom/walk.h -------------------------------------------------------------------------------- /libdom/libdom.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/libdom.pc.in -------------------------------------------------------------------------------- /libdom/src/Makefile: -------------------------------------------------------------------------------- 1 | # Src 2 | 3 | include $(NSBUILD)/Makefile.subdir 4 | -------------------------------------------------------------------------------- /libdom/src/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/Makefile -------------------------------------------------------------------------------- /libdom/src/core/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/attr.c -------------------------------------------------------------------------------- /libdom/src/core/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/attr.h -------------------------------------------------------------------------------- /libdom/src/core/cdatasection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/cdatasection.c -------------------------------------------------------------------------------- /libdom/src/core/cdatasection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/cdatasection.h -------------------------------------------------------------------------------- /libdom/src/core/comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/comment.c -------------------------------------------------------------------------------- /libdom/src/core/comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/comment.h -------------------------------------------------------------------------------- /libdom/src/core/doc_fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/doc_fragment.c -------------------------------------------------------------------------------- /libdom/src/core/doc_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/doc_fragment.h -------------------------------------------------------------------------------- /libdom/src/core/document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/document.c -------------------------------------------------------------------------------- /libdom/src/core/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/document.h -------------------------------------------------------------------------------- /libdom/src/core/element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/element.c -------------------------------------------------------------------------------- /libdom/src/core/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/element.h -------------------------------------------------------------------------------- /libdom/src/core/entity_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/entity_ref.c -------------------------------------------------------------------------------- /libdom/src/core/entity_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/entity_ref.h -------------------------------------------------------------------------------- /libdom/src/core/namednodemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/namednodemap.c -------------------------------------------------------------------------------- /libdom/src/core/namednodemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/namednodemap.h -------------------------------------------------------------------------------- /libdom/src/core/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/node.c -------------------------------------------------------------------------------- /libdom/src/core/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/node.h -------------------------------------------------------------------------------- /libdom/src/core/nodelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/nodelist.c -------------------------------------------------------------------------------- /libdom/src/core/nodelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/nodelist.h -------------------------------------------------------------------------------- /libdom/src/core/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/pi.c -------------------------------------------------------------------------------- /libdom/src/core/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/pi.h -------------------------------------------------------------------------------- /libdom/src/core/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/string.c -------------------------------------------------------------------------------- /libdom/src/core/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/string.h -------------------------------------------------------------------------------- /libdom/src/core/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/text.c -------------------------------------------------------------------------------- /libdom/src/core/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/text.h -------------------------------------------------------------------------------- /libdom/src/core/tokenlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/tokenlist.c -------------------------------------------------------------------------------- /libdom/src/core/tokenlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/tokenlist.h -------------------------------------------------------------------------------- /libdom/src/core/typeinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/core/typeinfo.c -------------------------------------------------------------------------------- /libdom/src/events/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/events/Makefile -------------------------------------------------------------------------------- /libdom/src/events/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/events/dispatch.c -------------------------------------------------------------------------------- /libdom/src/events/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/events/dispatch.h -------------------------------------------------------------------------------- /libdom/src/events/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/events/event.c -------------------------------------------------------------------------------- /libdom/src/events/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/events/event.h -------------------------------------------------------------------------------- /libdom/src/events/text_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/events/text_event.c -------------------------------------------------------------------------------- /libdom/src/events/text_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/events/text_event.h -------------------------------------------------------------------------------- /libdom/src/events/ui_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/events/ui_event.c -------------------------------------------------------------------------------- /libdom/src/events/ui_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/events/ui_event.h -------------------------------------------------------------------------------- /libdom/src/html/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/html/Makefile -------------------------------------------------------------------------------- /libdom/src/html/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/html/TODO -------------------------------------------------------------------------------- /libdom/src/html/html_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/html/html_element.c -------------------------------------------------------------------------------- /libdom/src/html/html_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/html/html_element.h -------------------------------------------------------------------------------- /libdom/src/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/Makefile -------------------------------------------------------------------------------- /libdom/src/utils/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/hashtable.c -------------------------------------------------------------------------------- /libdom/src/utils/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/hashtable.h -------------------------------------------------------------------------------- /libdom/src/utils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/list.h -------------------------------------------------------------------------------- /libdom/src/utils/namespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/namespace.c -------------------------------------------------------------------------------- /libdom/src/utils/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/namespace.h -------------------------------------------------------------------------------- /libdom/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/utils.h -------------------------------------------------------------------------------- /libdom/src/utils/validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/validate.c -------------------------------------------------------------------------------- /libdom/src/utils/validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/validate.h -------------------------------------------------------------------------------- /libdom/src/utils/walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/src/utils/walk.c -------------------------------------------------------------------------------- /libdom/test/DOMTSHandler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/DOMTSHandler.pm -------------------------------------------------------------------------------- /libdom/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/Makefile -------------------------------------------------------------------------------- /libdom/test/build-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/build-test.sh -------------------------------------------------------------------------------- /libdom/test/leak-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/leak-test.sh -------------------------------------------------------------------------------- /libdom/test/run-single-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/run-single-test.sh -------------------------------------------------------------------------------- /libdom/test/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/run-test.sh -------------------------------------------------------------------------------- /libdom/test/testcases/tests/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level1 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/core/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level1/core 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/core/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/core/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/core/files/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/core/files/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level1/core/files 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/core/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/core/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/core/files/svgtest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/core/files/svgunit.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/html/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level1/html 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/html/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/html/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/html/files/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level1/html/files 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/html/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level1/html/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level2 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level2/core 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/files/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/files/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level2/core/files 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/files/internalSubset01.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/files/svgtest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/core/files/svgunit.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/events/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/events/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/events/files/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/events/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/events/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/events/files/svgtest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/events/files/svgunit.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/html/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level2/html 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/html/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/html/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/html/files/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level2/html/files 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/html/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level2/html/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level3 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/.cvsignore: -------------------------------------------------------------------------------- 1 | dom3.dtd 2 | test-to-html.xsl 3 | dom3.xsd 4 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level3/core 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/files/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/files/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level3/core/files 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/files/external_foobr.ent: -------------------------------------------------------------------------------- 1 |
foo -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/files/svgtest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/core/files/svgunit.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/events/.cvsignore: -------------------------------------------------------------------------------- 1 | dom3.dtd 2 | test-to-html.xsl 3 | dom3.xsd 4 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/events/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/events/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/events/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/events/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/.cvsignore: -------------------------------------------------------------------------------- 1 | dom3.dtd 2 | test-to-html.xsl 3 | dom3.xsd 4 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level3/ls 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/files/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level3/ls/files 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/files/namespaces1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/files/subdir/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level3/ls/files/subdir 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/files/subdir/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/files/subdir/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/files/svgtest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/ls/files/svgunit.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/validation/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level3/validation 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/validation/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/validation/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/validation/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/validation/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/xpath/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level3/xpath 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/xpath/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/xpath/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/xpath/files/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/level3/xpath/files 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/xpath/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/xpath/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/xpath/files/svgtest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/level3/xpath/files/svgunit.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/submittedtests/CVS/Entries: -------------------------------------------------------------------------------- 1 | D/netscapeHTML//// 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/submittedtests/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/submittedtests/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/submittedtests/netscapeHTML/CVS/Entries: -------------------------------------------------------------------------------- 1 | D 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/submittedtests/netscapeHTML/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/submittedtests/netscapeHTML/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/validation/CVS/Entries: -------------------------------------------------------------------------------- 1 | D/files//// 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/validation/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/validation 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/validation/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/validation/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/validation/files/CVS/Entries: -------------------------------------------------------------------------------- 1 | D 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/validation/files/CVS/Repository: -------------------------------------------------------------------------------- 1 | 2001/DOM-Test-Suite/tests/validation/files 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/validation/files/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:anonymous@dev.w3.org:/sources/public 2 | -------------------------------------------------------------------------------- /libdom/test/testcases/tests/validation/files/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libdom/test/testutils/domts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/testutils/domts.h -------------------------------------------------------------------------------- /libdom/test/testutils/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/testutils/list.c -------------------------------------------------------------------------------- /libdom/test/testutils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/testutils/list.h -------------------------------------------------------------------------------- /libdom/test/testutils/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/testutils/load.c -------------------------------------------------------------------------------- /libdom/test/testutils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/testutils/utils.c -------------------------------------------------------------------------------- /libdom/test/testutils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/testutils/utils.h -------------------------------------------------------------------------------- /libdom/test/transform.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libdom/test/transform.pl -------------------------------------------------------------------------------- /libhubbub/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/COPYING -------------------------------------------------------------------------------- /libhubbub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/Makefile -------------------------------------------------------------------------------- /libhubbub/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/Makefile.config -------------------------------------------------------------------------------- /libhubbub/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/README -------------------------------------------------------------------------------- /libhubbub/build/Entities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/build/Entities -------------------------------------------------------------------------------- /libhubbub/docs/Architecture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/docs/Architecture -------------------------------------------------------------------------------- /libhubbub/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/docs/Doxyfile -------------------------------------------------------------------------------- /libhubbub/docs/Macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/docs/Macros -------------------------------------------------------------------------------- /libhubbub/docs/Todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/docs/Todo -------------------------------------------------------------------------------- /libhubbub/docs/Treebuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/docs/Treebuilder -------------------------------------------------------------------------------- /libhubbub/docs/Updated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/docs/Updated -------------------------------------------------------------------------------- /libhubbub/examples/example.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/examples/example.mk -------------------------------------------------------------------------------- /libhubbub/examples/libxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/examples/libxml.c -------------------------------------------------------------------------------- /libhubbub/libhubbub.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/libhubbub.pc.in -------------------------------------------------------------------------------- /libhubbub/perf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/perf/README -------------------------------------------------------------------------------- /libhubbub/perf/example.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/perf/example.mk -------------------------------------------------------------------------------- /libhubbub/perf/html5libtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/perf/html5libtest.py -------------------------------------------------------------------------------- /libhubbub/perf/hubbub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/perf/hubbub.c -------------------------------------------------------------------------------- /libhubbub/perf/libxml2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/perf/libxml2.c -------------------------------------------------------------------------------- /libhubbub/src/Makefile: -------------------------------------------------------------------------------- 1 | # Sources 2 | DIR_SOURCES := parser.c 3 | 4 | include $(NSBUILD)/Makefile.subdir 5 | -------------------------------------------------------------------------------- /libhubbub/src/charset/Makefile: -------------------------------------------------------------------------------- 1 | DIR_SOURCES := detect.c 2 | 3 | include $(NSBUILD)/Makefile.subdir 4 | -------------------------------------------------------------------------------- /libhubbub/src/charset/detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/src/charset/detect.c -------------------------------------------------------------------------------- /libhubbub/src/charset/detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/src/charset/detect.h -------------------------------------------------------------------------------- /libhubbub/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/src/parser.c -------------------------------------------------------------------------------- /libhubbub/src/utils/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/src/utils/errors.c -------------------------------------------------------------------------------- /libhubbub/src/utils/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/src/utils/string.c -------------------------------------------------------------------------------- /libhubbub/src/utils/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/src/utils/string.h -------------------------------------------------------------------------------- /libhubbub/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/src/utils/utils.h -------------------------------------------------------------------------------- /libhubbub/test/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/INDEX -------------------------------------------------------------------------------- /libhubbub/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/Makefile -------------------------------------------------------------------------------- /libhubbub/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/README -------------------------------------------------------------------------------- /libhubbub/test/csdetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/csdetect.c -------------------------------------------------------------------------------- /libhubbub/test/data/csdetect/regression.dat: -------------------------------------------------------------------------------- 1 | #data 2 | 3 | #encoding 4 | windows-1252 5 | 6 | -------------------------------------------------------------------------------- /libhubbub/test/data/html/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/data/html/INDEX -------------------------------------------------------------------------------- /libhubbub/test/entities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/entities.c -------------------------------------------------------------------------------- /libhubbub/test/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/parser.c -------------------------------------------------------------------------------- /libhubbub/test/testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/testutils.h -------------------------------------------------------------------------------- /libhubbub/test/tokeniser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/tokeniser.c -------------------------------------------------------------------------------- /libhubbub/test/tokeniser2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/tokeniser2.c -------------------------------------------------------------------------------- /libhubbub/test/tokeniser3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/tokeniser3.c -------------------------------------------------------------------------------- /libhubbub/test/tree-buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/tree-buf.c -------------------------------------------------------------------------------- /libhubbub/test/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/tree.c -------------------------------------------------------------------------------- /libhubbub/test/tree2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libhubbub/test/tree2.c -------------------------------------------------------------------------------- /libnsbmp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/COPYING -------------------------------------------------------------------------------- /libnsbmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/Makefile -------------------------------------------------------------------------------- /libnsbmp/examples/bmp_display: -------------------------------------------------------------------------------- 1 | set -e 2 | make 3 | bin/decode_bmp $1 | display 4 | -------------------------------------------------------------------------------- /libnsbmp/examples/ico_display: -------------------------------------------------------------------------------- 1 | set -e 2 | make 3 | bin/decode_ico $1 | display 4 | -------------------------------------------------------------------------------- /libnsbmp/examples/linux.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/examples/linux.bmp -------------------------------------------------------------------------------- /libnsbmp/examples/ro.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/examples/ro.bmp -------------------------------------------------------------------------------- /libnsbmp/include/libnsbmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/include/libnsbmp.h -------------------------------------------------------------------------------- /libnsbmp/libnsbmp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/libnsbmp.pc.in -------------------------------------------------------------------------------- /libnsbmp/src/Makefile: -------------------------------------------------------------------------------- 1 | # Sources 2 | DIR_SOURCES := libnsbmp.c 3 | 4 | include $(NSBUILD)/Makefile.subdir 5 | -------------------------------------------------------------------------------- /libnsbmp/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/src/README -------------------------------------------------------------------------------- /libnsbmp/src/libnsbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/src/libnsbmp.c -------------------------------------------------------------------------------- /libnsbmp/src/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/src/utils/log.h -------------------------------------------------------------------------------- /libnsbmp/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/Makefile -------------------------------------------------------------------------------- /libnsbmp/test/afl-bmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/afl-bmp/README -------------------------------------------------------------------------------- /libnsbmp/test/afl-bmp/id:000127,src:000000,op:havoc,rep:8.bmp: -------------------------------------------------------------------------------- 1 | BMv@:3333 -------------------------------------------------------------------------------- /libnsbmp/test/afl-bmp/id:000155,src:000000,op:havoc,rep:4,+cov.bmp: -------------------------------------------------------------------------------- 1 | BA3333 -------------------------------------------------------------------------------- /libnsbmp/test/afl-ico/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/afl-ico/README -------------------------------------------------------------------------------- /libnsbmp/test/afl-ico/id:000116,src:000000,op:havoc,rep:128,+cov.ico: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libnsbmp/test/afl-ico/id:000129,src:000000,op:havoc,rep:8,+cov.ico: -------------------------------------------------------------------------------- 1 | c``B`b` -------------------------------------------------------------------------------- /libnsbmp/test/afl-ico/id:000161,src:000000,op:havoc,rep:64.ico: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libnsbmp/test/afl-ico/id:000165,src:000000,op:havoc,rep:16.ico: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libnsbmp/test/afl-ico/id:000464,src:000243,op:havoc,rep:4.ico: -------------------------------------------------------------------------------- 1 | c``d`eP``0 -------------------------------------------------------------------------------- /libnsbmp/test/bmp/ns.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/bmp/ns.bmp -------------------------------------------------------------------------------- /libnsbmp/test/bmpsuite/g04.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/bmpsuite/g04.bmp -------------------------------------------------------------------------------- /libnsbmp/test/bmpsuite/g08.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/bmpsuite/g08.bmp -------------------------------------------------------------------------------- /libnsbmp/test/decode_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/decode_bmp.c -------------------------------------------------------------------------------- /libnsbmp/test/decode_ico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/decode_ico.c -------------------------------------------------------------------------------- /libnsbmp/test/icons/ns.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/icons/ns.ico -------------------------------------------------------------------------------- /libnsbmp/test/ns-afl-ico/id:000000,orig:id:000010,src:000000,op:flip1,pos:4,+cov.ico.min.ico: -------------------------------------------------------------------------------- 1 | 00 -------------------------------------------------------------------------------- /libnsbmp/test/ns-afl-ico/id:000001,orig:id:000134,src:000000,op:havoc,rep:128.ico.min.ico: -------------------------------------------------------------------------------- 1 | 30 -------------------------------------------------------------------------------- /libnsbmp/test/ns-afl-ico/id:000002,orig:id:000165,src:000000,op:havoc,rep:16.ico.min.ico: -------------------------------------------------------------------------------- 1 | 0000 -------------------------------------------------------------------------------- /libnsbmp/test/ns-afl-ico/id:000209,src:000000,op:havoc,rep:128,+cov.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libnsbmp/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsbmp/test/runtest.sh -------------------------------------------------------------------------------- /libnsfb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/COPYING -------------------------------------------------------------------------------- /libnsfb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/Makefile -------------------------------------------------------------------------------- /libnsfb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/README -------------------------------------------------------------------------------- /libnsfb/include/libnsfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/include/libnsfb.h -------------------------------------------------------------------------------- /libnsfb/libnsfb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/libnsfb.pc.in -------------------------------------------------------------------------------- /libnsfb/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/Makefile -------------------------------------------------------------------------------- /libnsfb/src/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/cursor.c -------------------------------------------------------------------------------- /libnsfb/src/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/cursor.h -------------------------------------------------------------------------------- /libnsfb/src/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/dump.c -------------------------------------------------------------------------------- /libnsfb/src/libnsfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/libnsfb.c -------------------------------------------------------------------------------- /libnsfb/src/nsfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/nsfb.h -------------------------------------------------------------------------------- /libnsfb/src/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/palette.c -------------------------------------------------------------------------------- /libnsfb/src/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/palette.h -------------------------------------------------------------------------------- /libnsfb/src/plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot.h -------------------------------------------------------------------------------- /libnsfb/src/plot/16bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot/16bpp.c -------------------------------------------------------------------------------- /libnsfb/src/plot/1bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot/1bpp.c -------------------------------------------------------------------------------- /libnsfb/src/plot/24bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot/24bpp.c -------------------------------------------------------------------------------- /libnsfb/src/plot/8bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot/8bpp.c -------------------------------------------------------------------------------- /libnsfb/src/plot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot/Makefile -------------------------------------------------------------------------------- /libnsfb/src/plot/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot/api.c -------------------------------------------------------------------------------- /libnsfb/src/plot/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot/common.c -------------------------------------------------------------------------------- /libnsfb/src/plot/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot/generic.c -------------------------------------------------------------------------------- /libnsfb/src/plot/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/plot/util.c -------------------------------------------------------------------------------- /libnsfb/src/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/surface.h -------------------------------------------------------------------------------- /libnsfb/src/surface/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/surface/ram.c -------------------------------------------------------------------------------- /libnsfb/src/surface/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/surface/sdl.c -------------------------------------------------------------------------------- /libnsfb/src/surface/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/surface/vnc.c -------------------------------------------------------------------------------- /libnsfb/src/surface/wld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/surface/wld.c -------------------------------------------------------------------------------- /libnsfb/src/surface/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/src/surface/x.c -------------------------------------------------------------------------------- /libnsfb/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/Makefile -------------------------------------------------------------------------------- /libnsfb/test/bezier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/bezier.c -------------------------------------------------------------------------------- /libnsfb/test/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/bitmap.c -------------------------------------------------------------------------------- /libnsfb/test/frontend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/frontend.c -------------------------------------------------------------------------------- /libnsfb/test/nsglobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/nsglobe.c -------------------------------------------------------------------------------- /libnsfb/test/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/path.c -------------------------------------------------------------------------------- /libnsfb/test/plottest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/plottest.c -------------------------------------------------------------------------------- /libnsfb/test/polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/polygon.c -------------------------------------------------------------------------------- /libnsfb/test/polystar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/polystar.c -------------------------------------------------------------------------------- /libnsfb/test/polystar2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/polystar2.c -------------------------------------------------------------------------------- /libnsfb/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/runtest.sh -------------------------------------------------------------------------------- /libnsfb/test/svgtiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/svgtiny.c -------------------------------------------------------------------------------- /libnsfb/test/text-speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/test/text-speed.c -------------------------------------------------------------------------------- /libnsfb/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsfb/usage -------------------------------------------------------------------------------- /libnsgif/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/COPYING -------------------------------------------------------------------------------- /libnsgif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/Makefile -------------------------------------------------------------------------------- /libnsgif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/README.md -------------------------------------------------------------------------------- /libnsgif/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/docs/Doxyfile -------------------------------------------------------------------------------- /libnsgif/examples/gif_display: -------------------------------------------------------------------------------- 1 | set -e 2 | make 3 | bin/decode_gif $1 | display 4 | -------------------------------------------------------------------------------- /libnsgif/include/nsgif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/include/nsgif.h -------------------------------------------------------------------------------- /libnsgif/libnsgif.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/libnsgif.pc.in -------------------------------------------------------------------------------- /libnsgif/src/Makefile: -------------------------------------------------------------------------------- 1 | # Sources 2 | DIR_SOURCES := gif.c lzw.c 3 | 4 | include $(NSBUILD)/Makefile.subdir 5 | -------------------------------------------------------------------------------- /libnsgif/src/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/src/gif.c -------------------------------------------------------------------------------- /libnsgif/src/lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/src/lzw.c -------------------------------------------------------------------------------- /libnsgif/src/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/src/lzw.h -------------------------------------------------------------------------------- /libnsgif/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/test/Makefile -------------------------------------------------------------------------------- /libnsgif/test/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/test/cli.c -------------------------------------------------------------------------------- /libnsgif/test/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/test/cli.h -------------------------------------------------------------------------------- /libnsgif/test/nsgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/test/nsgif.c -------------------------------------------------------------------------------- /libnsgif/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsgif/test/runtest.sh -------------------------------------------------------------------------------- /libnslog/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/COPYING -------------------------------------------------------------------------------- /libnslog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/Makefile -------------------------------------------------------------------------------- /libnslog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/README -------------------------------------------------------------------------------- /libnslog/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/docs/Doxyfile -------------------------------------------------------------------------------- /libnslog/docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/docs/examples.md -------------------------------------------------------------------------------- /libnslog/docs/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/docs/mainpage.md -------------------------------------------------------------------------------- /libnslog/libnslog.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/libnslog.pc.in -------------------------------------------------------------------------------- /libnslog/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/src/Makefile -------------------------------------------------------------------------------- /libnslog/src/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/src/core.c -------------------------------------------------------------------------------- /libnslog/src/filter-lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/src/filter-lexer.l -------------------------------------------------------------------------------- /libnslog/src/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/src/filter.c -------------------------------------------------------------------------------- /libnslog/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/test/Makefile -------------------------------------------------------------------------------- /libnslog/test/basictests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/test/basictests.c -------------------------------------------------------------------------------- /libnslog/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/test/runtest.sh -------------------------------------------------------------------------------- /libnslog/test/testmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/test/testmain.c -------------------------------------------------------------------------------- /libnslog/test/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnslog/test/tests.h -------------------------------------------------------------------------------- /libnspsl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/COPYING -------------------------------------------------------------------------------- /libnspsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/Makefile -------------------------------------------------------------------------------- /libnspsl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/README -------------------------------------------------------------------------------- /libnspsl/docs/huffing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/docs/huffing.svg -------------------------------------------------------------------------------- /libnspsl/docs/psltree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/docs/psltree.svg -------------------------------------------------------------------------------- /libnspsl/include/nspsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/include/nspsl.h -------------------------------------------------------------------------------- /libnspsl/libnspsl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/libnspsl.pc.in -------------------------------------------------------------------------------- /libnspsl/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/src/Makefile -------------------------------------------------------------------------------- /libnspsl/src/nspsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/src/nspsl.c -------------------------------------------------------------------------------- /libnspsl/src/psl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/src/psl.inc -------------------------------------------------------------------------------- /libnspsl/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/test/Makefile -------------------------------------------------------------------------------- /libnspsl/test/nspsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/test/nspsl.c -------------------------------------------------------------------------------- /libnspsl/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnspsl/test/runtest.sh -------------------------------------------------------------------------------- /libnsutils/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/COPYING -------------------------------------------------------------------------------- /libnsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/Makefile -------------------------------------------------------------------------------- /libnsutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/README -------------------------------------------------------------------------------- /libnsutils/libnsutils.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/libnsutils.pc.in -------------------------------------------------------------------------------- /libnsutils/src/Makefile: -------------------------------------------------------------------------------- 1 | DIR_SOURCES := base64.c time.c unistd.c 2 | 3 | include $(NSBUILD)/Makefile.subdir 4 | -------------------------------------------------------------------------------- /libnsutils/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/src/base64.c -------------------------------------------------------------------------------- /libnsutils/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/src/time.c -------------------------------------------------------------------------------- /libnsutils/src/unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/src/unistd.c -------------------------------------------------------------------------------- /libnsutils/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/test/Makefile -------------------------------------------------------------------------------- /libnsutils/test/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/test/base64.c -------------------------------------------------------------------------------- /libnsutils/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libnsutils/test/runtest.sh -------------------------------------------------------------------------------- /libparserutils/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libparserutils/COPYING -------------------------------------------------------------------------------- /libparserutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libparserutils/Makefile -------------------------------------------------------------------------------- /libparserutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libparserutils/README -------------------------------------------------------------------------------- /libparserutils/docs/Todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libparserutils/docs/Todo -------------------------------------------------------------------------------- /libparserutils/src/Makefile: -------------------------------------------------------------------------------- 1 | 2 | include $(NSBUILD)/Makefile.subdir 3 | -------------------------------------------------------------------------------- /libparserutils/test/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libparserutils/test/INDEX -------------------------------------------------------------------------------- /libparserutils/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libparserutils/test/README -------------------------------------------------------------------------------- /libpencil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libpencil/Makefile -------------------------------------------------------------------------------- /libpencil/include/pencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libpencil/include/pencil.h -------------------------------------------------------------------------------- /libpencil/libpencil.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libpencil/libpencil.pc.in -------------------------------------------------------------------------------- /libpencil/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libpencil/src/Makefile -------------------------------------------------------------------------------- /libpencil/src/pencil_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libpencil/src/pencil_save.c -------------------------------------------------------------------------------- /libpencil/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libpencil/test/Makefile -------------------------------------------------------------------------------- /librosprite/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librosprite/COPYING -------------------------------------------------------------------------------- /librosprite/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librosprite/Doxyfile -------------------------------------------------------------------------------- /librosprite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librosprite/Makefile -------------------------------------------------------------------------------- /librosprite/palettes/16mono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librosprite/palettes/16mono -------------------------------------------------------------------------------- /librosprite/palettes/2mono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librosprite/palettes/2mono -------------------------------------------------------------------------------- /librosprite/palettes/4mono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librosprite/palettes/4mono -------------------------------------------------------------------------------- /librosprite/src/palette2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librosprite/src/palette2c.c -------------------------------------------------------------------------------- /librosprite/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librosprite/test/Makefile -------------------------------------------------------------------------------- /librosprite/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librosprite/test/runtest.sh -------------------------------------------------------------------------------- /librufl/.cvsignore: -------------------------------------------------------------------------------- 1 | *,ff8 2 | rufl_glyph_map.c 3 | -------------------------------------------------------------------------------- /librufl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/Makefile -------------------------------------------------------------------------------- /librufl/include/rufl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/include/rufl.h -------------------------------------------------------------------------------- /librufl/librufl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/librufl.pc.in -------------------------------------------------------------------------------- /librufl/python/Mk.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/python/Mk.old -------------------------------------------------------------------------------- /librufl/python/ruflmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/python/ruflmodule.c -------------------------------------------------------------------------------- /librufl/src/Glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/Glyphs -------------------------------------------------------------------------------- /librufl/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/Makefile -------------------------------------------------------------------------------- /librufl/src/rufl_find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/rufl_find.c -------------------------------------------------------------------------------- /librufl/src/rufl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/rufl_init.c -------------------------------------------------------------------------------- /librufl/src/rufl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/rufl_internal.h -------------------------------------------------------------------------------- /librufl/src/rufl_metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/rufl_metrics.c -------------------------------------------------------------------------------- /librufl/src/rufl_paint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/rufl_paint.c -------------------------------------------------------------------------------- /librufl/src/rufl_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/rufl_quit.c -------------------------------------------------------------------------------- /librufl/src/strfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/strfuncs.c -------------------------------------------------------------------------------- /librufl/src/strfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/src/strfuncs.h -------------------------------------------------------------------------------- /librufl/test/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/INDEX -------------------------------------------------------------------------------- /librufl/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/Makefile -------------------------------------------------------------------------------- /librufl/test/harness-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/harness-priv.h -------------------------------------------------------------------------------- /librufl/test/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/harness.c -------------------------------------------------------------------------------- /librufl/test/harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/harness.h -------------------------------------------------------------------------------- /librufl/test/manyfonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/manyfonts.c -------------------------------------------------------------------------------- /librufl/test/mocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/mocks.c -------------------------------------------------------------------------------- /librufl/test/nofonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/nofonts.c -------------------------------------------------------------------------------- /librufl/test/oldfminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/oldfminit.c -------------------------------------------------------------------------------- /librufl/test/olducsinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/olducsinit.c -------------------------------------------------------------------------------- /librufl/test/rufl_chars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/rufl_chars.c -------------------------------------------------------------------------------- /librufl/test/rufl_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/rufl_test.c -------------------------------------------------------------------------------- /librufl/test/testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/testutils.h -------------------------------------------------------------------------------- /librufl/test/ucsinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/test/ucsinit.c -------------------------------------------------------------------------------- /librufl/tools/makeglyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/librufl/tools/makeglyphs -------------------------------------------------------------------------------- /libsvgtiny/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libsvgtiny/COPYING -------------------------------------------------------------------------------- /libsvgtiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libsvgtiny/Makefile -------------------------------------------------------------------------------- /libsvgtiny/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libsvgtiny/README -------------------------------------------------------------------------------- /libsvgtiny/build-x86_64-pc-linux-gnu-arm-none-eabi-release-lib-static/stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsvgtiny/libsvgtiny.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libsvgtiny/libsvgtiny.pc.in -------------------------------------------------------------------------------- /libsvgtiny/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libsvgtiny/src/Makefile -------------------------------------------------------------------------------- /libsvgtiny/src/colors.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libsvgtiny/src/colors.gperf -------------------------------------------------------------------------------- /libsvgtiny/src/svgtiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libsvgtiny/src/svgtiny.c -------------------------------------------------------------------------------- /libsvgtiny/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libsvgtiny/test/Makefile -------------------------------------------------------------------------------- /libsvgtiny/test/ns-afl-svg/0023.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libsvgtiny/test/ns-afl-svg/0514.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsvgtiny/test/ns-afl-svg/0591.svg: -------------------------------------------------------------------------------- 1 | <Ћext>0<0 -------------------------------------------------------------------------------- /libsvgtiny/test/ns-afl-svg/0636.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libsvgtiny/test/ns-afl-svg/0724.svg: -------------------------------------------------------------------------------- 1 | 2 |  -------------------------------------------------------------------------------- /libsvgtiny/test/ns-afl-svg/1166.svg: -------------------------------------------------------------------------------- 1 | <0sv0>00 -------------------------------------------------------------------------------- /libsvgtiny/test/ns-afl-svg/1244.svg: -------------------------------------------------------------------------------- 1 | <0g>00 -------------------------------------------------------------------------------- /libsvgtiny/test/ns-afl-svg/1253.svg: -------------------------------------------------------------------------------- 1 | 2 | 0] -------------------------------------------------------------------------------- /libsvgtiny/test/ns-afl-svg/2602.svg: -------------------------------------------------------------------------------- 1 | 2 | 0<0 -------------------------------------------------------------------------------- /libsvgtiny/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libsvgtiny/test/runtest.sh -------------------------------------------------------------------------------- /libutf8proc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/.travis.yml -------------------------------------------------------------------------------- /libutf8proc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/CMakeLists.txt -------------------------------------------------------------------------------- /libutf8proc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/Doxyfile -------------------------------------------------------------------------------- /libutf8proc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/LICENSE.md -------------------------------------------------------------------------------- /libutf8proc/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/MANIFEST -------------------------------------------------------------------------------- /libutf8proc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/Makefile -------------------------------------------------------------------------------- /libutf8proc/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/NEWS.md -------------------------------------------------------------------------------- /libutf8proc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/README -------------------------------------------------------------------------------- /libutf8proc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/README.md -------------------------------------------------------------------------------- /libutf8proc/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/appveyor.yml -------------------------------------------------------------------------------- /libutf8proc/bench/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/bench/bench.c -------------------------------------------------------------------------------- /libutf8proc/bench/icu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/bench/icu.c -------------------------------------------------------------------------------- /libutf8proc/bench/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/bench/util.c -------------------------------------------------------------------------------- /libutf8proc/bench/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/bench/util.h -------------------------------------------------------------------------------- /libutf8proc/lump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/lump.md -------------------------------------------------------------------------------- /libutf8proc/src/Makefile: -------------------------------------------------------------------------------- 1 | DIR_SOURCES := utf8proc.c 2 | 3 | include $(NSBUILD)/Makefile.subdir 4 | -------------------------------------------------------------------------------- /libutf8proc/src/utf8proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/src/utf8proc.c -------------------------------------------------------------------------------- /libutf8proc/test/case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/test/case.c -------------------------------------------------------------------------------- /libutf8proc/test/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/test/custom.c -------------------------------------------------------------------------------- /libutf8proc/test/iterate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/test/iterate.c -------------------------------------------------------------------------------- /libutf8proc/test/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/test/misc.c -------------------------------------------------------------------------------- /libutf8proc/test/normtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/test/normtest.c -------------------------------------------------------------------------------- /libutf8proc/test/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/test/tests.c -------------------------------------------------------------------------------- /libutf8proc/test/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/test/tests.h -------------------------------------------------------------------------------- /libutf8proc/test/valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/test/valid.c -------------------------------------------------------------------------------- /libutf8proc/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libutf8proc/utils.cmake -------------------------------------------------------------------------------- /libwapcaplet/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libwapcaplet/COPYING -------------------------------------------------------------------------------- /libwapcaplet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libwapcaplet/Makefile -------------------------------------------------------------------------------- /libwapcaplet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libwapcaplet/README -------------------------------------------------------------------------------- /libwapcaplet/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libwapcaplet/docs/Doxyfile -------------------------------------------------------------------------------- /libwapcaplet/src/Makefile: -------------------------------------------------------------------------------- 1 | DIR_SOURCES := libwapcaplet.c 2 | 3 | include $(NSBUILD)/Makefile.subdir 4 | -------------------------------------------------------------------------------- /libwapcaplet/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libwapcaplet/test/Makefile -------------------------------------------------------------------------------- /libwapcaplet/test/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/libwapcaplet/test/tests.h -------------------------------------------------------------------------------- /netsurf/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/.clang-format -------------------------------------------------------------------------------- /netsurf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/COPYING -------------------------------------------------------------------------------- /netsurf/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/Logo.png -------------------------------------------------------------------------------- /netsurf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/Makefile -------------------------------------------------------------------------------- /netsurf/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/Makefile.config -------------------------------------------------------------------------------- /netsurf/Makefile.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/Makefile.defaults -------------------------------------------------------------------------------- /netsurf/Makefile.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/Makefile.macros -------------------------------------------------------------------------------- /netsurf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/README.md -------------------------------------------------------------------------------- /netsurf/build/tools/xxd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/build/tools/xxd.c -------------------------------------------------------------------------------- /netsurf/content/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/Makefile -------------------------------------------------------------------------------- /netsurf/content/content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/content.c -------------------------------------------------------------------------------- /netsurf/content/content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/content.h -------------------------------------------------------------------------------- /netsurf/content/fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/fetch.c -------------------------------------------------------------------------------- /netsurf/content/fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/fetch.h -------------------------------------------------------------------------------- /netsurf/content/fetchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/fetchers.h -------------------------------------------------------------------------------- /netsurf/content/fetchers/file/Makefile: -------------------------------------------------------------------------------- 1 | # File fetcher sources 2 | 3 | S_FETCHER_FILE := dirlist.c file.c 4 | -------------------------------------------------------------------------------- /netsurf/content/handlers/javascript/content.h: -------------------------------------------------------------------------------- 1 | nserror javascript_init(void); 2 | -------------------------------------------------------------------------------- /netsurf/content/hlcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/hlcache.c -------------------------------------------------------------------------------- /netsurf/content/hlcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/hlcache.h -------------------------------------------------------------------------------- /netsurf/content/llcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/llcache.c -------------------------------------------------------------------------------- /netsurf/content/llcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/llcache.h -------------------------------------------------------------------------------- /netsurf/content/mimesniff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/mimesniff.c -------------------------------------------------------------------------------- /netsurf/content/mimesniff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/mimesniff.h -------------------------------------------------------------------------------- /netsurf/content/urldb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/urldb.c -------------------------------------------------------------------------------- /netsurf/content/urldb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/content/urldb.h -------------------------------------------------------------------------------- /netsurf/desktop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/Makefile -------------------------------------------------------------------------------- /netsurf/desktop/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/bitmap.c -------------------------------------------------------------------------------- /netsurf/desktop/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/bitmap.h -------------------------------------------------------------------------------- /netsurf/desktop/browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/browser.c -------------------------------------------------------------------------------- /netsurf/desktop/cw_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/cw_helper.c -------------------------------------------------------------------------------- /netsurf/desktop/cw_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/cw_helper.h -------------------------------------------------------------------------------- /netsurf/desktop/download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/download.c -------------------------------------------------------------------------------- /netsurf/desktop/download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/download.h -------------------------------------------------------------------------------- /netsurf/desktop/font_haru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/font_haru.c -------------------------------------------------------------------------------- /netsurf/desktop/font_haru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/font_haru.h -------------------------------------------------------------------------------- /netsurf/desktop/frames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/frames.c -------------------------------------------------------------------------------- /netsurf/desktop/frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/frames.h -------------------------------------------------------------------------------- /netsurf/desktop/gui_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/gui_table.h -------------------------------------------------------------------------------- /netsurf/desktop/hotlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/hotlist.c -------------------------------------------------------------------------------- /netsurf/desktop/hotlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/hotlist.h -------------------------------------------------------------------------------- /netsurf/desktop/knockout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/knockout.c -------------------------------------------------------------------------------- /netsurf/desktop/knockout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/knockout.h -------------------------------------------------------------------------------- /netsurf/desktop/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/mouse.c -------------------------------------------------------------------------------- /netsurf/desktop/netsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/netsurf.c -------------------------------------------------------------------------------- /netsurf/desktop/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/options.h -------------------------------------------------------------------------------- /netsurf/desktop/page-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/page-info.c -------------------------------------------------------------------------------- /netsurf/desktop/page-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/page-info.h -------------------------------------------------------------------------------- /netsurf/desktop/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/print.c -------------------------------------------------------------------------------- /netsurf/desktop/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/print.h -------------------------------------------------------------------------------- /netsurf/desktop/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/printer.h -------------------------------------------------------------------------------- /netsurf/desktop/save_pdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/save_pdf.c -------------------------------------------------------------------------------- /netsurf/desktop/save_pdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/save_pdf.h -------------------------------------------------------------------------------- /netsurf/desktop/save_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/save_text.c -------------------------------------------------------------------------------- /netsurf/desktop/save_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/save_text.h -------------------------------------------------------------------------------- /netsurf/desktop/scrollbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/scrollbar.c -------------------------------------------------------------------------------- /netsurf/desktop/scrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/scrollbar.h -------------------------------------------------------------------------------- /netsurf/desktop/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/search.c -------------------------------------------------------------------------------- /netsurf/desktop/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/search.h -------------------------------------------------------------------------------- /netsurf/desktop/searchweb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/searchweb.c -------------------------------------------------------------------------------- /netsurf/desktop/searchweb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/searchweb.h -------------------------------------------------------------------------------- /netsurf/desktop/selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/selection.c -------------------------------------------------------------------------------- /netsurf/desktop/selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/selection.h -------------------------------------------------------------------------------- /netsurf/desktop/textarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/textarea.c -------------------------------------------------------------------------------- /netsurf/desktop/textarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/textarea.h -------------------------------------------------------------------------------- /netsurf/desktop/textinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/textinput.c -------------------------------------------------------------------------------- /netsurf/desktop/textinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/textinput.h -------------------------------------------------------------------------------- /netsurf/desktop/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/theme.h -------------------------------------------------------------------------------- /netsurf/desktop/treeview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/treeview.c -------------------------------------------------------------------------------- /netsurf/desktop/treeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/treeview.h -------------------------------------------------------------------------------- /netsurf/desktop/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/version.c -------------------------------------------------------------------------------- /netsurf/desktop/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/desktop/version.h -------------------------------------------------------------------------------- /netsurf/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/Doxyfile -------------------------------------------------------------------------------- /netsurf/docs/PACKAGING-GTK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/PACKAGING-GTK -------------------------------------------------------------------------------- /netsurf/docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/development.md -------------------------------------------------------------------------------- /netsurf/docs/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/env.sh -------------------------------------------------------------------------------- /netsurf/docs/gource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/gource.sh -------------------------------------------------------------------------------- /netsurf/docs/jsbinding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/jsbinding.md -------------------------------------------------------------------------------- /netsurf/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/logging.md -------------------------------------------------------------------------------- /netsurf/docs/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/mainpage.md -------------------------------------------------------------------------------- /netsurf/docs/netsurf-fb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/netsurf-fb.1 -------------------------------------------------------------------------------- /netsurf/docs/netsurf-gtk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/netsurf-gtk.1 -------------------------------------------------------------------------------- /netsurf/docs/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/project.md -------------------------------------------------------------------------------- /netsurf/docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/docs/quick-start.md -------------------------------------------------------------------------------- /netsurf/frontends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/frontends/Makefile -------------------------------------------------------------------------------- /netsurf/frontends/amiga/resources/AdBlock.css: -------------------------------------------------------------------------------- 1 | ../../../resources/adblock.css -------------------------------------------------------------------------------- /netsurf/frontends/amiga/resources/ca-bundle: -------------------------------------------------------------------------------- 1 | ../../../resources/ca-bundle -------------------------------------------------------------------------------- /netsurf/frontends/amiga/resources/nsdefault.css: -------------------------------------------------------------------------------- 1 | ../../../resources/default.css -------------------------------------------------------------------------------- /netsurf/frontends/amiga/resources/quirks.css: -------------------------------------------------------------------------------- 1 | ../../../resources/quirks.css -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/SearchEngines: -------------------------------------------------------------------------------- 1 | ../../../resources/SearchEngines -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/adblock.css: -------------------------------------------------------------------------------- 1 | ../../../resources/adblock.css -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/ca-bundle.txt: -------------------------------------------------------------------------------- 1 | ../../../resources/ca-bundle -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/credits.html: -------------------------------------------------------------------------------- 1 | en/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/de/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/de/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/default.css: -------------------------------------------------------------------------------- 1 | ../../../resources/default.css -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/en/credits.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/en/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/en/licence.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/en/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/en/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/en/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/favicon.png: -------------------------------------------------------------------------------- 1 | ../../gtk/res/favicon.png -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/icons: -------------------------------------------------------------------------------- 1 | ../../../resources/icons -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/internal.css: -------------------------------------------------------------------------------- 1 | ../../../resources/internal.css -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/it/credits.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/it/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/it/licence.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/it/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/it/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/it/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/ja/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/ja/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/licence.html: -------------------------------------------------------------------------------- 1 | en/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/netsurf.png: -------------------------------------------------------------------------------- 1 | ../../../resources/netsurf.png -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/quirks.css: -------------------------------------------------------------------------------- 1 | ../../../resources/quirks.css -------------------------------------------------------------------------------- /netsurf/frontends/beos/res/welcome.html: -------------------------------------------------------------------------------- 1 | en/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/Messages: -------------------------------------------------------------------------------- 1 | en/Messages -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/adblock.css: -------------------------------------------------------------------------------- 1 | ../../../resources/adblock.css -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/credits.html: -------------------------------------------------------------------------------- 1 | ../../../resources/en/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/de/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/de/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/default.css: -------------------------------------------------------------------------------- 1 | ../../../resources/default.css -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/en/credits.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/en/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/en/licence.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/en/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/en/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/en/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/favicon.png: -------------------------------------------------------------------------------- 1 | ../../../resources/favicon.png -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/internal.css: -------------------------------------------------------------------------------- 1 | ../../../resources/internal.css -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/it/credits.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/it/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/it/licence.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/it/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/ja/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/ja/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/licence.html: -------------------------------------------------------------------------------- 1 | ../../../resources/en/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/netsurf.png: -------------------------------------------------------------------------------- 1 | ../../../resources/netsurf.png -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/nl/credits.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/nl/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/nl/licence.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/nl/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/nl/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/nl/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/quirks.css: -------------------------------------------------------------------------------- 1 | ../../../resources/quirks.css -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/throbber: -------------------------------------------------------------------------------- 1 | ../../gtk/res/throbber -------------------------------------------------------------------------------- /netsurf/frontends/framebuffer/res/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../resources/en/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/gdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/frontends/gtk/gdk.c -------------------------------------------------------------------------------- /netsurf/frontends/gtk/gdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/frontends/gtk/gdk.h -------------------------------------------------------------------------------- /netsurf/frontends/gtk/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/frontends/gtk/gui.c -------------------------------------------------------------------------------- /netsurf/frontends/gtk/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/frontends/gtk/gui.h -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/Messages: -------------------------------------------------------------------------------- 1 | en/Messages -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/SearchEngines: -------------------------------------------------------------------------------- 1 | ../../../resources/SearchEngines -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/adblock.css: -------------------------------------------------------------------------------- 1 | ../../../resources/adblock.css -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/ca-bundle.txt: -------------------------------------------------------------------------------- 1 | ../../../resources/ca-bundle -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/credits.html: -------------------------------------------------------------------------------- 1 | en/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/de/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/de/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/default.css: -------------------------------------------------------------------------------- 1 | ../../../resources/default.css -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/en/credits.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/en/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/en/licence.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/en/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/en/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/en/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/favicon.png: -------------------------------------------------------------------------------- 1 | ../../../resources/favicon.png -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/icons: -------------------------------------------------------------------------------- 1 | ../../../resources/icons -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/internal.css: -------------------------------------------------------------------------------- 1 | ../../../resources/internal.css -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/it/credits.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/it/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/it/licence.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/it/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/it/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/it/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/ja/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/ja/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/licence.html: -------------------------------------------------------------------------------- 1 | en/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/netsurf.png: -------------------------------------------------------------------------------- 1 | ../../../resources/netsurf.png -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/nl/credits.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/nl/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/nl/licence.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/nl/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/nl/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/nl/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/quirks.css: -------------------------------------------------------------------------------- 1 | ../../../resources/quirks.css -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/welcome.html: -------------------------------------------------------------------------------- 1 | en/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/zh_CN/credits.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/zh_CN/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/zh_CN/licence.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/zh_CN/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/gtk/res/zh_CN/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../../resources/zh_CN/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/monkey/res: -------------------------------------------------------------------------------- 1 | ../gtk/res -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/OpenChoices,feb: -------------------------------------------------------------------------------- 1 | *Filer_OpenDir Choices:WWW.NetSurf 2 | -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/OpenScrap,feb: -------------------------------------------------------------------------------- 1 | *Filer_OpenDir .WWW.NetSurf 2 | -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/AdBlock,f79: -------------------------------------------------------------------------------- 1 | ../../../../resources/adblock.css -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/CSS,f79: -------------------------------------------------------------------------------- 1 | ../../../../resources/default.css -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/Icons: -------------------------------------------------------------------------------- 1 | ../../../../resources/icons -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/Quirks,f79: -------------------------------------------------------------------------------- 1 | ../../../../resources/quirks.css -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/ca-bundle: -------------------------------------------------------------------------------- 1 | ../../../../resources/ca-bundle -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/de/Messages: -------------------------------------------------------------------------------- 1 | ../../../../../resources/de/Messages -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/de/welcome.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/de/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/en/Messages: -------------------------------------------------------------------------------- 1 | ../../../../../resources/en/Messages -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/en/credits.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/en/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/en/licence.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/en/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/en/welcome.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/en/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/fr/Messages: -------------------------------------------------------------------------------- 1 | ../../../../../resources/fr/Messages -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/internal.css,f79: -------------------------------------------------------------------------------- 1 | ../../../../resources/internal.css -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/it/Messages: -------------------------------------------------------------------------------- 1 | ../../../../../resources/it/Messages -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/it/credits.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/it/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/it/licence.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/it/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/it/welcome.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/it/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/ja/welcome.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/ja/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/netsurf.png,b60: -------------------------------------------------------------------------------- 1 | ../../../../resources/netsurf.png -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/nl/Messages: -------------------------------------------------------------------------------- 1 | ../../../../../resources/nl/Messages -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/nl/credits.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/nl/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/nl/licence.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/nl/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/appdir/Resources/nl/welcome.html,faf: -------------------------------------------------------------------------------- 1 | ../../../../../resources/nl/welcome.html -------------------------------------------------------------------------------- /netsurf/frontends/riscos/distribution/3rdParty/AcornURI/Origin,b28: -------------------------------------------------------------------------------- 1 | https://www.riscosopen.org/ 2 | -------------------------------------------------------------------------------- /netsurf/frontends/riscos/distribution/3rdParty/Cache/Origin,b28: -------------------------------------------------------------------------------- 1 | https://www.snowstone.org.uk/riscos/ 2 | -------------------------------------------------------------------------------- /netsurf/frontends/riscos/distribution/3rdParty/Iconv/Origin,b28: -------------------------------------------------------------------------------- 1 | https://www.netsurf-browser.org/iconv/ 2 | -------------------------------------------------------------------------------- /netsurf/frontends/riscos/distribution/3rdParty/Unicode/Origin,b28: -------------------------------------------------------------------------------- 1 | https://www.riscosopen.org/ 2 | -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/adblock.css: -------------------------------------------------------------------------------- 1 | ../../../resources/adblock.css -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/ca-bundle.crt: -------------------------------------------------------------------------------- 1 | ../../../resources/ca-bundle -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/credits.html: -------------------------------------------------------------------------------- 1 | ../../../resources/en/credits.html -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/default.css: -------------------------------------------------------------------------------- 1 | ../../../resources/default.css -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/icons/arrow-l.png: -------------------------------------------------------------------------------- 1 | ../../../../resources/icons/arrow-l.png -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/icons/content.png: -------------------------------------------------------------------------------- 1 | ../../../../resources/icons/content.png -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/icons/directory.png: -------------------------------------------------------------------------------- 1 | ../../../../resources/icons/directory.png -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/icons/directory2.png: -------------------------------------------------------------------------------- 1 | ../../../../resources/icons/directory2.png -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/icons/hotlist-add.png: -------------------------------------------------------------------------------- 1 | ../../../../resources/icons/hotlist-add.png -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/icons/hotlist-rmv.png: -------------------------------------------------------------------------------- 1 | ../../../../resources/icons/hotlist-rmv.png -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/icons/search.png: -------------------------------------------------------------------------------- 1 | ../../../../resources/icons/search.png -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/internal.css: -------------------------------------------------------------------------------- 1 | ../../../resources/internal.css -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/licence.html: -------------------------------------------------------------------------------- 1 | ../../../resources/en/licence.html -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/netsurf.png: -------------------------------------------------------------------------------- 1 | ../../../resources/netsurf.png -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/quirks.css: -------------------------------------------------------------------------------- 1 | ../../../resources/quirks.css -------------------------------------------------------------------------------- /netsurf/frontends/windows/res/welcome.html: -------------------------------------------------------------------------------- 1 | ../../../resources/en/welcome.html -------------------------------------------------------------------------------- /netsurf/nsfb.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/nsfb.rsf -------------------------------------------------------------------------------- /netsurf/nsfb.smdh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/nsfb.smdh -------------------------------------------------------------------------------- /netsurf/out.smdh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/out.smdh -------------------------------------------------------------------------------- /netsurf/resources/ca-bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/resources/ca-bundle -------------------------------------------------------------------------------- /netsurf/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/Makefile -------------------------------------------------------------------------------- /netsurf/test/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/assert.c -------------------------------------------------------------------------------- /netsurf/test/bloom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/bloom.c -------------------------------------------------------------------------------- /netsurf/test/corestrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/corestrings.c -------------------------------------------------------------------------------- /netsurf/test/data/Choices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/data/Choices -------------------------------------------------------------------------------- /netsurf/test/data/Messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/data/Messages -------------------------------------------------------------------------------- /netsurf/test/data/cookies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/data/cookies -------------------------------------------------------------------------------- /netsurf/test/data/urldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/data/urldb -------------------------------------------------------------------------------- /netsurf/test/data/urldb-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/data/urldb-out -------------------------------------------------------------------------------- /netsurf/test/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/hashmap.c -------------------------------------------------------------------------------- /netsurf/test/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/hashtable.c -------------------------------------------------------------------------------- /netsurf/test/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/js/index.html -------------------------------------------------------------------------------- /netsurf/test/js/inserted-script-async.js: -------------------------------------------------------------------------------- 1 | console.log("External %s dynamism!", "asynchronous"); 2 | -------------------------------------------------------------------------------- /netsurf/test/js/inserted-script-defer.js: -------------------------------------------------------------------------------- 1 | console.log("External deferred dynamism!"); 2 | -------------------------------------------------------------------------------- /netsurf/test/js/inserted-script.js: -------------------------------------------------------------------------------- 1 | console.log("External dynamism!"); 2 | -------------------------------------------------------------------------------- /netsurf/test/js/life.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/js/life.html -------------------------------------------------------------------------------- /netsurf/test/js/tst.css: -------------------------------------------------------------------------------- 1 | h1 { color:red; } 2 | -------------------------------------------------------------------------------- /netsurf/test/js/tst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/js/tst.js -------------------------------------------------------------------------------- /netsurf/test/llcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/llcache.c -------------------------------------------------------------------------------- /netsurf/test/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/log.c -------------------------------------------------------------------------------- /netsurf/test/malloc_fig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/malloc_fig.c -------------------------------------------------------------------------------- /netsurf/test/malloc_fig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/malloc_fig.h -------------------------------------------------------------------------------- /netsurf/test/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/messages.c -------------------------------------------------------------------------------- /netsurf/test/mimesniff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/mimesniff.c -------------------------------------------------------------------------------- /netsurf/test/nsoption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/nsoption.c -------------------------------------------------------------------------------- /netsurf/test/nsurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/nsurl.c -------------------------------------------------------------------------------- /netsurf/test/testament.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netsurf/test/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/time.c -------------------------------------------------------------------------------- /netsurf/test/urldbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/urldbtest.c -------------------------------------------------------------------------------- /netsurf/test/urlescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/urlescape.c -------------------------------------------------------------------------------- /netsurf/test/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/test/utils.c -------------------------------------------------------------------------------- /netsurf/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/tools/Makefile -------------------------------------------------------------------------------- /netsurf/tools/git-date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/tools/git-date.sh -------------------------------------------------------------------------------- /netsurf/tools/memanalyze.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/tools/memanalyze.pl -------------------------------------------------------------------------------- /netsurf/tools/test-netsurf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/tools/test-netsurf -------------------------------------------------------------------------------- /netsurf/tools/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/tools/valgrind.supp -------------------------------------------------------------------------------- /netsurf/tools/xxd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/tools/xxd.c -------------------------------------------------------------------------------- /netsurf/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/Makefile -------------------------------------------------------------------------------- /netsurf/utils/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/ascii.h -------------------------------------------------------------------------------- /netsurf/utils/bloom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/bloom.c -------------------------------------------------------------------------------- /netsurf/utils/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/bloom.h -------------------------------------------------------------------------------- /netsurf/utils/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/config.h -------------------------------------------------------------------------------- /netsurf/utils/corestrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/corestrings.c -------------------------------------------------------------------------------- /netsurf/utils/corestrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/corestrings.h -------------------------------------------------------------------------------- /netsurf/utils/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/dirent.h -------------------------------------------------------------------------------- /netsurf/utils/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/errors.h -------------------------------------------------------------------------------- /netsurf/utils/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/file.c -------------------------------------------------------------------------------- /netsurf/utils/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/file.h -------------------------------------------------------------------------------- /netsurf/utils/filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/filename.c -------------------------------------------------------------------------------- /netsurf/utils/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/filename.h -------------------------------------------------------------------------------- /netsurf/utils/filepath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/filepath.c -------------------------------------------------------------------------------- /netsurf/utils/filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/filepath.h -------------------------------------------------------------------------------- /netsurf/utils/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/hashmap.c -------------------------------------------------------------------------------- /netsurf/utils/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/hashmap.h -------------------------------------------------------------------------------- /netsurf/utils/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/hashtable.c -------------------------------------------------------------------------------- /netsurf/utils/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/hashtable.h -------------------------------------------------------------------------------- /netsurf/utils/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/http.h -------------------------------------------------------------------------------- /netsurf/utils/http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/http/Makefile -------------------------------------------------------------------------------- /netsurf/utils/idna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/idna.c -------------------------------------------------------------------------------- /netsurf/utils/idna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/idna.h -------------------------------------------------------------------------------- /netsurf/utils/idna_props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/idna_props.h -------------------------------------------------------------------------------- /netsurf/utils/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/inet.h -------------------------------------------------------------------------------- /netsurf/utils/libdom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/libdom.c -------------------------------------------------------------------------------- /netsurf/utils/libdom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/libdom.h -------------------------------------------------------------------------------- /netsurf/utils/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/log.c -------------------------------------------------------------------------------- /netsurf/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/log.h -------------------------------------------------------------------------------- /netsurf/utils/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/messages.c -------------------------------------------------------------------------------- /netsurf/utils/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/messages.h -------------------------------------------------------------------------------- /netsurf/utils/nscolour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/nscolour.c -------------------------------------------------------------------------------- /netsurf/utils/nscolour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/nscolour.h -------------------------------------------------------------------------------- /netsurf/utils/nsoption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/nsoption.c -------------------------------------------------------------------------------- /netsurf/utils/nsoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/nsoption.h -------------------------------------------------------------------------------- /netsurf/utils/nsurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/nsurl.h -------------------------------------------------------------------------------- /netsurf/utils/nsurl/nsurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/nsurl/nsurl.c -------------------------------------------------------------------------------- /netsurf/utils/nsurl/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/nsurl/parse.c -------------------------------------------------------------------------------- /netsurf/utils/punycode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/punycode.c -------------------------------------------------------------------------------- /netsurf/utils/punycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/punycode.h -------------------------------------------------------------------------------- /netsurf/utils/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/regex.h -------------------------------------------------------------------------------- /netsurf/utils/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/ring.h -------------------------------------------------------------------------------- /netsurf/utils/ssl_certs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/ssl_certs.c -------------------------------------------------------------------------------- /netsurf/utils/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/string.h -------------------------------------------------------------------------------- /netsurf/utils/sys_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/sys_time.h -------------------------------------------------------------------------------- /netsurf/utils/talloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/talloc.c -------------------------------------------------------------------------------- /netsurf/utils/talloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/talloc.h -------------------------------------------------------------------------------- /netsurf/utils/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/time.c -------------------------------------------------------------------------------- /netsurf/utils/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/time.h -------------------------------------------------------------------------------- /netsurf/utils/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/url.c -------------------------------------------------------------------------------- /netsurf/utils/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/url.h -------------------------------------------------------------------------------- /netsurf/utils/useragent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/useragent.c -------------------------------------------------------------------------------- /netsurf/utils/useragent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/useragent.h -------------------------------------------------------------------------------- /netsurf/utils/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/utf8.c -------------------------------------------------------------------------------- /netsurf/utils/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/utf8.h -------------------------------------------------------------------------------- /netsurf/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/utils.c -------------------------------------------------------------------------------- /netsurf/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/utils.h -------------------------------------------------------------------------------- /netsurf/utils/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/netsurf/utils/utsname.h -------------------------------------------------------------------------------- /nsgenbind/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/COPYING -------------------------------------------------------------------------------- /nsgenbind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/Makefile -------------------------------------------------------------------------------- /nsgenbind/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/README -------------------------------------------------------------------------------- /nsgenbind/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/docs/Doxyfile -------------------------------------------------------------------------------- /nsgenbind/docs/example.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/docs/example.bnd -------------------------------------------------------------------------------- /nsgenbind/docs/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/docs/mainpage.md -------------------------------------------------------------------------------- /nsgenbind/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/Makefile -------------------------------------------------------------------------------- /nsgenbind/src/duk-libdom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/duk-libdom.c -------------------------------------------------------------------------------- /nsgenbind/src/duk-libdom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/duk-libdom.h -------------------------------------------------------------------------------- /nsgenbind/src/ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/ir.c -------------------------------------------------------------------------------- /nsgenbind/src/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/ir.h -------------------------------------------------------------------------------- /nsgenbind/src/nsgenbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/nsgenbind.c -------------------------------------------------------------------------------- /nsgenbind/src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/options.h -------------------------------------------------------------------------------- /nsgenbind/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/output.c -------------------------------------------------------------------------------- /nsgenbind/src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/output.h -------------------------------------------------------------------------------- /nsgenbind/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/utils.c -------------------------------------------------------------------------------- /nsgenbind/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/utils.h -------------------------------------------------------------------------------- /nsgenbind/src/webidl-ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/webidl-ast.c -------------------------------------------------------------------------------- /nsgenbind/src/webidl-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/src/webidl-ast.h -------------------------------------------------------------------------------- /nsgenbind/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/nsgenbind/test/Makefile -------------------------------------------------------------------------------- /nsgenbind/test/data/idl/empty.idl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/convert_font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/tools/convert_font -------------------------------------------------------------------------------- /tools/convert_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/tools/convert_image -------------------------------------------------------------------------------- /tools/created: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/split-messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/tools/split-messages -------------------------------------------------------------------------------- /tools/xxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderman64/netsurf-3ds/HEAD/tools/xxd --------------------------------------------------------------------------------