#ifndef DTOB_HTML_H
#define DTOB_HTML_H
#include "dtob.h"
#define HTML_CODE_STRING 16
#define HTML_CODE_COMMENT 17
#define HTML_CODE_DOCTYPE 18
#define HTML_CODE_HTML 20
#define HTML_CODE_HEAD 21
#define HTML_CODE_BODY 22
#define HTML_CODE_TITLE 23
#define HTML_CODE_BASE 24
#define HTML_CODE_ISINDEX 25
#define HTML_CODE_LINK 26
#define HTML_CODE_NEXTID 27
#define HTML_CODE_H1 28
#define HTML_CODE_H2 29
#define HTML_CODE_H3 30
#define HTML_CODE_H4 31
#define HTML_CODE_H5 32
#define HTML_CODE_H6 33
#define HTML_CODE_P 34
#define HTML_CODE_ADDRESS 35
#define HTML_CODE_BLOCKQUOTE 36
#define HTML_CODE_PRE 37
#define HTML_CODE_UL 38
#define HTML_CODE_OL 39
#define HTML_CODE_LI 40
#define HTML_CODE_DL 41
#define HTML_CODE_DT 42
#define HTML_CODE_DD 43
#define HTML_CODE_DIR 44
#define HTML_CODE_MENU 45
#define HTML_CODE_A 46
#define HTML_CODE_IMG 47
#define HTML_CODE_EM 48
#define HTML_CODE_STRONG 49
#define HTML_CODE_CODE 50
#define HTML_CODE_SAMP 51
#define HTML_CODE_KBD 52
#define HTML_CODE_VAR 53
#define HTML_CODE_DFN 54
#define HTML_CODE_CITE 55
#define HTML_CODE_TT 56
#define HTML_CODE_B 57
#define HTML_CODE_I 58
#define HTML_CODE_U 59
#define HTML_CODE_PLAINTEXT 60
#define HTML_CODE_XMP 61
#define HTML_CODE_LISTING 62
#define HTML_CODE_META 63
#define HTML_CODE_BR 64
#define HTML_CODE_HR 65
#define HTML_CODE_FORM 66
#define HTML_CODE_INPUT 67
#define HTML_CODE_SELECT 68
#define HTML_CODE_OPTION 69
#define HTML_CODE_TEXTAREA 70
#define HTML_CODE_SCRIPT 71
#define HTML_CODE_STYLE 72
#define HTML_CODE_DIV 73
#define HTML_CODE_CENTER 74
#define HTML_CODE_TABLE 75
#define HTML_CODE_CAPTION 76
#define HTML_CODE_TR 77
#define HTML_CODE_TH 78
#define HTML_CODE_TD 79
#define HTML_CODE_APPLET 80
#define HTML_CODE_PARAM 81
#define HTML_CODE_MAP 82
#define HTML_CODE_AREA 83
#define HTML_CODE_FONT 84
#define HTML_CODE_BASEFONT 85
#define HTML_CODE_BIG 86
#define HTML_CODE_SMALL 87
#define HTML_CODE_STRIKE 88
#define HTML_CODE_SUB 89
#define HTML_CODE_SUP 90
#define HTML_CODE_ABBR 91
#define HTML_CODE_ACRONYM 92
#define HTML_CODE_BDO 93
#define HTML_CODE_Q 94
#define HTML_CODE_S 95
#define HTML_CODE_SPAN 96
#define HTML_CODE_BUTTON 97
#define HTML_CODE_FIELDSET 98
#define HTML_CODE_LABEL 99
#define HTML_CODE_LEGEND 100
#define HTML_CODE_OPTGROUP 101
#define HTML_CODE_COL 102
#define HTML_CODE_COLGROUP 103
#define HTML_CODE_TBODY 104
#define HTML_CODE_TFOOT 105
#define HTML_CODE_THEAD 106
#define HTML_CODE_OBJECT 107
#define HTML_CODE_IFRAME 108
#define HTML_CODE_FRAME 109
#define HTML_CODE_FRAMESET 110
#define HTML_CODE_NOFRAMES 111
#define HTML_CODE_DEL 112
#define HTML_CODE_INS 113
#define HTML_CODE_NOSCRIPT 114
#define HTML_CODE_ARTICLE 115
#define HTML_CODE_ASIDE 116
#define HTML_CODE_FOOTER 117
#define HTML_CODE_HEADER 118
#define HTML_CODE_HGROUP 119
#define HTML_CODE_MAIN 120
#define HTML_CODE_NAV 121
#define HTML_CODE_SECTION 122
#define HTML_CODE_SEARCH 123
#define HTML_CODE_BDI 124
#define HTML_CODE_DATA 125
#define HTML_CODE_MARK 126
#define HTML_CODE_RP 127
#define HTML_CODE_RT 128
#define HTML_CODE_RUBY 129
#define HTML_CODE_TIME 130
#define HTML_CODE_WBR 131
#define HTML_CODE_AUDIO 132
#define HTML_CODE_VIDEO 133
#define HTML_CODE_SOURCE 134
#define HTML_CODE_TRACK 135
#define HTML_CODE_EMBED 136
#define HTML_CODE_PICTURE 137
#define HTML_CODE_DETAILS 138
#define HTML_CODE_DIALOG 139
#define HTML_CODE_SUMMARY 140
#define HTML_CODE_DATALIST 141
#define HTML_CODE_METER 142
#define HTML_CODE_OUTPUT 143
#define HTML_CODE_PROGRESS 144
#define HTML_CODE_FIGCAPTION 145
#define HTML_CODE_FIGURE 146
#define HTML_CODE_CANVAS 147
#define HTML_CODE_SLOT 148
#define HTML_CODE_TEMPLATE 149
#define HTML_CODE_SELECTEDCONTENT 150
#endif