dphlparser.output 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288
  1. Grammar
  2. 0 $accept: begin $end
  3. 1 begin: htmlparser
  4. 2 htmlparser: "<html" ">" htmlparser2 "</html" ">"
  5. 3 | htmlparser2
  6. 4 htmlparser2: items
  7. 5 | fonttab2
  8. 6 items: items item
  9. 7 | item
  10. 8 item: "stringdata"
  11. 9 $@1: %empty
  12. 10 item: "<br" $@1 br_arg "/>"
  13. 11 $@2: %empty
  14. 12 item: "<br" ">" $@2 "</br" ">"
  15. 13 | font items "</font" ">"
  16. 14 | italic items "</i" ">"
  17. 15 | bold items "</b" ">"
  18. 16 | underline items "</u" ">"
  19. 17 | overline items "</o" ">"
  20. 18 $@3: %empty
  21. 19 item: "<sub" ">" $@3 items "</sub" ">"
  22. 20 $@4: %empty
  23. 21 item: "<sup" ">" $@4 items "</sup" ">"
  24. 22 $@5: %empty
  25. 23 item: "<s" ">" $@5 items "</s" ">"
  26. 24 fonttab2: tab
  27. 25 | font tab "</font" ">"
  28. 26 | italic tab "</i" ">"
  29. 27 | bold tab "</b" ">"
  30. 28 | underline tab "</u" ">"
  31. 29 | overline tab "</o" ">"
  32. 30 $@6: %empty
  33. 31 font: "<font" $@6 font_arg ">"
  34. 32 italic: "<i" ">"
  35. 33 overline: "<o" ">"
  36. 34 bold: "<b" ">"
  37. 35 underline: "<u" ">"
  38. 36 tabe: "stringdata"
  39. 37 | %empty
  40. 38 $@7: %empty
  41. 39 tab: tabe "<table" $@7 table_arg ">" rows "</table" ">" tabe
  42. 40 rows: row
  43. 41 | rows row
  44. 42 $@8: %empty
  45. 43 rows: rows "<hr" "/>" $@8 row
  46. 44 $@9: %empty
  47. 45 rows: rows "<hr" ">" "</hr" ">" $@9 row
  48. 46 $@10: %empty
  49. 47 row: "<tr" ">" $@10 cells "</tr" ">"
  50. 48 cells: cell
  51. 49 | cells cell
  52. 50 $@11: %empty
  53. 51 cells: cells "<vr" "/>" $@11 cell
  54. 52 $@12: %empty
  55. 53 cells: cells "<vr" ">" "</vr" ">" $@12 cell
  56. 54 cell: celltd td_arg ">" htmlparser "</td" ">"
  57. 55 | celltd td_arg ">" cellimg img_arg "/>" "</td" ">"
  58. 56 | celltd td_arg ">" cellimg img_arg ">" "</img" ">" "</td" ">"
  59. 57 | celltd td_arg ">" "</td" ">"
  60. 58 cellimg: "<img"
  61. 59 celltd: "<td"
  62. 60 table_arg: table_arg table_1arg
  63. 61 | %empty
  64. 62 table_1arg: "align" "=" "string"
  65. 63 | "bgcolor" "=" "string"
  66. 64 | "border" "=" "string"
  67. 65 | "cellborder" "=" "string"
  68. 66 | "cellpadding" "=" "string"
  69. 67 | "cellspacing" "=" "string"
  70. 68 | "color" "=" "string"
  71. 69 | "columns" "=" "string"
  72. 70 | "fixedsize" "=" "string"
  73. 71 | "gradientangle" "=" "string"
  74. 72 | "height" "=" "string"
  75. 73 | "href" "=" "string"
  76. 74 | "id" "=" "string"
  77. 75 | "port" "=" "string"
  78. 76 | "rows" "=" "string"
  79. 77 | "sides" "=" "string"
  80. 78 | "style" "=" "string"
  81. 79 | "target" "=" "string"
  82. 80 | "title" "=" "string"
  83. 81 | "tooltip" "=" "string"
  84. 82 | "valign" "=" "string"
  85. 83 | "width" "=" "string"
  86. 84 | "text" "=" "string"
  87. 85 td_arg: td_arg td_1arg
  88. 86 | %empty
  89. 87 td_1arg: "align" "=" "string"
  90. 88 | "balign" "=" "string"
  91. 89 | "bgcolor" "=" "string"
  92. 90 | "border" "=" "string"
  93. 91 | "cellpadding" "=" "string"
  94. 92 | "cellspacing" "=" "string"
  95. 93 | "color" "=" "string"
  96. 94 | "colspan" "=" "string"
  97. 95 | "fixedsize" "=" "string"
  98. 96 | "gradientangle" "=" "string"
  99. 97 | "height" "=" "string"
  100. 98 | "href" "=" "string"
  101. 99 | "id" "=" "string"
  102. 100 | "port" "=" "string"
  103. 101 | "rowspan" "=" "string"
  104. 102 | "sides" "=" "string"
  105. 103 | "style" "=" "string"
  106. 104 | "target" "=" "string"
  107. 105 | "title" "=" "string"
  108. 106 | "tooltip" "=" "string"
  109. 107 | "valign" "=" "string"
  110. 108 | "width" "=" "string"
  111. 109 | "text" "=" "string"
  112. 110 img_arg: img_arg img_1arg
  113. 111 | %empty
  114. 112 img_1arg: "scale" "=" "string"
  115. 113 | "src" "=" "string"
  116. 114 | "text" "=" "string"
  117. 115 br_arg: br_arg br_1arg
  118. 116 | %empty
  119. 117 br_1arg: "align" "=" "string"
  120. 118 | "text" "=" "string"
  121. 119 font_arg: font_arg font_1arg
  122. 120 | %empty
  123. 121 font_1arg: "color" "=" "string"
  124. 122 | "face" "=" "string"
  125. 123 | "point-size" "=" "string"
  126. 124 | "text" "=" "string"
  127. Terminals, with rules where they appear
  128. $end (0) 0
  129. error (256)
  130. "stringdata" <string> (258) 8 36
  131. "<html" (259) 2
  132. "</html" (260) 2
  133. "<b" (261) 34
  134. "</b" (262) 15 27
  135. "<br" (263) 10 12
  136. "</br" (264) 12
  137. "<font" (265) 31
  138. "</font" (266) 13 25
  139. "<hr" (267) 43 45
  140. "</hr" (268) 45
  141. "<i" (269) 32
  142. "</i" (270) 14 26
  143. "<img" (271) 58
  144. "</img" (272) 56
  145. "<o" (273) 33
  146. "</o" (274) 17 29
  147. "<s" (275) 23
  148. "</s" (276) 23
  149. "<sub" (277) 19
  150. "</sub" (278) 19
  151. "<sup" (279) 21
  152. "</sup" (280) 21
  153. "<table" (281) 39
  154. "</table" (282) 39
  155. "<td" (283) 59
  156. "</td" (284) 54 55 56 57
  157. "<tr" (285) 47
  158. "</tr" (286) 47
  159. "<u" (287) 35
  160. "</u" (288) 16 28
  161. "<vr" (289) 51 53
  162. "</vr" (290) 53
  163. "/>" (291) 10 43 51 55
  164. ">" (292) 2 12 13 14 15 16 17 19 21 23 25 26 27 28 29 31 32 33 34 35 39 45 47 53 54 55 56 57
  165. "=" (293) 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 112 113 114 117 118 121 122 123 124
  166. "string" <string> (294) 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 112 113 114 117 118 121 122 123 124
  167. "text" <string> (295) 84 109 114 118 124
  168. "align" (296) 62 87 117
  169. "balign" (297) 88
  170. "bgcolor" (298) 63 89
  171. "border" (299) 64 90
  172. "cellborder" (300) 65
  173. "cellpadding" (301) 66 91
  174. "cellspacing" (302) 67 92
  175. "color" (303) 68 93 121
  176. "columns" (304) 69
  177. "colspan" (305) 94
  178. "face" (306) 122
  179. "fixedsize" (307) 70 95
  180. "gradientangle" (308) 71 96
  181. "height" (309) 72 97
  182. "href" (310) 73 98
  183. "id" (311) 74 99
  184. "port" (312) 75 100
  185. "point-size" (313) 123
  186. "rows" (314) 76
  187. "rowspan" (315) 101
  188. "scale" (316) 112
  189. "sides" (317) 77 102
  190. "src" (318) 113
  191. "style" (319) 78 103
  192. "target" (320) 79 104
  193. "title" (321) 80 105
  194. "tooltip" (322) 81 106
  195. "valign" (323) 82 107
  196. "width" (324) 83 108
  197. Nonterminals, with rules where they appear
  198. $accept (70)
  199. on left: 0
  200. begin (71)
  201. on left: 1
  202. on right: 0
  203. htmlparser (72)
  204. on left: 2 3
  205. on right: 1 54
  206. htmlparser2 (73)
  207. on left: 4 5
  208. on right: 2 3
  209. items (74)
  210. on left: 6 7
  211. on right: 4 6 13 14 15 16 17 19 21 23
  212. item (75)
  213. on left: 8 10 12 13 14 15 16 17 19 21 23
  214. on right: 6 7
  215. $@1 (76)
  216. on left: 9
  217. on right: 10
  218. $@2 (77)
  219. on left: 11
  220. on right: 12
  221. $@3 (78)
  222. on left: 18
  223. on right: 19
  224. $@4 (79)
  225. on left: 20
  226. on right: 21
  227. $@5 (80)
  228. on left: 22
  229. on right: 23
  230. fonttab2 (81)
  231. on left: 24 25 26 27 28 29
  232. on right: 5
  233. font (82)
  234. on left: 31
  235. on right: 13 25
  236. $@6 (83)
  237. on left: 30
  238. on right: 31
  239. italic (84)
  240. on left: 32
  241. on right: 14 26
  242. overline (85)
  243. on left: 33
  244. on right: 17 29
  245. bold (86)
  246. on left: 34
  247. on right: 15 27
  248. underline (87)
  249. on left: 35
  250. on right: 16 28
  251. tabe (88)
  252. on left: 36 37
  253. on right: 39
  254. tab (89)
  255. on left: 39
  256. on right: 24 25 26 27 28 29
  257. $@7 (90)
  258. on left: 38
  259. on right: 39
  260. rows (91)
  261. on left: 40 41 43 45
  262. on right: 39 41 43 45
  263. $@8 (92)
  264. on left: 42
  265. on right: 43
  266. $@9 (93)
  267. on left: 44
  268. on right: 45
  269. row (94)
  270. on left: 47
  271. on right: 40 41 43 45
  272. $@10 (95)
  273. on left: 46
  274. on right: 47
  275. cells (96)
  276. on left: 48 49 51 53
  277. on right: 47 49 51 53
  278. $@11 (97)
  279. on left: 50
  280. on right: 51
  281. $@12 (98)
  282. on left: 52
  283. on right: 53
  284. cell (99)
  285. on left: 54 55 56 57
  286. on right: 48 49 51 53
  287. cellimg (100)
  288. on left: 58
  289. on right: 55 56
  290. celltd (101)
  291. on left: 59
  292. on right: 54 55 56 57
  293. table_arg (102)
  294. on left: 60 61
  295. on right: 39 60
  296. table_1arg (103)
  297. on left: 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
  298. on right: 60
  299. td_arg (104)
  300. on left: 85 86
  301. on right: 54 55 56 57 85
  302. td_1arg (105)
  303. on left: 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
  304. on right: 85
  305. img_arg (106)
  306. on left: 110 111
  307. on right: 55 56 110
  308. img_1arg (107)
  309. on left: 112 113 114
  310. on right: 110
  311. br_arg (108)
  312. on left: 115 116
  313. on right: 10 115
  314. br_1arg (109)
  315. on left: 117 118
  316. on right: 115
  317. font_arg (110)
  318. on left: 119 120
  319. on right: 31 119
  320. font_1arg (111)
  321. on left: 121 122 123 124
  322. on right: 119
  323. State 0
  324. 0 $accept: • begin $end
  325. "stringdata" shift, and go to state 1
  326. "<html" shift, and go to state 2
  327. "<b" shift, and go to state 3
  328. "<br" shift, and go to state 4
  329. "<font" shift, and go to state 5
  330. "<i" shift, and go to state 6
  331. "<o" shift, and go to state 7
  332. "<s" shift, and go to state 8
  333. "<sub" shift, and go to state 9
  334. "<sup" shift, and go to state 10
  335. "<u" shift, and go to state 11
  336. $default reduce using rule 37 (tabe)
  337. begin go to state 12
  338. htmlparser go to state 13
  339. htmlparser2 go to state 14
  340. items go to state 15
  341. item go to state 16
  342. fonttab2 go to state 17
  343. font go to state 18
  344. italic go to state 19
  345. overline go to state 20
  346. bold go to state 21
  347. underline go to state 22
  348. tabe go to state 23
  349. tab go to state 24
  350. State 1
  351. 8 item: "stringdata" •
  352. 36 tabe: "stringdata" •
  353. "<table" reduce using rule 36 (tabe)
  354. $default reduce using rule 8 (item)
  355. State 2
  356. 2 htmlparser: "<html" • ">" htmlparser2 "</html" ">"
  357. ">" shift, and go to state 25
  358. State 3
  359. 34 bold: "<b" • ">"
  360. ">" shift, and go to state 26
  361. State 4
  362. 10 item: "<br" • $@1 br_arg "/>"
  363. 12 | "<br" • ">" $@2 "</br" ">"
  364. ">" shift, and go to state 27
  365. $default reduce using rule 9 ($@1)
  366. $@1 go to state 28
  367. State 5
  368. 31 font: "<font" • $@6 font_arg ">"
  369. $default reduce using rule 30 ($@6)
  370. $@6 go to state 29
  371. State 6
  372. 32 italic: "<i" • ">"
  373. ">" shift, and go to state 30
  374. State 7
  375. 33 overline: "<o" • ">"
  376. ">" shift, and go to state 31
  377. State 8
  378. 23 item: "<s" • ">" $@5 items "</s" ">"
  379. ">" shift, and go to state 32
  380. State 9
  381. 19 item: "<sub" • ">" $@3 items "</sub" ">"
  382. ">" shift, and go to state 33
  383. State 10
  384. 21 item: "<sup" • ">" $@4 items "</sup" ">"
  385. ">" shift, and go to state 34
  386. State 11
  387. 35 underline: "<u" • ">"
  388. ">" shift, and go to state 35
  389. State 12
  390. 0 $accept: begin • $end
  391. $end shift, and go to state 36
  392. State 13
  393. 1 begin: htmlparser •
  394. $default reduce using rule 1 (begin)
  395. State 14
  396. 3 htmlparser: htmlparser2 •
  397. $default reduce using rule 3 (htmlparser)
  398. State 15
  399. 4 htmlparser2: items •
  400. 6 items: items • item
  401. "stringdata" shift, and go to state 37
  402. "<b" shift, and go to state 3
  403. "<br" shift, and go to state 4
  404. "<font" shift, and go to state 5
  405. "<i" shift, and go to state 6
  406. "<o" shift, and go to state 7
  407. "<s" shift, and go to state 8
  408. "<sub" shift, and go to state 9
  409. "<sup" shift, and go to state 10
  410. "<u" shift, and go to state 11
  411. $default reduce using rule 4 (htmlparser2)
  412. item go to state 38
  413. font go to state 39
  414. italic go to state 40
  415. overline go to state 41
  416. bold go to state 42
  417. underline go to state 43
  418. State 16
  419. 7 items: item •
  420. $default reduce using rule 7 (items)
  421. State 17
  422. 5 htmlparser2: fonttab2 •
  423. $default reduce using rule 5 (htmlparser2)
  424. State 18
  425. 13 item: font • items "</font" ">"
  426. 25 fonttab2: font • tab "</font" ">"
  427. "stringdata" shift, and go to state 1
  428. "<b" shift, and go to state 3
  429. "<br" shift, and go to state 4
  430. "<font" shift, and go to state 5
  431. "<i" shift, and go to state 6
  432. "<o" shift, and go to state 7
  433. "<s" shift, and go to state 8
  434. "<sub" shift, and go to state 9
  435. "<sup" shift, and go to state 10
  436. "<u" shift, and go to state 11
  437. $default reduce using rule 37 (tabe)
  438. items go to state 44
  439. item go to state 16
  440. font go to state 39
  441. italic go to state 40
  442. overline go to state 41
  443. bold go to state 42
  444. underline go to state 43
  445. tabe go to state 23
  446. tab go to state 45
  447. State 19
  448. 14 item: italic • items "</i" ">"
  449. 26 fonttab2: italic • tab "</i" ">"
  450. "stringdata" shift, and go to state 1
  451. "<b" shift, and go to state 3
  452. "<br" shift, and go to state 4
  453. "<font" shift, and go to state 5
  454. "<i" shift, and go to state 6
  455. "<o" shift, and go to state 7
  456. "<s" shift, and go to state 8
  457. "<sub" shift, and go to state 9
  458. "<sup" shift, and go to state 10
  459. "<u" shift, and go to state 11
  460. $default reduce using rule 37 (tabe)
  461. items go to state 46
  462. item go to state 16
  463. font go to state 39
  464. italic go to state 40
  465. overline go to state 41
  466. bold go to state 42
  467. underline go to state 43
  468. tabe go to state 23
  469. tab go to state 47
  470. State 20
  471. 17 item: overline • items "</o" ">"
  472. 29 fonttab2: overline • tab "</o" ">"
  473. "stringdata" shift, and go to state 1
  474. "<b" shift, and go to state 3
  475. "<br" shift, and go to state 4
  476. "<font" shift, and go to state 5
  477. "<i" shift, and go to state 6
  478. "<o" shift, and go to state 7
  479. "<s" shift, and go to state 8
  480. "<sub" shift, and go to state 9
  481. "<sup" shift, and go to state 10
  482. "<u" shift, and go to state 11
  483. $default reduce using rule 37 (tabe)
  484. items go to state 48
  485. item go to state 16
  486. font go to state 39
  487. italic go to state 40
  488. overline go to state 41
  489. bold go to state 42
  490. underline go to state 43
  491. tabe go to state 23
  492. tab go to state 49
  493. State 21
  494. 15 item: bold • items "</b" ">"
  495. 27 fonttab2: bold • tab "</b" ">"
  496. "stringdata" shift, and go to state 1
  497. "<b" shift, and go to state 3
  498. "<br" shift, and go to state 4
  499. "<font" shift, and go to state 5
  500. "<i" shift, and go to state 6
  501. "<o" shift, and go to state 7
  502. "<s" shift, and go to state 8
  503. "<sub" shift, and go to state 9
  504. "<sup" shift, and go to state 10
  505. "<u" shift, and go to state 11
  506. $default reduce using rule 37 (tabe)
  507. items go to state 50
  508. item go to state 16
  509. font go to state 39
  510. italic go to state 40
  511. overline go to state 41
  512. bold go to state 42
  513. underline go to state 43
  514. tabe go to state 23
  515. tab go to state 51
  516. State 22
  517. 16 item: underline • items "</u" ">"
  518. 28 fonttab2: underline • tab "</u" ">"
  519. "stringdata" shift, and go to state 1
  520. "<b" shift, and go to state 3
  521. "<br" shift, and go to state 4
  522. "<font" shift, and go to state 5
  523. "<i" shift, and go to state 6
  524. "<o" shift, and go to state 7
  525. "<s" shift, and go to state 8
  526. "<sub" shift, and go to state 9
  527. "<sup" shift, and go to state 10
  528. "<u" shift, and go to state 11
  529. $default reduce using rule 37 (tabe)
  530. items go to state 52
  531. item go to state 16
  532. font go to state 39
  533. italic go to state 40
  534. overline go to state 41
  535. bold go to state 42
  536. underline go to state 43
  537. tabe go to state 23
  538. tab go to state 53
  539. State 23
  540. 39 tab: tabe • "<table" $@7 table_arg ">" rows "</table" ">" tabe
  541. "<table" shift, and go to state 54
  542. State 24
  543. 24 fonttab2: tab •
  544. $default reduce using rule 24 (fonttab2)
  545. State 25
  546. 2 htmlparser: "<html" ">" • htmlparser2 "</html" ">"
  547. "stringdata" shift, and go to state 1
  548. "<b" shift, and go to state 3
  549. "<br" shift, and go to state 4
  550. "<font" shift, and go to state 5
  551. "<i" shift, and go to state 6
  552. "<o" shift, and go to state 7
  553. "<s" shift, and go to state 8
  554. "<sub" shift, and go to state 9
  555. "<sup" shift, and go to state 10
  556. "<u" shift, and go to state 11
  557. $default reduce using rule 37 (tabe)
  558. htmlparser2 go to state 55
  559. items go to state 15
  560. item go to state 16
  561. fonttab2 go to state 17
  562. font go to state 18
  563. italic go to state 19
  564. overline go to state 20
  565. bold go to state 21
  566. underline go to state 22
  567. tabe go to state 23
  568. tab go to state 24
  569. State 26
  570. 34 bold: "<b" ">" •
  571. $default reduce using rule 34 (bold)
  572. State 27
  573. 12 item: "<br" ">" • $@2 "</br" ">"
  574. $default reduce using rule 11 ($@2)
  575. $@2 go to state 56
  576. State 28
  577. 10 item: "<br" $@1 • br_arg "/>"
  578. $default reduce using rule 116 (br_arg)
  579. br_arg go to state 57
  580. State 29
  581. 31 font: "<font" $@6 • font_arg ">"
  582. $default reduce using rule 120 (font_arg)
  583. font_arg go to state 58
  584. State 30
  585. 32 italic: "<i" ">" •
  586. $default reduce using rule 32 (italic)
  587. State 31
  588. 33 overline: "<o" ">" •
  589. $default reduce using rule 33 (overline)
  590. State 32
  591. 23 item: "<s" ">" • $@5 items "</s" ">"
  592. $default reduce using rule 22 ($@5)
  593. $@5 go to state 59
  594. State 33
  595. 19 item: "<sub" ">" • $@3 items "</sub" ">"
  596. $default reduce using rule 18 ($@3)
  597. $@3 go to state 60
  598. State 34
  599. 21 item: "<sup" ">" • $@4 items "</sup" ">"
  600. $default reduce using rule 20 ($@4)
  601. $@4 go to state 61
  602. State 35
  603. 35 underline: "<u" ">" •
  604. $default reduce using rule 35 (underline)
  605. State 36
  606. 0 $accept: begin $end •
  607. $default accept
  608. State 37
  609. 8 item: "stringdata" •
  610. $default reduce using rule 8 (item)
  611. State 38
  612. 6 items: items item •
  613. $default reduce using rule 6 (items)
  614. State 39
  615. 13 item: font • items "</font" ">"
  616. "stringdata" shift, and go to state 37
  617. "<b" shift, and go to state 3
  618. "<br" shift, and go to state 4
  619. "<font" shift, and go to state 5
  620. "<i" shift, and go to state 6
  621. "<o" shift, and go to state 7
  622. "<s" shift, and go to state 8
  623. "<sub" shift, and go to state 9
  624. "<sup" shift, and go to state 10
  625. "<u" shift, and go to state 11
  626. items go to state 44
  627. item go to state 16
  628. font go to state 39
  629. italic go to state 40
  630. overline go to state 41
  631. bold go to state 42
  632. underline go to state 43
  633. State 40
  634. 14 item: italic • items "</i" ">"
  635. "stringdata" shift, and go to state 37
  636. "<b" shift, and go to state 3
  637. "<br" shift, and go to state 4
  638. "<font" shift, and go to state 5
  639. "<i" shift, and go to state 6
  640. "<o" shift, and go to state 7
  641. "<s" shift, and go to state 8
  642. "<sub" shift, and go to state 9
  643. "<sup" shift, and go to state 10
  644. "<u" shift, and go to state 11
  645. items go to state 46
  646. item go to state 16
  647. font go to state 39
  648. italic go to state 40
  649. overline go to state 41
  650. bold go to state 42
  651. underline go to state 43
  652. State 41
  653. 17 item: overline • items "</o" ">"
  654. "stringdata" shift, and go to state 37
  655. "<b" shift, and go to state 3
  656. "<br" shift, and go to state 4
  657. "<font" shift, and go to state 5
  658. "<i" shift, and go to state 6
  659. "<o" shift, and go to state 7
  660. "<s" shift, and go to state 8
  661. "<sub" shift, and go to state 9
  662. "<sup" shift, and go to state 10
  663. "<u" shift, and go to state 11
  664. items go to state 48
  665. item go to state 16
  666. font go to state 39
  667. italic go to state 40
  668. overline go to state 41
  669. bold go to state 42
  670. underline go to state 43
  671. State 42
  672. 15 item: bold • items "</b" ">"
  673. "stringdata" shift, and go to state 37
  674. "<b" shift, and go to state 3
  675. "<br" shift, and go to state 4
  676. "<font" shift, and go to state 5
  677. "<i" shift, and go to state 6
  678. "<o" shift, and go to state 7
  679. "<s" shift, and go to state 8
  680. "<sub" shift, and go to state 9
  681. "<sup" shift, and go to state 10
  682. "<u" shift, and go to state 11
  683. items go to state 50
  684. item go to state 16
  685. font go to state 39
  686. italic go to state 40
  687. overline go to state 41
  688. bold go to state 42
  689. underline go to state 43
  690. State 43
  691. 16 item: underline • items "</u" ">"
  692. "stringdata" shift, and go to state 37
  693. "<b" shift, and go to state 3
  694. "<br" shift, and go to state 4
  695. "<font" shift, and go to state 5
  696. "<i" shift, and go to state 6
  697. "<o" shift, and go to state 7
  698. "<s" shift, and go to state 8
  699. "<sub" shift, and go to state 9
  700. "<sup" shift, and go to state 10
  701. "<u" shift, and go to state 11
  702. items go to state 52
  703. item go to state 16
  704. font go to state 39
  705. italic go to state 40
  706. overline go to state 41
  707. bold go to state 42
  708. underline go to state 43
  709. State 44
  710. 6 items: items • item
  711. 13 item: font items • "</font" ">"
  712. "stringdata" shift, and go to state 37
  713. "<b" shift, and go to state 3
  714. "<br" shift, and go to state 4
  715. "<font" shift, and go to state 5
  716. "</font" shift, and go to state 62
  717. "<i" shift, and go to state 6
  718. "<o" shift, and go to state 7
  719. "<s" shift, and go to state 8
  720. "<sub" shift, and go to state 9
  721. "<sup" shift, and go to state 10
  722. "<u" shift, and go to state 11
  723. item go to state 38
  724. font go to state 39
  725. italic go to state 40
  726. overline go to state 41
  727. bold go to state 42
  728. underline go to state 43
  729. State 45
  730. 25 fonttab2: font tab • "</font" ">"
  731. "</font" shift, and go to state 63
  732. State 46
  733. 6 items: items • item
  734. 14 item: italic items • "</i" ">"
  735. "stringdata" shift, and go to state 37
  736. "<b" shift, and go to state 3
  737. "<br" shift, and go to state 4
  738. "<font" shift, and go to state 5
  739. "<i" shift, and go to state 6
  740. "</i" shift, and go to state 64
  741. "<o" shift, and go to state 7
  742. "<s" shift, and go to state 8
  743. "<sub" shift, and go to state 9
  744. "<sup" shift, and go to state 10
  745. "<u" shift, and go to state 11
  746. item go to state 38
  747. font go to state 39
  748. italic go to state 40
  749. overline go to state 41
  750. bold go to state 42
  751. underline go to state 43
  752. State 47
  753. 26 fonttab2: italic tab • "</i" ">"
  754. "</i" shift, and go to state 65
  755. State 48
  756. 6 items: items • item
  757. 17 item: overline items • "</o" ">"
  758. "stringdata" shift, and go to state 37
  759. "<b" shift, and go to state 3
  760. "<br" shift, and go to state 4
  761. "<font" shift, and go to state 5
  762. "<i" shift, and go to state 6
  763. "<o" shift, and go to state 7
  764. "</o" shift, and go to state 66
  765. "<s" shift, and go to state 8
  766. "<sub" shift, and go to state 9
  767. "<sup" shift, and go to state 10
  768. "<u" shift, and go to state 11
  769. item go to state 38
  770. font go to state 39
  771. italic go to state 40
  772. overline go to state 41
  773. bold go to state 42
  774. underline go to state 43
  775. State 49
  776. 29 fonttab2: overline tab • "</o" ">"
  777. "</o" shift, and go to state 67
  778. State 50
  779. 6 items: items • item
  780. 15 item: bold items • "</b" ">"
  781. "stringdata" shift, and go to state 37
  782. "<b" shift, and go to state 3
  783. "</b" shift, and go to state 68
  784. "<br" shift, and go to state 4
  785. "<font" shift, and go to state 5
  786. "<i" shift, and go to state 6
  787. "<o" shift, and go to state 7
  788. "<s" shift, and go to state 8
  789. "<sub" shift, and go to state 9
  790. "<sup" shift, and go to state 10
  791. "<u" shift, and go to state 11
  792. item go to state 38
  793. font go to state 39
  794. italic go to state 40
  795. overline go to state 41
  796. bold go to state 42
  797. underline go to state 43
  798. State 51
  799. 27 fonttab2: bold tab • "</b" ">"
  800. "</b" shift, and go to state 69
  801. State 52
  802. 6 items: items • item
  803. 16 item: underline items • "</u" ">"
  804. "stringdata" shift, and go to state 37
  805. "<b" shift, and go to state 3
  806. "<br" shift, and go to state 4
  807. "<font" shift, and go to state 5
  808. "<i" shift, and go to state 6
  809. "<o" shift, and go to state 7
  810. "<s" shift, and go to state 8
  811. "<sub" shift, and go to state 9
  812. "<sup" shift, and go to state 10
  813. "<u" shift, and go to state 11
  814. "</u" shift, and go to state 70
  815. item go to state 38
  816. font go to state 39
  817. italic go to state 40
  818. overline go to state 41
  819. bold go to state 42
  820. underline go to state 43
  821. State 53
  822. 28 fonttab2: underline tab • "</u" ">"
  823. "</u" shift, and go to state 71
  824. State 54
  825. 39 tab: tabe "<table" • $@7 table_arg ">" rows "</table" ">" tabe
  826. $default reduce using rule 38 ($@7)
  827. $@7 go to state 72
  828. State 55
  829. 2 htmlparser: "<html" ">" htmlparser2 • "</html" ">"
  830. "</html" shift, and go to state 73
  831. State 56
  832. 12 item: "<br" ">" $@2 • "</br" ">"
  833. "</br" shift, and go to state 74
  834. State 57
  835. 10 item: "<br" $@1 br_arg • "/>"
  836. 115 br_arg: br_arg • br_1arg
  837. "/>" shift, and go to state 75
  838. "text" shift, and go to state 76
  839. "align" shift, and go to state 77
  840. br_1arg go to state 78
  841. State 58
  842. 31 font: "<font" $@6 font_arg • ">"
  843. 119 font_arg: font_arg • font_1arg
  844. ">" shift, and go to state 79
  845. "text" shift, and go to state 80
  846. "color" shift, and go to state 81
  847. "face" shift, and go to state 82
  848. "point-size" shift, and go to state 83
  849. font_1arg go to state 84
  850. State 59
  851. 23 item: "<s" ">" $@5 • items "</s" ">"
  852. "stringdata" shift, and go to state 37
  853. "<b" shift, and go to state 3
  854. "<br" shift, and go to state 4
  855. "<font" shift, and go to state 5
  856. "<i" shift, and go to state 6
  857. "<o" shift, and go to state 7
  858. "<s" shift, and go to state 8
  859. "<sub" shift, and go to state 9
  860. "<sup" shift, and go to state 10
  861. "<u" shift, and go to state 11
  862. items go to state 85
  863. item go to state 16
  864. font go to state 39
  865. italic go to state 40
  866. overline go to state 41
  867. bold go to state 42
  868. underline go to state 43
  869. State 60
  870. 19 item: "<sub" ">" $@3 • items "</sub" ">"
  871. "stringdata" shift, and go to state 37
  872. "<b" shift, and go to state 3
  873. "<br" shift, and go to state 4
  874. "<font" shift, and go to state 5
  875. "<i" shift, and go to state 6
  876. "<o" shift, and go to state 7
  877. "<s" shift, and go to state 8
  878. "<sub" shift, and go to state 9
  879. "<sup" shift, and go to state 10
  880. "<u" shift, and go to state 11
  881. items go to state 86
  882. item go to state 16
  883. font go to state 39
  884. italic go to state 40
  885. overline go to state 41
  886. bold go to state 42
  887. underline go to state 43
  888. State 61
  889. 21 item: "<sup" ">" $@4 • items "</sup" ">"
  890. "stringdata" shift, and go to state 37
  891. "<b" shift, and go to state 3
  892. "<br" shift, and go to state 4
  893. "<font" shift, and go to state 5
  894. "<i" shift, and go to state 6
  895. "<o" shift, and go to state 7
  896. "<s" shift, and go to state 8
  897. "<sub" shift, and go to state 9
  898. "<sup" shift, and go to state 10
  899. "<u" shift, and go to state 11
  900. items go to state 87
  901. item go to state 16
  902. font go to state 39
  903. italic go to state 40
  904. overline go to state 41
  905. bold go to state 42
  906. underline go to state 43
  907. State 62
  908. 13 item: font items "</font" • ">"
  909. ">" shift, and go to state 88
  910. State 63
  911. 25 fonttab2: font tab "</font" • ">"
  912. ">" shift, and go to state 89
  913. State 64
  914. 14 item: italic items "</i" • ">"
  915. ">" shift, and go to state 90
  916. State 65
  917. 26 fonttab2: italic tab "</i" • ">"
  918. ">" shift, and go to state 91
  919. State 66
  920. 17 item: overline items "</o" • ">"
  921. ">" shift, and go to state 92
  922. State 67
  923. 29 fonttab2: overline tab "</o" • ">"
  924. ">" shift, and go to state 93
  925. State 68
  926. 15 item: bold items "</b" • ">"
  927. ">" shift, and go to state 94
  928. State 69
  929. 27 fonttab2: bold tab "</b" • ">"
  930. ">" shift, and go to state 95
  931. State 70
  932. 16 item: underline items "</u" • ">"
  933. ">" shift, and go to state 96
  934. State 71
  935. 28 fonttab2: underline tab "</u" • ">"
  936. ">" shift, and go to state 97
  937. State 72
  938. 39 tab: tabe "<table" $@7 • table_arg ">" rows "</table" ">" tabe
  939. $default reduce using rule 61 (table_arg)
  940. table_arg go to state 98
  941. State 73
  942. 2 htmlparser: "<html" ">" htmlparser2 "</html" • ">"
  943. ">" shift, and go to state 99
  944. State 74
  945. 12 item: "<br" ">" $@2 "</br" • ">"
  946. ">" shift, and go to state 100
  947. State 75
  948. 10 item: "<br" $@1 br_arg "/>" •
  949. $default reduce using rule 10 (item)
  950. State 76
  951. 118 br_1arg: "text" • "=" "string"
  952. "=" shift, and go to state 101
  953. State 77
  954. 117 br_1arg: "align" • "=" "string"
  955. "=" shift, and go to state 102
  956. State 78
  957. 115 br_arg: br_arg br_1arg •
  958. $default reduce using rule 115 (br_arg)
  959. State 79
  960. 31 font: "<font" $@6 font_arg ">" •
  961. $default reduce using rule 31 (font)
  962. State 80
  963. 124 font_1arg: "text" • "=" "string"
  964. "=" shift, and go to state 103
  965. State 81
  966. 121 font_1arg: "color" • "=" "string"
  967. "=" shift, and go to state 104
  968. State 82
  969. 122 font_1arg: "face" • "=" "string"
  970. "=" shift, and go to state 105
  971. State 83
  972. 123 font_1arg: "point-size" • "=" "string"
  973. "=" shift, and go to state 106
  974. State 84
  975. 119 font_arg: font_arg font_1arg •
  976. $default reduce using rule 119 (font_arg)
  977. State 85
  978. 6 items: items • item
  979. 23 item: "<s" ">" $@5 items • "</s" ">"
  980. "stringdata" shift, and go to state 37
  981. "<b" shift, and go to state 3
  982. "<br" shift, and go to state 4
  983. "<font" shift, and go to state 5
  984. "<i" shift, and go to state 6
  985. "<o" shift, and go to state 7
  986. "<s" shift, and go to state 8
  987. "</s" shift, and go to state 107
  988. "<sub" shift, and go to state 9
  989. "<sup" shift, and go to state 10
  990. "<u" shift, and go to state 11
  991. item go to state 38
  992. font go to state 39
  993. italic go to state 40
  994. overline go to state 41
  995. bold go to state 42
  996. underline go to state 43
  997. State 86
  998. 6 items: items • item
  999. 19 item: "<sub" ">" $@3 items • "</sub" ">"
  1000. "stringdata" shift, and go to state 37
  1001. "<b" shift, and go to state 3
  1002. "<br" shift, and go to state 4
  1003. "<font" shift, and go to state 5
  1004. "<i" shift, and go to state 6
  1005. "<o" shift, and go to state 7
  1006. "<s" shift, and go to state 8
  1007. "<sub" shift, and go to state 9
  1008. "</sub" shift, and go to state 108
  1009. "<sup" shift, and go to state 10
  1010. "<u" shift, and go to state 11
  1011. item go to state 38
  1012. font go to state 39
  1013. italic go to state 40
  1014. overline go to state 41
  1015. bold go to state 42
  1016. underline go to state 43
  1017. State 87
  1018. 6 items: items • item
  1019. 21 item: "<sup" ">" $@4 items • "</sup" ">"
  1020. "stringdata" shift, and go to state 37
  1021. "<b" shift, and go to state 3
  1022. "<br" shift, and go to state 4
  1023. "<font" shift, and go to state 5
  1024. "<i" shift, and go to state 6
  1025. "<o" shift, and go to state 7
  1026. "<s" shift, and go to state 8
  1027. "<sub" shift, and go to state 9
  1028. "<sup" shift, and go to state 10
  1029. "</sup" shift, and go to state 109
  1030. "<u" shift, and go to state 11
  1031. item go to state 38
  1032. font go to state 39
  1033. italic go to state 40
  1034. overline go to state 41
  1035. bold go to state 42
  1036. underline go to state 43
  1037. State 88
  1038. 13 item: font items "</font" ">" •
  1039. $default reduce using rule 13 (item)
  1040. State 89
  1041. 25 fonttab2: font tab "</font" ">" •
  1042. $default reduce using rule 25 (fonttab2)
  1043. State 90
  1044. 14 item: italic items "</i" ">" •
  1045. $default reduce using rule 14 (item)
  1046. State 91
  1047. 26 fonttab2: italic tab "</i" ">" •
  1048. $default reduce using rule 26 (fonttab2)
  1049. State 92
  1050. 17 item: overline items "</o" ">" •
  1051. $default reduce using rule 17 (item)
  1052. State 93
  1053. 29 fonttab2: overline tab "</o" ">" •
  1054. $default reduce using rule 29 (fonttab2)
  1055. State 94
  1056. 15 item: bold items "</b" ">" •
  1057. $default reduce using rule 15 (item)
  1058. State 95
  1059. 27 fonttab2: bold tab "</b" ">" •
  1060. $default reduce using rule 27 (fonttab2)
  1061. State 96
  1062. 16 item: underline items "</u" ">" •
  1063. $default reduce using rule 16 (item)
  1064. State 97
  1065. 28 fonttab2: underline tab "</u" ">" •
  1066. $default reduce using rule 28 (fonttab2)
  1067. State 98
  1068. 39 tab: tabe "<table" $@7 table_arg • ">" rows "</table" ">" tabe
  1069. 60 table_arg: table_arg • table_1arg
  1070. ">" shift, and go to state 110
  1071. "text" shift, and go to state 111
  1072. "align" shift, and go to state 112
  1073. "bgcolor" shift, and go to state 113
  1074. "border" shift, and go to state 114
  1075. "cellborder" shift, and go to state 115
  1076. "cellpadding" shift, and go to state 116
  1077. "cellspacing" shift, and go to state 117
  1078. "color" shift, and go to state 118
  1079. "columns" shift, and go to state 119
  1080. "fixedsize" shift, and go to state 120
  1081. "gradientangle" shift, and go to state 121
  1082. "height" shift, and go to state 122
  1083. "href" shift, and go to state 123
  1084. "id" shift, and go to state 124
  1085. "port" shift, and go to state 125
  1086. "rows" shift, and go to state 126
  1087. "sides" shift, and go to state 127
  1088. "style" shift, and go to state 128
  1089. "target" shift, and go to state 129
  1090. "title" shift, and go to state 130
  1091. "tooltip" shift, and go to state 131
  1092. "valign" shift, and go to state 132
  1093. "width" shift, and go to state 133
  1094. table_1arg go to state 134
  1095. State 99
  1096. 2 htmlparser: "<html" ">" htmlparser2 "</html" ">" •
  1097. $default reduce using rule 2 (htmlparser)
  1098. State 100
  1099. 12 item: "<br" ">" $@2 "</br" ">" •
  1100. $default reduce using rule 12 (item)
  1101. State 101
  1102. 118 br_1arg: "text" "=" • "string"
  1103. "string" shift, and go to state 135
  1104. State 102
  1105. 117 br_1arg: "align" "=" • "string"
  1106. "string" shift, and go to state 136
  1107. State 103
  1108. 124 font_1arg: "text" "=" • "string"
  1109. "string" shift, and go to state 137
  1110. State 104
  1111. 121 font_1arg: "color" "=" • "string"
  1112. "string" shift, and go to state 138
  1113. State 105
  1114. 122 font_1arg: "face" "=" • "string"
  1115. "string" shift, and go to state 139
  1116. State 106
  1117. 123 font_1arg: "point-size" "=" • "string"
  1118. "string" shift, and go to state 140
  1119. State 107
  1120. 23 item: "<s" ">" $@5 items "</s" • ">"
  1121. ">" shift, and go to state 141
  1122. State 108
  1123. 19 item: "<sub" ">" $@3 items "</sub" • ">"
  1124. ">" shift, and go to state 142
  1125. State 109
  1126. 21 item: "<sup" ">" $@4 items "</sup" • ">"
  1127. ">" shift, and go to state 143
  1128. State 110
  1129. 39 tab: tabe "<table" $@7 table_arg ">" • rows "</table" ">" tabe
  1130. "<tr" shift, and go to state 144
  1131. rows go to state 145
  1132. row go to state 146
  1133. State 111
  1134. 84 table_1arg: "text" • "=" "string"
  1135. "=" shift, and go to state 147
  1136. State 112
  1137. 62 table_1arg: "align" • "=" "string"
  1138. "=" shift, and go to state 148
  1139. State 113
  1140. 63 table_1arg: "bgcolor" • "=" "string"
  1141. "=" shift, and go to state 149
  1142. State 114
  1143. 64 table_1arg: "border" • "=" "string"
  1144. "=" shift, and go to state 150
  1145. State 115
  1146. 65 table_1arg: "cellborder" • "=" "string"
  1147. "=" shift, and go to state 151
  1148. State 116
  1149. 66 table_1arg: "cellpadding" • "=" "string"
  1150. "=" shift, and go to state 152
  1151. State 117
  1152. 67 table_1arg: "cellspacing" • "=" "string"
  1153. "=" shift, and go to state 153
  1154. State 118
  1155. 68 table_1arg: "color" • "=" "string"
  1156. "=" shift, and go to state 154
  1157. State 119
  1158. 69 table_1arg: "columns" • "=" "string"
  1159. "=" shift, and go to state 155
  1160. State 120
  1161. 70 table_1arg: "fixedsize" • "=" "string"
  1162. "=" shift, and go to state 156
  1163. State 121
  1164. 71 table_1arg: "gradientangle" • "=" "string"
  1165. "=" shift, and go to state 157
  1166. State 122
  1167. 72 table_1arg: "height" • "=" "string"
  1168. "=" shift, and go to state 158
  1169. State 123
  1170. 73 table_1arg: "href" • "=" "string"
  1171. "=" shift, and go to state 159
  1172. State 124
  1173. 74 table_1arg: "id" • "=" "string"
  1174. "=" shift, and go to state 160
  1175. State 125
  1176. 75 table_1arg: "port" • "=" "string"
  1177. "=" shift, and go to state 161
  1178. State 126
  1179. 76 table_1arg: "rows" • "=" "string"
  1180. "=" shift, and go to state 162
  1181. State 127
  1182. 77 table_1arg: "sides" • "=" "string"
  1183. "=" shift, and go to state 163
  1184. State 128
  1185. 78 table_1arg: "style" • "=" "string"
  1186. "=" shift, and go to state 164
  1187. State 129
  1188. 79 table_1arg: "target" • "=" "string"
  1189. "=" shift, and go to state 165
  1190. State 130
  1191. 80 table_1arg: "title" • "=" "string"
  1192. "=" shift, and go to state 166
  1193. State 131
  1194. 81 table_1arg: "tooltip" • "=" "string"
  1195. "=" shift, and go to state 167
  1196. State 132
  1197. 82 table_1arg: "valign" • "=" "string"
  1198. "=" shift, and go to state 168
  1199. State 133
  1200. 83 table_1arg: "width" • "=" "string"
  1201. "=" shift, and go to state 169
  1202. State 134
  1203. 60 table_arg: table_arg table_1arg •
  1204. $default reduce using rule 60 (table_arg)
  1205. State 135
  1206. 118 br_1arg: "text" "=" "string" •
  1207. $default reduce using rule 118 (br_1arg)
  1208. State 136
  1209. 117 br_1arg: "align" "=" "string" •
  1210. $default reduce using rule 117 (br_1arg)
  1211. State 137
  1212. 124 font_1arg: "text" "=" "string" •
  1213. $default reduce using rule 124 (font_1arg)
  1214. State 138
  1215. 121 font_1arg: "color" "=" "string" •
  1216. $default reduce using rule 121 (font_1arg)
  1217. State 139
  1218. 122 font_1arg: "face" "=" "string" •
  1219. $default reduce using rule 122 (font_1arg)
  1220. State 140
  1221. 123 font_1arg: "point-size" "=" "string" •
  1222. $default reduce using rule 123 (font_1arg)
  1223. State 141
  1224. 23 item: "<s" ">" $@5 items "</s" ">" •
  1225. $default reduce using rule 23 (item)
  1226. State 142
  1227. 19 item: "<sub" ">" $@3 items "</sub" ">" •
  1228. $default reduce using rule 19 (item)
  1229. State 143
  1230. 21 item: "<sup" ">" $@4 items "</sup" ">" •
  1231. $default reduce using rule 21 (item)
  1232. State 144
  1233. 47 row: "<tr" • ">" $@10 cells "</tr" ">"
  1234. ">" shift, and go to state 170
  1235. State 145
  1236. 39 tab: tabe "<table" $@7 table_arg ">" rows • "</table" ">" tabe
  1237. 41 rows: rows • row
  1238. 43 | rows • "<hr" "/>" $@8 row
  1239. 45 | rows • "<hr" ">" "</hr" ">" $@9 row
  1240. "<hr" shift, and go to state 171
  1241. "</table" shift, and go to state 172
  1242. "<tr" shift, and go to state 144
  1243. row go to state 173
  1244. State 146
  1245. 40 rows: row •
  1246. $default reduce using rule 40 (rows)
  1247. State 147
  1248. 84 table_1arg: "text" "=" • "string"
  1249. "string" shift, and go to state 174
  1250. State 148
  1251. 62 table_1arg: "align" "=" • "string"
  1252. "string" shift, and go to state 175
  1253. State 149
  1254. 63 table_1arg: "bgcolor" "=" • "string"
  1255. "string" shift, and go to state 176
  1256. State 150
  1257. 64 table_1arg: "border" "=" • "string"
  1258. "string" shift, and go to state 177
  1259. State 151
  1260. 65 table_1arg: "cellborder" "=" • "string"
  1261. "string" shift, and go to state 178
  1262. State 152
  1263. 66 table_1arg: "cellpadding" "=" • "string"
  1264. "string" shift, and go to state 179
  1265. State 153
  1266. 67 table_1arg: "cellspacing" "=" • "string"
  1267. "string" shift, and go to state 180
  1268. State 154
  1269. 68 table_1arg: "color" "=" • "string"
  1270. "string" shift, and go to state 181
  1271. State 155
  1272. 69 table_1arg: "columns" "=" • "string"
  1273. "string" shift, and go to state 182
  1274. State 156
  1275. 70 table_1arg: "fixedsize" "=" • "string"
  1276. "string" shift, and go to state 183
  1277. State 157
  1278. 71 table_1arg: "gradientangle" "=" • "string"
  1279. "string" shift, and go to state 184
  1280. State 158
  1281. 72 table_1arg: "height" "=" • "string"
  1282. "string" shift, and go to state 185
  1283. State 159
  1284. 73 table_1arg: "href" "=" • "string"
  1285. "string" shift, and go to state 186
  1286. State 160
  1287. 74 table_1arg: "id" "=" • "string"
  1288. "string" shift, and go to state 187
  1289. State 161
  1290. 75 table_1arg: "port" "=" • "string"
  1291. "string" shift, and go to state 188
  1292. State 162
  1293. 76 table_1arg: "rows" "=" • "string"
  1294. "string" shift, and go to state 189
  1295. State 163
  1296. 77 table_1arg: "sides" "=" • "string"
  1297. "string" shift, and go to state 190
  1298. State 164
  1299. 78 table_1arg: "style" "=" • "string"
  1300. "string" shift, and go to state 191
  1301. State 165
  1302. 79 table_1arg: "target" "=" • "string"
  1303. "string" shift, and go to state 192
  1304. State 166
  1305. 80 table_1arg: "title" "=" • "string"
  1306. "string" shift, and go to state 193
  1307. State 167
  1308. 81 table_1arg: "tooltip" "=" • "string"
  1309. "string" shift, and go to state 194
  1310. State 168
  1311. 82 table_1arg: "valign" "=" • "string"
  1312. "string" shift, and go to state 195
  1313. State 169
  1314. 83 table_1arg: "width" "=" • "string"
  1315. "string" shift, and go to state 196
  1316. State 170
  1317. 47 row: "<tr" ">" • $@10 cells "</tr" ">"
  1318. $default reduce using rule 46 ($@10)
  1319. $@10 go to state 197
  1320. State 171
  1321. 43 rows: rows "<hr" • "/>" $@8 row
  1322. 45 | rows "<hr" • ">" "</hr" ">" $@9 row
  1323. "/>" shift, and go to state 198
  1324. ">" shift, and go to state 199
  1325. State 172
  1326. 39 tab: tabe "<table" $@7 table_arg ">" rows "</table" • ">" tabe
  1327. ">" shift, and go to state 200
  1328. State 173
  1329. 41 rows: rows row •
  1330. $default reduce using rule 41 (rows)
  1331. State 174
  1332. 84 table_1arg: "text" "=" "string" •
  1333. $default reduce using rule 84 (table_1arg)
  1334. State 175
  1335. 62 table_1arg: "align" "=" "string" •
  1336. $default reduce using rule 62 (table_1arg)
  1337. State 176
  1338. 63 table_1arg: "bgcolor" "=" "string" •
  1339. $default reduce using rule 63 (table_1arg)
  1340. State 177
  1341. 64 table_1arg: "border" "=" "string" •
  1342. $default reduce using rule 64 (table_1arg)
  1343. State 178
  1344. 65 table_1arg: "cellborder" "=" "string" •
  1345. $default reduce using rule 65 (table_1arg)
  1346. State 179
  1347. 66 table_1arg: "cellpadding" "=" "string" •
  1348. $default reduce using rule 66 (table_1arg)
  1349. State 180
  1350. 67 table_1arg: "cellspacing" "=" "string" •
  1351. $default reduce using rule 67 (table_1arg)
  1352. State 181
  1353. 68 table_1arg: "color" "=" "string" •
  1354. $default reduce using rule 68 (table_1arg)
  1355. State 182
  1356. 69 table_1arg: "columns" "=" "string" •
  1357. $default reduce using rule 69 (table_1arg)
  1358. State 183
  1359. 70 table_1arg: "fixedsize" "=" "string" •
  1360. $default reduce using rule 70 (table_1arg)
  1361. State 184
  1362. 71 table_1arg: "gradientangle" "=" "string" •
  1363. $default reduce using rule 71 (table_1arg)
  1364. State 185
  1365. 72 table_1arg: "height" "=" "string" •
  1366. $default reduce using rule 72 (table_1arg)
  1367. State 186
  1368. 73 table_1arg: "href" "=" "string" •
  1369. $default reduce using rule 73 (table_1arg)
  1370. State 187
  1371. 74 table_1arg: "id" "=" "string" •
  1372. $default reduce using rule 74 (table_1arg)
  1373. State 188
  1374. 75 table_1arg: "port" "=" "string" •
  1375. $default reduce using rule 75 (table_1arg)
  1376. State 189
  1377. 76 table_1arg: "rows" "=" "string" •
  1378. $default reduce using rule 76 (table_1arg)
  1379. State 190
  1380. 77 table_1arg: "sides" "=" "string" •
  1381. $default reduce using rule 77 (table_1arg)
  1382. State 191
  1383. 78 table_1arg: "style" "=" "string" •
  1384. $default reduce using rule 78 (table_1arg)
  1385. State 192
  1386. 79 table_1arg: "target" "=" "string" •
  1387. $default reduce using rule 79 (table_1arg)
  1388. State 193
  1389. 80 table_1arg: "title" "=" "string" •
  1390. $default reduce using rule 80 (table_1arg)
  1391. State 194
  1392. 81 table_1arg: "tooltip" "=" "string" •
  1393. $default reduce using rule 81 (table_1arg)
  1394. State 195
  1395. 82 table_1arg: "valign" "=" "string" •
  1396. $default reduce using rule 82 (table_1arg)
  1397. State 196
  1398. 83 table_1arg: "width" "=" "string" •
  1399. $default reduce using rule 83 (table_1arg)
  1400. State 197
  1401. 47 row: "<tr" ">" $@10 • cells "</tr" ">"
  1402. "<td" shift, and go to state 201
  1403. cells go to state 202
  1404. cell go to state 203
  1405. celltd go to state 204
  1406. State 198
  1407. 43 rows: rows "<hr" "/>" • $@8 row
  1408. $default reduce using rule 42 ($@8)
  1409. $@8 go to state 205
  1410. State 199
  1411. 45 rows: rows "<hr" ">" • "</hr" ">" $@9 row
  1412. "</hr" shift, and go to state 206
  1413. State 200
  1414. 39 tab: tabe "<table" $@7 table_arg ">" rows "</table" ">" • tabe
  1415. "stringdata" shift, and go to state 207
  1416. $default reduce using rule 37 (tabe)
  1417. tabe go to state 208
  1418. State 201
  1419. 59 celltd: "<td" •
  1420. $default reduce using rule 59 (celltd)
  1421. State 202
  1422. 47 row: "<tr" ">" $@10 cells • "</tr" ">"
  1423. 49 cells: cells • cell
  1424. 51 | cells • "<vr" "/>" $@11 cell
  1425. 53 | cells • "<vr" ">" "</vr" ">" $@12 cell
  1426. "<td" shift, and go to state 201
  1427. "</tr" shift, and go to state 209
  1428. "<vr" shift, and go to state 210
  1429. cell go to state 211
  1430. celltd go to state 204
  1431. State 203
  1432. 48 cells: cell •
  1433. $default reduce using rule 48 (cells)
  1434. State 204
  1435. 54 cell: celltd • td_arg ">" htmlparser "</td" ">"
  1436. 55 | celltd • td_arg ">" cellimg img_arg "/>" "</td" ">"
  1437. 56 | celltd • td_arg ">" cellimg img_arg ">" "</img" ">" "</td" ">"
  1438. 57 | celltd • td_arg ">" "</td" ">"
  1439. $default reduce using rule 86 (td_arg)
  1440. td_arg go to state 212
  1441. State 205
  1442. 43 rows: rows "<hr" "/>" $@8 • row
  1443. "<tr" shift, and go to state 144
  1444. row go to state 213
  1445. State 206
  1446. 45 rows: rows "<hr" ">" "</hr" • ">" $@9 row
  1447. ">" shift, and go to state 214
  1448. State 207
  1449. 36 tabe: "stringdata" •
  1450. $default reduce using rule 36 (tabe)
  1451. State 208
  1452. 39 tab: tabe "<table" $@7 table_arg ">" rows "</table" ">" tabe •
  1453. $default reduce using rule 39 (tab)
  1454. State 209
  1455. 47 row: "<tr" ">" $@10 cells "</tr" • ">"
  1456. ">" shift, and go to state 215
  1457. State 210
  1458. 51 cells: cells "<vr" • "/>" $@11 cell
  1459. 53 | cells "<vr" • ">" "</vr" ">" $@12 cell
  1460. "/>" shift, and go to state 216
  1461. ">" shift, and go to state 217
  1462. State 211
  1463. 49 cells: cells cell •
  1464. $default reduce using rule 49 (cells)
  1465. State 212
  1466. 54 cell: celltd td_arg • ">" htmlparser "</td" ">"
  1467. 55 | celltd td_arg • ">" cellimg img_arg "/>" "</td" ">"
  1468. 56 | celltd td_arg • ">" cellimg img_arg ">" "</img" ">" "</td" ">"
  1469. 57 | celltd td_arg • ">" "</td" ">"
  1470. 85 td_arg: td_arg • td_1arg
  1471. ">" shift, and go to state 218
  1472. "text" shift, and go to state 219
  1473. "align" shift, and go to state 220
  1474. "balign" shift, and go to state 221
  1475. "bgcolor" shift, and go to state 222
  1476. "border" shift, and go to state 223
  1477. "cellpadding" shift, and go to state 224
  1478. "cellspacing" shift, and go to state 225
  1479. "color" shift, and go to state 226
  1480. "colspan" shift, and go to state 227
  1481. "fixedsize" shift, and go to state 228
  1482. "gradientangle" shift, and go to state 229
  1483. "height" shift, and go to state 230
  1484. "href" shift, and go to state 231
  1485. "id" shift, and go to state 232
  1486. "port" shift, and go to state 233
  1487. "rowspan" shift, and go to state 234
  1488. "sides" shift, and go to state 235
  1489. "style" shift, and go to state 236
  1490. "target" shift, and go to state 237
  1491. "title" shift, and go to state 238
  1492. "tooltip" shift, and go to state 239
  1493. "valign" shift, and go to state 240
  1494. "width" shift, and go to state 241
  1495. td_1arg go to state 242
  1496. State 213
  1497. 43 rows: rows "<hr" "/>" $@8 row •
  1498. $default reduce using rule 43 (rows)
  1499. State 214
  1500. 45 rows: rows "<hr" ">" "</hr" ">" • $@9 row
  1501. $default reduce using rule 44 ($@9)
  1502. $@9 go to state 243
  1503. State 215
  1504. 47 row: "<tr" ">" $@10 cells "</tr" ">" •
  1505. $default reduce using rule 47 (row)
  1506. State 216
  1507. 51 cells: cells "<vr" "/>" • $@11 cell
  1508. $default reduce using rule 50 ($@11)
  1509. $@11 go to state 244
  1510. State 217
  1511. 53 cells: cells "<vr" ">" • "</vr" ">" $@12 cell
  1512. "</vr" shift, and go to state 245
  1513. State 218
  1514. 54 cell: celltd td_arg ">" • htmlparser "</td" ">"
  1515. 55 | celltd td_arg ">" • cellimg img_arg "/>" "</td" ">"
  1516. 56 | celltd td_arg ">" • cellimg img_arg ">" "</img" ">" "</td" ">"
  1517. 57 | celltd td_arg ">" • "</td" ">"
  1518. "stringdata" shift, and go to state 1
  1519. "<html" shift, and go to state 2
  1520. "<b" shift, and go to state 3
  1521. "<br" shift, and go to state 4
  1522. "<font" shift, and go to state 5
  1523. "<i" shift, and go to state 6
  1524. "<img" shift, and go to state 246
  1525. "<o" shift, and go to state 7
  1526. "<s" shift, and go to state 8
  1527. "<sub" shift, and go to state 9
  1528. "<sup" shift, and go to state 10
  1529. "</td" shift, and go to state 247
  1530. "<u" shift, and go to state 11
  1531. $default reduce using rule 37 (tabe)
  1532. htmlparser go to state 248
  1533. htmlparser2 go to state 14
  1534. items go to state 15
  1535. item go to state 16
  1536. fonttab2 go to state 17
  1537. font go to state 18
  1538. italic go to state 19
  1539. overline go to state 20
  1540. bold go to state 21
  1541. underline go to state 22
  1542. tabe go to state 23
  1543. tab go to state 24
  1544. cellimg go to state 249
  1545. State 219
  1546. 109 td_1arg: "text" • "=" "string"
  1547. "=" shift, and go to state 250
  1548. State 220
  1549. 87 td_1arg: "align" • "=" "string"
  1550. "=" shift, and go to state 251
  1551. State 221
  1552. 88 td_1arg: "balign" • "=" "string"
  1553. "=" shift, and go to state 252
  1554. State 222
  1555. 89 td_1arg: "bgcolor" • "=" "string"
  1556. "=" shift, and go to state 253
  1557. State 223
  1558. 90 td_1arg: "border" • "=" "string"
  1559. "=" shift, and go to state 254
  1560. State 224
  1561. 91 td_1arg: "cellpadding" • "=" "string"
  1562. "=" shift, and go to state 255
  1563. State 225
  1564. 92 td_1arg: "cellspacing" • "=" "string"
  1565. "=" shift, and go to state 256
  1566. State 226
  1567. 93 td_1arg: "color" • "=" "string"
  1568. "=" shift, and go to state 257
  1569. State 227
  1570. 94 td_1arg: "colspan" • "=" "string"
  1571. "=" shift, and go to state 258
  1572. State 228
  1573. 95 td_1arg: "fixedsize" • "=" "string"
  1574. "=" shift, and go to state 259
  1575. State 229
  1576. 96 td_1arg: "gradientangle" • "=" "string"
  1577. "=" shift, and go to state 260
  1578. State 230
  1579. 97 td_1arg: "height" • "=" "string"
  1580. "=" shift, and go to state 261
  1581. State 231
  1582. 98 td_1arg: "href" • "=" "string"
  1583. "=" shift, and go to state 262
  1584. State 232
  1585. 99 td_1arg: "id" • "=" "string"
  1586. "=" shift, and go to state 263
  1587. State 233
  1588. 100 td_1arg: "port" • "=" "string"
  1589. "=" shift, and go to state 264
  1590. State 234
  1591. 101 td_1arg: "rowspan" • "=" "string"
  1592. "=" shift, and go to state 265
  1593. State 235
  1594. 102 td_1arg: "sides" • "=" "string"
  1595. "=" shift, and go to state 266
  1596. State 236
  1597. 103 td_1arg: "style" • "=" "string"
  1598. "=" shift, and go to state 267
  1599. State 237
  1600. 104 td_1arg: "target" • "=" "string"
  1601. "=" shift, and go to state 268
  1602. State 238
  1603. 105 td_1arg: "title" • "=" "string"
  1604. "=" shift, and go to state 269
  1605. State 239
  1606. 106 td_1arg: "tooltip" • "=" "string"
  1607. "=" shift, and go to state 270
  1608. State 240
  1609. 107 td_1arg: "valign" • "=" "string"
  1610. "=" shift, and go to state 271
  1611. State 241
  1612. 108 td_1arg: "width" • "=" "string"
  1613. "=" shift, and go to state 272
  1614. State 242
  1615. 85 td_arg: td_arg td_1arg •
  1616. $default reduce using rule 85 (td_arg)
  1617. State 243
  1618. 45 rows: rows "<hr" ">" "</hr" ">" $@9 • row
  1619. "<tr" shift, and go to state 144
  1620. row go to state 273
  1621. State 244
  1622. 51 cells: cells "<vr" "/>" $@11 • cell
  1623. "<td" shift, and go to state 201
  1624. cell go to state 274
  1625. celltd go to state 204
  1626. State 245
  1627. 53 cells: cells "<vr" ">" "</vr" • ">" $@12 cell
  1628. ">" shift, and go to state 275
  1629. State 246
  1630. 58 cellimg: "<img" •
  1631. $default reduce using rule 58 (cellimg)
  1632. State 247
  1633. 57 cell: celltd td_arg ">" "</td" • ">"
  1634. ">" shift, and go to state 276
  1635. State 248
  1636. 54 cell: celltd td_arg ">" htmlparser • "</td" ">"
  1637. "</td" shift, and go to state 277
  1638. State 249
  1639. 55 cell: celltd td_arg ">" cellimg • img_arg "/>" "</td" ">"
  1640. 56 | celltd td_arg ">" cellimg • img_arg ">" "</img" ">" "</td" ">"
  1641. $default reduce using rule 111 (img_arg)
  1642. img_arg go to state 278
  1643. State 250
  1644. 109 td_1arg: "text" "=" • "string"
  1645. "string" shift, and go to state 279
  1646. State 251
  1647. 87 td_1arg: "align" "=" • "string"
  1648. "string" shift, and go to state 280
  1649. State 252
  1650. 88 td_1arg: "balign" "=" • "string"
  1651. "string" shift, and go to state 281
  1652. State 253
  1653. 89 td_1arg: "bgcolor" "=" • "string"
  1654. "string" shift, and go to state 282
  1655. State 254
  1656. 90 td_1arg: "border" "=" • "string"
  1657. "string" shift, and go to state 283
  1658. State 255
  1659. 91 td_1arg: "cellpadding" "=" • "string"
  1660. "string" shift, and go to state 284
  1661. State 256
  1662. 92 td_1arg: "cellspacing" "=" • "string"
  1663. "string" shift, and go to state 285
  1664. State 257
  1665. 93 td_1arg: "color" "=" • "string"
  1666. "string" shift, and go to state 286
  1667. State 258
  1668. 94 td_1arg: "colspan" "=" • "string"
  1669. "string" shift, and go to state 287
  1670. State 259
  1671. 95 td_1arg: "fixedsize" "=" • "string"
  1672. "string" shift, and go to state 288
  1673. State 260
  1674. 96 td_1arg: "gradientangle" "=" • "string"
  1675. "string" shift, and go to state 289
  1676. State 261
  1677. 97 td_1arg: "height" "=" • "string"
  1678. "string" shift, and go to state 290
  1679. State 262
  1680. 98 td_1arg: "href" "=" • "string"
  1681. "string" shift, and go to state 291
  1682. State 263
  1683. 99 td_1arg: "id" "=" • "string"
  1684. "string" shift, and go to state 292
  1685. State 264
  1686. 100 td_1arg: "port" "=" • "string"
  1687. "string" shift, and go to state 293
  1688. State 265
  1689. 101 td_1arg: "rowspan" "=" • "string"
  1690. "string" shift, and go to state 294
  1691. State 266
  1692. 102 td_1arg: "sides" "=" • "string"
  1693. "string" shift, and go to state 295
  1694. State 267
  1695. 103 td_1arg: "style" "=" • "string"
  1696. "string" shift, and go to state 296
  1697. State 268
  1698. 104 td_1arg: "target" "=" • "string"
  1699. "string" shift, and go to state 297
  1700. State 269
  1701. 105 td_1arg: "title" "=" • "string"
  1702. "string" shift, and go to state 298
  1703. State 270
  1704. 106 td_1arg: "tooltip" "=" • "string"
  1705. "string" shift, and go to state 299
  1706. State 271
  1707. 107 td_1arg: "valign" "=" • "string"
  1708. "string" shift, and go to state 300
  1709. State 272
  1710. 108 td_1arg: "width" "=" • "string"
  1711. "string" shift, and go to state 301
  1712. State 273
  1713. 45 rows: rows "<hr" ">" "</hr" ">" $@9 row •
  1714. $default reduce using rule 45 (rows)
  1715. State 274
  1716. 51 cells: cells "<vr" "/>" $@11 cell •
  1717. $default reduce using rule 51 (cells)
  1718. State 275
  1719. 53 cells: cells "<vr" ">" "</vr" ">" • $@12 cell
  1720. $default reduce using rule 52 ($@12)
  1721. $@12 go to state 302
  1722. State 276
  1723. 57 cell: celltd td_arg ">" "</td" ">" •
  1724. $default reduce using rule 57 (cell)
  1725. State 277
  1726. 54 cell: celltd td_arg ">" htmlparser "</td" • ">"
  1727. ">" shift, and go to state 303
  1728. State 278
  1729. 55 cell: celltd td_arg ">" cellimg img_arg • "/>" "</td" ">"
  1730. 56 | celltd td_arg ">" cellimg img_arg • ">" "</img" ">" "</td" ">"
  1731. 110 img_arg: img_arg • img_1arg
  1732. "/>" shift, and go to state 304
  1733. ">" shift, and go to state 305
  1734. "text" shift, and go to state 306
  1735. "scale" shift, and go to state 307
  1736. "src" shift, and go to state 308
  1737. img_1arg go to state 309
  1738. State 279
  1739. 109 td_1arg: "text" "=" "string" •
  1740. $default reduce using rule 109 (td_1arg)
  1741. State 280
  1742. 87 td_1arg: "align" "=" "string" •
  1743. $default reduce using rule 87 (td_1arg)
  1744. State 281
  1745. 88 td_1arg: "balign" "=" "string" •
  1746. $default reduce using rule 88 (td_1arg)
  1747. State 282
  1748. 89 td_1arg: "bgcolor" "=" "string" •
  1749. $default reduce using rule 89 (td_1arg)
  1750. State 283
  1751. 90 td_1arg: "border" "=" "string" •
  1752. $default reduce using rule 90 (td_1arg)
  1753. State 284
  1754. 91 td_1arg: "cellpadding" "=" "string" •
  1755. $default reduce using rule 91 (td_1arg)
  1756. State 285
  1757. 92 td_1arg: "cellspacing" "=" "string" •
  1758. $default reduce using rule 92 (td_1arg)
  1759. State 286
  1760. 93 td_1arg: "color" "=" "string" •
  1761. $default reduce using rule 93 (td_1arg)
  1762. State 287
  1763. 94 td_1arg: "colspan" "=" "string" •
  1764. $default reduce using rule 94 (td_1arg)
  1765. State 288
  1766. 95 td_1arg: "fixedsize" "=" "string" •
  1767. $default reduce using rule 95 (td_1arg)
  1768. State 289
  1769. 96 td_1arg: "gradientangle" "=" "string" •
  1770. $default reduce using rule 96 (td_1arg)
  1771. State 290
  1772. 97 td_1arg: "height" "=" "string" •
  1773. $default reduce using rule 97 (td_1arg)
  1774. State 291
  1775. 98 td_1arg: "href" "=" "string" •
  1776. $default reduce using rule 98 (td_1arg)
  1777. State 292
  1778. 99 td_1arg: "id" "=" "string" •
  1779. $default reduce using rule 99 (td_1arg)
  1780. State 293
  1781. 100 td_1arg: "port" "=" "string" •
  1782. $default reduce using rule 100 (td_1arg)
  1783. State 294
  1784. 101 td_1arg: "rowspan" "=" "string" •
  1785. $default reduce using rule 101 (td_1arg)
  1786. State 295
  1787. 102 td_1arg: "sides" "=" "string" •
  1788. $default reduce using rule 102 (td_1arg)
  1789. State 296
  1790. 103 td_1arg: "style" "=" "string" •
  1791. $default reduce using rule 103 (td_1arg)
  1792. State 297
  1793. 104 td_1arg: "target" "=" "string" •
  1794. $default reduce using rule 104 (td_1arg)
  1795. State 298
  1796. 105 td_1arg: "title" "=" "string" •
  1797. $default reduce using rule 105 (td_1arg)
  1798. State 299
  1799. 106 td_1arg: "tooltip" "=" "string" •
  1800. $default reduce using rule 106 (td_1arg)
  1801. State 300
  1802. 107 td_1arg: "valign" "=" "string" •
  1803. $default reduce using rule 107 (td_1arg)
  1804. State 301
  1805. 108 td_1arg: "width" "=" "string" •
  1806. $default reduce using rule 108 (td_1arg)
  1807. State 302
  1808. 53 cells: cells "<vr" ">" "</vr" ">" $@12 • cell
  1809. "<td" shift, and go to state 201
  1810. cell go to state 310
  1811. celltd go to state 204
  1812. State 303
  1813. 54 cell: celltd td_arg ">" htmlparser "</td" ">" •
  1814. $default reduce using rule 54 (cell)
  1815. State 304
  1816. 55 cell: celltd td_arg ">" cellimg img_arg "/>" • "</td" ">"
  1817. "</td" shift, and go to state 311
  1818. State 305
  1819. 56 cell: celltd td_arg ">" cellimg img_arg ">" • "</img" ">" "</td" ">"
  1820. "</img" shift, and go to state 312
  1821. State 306
  1822. 114 img_1arg: "text" • "=" "string"
  1823. "=" shift, and go to state 313
  1824. State 307
  1825. 112 img_1arg: "scale" • "=" "string"
  1826. "=" shift, and go to state 314
  1827. State 308
  1828. 113 img_1arg: "src" • "=" "string"
  1829. "=" shift, and go to state 315
  1830. State 309
  1831. 110 img_arg: img_arg img_1arg •
  1832. $default reduce using rule 110 (img_arg)
  1833. State 310
  1834. 53 cells: cells "<vr" ">" "</vr" ">" $@12 cell •
  1835. $default reduce using rule 53 (cells)
  1836. State 311
  1837. 55 cell: celltd td_arg ">" cellimg img_arg "/>" "</td" • ">"
  1838. ">" shift, and go to state 316
  1839. State 312
  1840. 56 cell: celltd td_arg ">" cellimg img_arg ">" "</img" • ">" "</td" ">"
  1841. ">" shift, and go to state 317
  1842. State 313
  1843. 114 img_1arg: "text" "=" • "string"
  1844. "string" shift, and go to state 318
  1845. State 314
  1846. 112 img_1arg: "scale" "=" • "string"
  1847. "string" shift, and go to state 319
  1848. State 315
  1849. 113 img_1arg: "src" "=" • "string"
  1850. "string" shift, and go to state 320
  1851. State 316
  1852. 55 cell: celltd td_arg ">" cellimg img_arg "/>" "</td" ">" •
  1853. $default reduce using rule 55 (cell)
  1854. State 317
  1855. 56 cell: celltd td_arg ">" cellimg img_arg ">" "</img" ">" • "</td" ">"
  1856. "</td" shift, and go to state 321
  1857. State 318
  1858. 114 img_1arg: "text" "=" "string" •
  1859. $default reduce using rule 114 (img_1arg)
  1860. State 319
  1861. 112 img_1arg: "scale" "=" "string" •
  1862. $default reduce using rule 112 (img_1arg)
  1863. State 320
  1864. 113 img_1arg: "src" "=" "string" •
  1865. $default reduce using rule 113 (img_1arg)
  1866. State 321
  1867. 56 cell: celltd td_arg ">" cellimg img_arg ">" "</img" ">" "</td" • ">"
  1868. ">" shift, and go to state 322
  1869. State 322
  1870. 56 cell: celltd td_arg ">" cellimg img_arg ">" "</img" ">" "</td" ">" •
  1871. $default reduce using rule 56 (cell)