2
0

scan.pas 107 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978
  1. (* lexical analyzer template (TP Lex V3.0), V1.0 3-2-91 AG *)
  2. (* global definitions: *)
  3. {
  4. Copyright (c) 1998-2000 by Florian Klaempfl
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************}
  17. unit scan;
  18. {$H+}
  19. {$GOTO ON}
  20. interface
  21. uses
  22. strings,
  23. h2plexlib,h2pyacclib;
  24. const
  25. version = '1.0.0';
  26. type
  27. Char=system.char;
  28. ttyp = (
  29. t_id,
  30. { p contains the string }
  31. t_arraydef,
  32. { }
  33. t_pointerdef,
  34. { p1 contains the definition
  35. if in type overrider
  36. or nothing for args
  37. }
  38. t_addrdef,
  39. t_void,
  40. { no field }
  41. t_dec,
  42. { }
  43. t_declist,
  44. { p1 is t_dec
  45. next if exists }
  46. t_memberdec,
  47. { p1 is type specifier
  48. p2 is declarator_list }
  49. t_structdef,
  50. { }
  51. t_memberdeclist,
  52. { p1 is memberdec
  53. next is next if it exist }
  54. t_procdef,
  55. { }
  56. t_uniondef,
  57. { }
  58. t_enumdef,
  59. { }
  60. t_enumlist,
  61. { }
  62. t_preop,
  63. { p contains the operator string
  64. p1 contains the right expr }
  65. t_bop,
  66. { p contains the operator string
  67. p1 contains the left expr
  68. p2 contains the right expr }
  69. t_arrayop,
  70. {
  71. p1 contains the array expr
  72. p2 contains the index expressions }
  73. t_callop,
  74. {
  75. p1 contains the proc expr
  76. p2 contains the index expressions }
  77. t_arg,
  78. {
  79. p1 contain the typedef
  80. p2 the declarator (t_dec)
  81. }
  82. t_arglist,
  83. { }
  84. t_funexprlist,
  85. { }
  86. t_exprlist,
  87. { p1 contains the expr
  88. next contains the next if it exists }
  89. t_ifexpr,
  90. { p1 contains the condition expr
  91. p2 contains the if branch
  92. p3 contains the else branch }
  93. t_funcname,
  94. { p1 contains the function dname
  95. p2 contains the funexprlist
  96. p3 possibly contains the return type }
  97. t_typespec,
  98. { p1 is the type itself
  99. p2 the typecast expr }
  100. t_size_specifier,
  101. { p1 expr for size }
  102. t_default_value,
  103. { p1 expr for value }
  104. t_statement_list,
  105. { p1 is the statement
  106. next is next if it exist }
  107. t_whilenode,
  108. t_fornode,
  109. t_dowhilenode,
  110. t_switchnode,
  111. t_gotonode,
  112. t_continuenode,
  113. t_breaknode
  114. );
  115. const
  116. ttypstr: array[ttyp] of string =
  117. (
  118. 't_id',
  119. 't_arraydef',
  120. 't_pointerdef',
  121. 't_addrdef',
  122. 't_void',
  123. 't_dec',
  124. 't_declist',
  125. 't_memberdec',
  126. 't_structdef',
  127. 't_memberdeclist',
  128. 't_procdef',
  129. 't_uniondef',
  130. 't_enumdef',
  131. 't_enumlist',
  132. 't_preop',
  133. 't_bop',
  134. 't_arrayop',
  135. 't_callop',
  136. 't_arg',
  137. 't_arglist',
  138. 't_funexprlist',
  139. 't_exprlist',
  140. 't_ifexpr',
  141. 't_funcname',
  142. 't_typespec',
  143. 't_size_specifier',
  144. 't_default_value',
  145. 't_statement_list',
  146. 't_whilenode',
  147. 't_fornode',
  148. 't_dowhilenode',
  149. 't_switchnode',
  150. 't_gotonode',
  151. 't_continuenode',
  152. 't_breaknode'
  153. );
  154. type
  155. presobject = ^tresobject;
  156. tresobject = object
  157. typ : ttyp;
  158. p : pchar;
  159. next : presobject;
  160. p1,p2,p3 : presobject;
  161. { name of int/real, then no T prefix is required }
  162. intname : boolean;
  163. constructor init_no(t : ttyp);
  164. constructor init_one(t : ttyp;_p1 : presobject);
  165. constructor init_two(t : ttyp;_p1,_p2 : presobject);
  166. constructor init_three(t : ttyp;_p1,_p2,_p3 : presobject);
  167. constructor init_id(const s : string);
  168. constructor init_intid(const s : string);
  169. constructor init_bop(const s : string;_p1,_p2 : presobject);
  170. constructor init_preop(const s : string;_p1 : presobject);
  171. procedure setstr(const s:string);
  172. function str : string;
  173. function strlength : byte;
  174. function get_copy : presobject;
  175. { can this ve considered as a constant ? }
  176. function is_const : boolean;
  177. destructor done;
  178. end;
  179. tblocktype = (bt_type,bt_const,bt_var,bt_func,bt_no);
  180. var
  181. infile : string;
  182. c : char;
  183. aktspace : string;
  184. block_type : tblocktype;
  185. commentstr: string;
  186. const
  187. in_define : boolean = false;
  188. { True if define spans to the next line }
  189. cont_line : boolean = false;
  190. { 1 after define; 2 after the ID to print the first separating space }
  191. in_space_define : byte = 0;
  192. arglevel : longint = 0;
  193. {> 1 = ifdef level in a ifdef C++ block
  194. 1 = first level in an ifdef block
  195. 0 = not in an ifdef block
  196. -1 = in else part of ifdef block, process like we weren't in the block
  197. but skip the incoming end.
  198. > -1 = ifdef sublevel in an else block.
  199. }
  200. cplusblocklevel : LongInt = 0;
  201. function yylex : integer;
  202. function act_token : string;
  203. procedure internalerror(i : integer);
  204. function strpnew(const s : string) : pchar;
  205. procedure writetree(p: presobject);
  206. implementation
  207. uses
  208. h2poptions, h2pconst, scanbase;
  209. const
  210. newline = #10;
  211. procedure writeentry(p: presobject; var currentlevel: integer);
  212. begin
  213. if assigned(p^.p1) then
  214. begin
  215. WriteLn(' Entry p1[',ttypstr[p^.p1^.typ],']',p^.p1^.str);
  216. end;
  217. if assigned(p^.p2) then
  218. begin
  219. WriteLn(' Entry p2[',ttypstr[p^.p2^.typ],']',p^.p2^.str);
  220. end;
  221. if assigned(p^.p3) then
  222. begin
  223. WriteLn(' Entry p3[',ttypstr[p^.p3^.typ],']',p^.p3^.str);
  224. end;
  225. end;
  226. procedure writetree(p: presobject);
  227. var
  228. localp: presobject;
  229. localp1: presobject;
  230. currentlevel : integer;
  231. begin
  232. localp:=p;
  233. currentlevel:=0;
  234. while assigned(localp) do
  235. begin
  236. WriteLn('Entry[',ttypstr[localp^.typ],']',localp^.str);
  237. case localp^.typ of
  238. { Some arguments sharing the same type }
  239. t_arglist:
  240. begin
  241. localp1:=localp;
  242. while assigned(localp1) do
  243. begin
  244. writeentry(localp1,currentlevel);
  245. localp1:=localp1^.p1;
  246. end;
  247. end;
  248. end;
  249. localp:=localp^.next;
  250. end;
  251. end;
  252. procedure internalerror(i : integer);
  253. begin
  254. writeln('Internal error ',i,' in line ',yylineno);
  255. halt(1);
  256. end;
  257. procedure commenteof;
  258. begin
  259. writeln('unexpected EOF inside comment at line ',yylineno);
  260. end;
  261. procedure copy_until_eol;
  262. begin
  263. c:=get_char;
  264. while c<>newline do
  265. begin
  266. write(outfile,c);
  267. c:=get_char;
  268. end;
  269. end;
  270. procedure skip_until_eol;
  271. begin
  272. c:=get_char;
  273. while c<>newline do
  274. c:=get_char;
  275. end;
  276. function strpnew(const s : string) : pchar;
  277. var
  278. p : pchar;
  279. begin
  280. getmem(p,length(s)+1);
  281. strpcopy(p,s);
  282. strpnew:=p;
  283. end;
  284. function NotInCPlusBlock : Boolean; inline;
  285. begin
  286. NotInCPlusBlock := cplusblocklevel < 1;
  287. end;
  288. constructor tresobject.init_preop(const s : string;_p1 : presobject);
  289. begin
  290. typ:=t_preop;
  291. p:=strpnew(s);
  292. p1:=_p1;
  293. p2:=nil;
  294. p3:=nil;
  295. next:=nil;
  296. intname:=false;
  297. end;
  298. constructor tresobject.init_bop(const s : string;_p1,_p2 : presobject);
  299. begin
  300. typ:=t_bop;
  301. p:=strpnew(s);
  302. p1:=_p1;
  303. p2:=_p2;
  304. p3:=nil;
  305. next:=nil;
  306. intname:=false;
  307. end;
  308. constructor tresobject.init_id(const s : string);
  309. begin
  310. typ:=t_id;
  311. p:=strpnew(s);
  312. p1:=nil;
  313. p2:=nil;
  314. p3:=nil;
  315. next:=nil;
  316. intname:=false;
  317. end;
  318. constructor tresobject.init_intid(const s : string);
  319. begin
  320. typ:=t_id;
  321. p:=strpnew(s);
  322. p1:=nil;
  323. p2:=nil;
  324. p3:=nil;
  325. next:=nil;
  326. intname:=true;
  327. end;
  328. constructor tresobject.init_two(t : ttyp;_p1,_p2 : presobject);
  329. begin
  330. typ:=t;
  331. p1:=_p1;
  332. p2:=_p2;
  333. p3:=nil;
  334. p:=nil;
  335. next:=nil;
  336. intname:=false;
  337. end;
  338. constructor tresobject.init_three(t : ttyp;_p1,_p2,_p3 : presobject);
  339. begin
  340. typ:=t;
  341. p1:=_p1;
  342. p2:=_p2;
  343. p3:=_p3;
  344. p:=nil;
  345. next:=nil;
  346. intname:=false;
  347. end;
  348. constructor tresobject.init_one(t : ttyp;_p1 : presobject);
  349. begin
  350. typ:=t;
  351. p1:=_p1;
  352. p2:=nil;
  353. p3:=nil;
  354. next:=nil;
  355. p:=nil;
  356. intname:=false;
  357. end;
  358. constructor tresobject.init_no(t : ttyp);
  359. begin
  360. typ:=t;
  361. p:=nil;
  362. p1:=nil;
  363. p2:=nil;
  364. p3:=nil;
  365. next:=nil;
  366. intname:=false;
  367. end;
  368. procedure tresobject.setstr(const s : string);
  369. begin
  370. if assigned(p) then
  371. strdispose(p);
  372. p:=strpnew(s);
  373. end;
  374. function tresobject.str : string;
  375. begin
  376. str:=strpas(p);
  377. end;
  378. function tresobject.strlength : byte;
  379. begin
  380. if assigned(p) then
  381. strlength:=strlen(p)
  382. else
  383. strlength:=0;
  384. end;
  385. { can this ve considered as a constant ? }
  386. function tresobject.is_const : boolean;
  387. begin
  388. case typ of
  389. t_id,t_void :
  390. is_const:=true;
  391. t_preop :
  392. is_const:= ((str='-') or (str=' not ')) and p1^.is_const;
  393. t_bop :
  394. is_const:= p2^.is_const and p1^.is_const;
  395. else
  396. is_const:=false;
  397. end;
  398. end;
  399. function tresobject.get_copy : presobject;
  400. var
  401. newres : presobject;
  402. begin
  403. newres:=new(presobject,init_no(typ));
  404. newres^.intname:=intname;
  405. if assigned(p) then
  406. newres^.p:=strnew(p);
  407. if assigned(p1) then
  408. newres^.p1:=p1^.get_copy;
  409. if assigned(p2) then
  410. newres^.p2:=p2^.get_copy;
  411. if assigned(p3) then
  412. newres^.p3:=p3^.get_copy;
  413. if assigned(next) then
  414. newres^.next:=next^.get_copy;
  415. get_copy:=newres;
  416. end;
  417. destructor tresobject.done;
  418. begin
  419. (* writeln('disposing ',byte(typ)); *)
  420. if assigned(p)then strdispose(p);
  421. if assigned(p1) then
  422. dispose(p1,done);
  423. if assigned(p2) then
  424. dispose(p2,done);
  425. if assigned(p3) then
  426. dispose(p3,done);
  427. if assigned(next) then
  428. dispose(next,done);
  429. end;
  430. function yylex : Integer;
  431. procedure yyaction ( yyruleno : Integer );
  432. (* local definitions: *)
  433. begin
  434. (* actions: *)
  435. case yyruleno of
  436. 1:
  437. if NotInCPlusBlock then
  438. begin
  439. if not stripcomment then
  440. write(outfile,aktspace,'{');
  441. repeat
  442. c:=get_char;
  443. case c of
  444. '*' :
  445. begin
  446. c:=get_char;
  447. if c='/' then
  448. begin
  449. if not stripcomment then
  450. write(outfile,' }');
  451. c:=get_char;
  452. if c=newline then
  453. writeln(outfile);
  454. unget_char(c);
  455. flush(outfile);
  456. exit;
  457. end
  458. else
  459. begin
  460. if not stripcomment then
  461. write(outfile,'*');
  462. unget_char(c)
  463. end;
  464. end;
  465. newline :
  466. begin
  467. if not stripcomment then
  468. begin
  469. writeln(outfile);
  470. write(outfile,aktspace);
  471. end;
  472. end;
  473. { Don't write this thing out, to
  474. avoid nested comments.
  475. }
  476. '{','}' :
  477. begin
  478. end;
  479. #0 :
  480. commenteof;
  481. else
  482. if not stripcomment then
  483. write(outfile,c);
  484. end;
  485. until false;
  486. flush(outfile);
  487. end
  488. else
  489. skip_until_eol;
  490. 2:
  491. if NotInCPlusBlock then
  492. begin
  493. commentstr:='';
  494. if (in_define) and not (stripcomment) then
  495. begin
  496. commentstr:='{';
  497. end
  498. else
  499. If not stripcomment then
  500. write(outfile,aktspace,'{');
  501. repeat
  502. c:=get_char;
  503. case c of
  504. newline :
  505. begin
  506. unget_char(c);
  507. if not stripcomment then
  508. begin
  509. if in_define then
  510. begin
  511. commentstr:=commentstr+' }';
  512. end
  513. else
  514. begin
  515. write(outfile,' }');
  516. writeln(outfile);
  517. end;
  518. end;
  519. flush(outfile);
  520. exit;
  521. end;
  522. { Don't write this comment out,
  523. to avoid nested comment problems
  524. }
  525. '{','}' :
  526. begin
  527. end;
  528. #0 :
  529. commenteof;
  530. else
  531. if not stripcomment then
  532. begin
  533. if in_define then
  534. begin
  535. commentstr:=commentstr+c;
  536. end
  537. else
  538. write(outfile,c);
  539. end;
  540. end;
  541. until false;
  542. flush(outfile);
  543. end
  544. else
  545. skip_until_eol;
  546. 3:
  547. if NotInCPlusBlock then return(CSTRING) else skip_until_eol;
  548. 4:
  549. if NotInCPlusBlock then return(CSTRING) else skip_until_eol;
  550. 5:
  551. if NotInCPlusBlock then
  552. begin
  553. if win32headers then
  554. return(CSTRING)
  555. else
  556. return(256);
  557. end
  558. else skip_until_eol;
  559. 6:
  560. if NotInCPlusBlock then
  561. begin
  562. if win32headers then
  563. return(CSTRING)
  564. else
  565. return(256);
  566. end
  567. else
  568. skip_until_eol;
  569. 7:
  570. if NotInCPlusBlock then
  571. begin
  572. if yytext[1]='0' then
  573. begin
  574. delete(yytext,1,1);
  575. yytext:='&'+yytext;
  576. end;
  577. while yytext[length(yytext)] in ['L','U','l','u'] do
  578. Delete(yytext,length(yytext),1);
  579. return(NUMBER);
  580. end
  581. else skip_until_eol;
  582. 8:
  583. if NotInCPlusBlock then
  584. begin
  585. (* handle pre- and postfixes *)
  586. if copy(yytext,1,2)='0x' then
  587. begin
  588. delete(yytext,1,2);
  589. yytext:='$'+yytext;
  590. end;
  591. while yytext[length(yytext)] in ['L','U','l','u'] do
  592. Delete(yytext,length(yytext),1);
  593. return(NUMBER);
  594. end
  595. else
  596. skip_until_eol;
  597. 9:
  598. if NotInCPlusBlock then
  599. begin
  600. return(NUMBER);
  601. end
  602. else
  603. skip_until_eol;
  604. 10:
  605. if NotInCPlusBlock then
  606. begin
  607. if in_define then
  608. return(DEREF)
  609. else
  610. return(256);
  611. end
  612. else
  613. skip_until_eol;
  614. 11:
  615. if NotInCPlusBlock then return(MINUS) else skip_until_eol;
  616. 12:
  617. if NotInCPlusBlock then return(EQUAL) else skip_until_eol;
  618. 13:
  619. if NotInCPlusBlock then return(UNEQUAL) else skip_until_eol;
  620. 14:
  621. if NotInCPlusBlock then return(GTE) else skip_until_eol;
  622. 15:
  623. if NotInCPlusBlock then return(LTE) else skip_until_eol;
  624. 16:
  625. if NotInCPlusBlock then return(_SHR) else skip_until_eol;
  626. 17:
  627. if NotInCPlusBlock then return(STICK) else skip_until_eol;
  628. 18:
  629. if NotInCPlusBlock then return(_SHL) else skip_until_eol;
  630. 19:
  631. if NotInCPlusBlock then return(GT) else skip_until_eol;
  632. 20:
  633. if NotInCPlusBlock then return(LT) else skip_until_eol;
  634. 21:
  635. if NotInCPlusBlock then return(_OR) else skip_until_eol;
  636. 22:
  637. if NotInCPlusBlock then return(_AND) else skip_until_eol;
  638. 23:
  639. if NotInCPlusBlock then return(_NOT) else skip_until_eol; (* inverse, but handled as not operation *)
  640. 24:
  641. if NotInCPlusBlock then return(_NOT) else skip_until_eol;
  642. 25:
  643. if NotInCPlusBlock then return(_SLASH) else skip_until_eol;
  644. 26:
  645. if NotInCPlusBlock then return(_PLUS) else skip_until_eol;
  646. 27:
  647. if NotInCPlusBlock then return(QUESTIONMARK) else skip_until_eol;
  648. 28:
  649. if NotInCPlusBlock then return(COLON) else skip_until_eol;
  650. 29:
  651. if NotInCPlusBlock then return(COMMA) else skip_until_eol;
  652. 30:
  653. if NotInCPlusBlock then return(LECKKLAMMER) else skip_until_eol;
  654. 31:
  655. if NotInCPlusBlock then return(RECKKLAMMER) else skip_until_eol;
  656. 32:
  657. if NotInCPlusBlock then
  658. begin
  659. inc(arglevel);
  660. return(LKLAMMER);
  661. end
  662. else
  663. skip_until_eol;
  664. 33:
  665. if NotInCPlusBlock then
  666. begin
  667. dec(arglevel);
  668. return(RKLAMMER);
  669. end
  670. else
  671. skip_until_eol;
  672. 34:
  673. if NotInCPlusBlock then return(STAR) else skip_until_eol;
  674. 35:
  675. if NotInCPlusBlock then return(ELLIPSIS) else skip_until_eol;
  676. 36:
  677. if NotInCPlusBlock then
  678. if in_define then
  679. return(POINT)
  680. else
  681. return(256);
  682. 37:
  683. if NotInCPlusBlock then return(_ASSIGN) else skip_until_eol;
  684. 38:
  685. if NotInCPlusBlock then return(EXTERN) else skip_until_eol;
  686. 39:
  687. if NotInCPlusBlock then
  688. begin
  689. if Win32headers then
  690. return(STDCALL)
  691. else
  692. return(ID);
  693. end
  694. else
  695. begin
  696. skip_until_eol;
  697. end;
  698. 40:
  699. if NotInCPlusBlock then
  700. begin
  701. if not Win32headers then
  702. return(ID)
  703. else
  704. return(CDECL);
  705. end
  706. else
  707. begin
  708. skip_until_eol;
  709. end;
  710. 41:
  711. if NotInCPlusBlock then
  712. begin
  713. if not Win32headers then
  714. return(ID)
  715. else
  716. return(PASCAL);
  717. end
  718. else
  719. begin
  720. skip_until_eol;
  721. end;
  722. 42:
  723. if NotInCPlusBlock then
  724. begin
  725. if not Win32headers then
  726. return(ID)
  727. else
  728. return(_PACKED);
  729. end
  730. else
  731. begin
  732. skip_until_eol;
  733. end;
  734. 43:
  735. if NotInCPlusBlock then
  736. begin
  737. if not Win32headers then
  738. return(ID)
  739. else
  740. return(WINAPI);
  741. end
  742. else
  743. begin
  744. skip_until_eol;
  745. end;
  746. 44:
  747. if NotInCPlusBlock then
  748. begin
  749. if not palmpilot then
  750. return(ID)
  751. else
  752. return(SYS_TRAP);
  753. end
  754. else
  755. begin
  756. skip_until_eol;
  757. end;
  758. 45:
  759. if NotInCPlusBlock then
  760. begin
  761. if not Win32headers then
  762. return(ID)
  763. else
  764. return(WINGDIAPI);
  765. end
  766. else
  767. begin
  768. skip_until_eol;
  769. end;
  770. 46:
  771. if NotInCPlusBlock then
  772. begin
  773. if not Win32headers then
  774. return(ID)
  775. else
  776. return(CALLBACK);
  777. end
  778. else
  779. begin
  780. skip_until_eol;
  781. end;
  782. 47:
  783. if NotInCPlusBlock then
  784. begin
  785. if not Win32headers then
  786. return(ID)
  787. else
  788. return(CALLBACK);
  789. end
  790. else
  791. begin
  792. skip_until_eol;
  793. end;
  794. 48:
  795. if NotInCPlusBlock then return(VOID) else skip_until_eol;
  796. 49:
  797. if NotInCPlusBlock then return(VOID) else skip_until_eol;
  798. 50:
  799. begin
  800. if not stripinfo then
  801. writeln(outfile,'{ C++ extern C conditionnal removed }');
  802. end;
  803. 51:
  804. begin
  805. if not stripinfo then
  806. writeln(outfile,'{ C++ extern C conditionnal removed }');
  807. end;
  808. 52:
  809. begin
  810. if not stripinfo then
  811. writeln(outfile,'{ C++ end of extern C conditionnal removed }');
  812. end;
  813. 53:
  814. begin
  815. if not stripinfo then
  816. writeln(outfile,'{ C++ end of extern C conditionnal removed }');
  817. end;
  818. 54:
  819. begin
  820. Inc(cplusblocklevel);
  821. end;
  822. 55:
  823. begin
  824. Inc(cplusblocklevel);
  825. end;
  826. 56:
  827. begin
  828. if cplusblocklevel > 0 then
  829. Inc(cplusblocklevel)
  830. else
  831. begin
  832. if cplusblocklevel < 0 then
  833. Dec(cplusblocklevel);
  834. write(outfile,'{$ifdef ');
  835. copy_until_eol;
  836. writeln(outfile,'}');
  837. flush(outfile);
  838. end;
  839. end;
  840. 57:
  841. begin
  842. if cplusblocklevel < -1 then
  843. begin
  844. writeln(outfile,'{$else}');
  845. block_type:=bt_no;
  846. flush(outfile);
  847. end
  848. else
  849. case cplusblocklevel of
  850. 0 :
  851. begin
  852. writeln(outfile,'{$else}');
  853. block_type:=bt_no;
  854. flush(outfile);
  855. end;
  856. 1 : cplusblocklevel := -1;
  857. -1 : cplusblocklevel := 1;
  858. end;
  859. end;
  860. 58:
  861. begin
  862. if cplusblocklevel > 0 then
  863. begin
  864. Dec(cplusblocklevel);
  865. end
  866. else
  867. begin
  868. case cplusblocklevel of
  869. 0 : begin
  870. writeln(outfile,'{$endif}');
  871. block_type:=bt_no;
  872. flush(outfile);
  873. end;
  874. -1 : begin
  875. cplusblocklevel :=0;
  876. end
  877. else
  878. inc(cplusblocklevel);
  879. end;
  880. end;
  881. end;
  882. 59:
  883. begin
  884. if cplusblocklevel < -1 then
  885. begin
  886. if not stripinfo then
  887. write(outfile,'(*** was #elif ****)');
  888. write(outfile,'{$else');
  889. copy_until_eol;
  890. writeln(outfile,'}');
  891. block_type:=bt_no;
  892. flush(outfile);
  893. end
  894. else
  895. case cplusblocklevel of
  896. 0 :
  897. begin
  898. if not stripinfo then
  899. write(outfile,'(*** was #elif ****)');
  900. write(outfile,'{$else');
  901. copy_until_eol;
  902. writeln(outfile,'}');
  903. block_type:=bt_no;
  904. flush(outfile);
  905. end;
  906. 1 : cplusblocklevel := -1;
  907. -1 : cplusblocklevel := 1;
  908. end;
  909. end;
  910. 60:
  911. begin
  912. write(outfile,'{$undef');
  913. copy_until_eol;
  914. writeln(outfile,'}');
  915. flush(outfile);
  916. end;
  917. 61:
  918. begin
  919. write(outfile,'{$error');
  920. copy_until_eol;
  921. writeln(outfile,'}');
  922. flush(outfile);
  923. end;
  924. 62:
  925. if NotInCPlusBlock then
  926. begin
  927. write(outfile,'{$include');
  928. copy_until_eol;
  929. writeln(outfile,'}');
  930. flush(outfile);
  931. block_type:=bt_no;
  932. end
  933. else
  934. skip_until_eol;
  935. 63:
  936. begin
  937. if cplusblocklevel > 0 then
  938. Inc(cplusblocklevel)
  939. else
  940. begin
  941. if cplusblocklevel < 0 then
  942. Dec(cplusblocklevel);
  943. write(outfile,'{$if');
  944. copy_until_eol;
  945. writeln(outfile,'}');
  946. flush(outfile);
  947. block_type:=bt_no;
  948. end;
  949. end;
  950. 64:
  951. if NotInCPlusBlock then
  952. (* preprocessor line info *)
  953. repeat
  954. c:=get_char;
  955. case c of
  956. newline :
  957. begin
  958. unget_char(c);
  959. exit;
  960. end;
  961. #0 :
  962. commenteof;
  963. end;
  964. until false
  965. else
  966. skip_until_eol;
  967. 65:
  968. begin
  969. if not stripinfo then
  970. begin
  971. write(outfile,'(** unsupported pragma');
  972. write(outfile,'#pragma');
  973. copy_until_eol;
  974. writeln(outfile,'*)');
  975. flush(outfile);
  976. end
  977. else
  978. skip_until_eol;
  979. block_type:=bt_no;
  980. end;
  981. 66:
  982. if NotInCPlusBlock then
  983. begin
  984. commentstr:='';
  985. in_define:=true;
  986. in_space_define:=1;
  987. return(DEFINE);
  988. end
  989. else
  990. skip_until_eol;
  991. 67:
  992. if NotInCPlusBlock then return(_CHAR) else skip_until_eol;
  993. 68:
  994. if NotInCPlusBlock then return(UNION) else skip_until_eol;
  995. 69:
  996. if NotInCPlusBlock then return(ENUM) else skip_until_eol;
  997. 70:
  998. if NotInCPlusBlock then return(STRUCT) else skip_until_eol;
  999. 71:
  1000. if NotInCPlusBlock then return(LGKLAMMER) else skip_until_eol;
  1001. 72:
  1002. if NotInCPlusBlock then return(RGKLAMMER) else skip_until_eol;
  1003. 73:
  1004. if NotInCPlusBlock then return(TYPEDEF) else skip_until_eol;
  1005. 74:
  1006. if NotInCPlusBlock then return(INT) else skip_until_eol;
  1007. 75:
  1008. if NotInCPlusBlock then return(SHORT) else skip_until_eol;
  1009. 76:
  1010. if NotInCPlusBlock then return(LONG) else skip_until_eol;
  1011. 77:
  1012. if NotInCPlusBlock then return(SIGNED) else skip_until_eol;
  1013. 78:
  1014. if NotInCPlusBlock then return(UNSIGNED) else skip_until_eol;
  1015. 79:
  1016. if NotInCPlusBlock then return(INT8) else skip_until_eol;
  1017. 80:
  1018. if NotInCPlusBlock then return(INT16) else skip_until_eol;
  1019. 81:
  1020. if NotInCPlusBlock then return(INT32) else skip_until_eol;
  1021. 82:
  1022. if NotInCPlusBlock then return(INT64) else skip_until_eol;
  1023. 83:
  1024. if NotInCPlusBlock then return(INT8) else skip_until_eol;
  1025. 84:
  1026. if NotInCPlusBlock then return(INT16) else skip_until_eol;
  1027. 85:
  1028. if NotInCPlusBlock then return(INT32) else skip_until_eol;
  1029. 86:
  1030. if NotInCPlusBlock then return(INT64) else skip_until_eol;
  1031. 87:
  1032. if NotInCPlusBlock then return(FLOAT) else skip_until_eol;
  1033. 88:
  1034. if NotInCPlusBlock then return(_CONST) else skip_until_eol;
  1035. 89:
  1036. if NotInCPlusBlock then return(_CONST) else skip_until_eol;
  1037. 90:
  1038. if NotInCPlusBlock then return(_FAR) else skip_until_eol;
  1039. 91:
  1040. if NotInCPlusBlock then return(_FAR) else skip_until_eol;
  1041. 92:
  1042. if NotInCPlusBlock then return(_NEAR) else skip_until_eol;
  1043. 93:
  1044. if NotInCPlusBlock then return(_NEAR) else skip_until_eol;
  1045. 94:
  1046. if NotInCPlusBlock then return(_HUGE) else skip_until_eol;
  1047. 95:
  1048. if NotInCPlusBlock then return(_HUGE) else skip_until_eol;
  1049. 96:
  1050. if NotInCPlusBlock then return(_WHILE) else skip_until_eol;
  1051. 97:
  1052. if NotInCPlusBlock then
  1053. begin
  1054. if in_space_define=1 then
  1055. in_space_define:=2;
  1056. return(ID);
  1057. end
  1058. else
  1059. skip_until_eol;
  1060. 98:
  1061. if NotInCPlusBlock then return(SEMICOLON) else skip_until_eol;
  1062. 99:
  1063. if NotInCPlusBlock then
  1064. begin
  1065. if (arglevel=0) and (in_space_define=2) then
  1066. begin
  1067. in_space_define:=0;
  1068. return(SPACE_DEFINE);
  1069. end;
  1070. end
  1071. else
  1072. skip_until_eol;
  1073. 100:
  1074. begin
  1075. if in_define then
  1076. begin
  1077. in_space_define:=0;
  1078. if cont_line then
  1079. begin
  1080. cont_line:=false;
  1081. end
  1082. else
  1083. begin
  1084. in_define:=false;
  1085. if NotInCPlusBlock then
  1086. return(NEW_LINE)
  1087. else
  1088. skip_until_eol
  1089. end;
  1090. end;
  1091. end;
  1092. 101:
  1093. begin
  1094. if in_define then
  1095. begin
  1096. cont_line:=true;
  1097. end
  1098. else
  1099. begin
  1100. writeln('Unexpected wrap of line ',yylineno);
  1101. writeln('"',yyline,'"');
  1102. return(256);
  1103. end;
  1104. end;
  1105. 102:
  1106. begin
  1107. writeln('Illegal character in line ',yylineno);
  1108. writeln('"',yyline,'"');
  1109. return(256);
  1110. end;
  1111. end;
  1112. end(*yyaction*);
  1113. (* DFA table: *)
  1114. type YYTRec = record
  1115. cc : set of Char;
  1116. s : Integer;
  1117. end;
  1118. const
  1119. yynmarks = 345;
  1120. yynmatches = 345;
  1121. yyntrans = 644;
  1122. yynstates = 371;
  1123. yyk : array [1..yynmarks] of Integer = (
  1124. { 0: }
  1125. { 1: }
  1126. { 2: }
  1127. 25,
  1128. 102,
  1129. { 3: }
  1130. 102,
  1131. { 4: }
  1132. 102,
  1133. { 5: }
  1134. 97,
  1135. 102,
  1136. { 6: }
  1137. 7,
  1138. 9,
  1139. 102,
  1140. { 7: }
  1141. 7,
  1142. 9,
  1143. 102,
  1144. { 8: }
  1145. 11,
  1146. 102,
  1147. { 9: }
  1148. 37,
  1149. 102,
  1150. { 10: }
  1151. 24,
  1152. 102,
  1153. { 11: }
  1154. 19,
  1155. 102,
  1156. { 12: }
  1157. 20,
  1158. 102,
  1159. { 13: }
  1160. 102,
  1161. { 14: }
  1162. 21,
  1163. 102,
  1164. { 15: }
  1165. 22,
  1166. 102,
  1167. { 16: }
  1168. 23,
  1169. 102,
  1170. { 17: }
  1171. 26,
  1172. 102,
  1173. { 18: }
  1174. 27,
  1175. 102,
  1176. { 19: }
  1177. 28,
  1178. 102,
  1179. { 20: }
  1180. 29,
  1181. 102,
  1182. { 21: }
  1183. 30,
  1184. 102,
  1185. { 22: }
  1186. 31,
  1187. 102,
  1188. { 23: }
  1189. 32,
  1190. 102,
  1191. { 24: }
  1192. 33,
  1193. 102,
  1194. { 25: }
  1195. 34,
  1196. 102,
  1197. { 26: }
  1198. 36,
  1199. 102,
  1200. { 27: }
  1201. 97,
  1202. 102,
  1203. { 28: }
  1204. 97,
  1205. 102,
  1206. { 29: }
  1207. 97,
  1208. 102,
  1209. { 30: }
  1210. 97,
  1211. 102,
  1212. { 31: }
  1213. 97,
  1214. 102,
  1215. { 32: }
  1216. 97,
  1217. 102,
  1218. { 33: }
  1219. 97,
  1220. 102,
  1221. { 34: }
  1222. 97,
  1223. 102,
  1224. { 35: }
  1225. 97,
  1226. 102,
  1227. { 36: }
  1228. 97,
  1229. 102,
  1230. { 37: }
  1231. 97,
  1232. 102,
  1233. { 38: }
  1234. 71,
  1235. 102,
  1236. { 39: }
  1237. 72,
  1238. 102,
  1239. { 40: }
  1240. 97,
  1241. 102,
  1242. { 41: }
  1243. 97,
  1244. 102,
  1245. { 42: }
  1246. 97,
  1247. 102,
  1248. { 43: }
  1249. 97,
  1250. 102,
  1251. { 44: }
  1252. 97,
  1253. 102,
  1254. { 45: }
  1255. 97,
  1256. 102,
  1257. { 46: }
  1258. 97,
  1259. 102,
  1260. { 47: }
  1261. 97,
  1262. 102,
  1263. { 48: }
  1264. 97,
  1265. 102,
  1266. { 49: }
  1267. 97,
  1268. 102,
  1269. { 50: }
  1270. 97,
  1271. 102,
  1272. { 51: }
  1273. 97,
  1274. 102,
  1275. { 52: }
  1276. 98,
  1277. 102,
  1278. { 53: }
  1279. 99,
  1280. 102,
  1281. { 54: }
  1282. 100,
  1283. { 55: }
  1284. 101,
  1285. 102,
  1286. { 56: }
  1287. 102,
  1288. { 57: }
  1289. 1,
  1290. { 58: }
  1291. 2,
  1292. { 59: }
  1293. { 60: }
  1294. 3,
  1295. { 61: }
  1296. { 62: }
  1297. 4,
  1298. { 63: }
  1299. { 64: }
  1300. { 65: }
  1301. 97,
  1302. { 66: }
  1303. 7,
  1304. 9,
  1305. { 67: }
  1306. 7,
  1307. { 68: }
  1308. 7,
  1309. { 69: }
  1310. { 70: }
  1311. { 71: }
  1312. 8,
  1313. { 72: }
  1314. 10,
  1315. { 73: }
  1316. 12,
  1317. { 74: }
  1318. 13,
  1319. { 75: }
  1320. 14,
  1321. { 76: }
  1322. 16,
  1323. { 77: }
  1324. 15,
  1325. { 78: }
  1326. 18,
  1327. { 79: }
  1328. 17,
  1329. { 80: }
  1330. { 81: }
  1331. { 82: }
  1332. { 83: }
  1333. { 84: }
  1334. { 85: }
  1335. { 86: }
  1336. { 87: }
  1337. { 88: }
  1338. 97,
  1339. { 89: }
  1340. 97,
  1341. { 90: }
  1342. 97,
  1343. { 91: }
  1344. 97,
  1345. { 92: }
  1346. 97,
  1347. { 93: }
  1348. 97,
  1349. { 94: }
  1350. 97,
  1351. { 95: }
  1352. 97,
  1353. { 96: }
  1354. 97,
  1355. { 97: }
  1356. 97,
  1357. { 98: }
  1358. 97,
  1359. { 99: }
  1360. 97,
  1361. { 100: }
  1362. 97,
  1363. { 101: }
  1364. 97,
  1365. { 102: }
  1366. 97,
  1367. { 103: }
  1368. 97,
  1369. { 104: }
  1370. 97,
  1371. { 105: }
  1372. 97,
  1373. { 106: }
  1374. 97,
  1375. { 107: }
  1376. 97,
  1377. { 108: }
  1378. 97,
  1379. { 109: }
  1380. 97,
  1381. { 110: }
  1382. 97,
  1383. { 111: }
  1384. 97,
  1385. { 112: }
  1386. 97,
  1387. { 113: }
  1388. 97,
  1389. { 114: }
  1390. 97,
  1391. { 115: }
  1392. 97,
  1393. { 116: }
  1394. 97,
  1395. { 117: }
  1396. 97,
  1397. { 118: }
  1398. { 119: }
  1399. 5,
  1400. { 120: }
  1401. 6,
  1402. { 121: }
  1403. 7,
  1404. { 122: }
  1405. 9,
  1406. { 123: }
  1407. { 124: }
  1408. 9,
  1409. { 125: }
  1410. 8,
  1411. { 126: }
  1412. 8,
  1413. { 127: }
  1414. 63,
  1415. { 128: }
  1416. { 129: }
  1417. { 130: }
  1418. { 131: }
  1419. { 132: }
  1420. { 133: }
  1421. { 134: }
  1422. { 135: }
  1423. { 136: }
  1424. { 137: }
  1425. 35,
  1426. { 138: }
  1427. 97,
  1428. { 139: }
  1429. 97,
  1430. { 140: }
  1431. 97,
  1432. { 141: }
  1433. 97,
  1434. { 142: }
  1435. 97,
  1436. { 143: }
  1437. 97,
  1438. { 144: }
  1439. 97,
  1440. { 145: }
  1441. 97,
  1442. { 146: }
  1443. 97,
  1444. { 147: }
  1445. 97,
  1446. { 148: }
  1447. 97,
  1448. { 149: }
  1449. 97,
  1450. { 150: }
  1451. 97,
  1452. { 151: }
  1453. 97,
  1454. { 152: }
  1455. 97,
  1456. { 153: }
  1457. 97,
  1458. { 154: }
  1459. 97,
  1460. { 155: }
  1461. 97,
  1462. { 156: }
  1463. 97,
  1464. { 157: }
  1465. 97,
  1466. { 158: }
  1467. 97,
  1468. { 159: }
  1469. 74,
  1470. 97,
  1471. { 160: }
  1472. 97,
  1473. { 161: }
  1474. 97,
  1475. { 162: }
  1476. 97,
  1477. { 163: }
  1478. 91,
  1479. 97,
  1480. { 164: }
  1481. 90,
  1482. 97,
  1483. { 165: }
  1484. 97,
  1485. { 166: }
  1486. 97,
  1487. { 167: }
  1488. 97,
  1489. { 168: }
  1490. 97,
  1491. { 169: }
  1492. 97,
  1493. { 170: }
  1494. 8,
  1495. { 171: }
  1496. { 172: }
  1497. { 173: }
  1498. 63,
  1499. { 174: }
  1500. { 175: }
  1501. { 176: }
  1502. { 177: }
  1503. { 178: }
  1504. { 179: }
  1505. 64,
  1506. { 180: }
  1507. { 181: }
  1508. { 182: }
  1509. 97,
  1510. { 183: }
  1511. 69,
  1512. 97,
  1513. { 184: }
  1514. 97,
  1515. { 185: }
  1516. 97,
  1517. { 186: }
  1518. 97,
  1519. { 187: }
  1520. 97,
  1521. { 188: }
  1522. 97,
  1523. { 189: }
  1524. 97,
  1525. { 190: }
  1526. 97,
  1527. { 191: }
  1528. 97,
  1529. { 192: }
  1530. 97,
  1531. { 193: }
  1532. 97,
  1533. { 194: }
  1534. 48,
  1535. 97,
  1536. { 195: }
  1537. 49,
  1538. 97,
  1539. { 196: }
  1540. 67,
  1541. 97,
  1542. { 197: }
  1543. 97,
  1544. { 198: }
  1545. 97,
  1546. { 199: }
  1547. 97,
  1548. { 200: }
  1549. 97,
  1550. { 201: }
  1551. 97,
  1552. { 202: }
  1553. 97,
  1554. { 203: }
  1555. 97,
  1556. { 204: }
  1557. 83,
  1558. 97,
  1559. { 205: }
  1560. 97,
  1561. { 206: }
  1562. 97,
  1563. { 207: }
  1564. 97,
  1565. { 208: }
  1566. 76,
  1567. 97,
  1568. { 209: }
  1569. 97,
  1570. { 210: }
  1571. 97,
  1572. { 211: }
  1573. 92,
  1574. 97,
  1575. { 212: }
  1576. 93,
  1577. 97,
  1578. { 213: }
  1579. 94,
  1580. 97,
  1581. { 214: }
  1582. 95,
  1583. 97,
  1584. { 215: }
  1585. 97,
  1586. { 216: }
  1587. { 217: }
  1588. { 218: }
  1589. 57,
  1590. { 219: }
  1591. 59,
  1592. { 220: }
  1593. { 221: }
  1594. { 222: }
  1595. { 223: }
  1596. { 224: }
  1597. { 225: }
  1598. 97,
  1599. { 226: }
  1600. 97,
  1601. { 227: }
  1602. 97,
  1603. { 228: }
  1604. 40,
  1605. 97,
  1606. { 229: }
  1607. 97,
  1608. { 230: }
  1609. 89,
  1610. 97,
  1611. { 231: }
  1612. 97,
  1613. { 232: }
  1614. 97,
  1615. { 233: }
  1616. 97,
  1617. { 234: }
  1618. 97,
  1619. { 235: }
  1620. 97,
  1621. { 236: }
  1622. 88,
  1623. 97,
  1624. { 237: }
  1625. 68,
  1626. 97,
  1627. { 238: }
  1628. 97,
  1629. { 239: }
  1630. 97,
  1631. { 240: }
  1632. 75,
  1633. 97,
  1634. { 241: }
  1635. 97,
  1636. { 242: }
  1637. 97,
  1638. { 243: }
  1639. 84,
  1640. 97,
  1641. { 244: }
  1642. 85,
  1643. 97,
  1644. { 245: }
  1645. 86,
  1646. 97,
  1647. { 246: }
  1648. 97,
  1649. { 247: }
  1650. 87,
  1651. 97,
  1652. { 248: }
  1653. 96,
  1654. 97,
  1655. { 249: }
  1656. { 250: }
  1657. { 251: }
  1658. 58,
  1659. { 252: }
  1660. 61,
  1661. { 253: }
  1662. 60,
  1663. { 254: }
  1664. { 255: }
  1665. { 256: }
  1666. 38,
  1667. 97,
  1668. { 257: }
  1669. 97,
  1670. { 258: }
  1671. 97,
  1672. { 259: }
  1673. 97,
  1674. { 260: }
  1675. 41,
  1676. 97,
  1677. { 261: }
  1678. 42,
  1679. 97,
  1680. { 262: }
  1681. 43,
  1682. 97,
  1683. { 263: }
  1684. 97,
  1685. { 264: }
  1686. 97,
  1687. { 265: }
  1688. 97,
  1689. { 266: }
  1690. 70,
  1691. 97,
  1692. { 267: }
  1693. 77,
  1694. 97,
  1695. { 268: }
  1696. 97,
  1697. { 269: }
  1698. 79,
  1699. 97,
  1700. { 270: }
  1701. 97,
  1702. { 271: }
  1703. 97,
  1704. { 272: }
  1705. 97,
  1706. { 273: }
  1707. 56,
  1708. { 274: }
  1709. { 275: }
  1710. { 276: }
  1711. { 277: }
  1712. 65,
  1713. { 278: }
  1714. 66,
  1715. { 279: }
  1716. 39,
  1717. 97,
  1718. { 280: }
  1719. 97,
  1720. { 281: }
  1721. 97,
  1722. { 282: }
  1723. 97,
  1724. { 283: }
  1725. 97,
  1726. { 284: }
  1727. 97,
  1728. { 285: }
  1729. 73,
  1730. 97,
  1731. { 286: }
  1732. 80,
  1733. 97,
  1734. { 287: }
  1735. 81,
  1736. 97,
  1737. { 288: }
  1738. 82,
  1739. 97,
  1740. { 289: }
  1741. { 290: }
  1742. { 291: }
  1743. { 292: }
  1744. 62,
  1745. { 293: }
  1746. 44,
  1747. 97,
  1748. { 294: }
  1749. 46,
  1750. 97,
  1751. { 295: }
  1752. 97,
  1753. { 296: }
  1754. 47,
  1755. 97,
  1756. { 297: }
  1757. 78,
  1758. 97,
  1759. { 298: }
  1760. { 299: }
  1761. { 300: }
  1762. 45,
  1763. 97,
  1764. { 301: }
  1765. { 302: }
  1766. { 303: }
  1767. { 304: }
  1768. { 305: }
  1769. { 306: }
  1770. { 307: }
  1771. { 308: }
  1772. { 309: }
  1773. { 310: }
  1774. { 311: }
  1775. { 312: }
  1776. 54,
  1777. { 313: }
  1778. { 314: }
  1779. { 315: }
  1780. 55,
  1781. { 316: }
  1782. { 317: }
  1783. { 318: }
  1784. { 319: }
  1785. { 320: }
  1786. { 321: }
  1787. { 322: }
  1788. { 323: }
  1789. { 324: }
  1790. { 325: }
  1791. { 326: }
  1792. { 327: }
  1793. { 328: }
  1794. { 329: }
  1795. { 330: }
  1796. { 331: }
  1797. { 332: }
  1798. { 333: }
  1799. { 334: }
  1800. { 335: }
  1801. { 336: }
  1802. { 337: }
  1803. { 338: }
  1804. { 339: }
  1805. { 340: }
  1806. { 341: }
  1807. { 342: }
  1808. { 343: }
  1809. { 344: }
  1810. 53,
  1811. { 345: }
  1812. { 346: }
  1813. { 347: }
  1814. { 348: }
  1815. { 349: }
  1816. 52,
  1817. { 350: }
  1818. { 351: }
  1819. { 352: }
  1820. { 353: }
  1821. { 354: }
  1822. { 355: }
  1823. { 356: }
  1824. { 357: }
  1825. { 358: }
  1826. { 359: }
  1827. { 360: }
  1828. { 361: }
  1829. { 362: }
  1830. { 363: }
  1831. { 364: }
  1832. { 365: }
  1833. { 366: }
  1834. { 367: }
  1835. { 368: }
  1836. 51,
  1837. { 369: }
  1838. { 370: }
  1839. 50
  1840. );
  1841. yym : array [1..yynmatches] of Integer = (
  1842. { 0: }
  1843. { 1: }
  1844. { 2: }
  1845. 25,
  1846. 102,
  1847. { 3: }
  1848. 102,
  1849. { 4: }
  1850. 102,
  1851. { 5: }
  1852. 97,
  1853. 102,
  1854. { 6: }
  1855. 7,
  1856. 9,
  1857. 102,
  1858. { 7: }
  1859. 7,
  1860. 9,
  1861. 102,
  1862. { 8: }
  1863. 11,
  1864. 102,
  1865. { 9: }
  1866. 37,
  1867. 102,
  1868. { 10: }
  1869. 24,
  1870. 102,
  1871. { 11: }
  1872. 19,
  1873. 102,
  1874. { 12: }
  1875. 20,
  1876. 102,
  1877. { 13: }
  1878. 102,
  1879. { 14: }
  1880. 21,
  1881. 102,
  1882. { 15: }
  1883. 22,
  1884. 102,
  1885. { 16: }
  1886. 23,
  1887. 102,
  1888. { 17: }
  1889. 26,
  1890. 102,
  1891. { 18: }
  1892. 27,
  1893. 102,
  1894. { 19: }
  1895. 28,
  1896. 102,
  1897. { 20: }
  1898. 29,
  1899. 102,
  1900. { 21: }
  1901. 30,
  1902. 102,
  1903. { 22: }
  1904. 31,
  1905. 102,
  1906. { 23: }
  1907. 32,
  1908. 102,
  1909. { 24: }
  1910. 33,
  1911. 102,
  1912. { 25: }
  1913. 34,
  1914. 102,
  1915. { 26: }
  1916. 36,
  1917. 102,
  1918. { 27: }
  1919. 97,
  1920. 102,
  1921. { 28: }
  1922. 97,
  1923. 102,
  1924. { 29: }
  1925. 97,
  1926. 102,
  1927. { 30: }
  1928. 97,
  1929. 102,
  1930. { 31: }
  1931. 97,
  1932. 102,
  1933. { 32: }
  1934. 97,
  1935. 102,
  1936. { 33: }
  1937. 97,
  1938. 102,
  1939. { 34: }
  1940. 97,
  1941. 102,
  1942. { 35: }
  1943. 97,
  1944. 102,
  1945. { 36: }
  1946. 97,
  1947. 102,
  1948. { 37: }
  1949. 97,
  1950. 102,
  1951. { 38: }
  1952. 71,
  1953. 102,
  1954. { 39: }
  1955. 72,
  1956. 102,
  1957. { 40: }
  1958. 97,
  1959. 102,
  1960. { 41: }
  1961. 97,
  1962. 102,
  1963. { 42: }
  1964. 97,
  1965. 102,
  1966. { 43: }
  1967. 97,
  1968. 102,
  1969. { 44: }
  1970. 97,
  1971. 102,
  1972. { 45: }
  1973. 97,
  1974. 102,
  1975. { 46: }
  1976. 97,
  1977. 102,
  1978. { 47: }
  1979. 97,
  1980. 102,
  1981. { 48: }
  1982. 97,
  1983. 102,
  1984. { 49: }
  1985. 97,
  1986. 102,
  1987. { 50: }
  1988. 97,
  1989. 102,
  1990. { 51: }
  1991. 97,
  1992. 102,
  1993. { 52: }
  1994. 98,
  1995. 102,
  1996. { 53: }
  1997. 99,
  1998. 102,
  1999. { 54: }
  2000. 100,
  2001. { 55: }
  2002. 102,
  2003. { 56: }
  2004. 102,
  2005. { 57: }
  2006. 1,
  2007. { 58: }
  2008. 2,
  2009. { 59: }
  2010. { 60: }
  2011. 3,
  2012. { 61: }
  2013. { 62: }
  2014. 4,
  2015. { 63: }
  2016. { 64: }
  2017. { 65: }
  2018. 97,
  2019. { 66: }
  2020. 7,
  2021. 9,
  2022. { 67: }
  2023. 7,
  2024. { 68: }
  2025. 7,
  2026. { 69: }
  2027. { 70: }
  2028. { 71: }
  2029. 8,
  2030. { 72: }
  2031. 10,
  2032. { 73: }
  2033. 12,
  2034. { 74: }
  2035. 13,
  2036. { 75: }
  2037. 14,
  2038. { 76: }
  2039. 16,
  2040. { 77: }
  2041. 15,
  2042. { 78: }
  2043. 18,
  2044. { 79: }
  2045. 17,
  2046. { 80: }
  2047. { 81: }
  2048. { 82: }
  2049. { 83: }
  2050. { 84: }
  2051. { 85: }
  2052. { 86: }
  2053. { 87: }
  2054. { 88: }
  2055. 97,
  2056. { 89: }
  2057. 97,
  2058. { 90: }
  2059. 97,
  2060. { 91: }
  2061. 97,
  2062. { 92: }
  2063. 97,
  2064. { 93: }
  2065. 97,
  2066. { 94: }
  2067. 97,
  2068. { 95: }
  2069. 97,
  2070. { 96: }
  2071. 97,
  2072. { 97: }
  2073. 97,
  2074. { 98: }
  2075. 97,
  2076. { 99: }
  2077. 97,
  2078. { 100: }
  2079. 97,
  2080. { 101: }
  2081. 97,
  2082. { 102: }
  2083. 97,
  2084. { 103: }
  2085. 97,
  2086. { 104: }
  2087. 97,
  2088. { 105: }
  2089. 97,
  2090. { 106: }
  2091. 97,
  2092. { 107: }
  2093. 97,
  2094. { 108: }
  2095. 97,
  2096. { 109: }
  2097. 97,
  2098. { 110: }
  2099. 97,
  2100. { 111: }
  2101. 97,
  2102. { 112: }
  2103. 97,
  2104. { 113: }
  2105. 97,
  2106. { 114: }
  2107. 97,
  2108. { 115: }
  2109. 97,
  2110. { 116: }
  2111. 97,
  2112. { 117: }
  2113. 97,
  2114. { 118: }
  2115. 101,
  2116. { 119: }
  2117. 5,
  2118. { 120: }
  2119. 6,
  2120. { 121: }
  2121. 7,
  2122. { 122: }
  2123. 9,
  2124. { 123: }
  2125. { 124: }
  2126. 9,
  2127. { 125: }
  2128. 8,
  2129. { 126: }
  2130. 8,
  2131. { 127: }
  2132. 63,
  2133. { 128: }
  2134. { 129: }
  2135. { 130: }
  2136. { 131: }
  2137. { 132: }
  2138. { 133: }
  2139. { 134: }
  2140. { 135: }
  2141. { 136: }
  2142. { 137: }
  2143. 35,
  2144. { 138: }
  2145. 97,
  2146. { 139: }
  2147. 97,
  2148. { 140: }
  2149. 97,
  2150. { 141: }
  2151. 97,
  2152. { 142: }
  2153. 97,
  2154. { 143: }
  2155. 97,
  2156. { 144: }
  2157. 97,
  2158. { 145: }
  2159. 97,
  2160. { 146: }
  2161. 97,
  2162. { 147: }
  2163. 97,
  2164. { 148: }
  2165. 97,
  2166. { 149: }
  2167. 97,
  2168. { 150: }
  2169. 97,
  2170. { 151: }
  2171. 97,
  2172. { 152: }
  2173. 97,
  2174. { 153: }
  2175. 97,
  2176. { 154: }
  2177. 97,
  2178. { 155: }
  2179. 97,
  2180. { 156: }
  2181. 97,
  2182. { 157: }
  2183. 97,
  2184. { 158: }
  2185. 97,
  2186. { 159: }
  2187. 74,
  2188. 97,
  2189. { 160: }
  2190. 97,
  2191. { 161: }
  2192. 97,
  2193. { 162: }
  2194. 97,
  2195. { 163: }
  2196. 91,
  2197. 97,
  2198. { 164: }
  2199. 90,
  2200. 97,
  2201. { 165: }
  2202. 97,
  2203. { 166: }
  2204. 97,
  2205. { 167: }
  2206. 97,
  2207. { 168: }
  2208. 97,
  2209. { 169: }
  2210. 97,
  2211. { 170: }
  2212. 8,
  2213. { 171: }
  2214. { 172: }
  2215. { 173: }
  2216. 63,
  2217. { 174: }
  2218. { 175: }
  2219. { 176: }
  2220. { 177: }
  2221. { 178: }
  2222. { 179: }
  2223. 64,
  2224. { 180: }
  2225. { 181: }
  2226. { 182: }
  2227. 97,
  2228. { 183: }
  2229. 69,
  2230. 97,
  2231. { 184: }
  2232. 97,
  2233. { 185: }
  2234. 97,
  2235. { 186: }
  2236. 97,
  2237. { 187: }
  2238. 97,
  2239. { 188: }
  2240. 97,
  2241. { 189: }
  2242. 97,
  2243. { 190: }
  2244. 97,
  2245. { 191: }
  2246. 97,
  2247. { 192: }
  2248. 97,
  2249. { 193: }
  2250. 97,
  2251. { 194: }
  2252. 48,
  2253. 97,
  2254. { 195: }
  2255. 49,
  2256. 97,
  2257. { 196: }
  2258. 67,
  2259. 97,
  2260. { 197: }
  2261. 97,
  2262. { 198: }
  2263. 97,
  2264. { 199: }
  2265. 97,
  2266. { 200: }
  2267. 97,
  2268. { 201: }
  2269. 97,
  2270. { 202: }
  2271. 97,
  2272. { 203: }
  2273. 97,
  2274. { 204: }
  2275. 83,
  2276. 97,
  2277. { 205: }
  2278. 97,
  2279. { 206: }
  2280. 97,
  2281. { 207: }
  2282. 97,
  2283. { 208: }
  2284. 76,
  2285. 97,
  2286. { 209: }
  2287. 97,
  2288. { 210: }
  2289. 97,
  2290. { 211: }
  2291. 92,
  2292. 97,
  2293. { 212: }
  2294. 93,
  2295. 97,
  2296. { 213: }
  2297. 94,
  2298. 97,
  2299. { 214: }
  2300. 95,
  2301. 97,
  2302. { 215: }
  2303. 97,
  2304. { 216: }
  2305. { 217: }
  2306. { 218: }
  2307. 57,
  2308. { 219: }
  2309. 59,
  2310. { 220: }
  2311. { 221: }
  2312. { 222: }
  2313. { 223: }
  2314. { 224: }
  2315. { 225: }
  2316. 97,
  2317. { 226: }
  2318. 97,
  2319. { 227: }
  2320. 97,
  2321. { 228: }
  2322. 40,
  2323. 97,
  2324. { 229: }
  2325. 97,
  2326. { 230: }
  2327. 89,
  2328. 97,
  2329. { 231: }
  2330. 97,
  2331. { 232: }
  2332. 97,
  2333. { 233: }
  2334. 97,
  2335. { 234: }
  2336. 97,
  2337. { 235: }
  2338. 97,
  2339. { 236: }
  2340. 88,
  2341. 97,
  2342. { 237: }
  2343. 68,
  2344. 97,
  2345. { 238: }
  2346. 97,
  2347. { 239: }
  2348. 97,
  2349. { 240: }
  2350. 75,
  2351. 97,
  2352. { 241: }
  2353. 97,
  2354. { 242: }
  2355. 97,
  2356. { 243: }
  2357. 84,
  2358. 97,
  2359. { 244: }
  2360. 85,
  2361. 97,
  2362. { 245: }
  2363. 86,
  2364. 97,
  2365. { 246: }
  2366. 97,
  2367. { 247: }
  2368. 87,
  2369. 97,
  2370. { 248: }
  2371. 96,
  2372. 97,
  2373. { 249: }
  2374. { 250: }
  2375. { 251: }
  2376. 58,
  2377. { 252: }
  2378. 61,
  2379. { 253: }
  2380. 60,
  2381. { 254: }
  2382. { 255: }
  2383. { 256: }
  2384. 38,
  2385. 97,
  2386. { 257: }
  2387. 97,
  2388. { 258: }
  2389. 97,
  2390. { 259: }
  2391. 97,
  2392. { 260: }
  2393. 41,
  2394. 97,
  2395. { 261: }
  2396. 42,
  2397. 97,
  2398. { 262: }
  2399. 43,
  2400. 97,
  2401. { 263: }
  2402. 97,
  2403. { 264: }
  2404. 97,
  2405. { 265: }
  2406. 97,
  2407. { 266: }
  2408. 70,
  2409. 97,
  2410. { 267: }
  2411. 77,
  2412. 97,
  2413. { 268: }
  2414. 97,
  2415. { 269: }
  2416. 79,
  2417. 97,
  2418. { 270: }
  2419. 97,
  2420. { 271: }
  2421. 97,
  2422. { 272: }
  2423. 97,
  2424. { 273: }
  2425. 56,
  2426. { 274: }
  2427. { 275: }
  2428. { 276: }
  2429. { 277: }
  2430. 65,
  2431. { 278: }
  2432. 66,
  2433. { 279: }
  2434. 39,
  2435. 97,
  2436. { 280: }
  2437. 97,
  2438. { 281: }
  2439. 97,
  2440. { 282: }
  2441. 97,
  2442. { 283: }
  2443. 97,
  2444. { 284: }
  2445. 97,
  2446. { 285: }
  2447. 73,
  2448. 97,
  2449. { 286: }
  2450. 80,
  2451. 97,
  2452. { 287: }
  2453. 81,
  2454. 97,
  2455. { 288: }
  2456. 82,
  2457. 97,
  2458. { 289: }
  2459. { 290: }
  2460. { 291: }
  2461. { 292: }
  2462. 62,
  2463. { 293: }
  2464. 44,
  2465. 97,
  2466. { 294: }
  2467. 46,
  2468. 97,
  2469. { 295: }
  2470. 97,
  2471. { 296: }
  2472. 47,
  2473. 97,
  2474. { 297: }
  2475. 78,
  2476. 97,
  2477. { 298: }
  2478. { 299: }
  2479. { 300: }
  2480. 45,
  2481. 97,
  2482. { 301: }
  2483. { 302: }
  2484. { 303: }
  2485. { 304: }
  2486. { 305: }
  2487. { 306: }
  2488. { 307: }
  2489. { 308: }
  2490. { 309: }
  2491. { 310: }
  2492. { 311: }
  2493. { 312: }
  2494. 54,
  2495. { 313: }
  2496. { 314: }
  2497. { 315: }
  2498. 55,
  2499. { 316: }
  2500. { 317: }
  2501. { 318: }
  2502. { 319: }
  2503. { 320: }
  2504. { 321: }
  2505. { 322: }
  2506. { 323: }
  2507. { 324: }
  2508. { 325: }
  2509. { 326: }
  2510. { 327: }
  2511. { 328: }
  2512. { 329: }
  2513. { 330: }
  2514. { 331: }
  2515. { 332: }
  2516. { 333: }
  2517. { 334: }
  2518. { 335: }
  2519. { 336: }
  2520. { 337: }
  2521. { 338: }
  2522. { 339: }
  2523. { 340: }
  2524. { 341: }
  2525. { 342: }
  2526. { 343: }
  2527. { 344: }
  2528. 53,
  2529. { 345: }
  2530. { 346: }
  2531. { 347: }
  2532. { 348: }
  2533. { 349: }
  2534. 52,
  2535. { 350: }
  2536. { 351: }
  2537. { 352: }
  2538. { 353: }
  2539. { 354: }
  2540. { 355: }
  2541. { 356: }
  2542. { 357: }
  2543. { 358: }
  2544. { 359: }
  2545. { 360: }
  2546. { 361: }
  2547. { 362: }
  2548. { 363: }
  2549. { 364: }
  2550. { 365: }
  2551. { 366: }
  2552. { 367: }
  2553. { 368: }
  2554. 51,
  2555. { 369: }
  2556. { 370: }
  2557. 50
  2558. );
  2559. yyt : array [1..yyntrans] of YYTrec = (
  2560. { 0: }
  2561. ( cc: [ #1..#8,#11,#13..#31,'$','%','@','^','`',#127..#255 ]; s: 56),
  2562. ( cc: [ #9,#12,' ' ]; s: 53),
  2563. ( cc: [ #10 ]; s: 54),
  2564. ( cc: [ '!' ]; s: 10),
  2565. ( cc: [ '"' ]; s: 3),
  2566. ( cc: [ '#' ]; s: 13),
  2567. ( cc: [ '&' ]; s: 15),
  2568. ( cc: [ '''' ]; s: 4),
  2569. ( cc: [ '(' ]; s: 23),
  2570. ( cc: [ ')' ]; s: 24),
  2571. ( cc: [ '*' ]; s: 25),
  2572. ( cc: [ '+' ]; s: 17),
  2573. ( cc: [ ',' ]; s: 20),
  2574. ( cc: [ '-' ]; s: 8),
  2575. ( cc: [ '.' ]; s: 26),
  2576. ( cc: [ '/' ]; s: 2),
  2577. ( cc: [ '0' ]; s: 7),
  2578. ( cc: [ '1'..'9' ]; s: 6),
  2579. ( cc: [ ':' ]; s: 19),
  2580. ( cc: [ ';' ]; s: 52),
  2581. ( cc: [ '<' ]; s: 12),
  2582. ( cc: [ '=' ]; s: 9),
  2583. ( cc: [ '>' ]; s: 11),
  2584. ( cc: [ '?' ]; s: 18),
  2585. ( cc: [ 'A','B','D','G','I'..'K','M','O','Q','R',
  2586. 'T','U','X'..'Z','a','b','d','g','j','k',
  2587. 'm','o'..'r','x'..'z' ]; s: 51),
  2588. ( cc: [ 'C' ]; s: 29),
  2589. ( cc: [ 'E' ]; s: 32),
  2590. ( cc: [ 'F' ]; s: 45),
  2591. ( cc: [ 'H' ]; s: 48),
  2592. ( cc: [ 'L' ]; s: 5),
  2593. ( cc: [ 'N' ]; s: 46),
  2594. ( cc: [ 'P' ]; s: 30),
  2595. ( cc: [ 'S' ]; s: 28),
  2596. ( cc: [ 'V' ]; s: 34),
  2597. ( cc: [ 'W' ]; s: 31),
  2598. ( cc: [ '[' ]; s: 21),
  2599. ( cc: [ '\' ]; s: 55),
  2600. ( cc: [ ']' ]; s: 22),
  2601. ( cc: [ '_' ]; s: 43),
  2602. ( cc: [ 'c' ]; s: 35),
  2603. ( cc: [ 'e' ]; s: 27),
  2604. ( cc: [ 'f' ]; s: 44),
  2605. ( cc: [ 'h' ]; s: 49),
  2606. ( cc: [ 'i' ]; s: 41),
  2607. ( cc: [ 'l' ]; s: 42),
  2608. ( cc: [ 'n' ]; s: 47),
  2609. ( cc: [ 's' ]; s: 37),
  2610. ( cc: [ 't' ]; s: 40),
  2611. ( cc: [ 'u' ]; s: 36),
  2612. ( cc: [ 'v' ]; s: 33),
  2613. ( cc: [ 'w' ]; s: 50),
  2614. ( cc: [ '{' ]; s: 38),
  2615. ( cc: [ '|' ]; s: 14),
  2616. ( cc: [ '}' ]; s: 39),
  2617. ( cc: [ '~' ]; s: 16),
  2618. { 1: }
  2619. ( cc: [ #1..#8,#11,#13..#31,'$','%','@','^','`',#127..#255 ]; s: 56),
  2620. ( cc: [ #9,#12,' ' ]; s: 53),
  2621. ( cc: [ #10 ]; s: 54),
  2622. ( cc: [ '!' ]; s: 10),
  2623. ( cc: [ '"' ]; s: 3),
  2624. ( cc: [ '#' ]; s: 13),
  2625. ( cc: [ '&' ]; s: 15),
  2626. ( cc: [ '''' ]; s: 4),
  2627. ( cc: [ '(' ]; s: 23),
  2628. ( cc: [ ')' ]; s: 24),
  2629. ( cc: [ '*' ]; s: 25),
  2630. ( cc: [ '+' ]; s: 17),
  2631. ( cc: [ ',' ]; s: 20),
  2632. ( cc: [ '-' ]; s: 8),
  2633. ( cc: [ '.' ]; s: 26),
  2634. ( cc: [ '/' ]; s: 2),
  2635. ( cc: [ '0' ]; s: 7),
  2636. ( cc: [ '1'..'9' ]; s: 6),
  2637. ( cc: [ ':' ]; s: 19),
  2638. ( cc: [ ';' ]; s: 52),
  2639. ( cc: [ '<' ]; s: 12),
  2640. ( cc: [ '=' ]; s: 9),
  2641. ( cc: [ '>' ]; s: 11),
  2642. ( cc: [ '?' ]; s: 18),
  2643. ( cc: [ 'A','B','D','G','I'..'K','M','O','Q','R',
  2644. 'T','U','X'..'Z','a','b','d','g','j','k',
  2645. 'm','o'..'r','x'..'z' ]; s: 51),
  2646. ( cc: [ 'C' ]; s: 29),
  2647. ( cc: [ 'E' ]; s: 32),
  2648. ( cc: [ 'F' ]; s: 45),
  2649. ( cc: [ 'H' ]; s: 48),
  2650. ( cc: [ 'L' ]; s: 5),
  2651. ( cc: [ 'N' ]; s: 46),
  2652. ( cc: [ 'P' ]; s: 30),
  2653. ( cc: [ 'S' ]; s: 28),
  2654. ( cc: [ 'V' ]; s: 34),
  2655. ( cc: [ 'W' ]; s: 31),
  2656. ( cc: [ '[' ]; s: 21),
  2657. ( cc: [ '\' ]; s: 55),
  2658. ( cc: [ ']' ]; s: 22),
  2659. ( cc: [ '_' ]; s: 43),
  2660. ( cc: [ 'c' ]; s: 35),
  2661. ( cc: [ 'e' ]; s: 27),
  2662. ( cc: [ 'f' ]; s: 44),
  2663. ( cc: [ 'h' ]; s: 49),
  2664. ( cc: [ 'i' ]; s: 41),
  2665. ( cc: [ 'l' ]; s: 42),
  2666. ( cc: [ 'n' ]; s: 47),
  2667. ( cc: [ 's' ]; s: 37),
  2668. ( cc: [ 't' ]; s: 40),
  2669. ( cc: [ 'u' ]; s: 36),
  2670. ( cc: [ 'v' ]; s: 33),
  2671. ( cc: [ 'w' ]; s: 50),
  2672. ( cc: [ '{' ]; s: 38),
  2673. ( cc: [ '|' ]; s: 14),
  2674. ( cc: [ '}' ]; s: 39),
  2675. ( cc: [ '~' ]; s: 16),
  2676. { 2: }
  2677. ( cc: [ '*' ]; s: 57),
  2678. ( cc: [ '/' ]; s: 58),
  2679. { 3: }
  2680. ( cc: [ #1..'!','#'..#255 ]; s: 59),
  2681. ( cc: [ '"' ]; s: 60),
  2682. { 4: }
  2683. ( cc: [ #1..'&','('..#255 ]; s: 61),
  2684. ( cc: [ '''' ]; s: 62),
  2685. { 5: }
  2686. ( cc: [ '"' ]; s: 63),
  2687. ( cc: [ '''' ]; s: 64),
  2688. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  2689. { 6: }
  2690. ( cc: [ '.' ]; s: 69),
  2691. ( cc: [ '0'..'9' ]; s: 66),
  2692. ( cc: [ 'E','e' ]; s: 70),
  2693. ( cc: [ 'L','l' ]; s: 68),
  2694. ( cc: [ 'U','u' ]; s: 67),
  2695. { 7: }
  2696. ( cc: [ '.' ]; s: 69),
  2697. ( cc: [ '0'..'9' ]; s: 66),
  2698. ( cc: [ 'E','e' ]; s: 70),
  2699. ( cc: [ 'L','l' ]; s: 68),
  2700. ( cc: [ 'U','u' ]; s: 67),
  2701. ( cc: [ 'x' ]; s: 71),
  2702. { 8: }
  2703. ( cc: [ '>' ]; s: 72),
  2704. { 9: }
  2705. ( cc: [ '=' ]; s: 73),
  2706. { 10: }
  2707. ( cc: [ '=' ]; s: 74),
  2708. { 11: }
  2709. ( cc: [ '=' ]; s: 75),
  2710. ( cc: [ '>' ]; s: 76),
  2711. { 12: }
  2712. ( cc: [ '<' ]; s: 78),
  2713. ( cc: [ '=' ]; s: 77),
  2714. { 13: }
  2715. ( cc: [ #9 ]; s: 81),
  2716. ( cc: [ ' ' ]; s: 84),
  2717. ( cc: [ '#' ]; s: 79),
  2718. ( cc: [ 'd' ]; s: 86),
  2719. ( cc: [ 'e' ]; s: 82),
  2720. ( cc: [ 'i' ]; s: 80),
  2721. ( cc: [ 'p' ]; s: 85),
  2722. ( cc: [ 'u' ]; s: 83),
  2723. { 14: }
  2724. { 15: }
  2725. { 16: }
  2726. { 17: }
  2727. { 18: }
  2728. { 19: }
  2729. { 20: }
  2730. { 21: }
  2731. { 22: }
  2732. { 23: }
  2733. { 24: }
  2734. { 25: }
  2735. { 26: }
  2736. ( cc: [ '.' ]; s: 87),
  2737. { 27: }
  2738. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'w','y','z' ]; s: 65),
  2739. ( cc: [ 'n' ]; s: 89),
  2740. ( cc: [ 'x' ]; s: 88),
  2741. { 28: }
  2742. ( cc: [ '0'..'9','A'..'S','U'..'X','Z','_','a'..'z' ]; s: 65),
  2743. ( cc: [ 'T' ]; s: 90),
  2744. ( cc: [ 'Y' ]; s: 91),
  2745. { 29: }
  2746. ( cc: [ '0'..'9','B','C','E'..'N','P'..'Z','_','a'..'z' ]; s: 65),
  2747. ( cc: [ 'A' ]; s: 93),
  2748. ( cc: [ 'D' ]; s: 92),
  2749. ( cc: [ 'O' ]; s: 94),
  2750. { 30: }
  2751. ( cc: [ '0'..'9','B'..'Z','_','a'..'z' ]; s: 65),
  2752. ( cc: [ 'A' ]; s: 95),
  2753. { 31: }
  2754. ( cc: [ '0'..'9','A'..'H','J'..'Z','_','a'..'z' ]; s: 65),
  2755. ( cc: [ 'I' ]; s: 96),
  2756. { 32: }
  2757. ( cc: [ '0'..'9','A'..'W','Y','Z','_','a'..'z' ]; s: 65),
  2758. ( cc: [ 'X' ]; s: 97),
  2759. { 33: }
  2760. ( cc: [ '0'..'9','A'..'Z','_','a'..'n','p'..'z' ]; s: 65),
  2761. ( cc: [ 'o' ]; s: 98),
  2762. { 34: }
  2763. ( cc: [ '0'..'9','A'..'N','P'..'Z','_','a'..'z' ]; s: 65),
  2764. ( cc: [ 'O' ]; s: 99),
  2765. { 35: }
  2766. ( cc: [ '0'..'9','A'..'Z','_','a'..'g','i'..'n','p'..'z' ]; s: 65),
  2767. ( cc: [ 'h' ]; s: 100),
  2768. ( cc: [ 'o' ]; s: 101),
  2769. { 36: }
  2770. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'z' ]; s: 65),
  2771. ( cc: [ 'n' ]; s: 102),
  2772. { 37: }
  2773. ( cc: [ '0'..'9','A'..'Z','_','a'..'g','j'..'s','u'..'z' ]; s: 65),
  2774. ( cc: [ 'h' ]; s: 104),
  2775. ( cc: [ 'i' ]; s: 105),
  2776. ( cc: [ 't' ]; s: 103),
  2777. { 38: }
  2778. { 39: }
  2779. { 40: }
  2780. ( cc: [ '0'..'9','A'..'Z','_','a'..'x','z' ]; s: 65),
  2781. ( cc: [ 'y' ]; s: 106),
  2782. { 41: }
  2783. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'z' ]; s: 65),
  2784. ( cc: [ 'n' ]; s: 107),
  2785. { 42: }
  2786. ( cc: [ '0'..'9','A'..'Z','_','a'..'n','p'..'z' ]; s: 65),
  2787. ( cc: [ 'o' ]; s: 108),
  2788. { 43: }
  2789. ( cc: [ '0'..'9','A'..'Z','a'..'z' ]; s: 65),
  2790. ( cc: [ '_' ]; s: 109),
  2791. { 44: }
  2792. ( cc: [ '0'..'9','A'..'Z','_','b'..'k','m'..'z' ]; s: 65),
  2793. ( cc: [ 'a' ]; s: 111),
  2794. ( cc: [ 'l' ]; s: 110),
  2795. { 45: }
  2796. ( cc: [ '0'..'9','B'..'Z','_','a'..'z' ]; s: 65),
  2797. ( cc: [ 'A' ]; s: 112),
  2798. { 46: }
  2799. ( cc: [ '0'..'9','A'..'D','F'..'Z','_','a'..'z' ]; s: 65),
  2800. ( cc: [ 'E' ]; s: 113),
  2801. { 47: }
  2802. ( cc: [ '0'..'9','A'..'Z','_','a'..'d','f'..'z' ]; s: 65),
  2803. ( cc: [ 'e' ]; s: 114),
  2804. { 48: }
  2805. ( cc: [ '0'..'9','A'..'T','V'..'Z','_','a'..'z' ]; s: 65),
  2806. ( cc: [ 'U' ]; s: 115),
  2807. { 49: }
  2808. ( cc: [ '0'..'9','A'..'Z','_','a'..'t','v'..'z' ]; s: 65),
  2809. ( cc: [ 'u' ]; s: 116),
  2810. { 50: }
  2811. ( cc: [ '0'..'9','A'..'Z','_','a'..'g','i'..'z' ]; s: 65),
  2812. ( cc: [ 'h' ]; s: 117),
  2813. { 51: }
  2814. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  2815. { 52: }
  2816. { 53: }
  2817. { 54: }
  2818. { 55: }
  2819. ( cc: [ #10 ]; s: 118),
  2820. { 56: }
  2821. { 57: }
  2822. { 58: }
  2823. { 59: }
  2824. ( cc: [ #1..'!','#'..#255 ]; s: 59),
  2825. ( cc: [ '"' ]; s: 60),
  2826. { 60: }
  2827. { 61: }
  2828. ( cc: [ #1..'&','('..#255 ]; s: 61),
  2829. ( cc: [ '''' ]; s: 62),
  2830. { 62: }
  2831. { 63: }
  2832. ( cc: [ #1..'!','#'..#255 ]; s: 63),
  2833. ( cc: [ '"' ]; s: 119),
  2834. { 64: }
  2835. ( cc: [ #1..'&','('..#255 ]; s: 64),
  2836. ( cc: [ '''' ]; s: 120),
  2837. { 65: }
  2838. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  2839. { 66: }
  2840. ( cc: [ '.' ]; s: 69),
  2841. ( cc: [ '0'..'9' ]; s: 66),
  2842. ( cc: [ 'E','e' ]; s: 70),
  2843. ( cc: [ 'L','l' ]; s: 68),
  2844. ( cc: [ 'U','u' ]; s: 67),
  2845. { 67: }
  2846. ( cc: [ 'L','l' ]; s: 68),
  2847. { 68: }
  2848. ( cc: [ 'L','l' ]; s: 121),
  2849. { 69: }
  2850. ( cc: [ '0'..'9' ]; s: 122),
  2851. { 70: }
  2852. ( cc: [ '+','-' ]; s: 123),
  2853. ( cc: [ '0'..'9' ]; s: 124),
  2854. { 71: }
  2855. ( cc: [ '0'..'9','A'..'F','a'..'f' ]; s: 71),
  2856. ( cc: [ 'L','l' ]; s: 126),
  2857. ( cc: [ 'U','u' ]; s: 125),
  2858. { 72: }
  2859. { 73: }
  2860. { 74: }
  2861. { 75: }
  2862. { 76: }
  2863. { 77: }
  2864. { 78: }
  2865. { 79: }
  2866. { 80: }
  2867. ( cc: [ 'f' ]; s: 127),
  2868. ( cc: [ 'n' ]; s: 128),
  2869. { 81: }
  2870. ( cc: [ #9,' ' ]; s: 81),
  2871. ( cc: [ 'd' ]; s: 86),
  2872. ( cc: [ 'e' ]; s: 82),
  2873. ( cc: [ 'i' ]; s: 129),
  2874. ( cc: [ 'p' ]; s: 85),
  2875. ( cc: [ 'u' ]; s: 83),
  2876. { 82: }
  2877. ( cc: [ 'l' ]; s: 130),
  2878. ( cc: [ 'n' ]; s: 131),
  2879. ( cc: [ 'r' ]; s: 132),
  2880. { 83: }
  2881. ( cc: [ 'n' ]; s: 133),
  2882. { 84: }
  2883. ( cc: [ #9,' ' ]; s: 81),
  2884. ( cc: [ '0'..'9' ]; s: 134),
  2885. ( cc: [ 'd' ]; s: 86),
  2886. ( cc: [ 'e' ]; s: 82),
  2887. ( cc: [ 'i' ]; s: 129),
  2888. ( cc: [ 'p' ]; s: 85),
  2889. ( cc: [ 'u' ]; s: 83),
  2890. { 85: }
  2891. ( cc: [ 'r' ]; s: 135),
  2892. { 86: }
  2893. ( cc: [ 'e' ]; s: 136),
  2894. { 87: }
  2895. ( cc: [ '.' ]; s: 137),
  2896. { 88: }
  2897. ( cc: [ '0'..'9','A'..'Z','_','a'..'s','u'..'z' ]; s: 65),
  2898. ( cc: [ 't' ]; s: 138),
  2899. { 89: }
  2900. ( cc: [ '0'..'9','A'..'Z','_','a'..'t','v'..'z' ]; s: 65),
  2901. ( cc: [ 'u' ]; s: 139),
  2902. { 90: }
  2903. ( cc: [ '0'..'9','A'..'C','E'..'Z','_','a'..'z' ]; s: 65),
  2904. ( cc: [ 'D' ]; s: 140),
  2905. { 91: }
  2906. ( cc: [ '0'..'9','A'..'R','T'..'Z','_','a'..'z' ]; s: 65),
  2907. ( cc: [ 'S' ]; s: 141),
  2908. { 92: }
  2909. ( cc: [ '0'..'9','A'..'D','F'..'Z','_','a'..'z' ]; s: 65),
  2910. ( cc: [ 'E' ]; s: 142),
  2911. { 93: }
  2912. ( cc: [ '0'..'9','A'..'K','M'..'Z','_','a'..'z' ]; s: 65),
  2913. ( cc: [ 'L' ]; s: 143),
  2914. { 94: }
  2915. ( cc: [ '0'..'9','A'..'M','O'..'Z','_','a'..'z' ]; s: 65),
  2916. ( cc: [ 'N' ]; s: 144),
  2917. { 95: }
  2918. ( cc: [ '0'..'9','A','B','D'..'R','T'..'Z','_','a'..'z' ]; s: 65),
  2919. ( cc: [ 'C' ]; s: 146),
  2920. ( cc: [ 'S' ]; s: 145),
  2921. { 96: }
  2922. ( cc: [ '0'..'9','A'..'M','O'..'Z','_','a'..'z' ]; s: 65),
  2923. ( cc: [ 'N' ]; s: 147),
  2924. { 97: }
  2925. ( cc: [ '0'..'9','A'..'O','Q'..'Z','_','a'..'z' ]; s: 65),
  2926. ( cc: [ 'P' ]; s: 148),
  2927. { 98: }
  2928. ( cc: [ '0'..'9','A'..'Z','_','a'..'h','j'..'z' ]; s: 65),
  2929. ( cc: [ 'i' ]; s: 149),
  2930. { 99: }
  2931. ( cc: [ '0'..'9','A'..'H','J'..'Z','_','a'..'z' ]; s: 65),
  2932. ( cc: [ 'I' ]; s: 150),
  2933. { 100: }
  2934. ( cc: [ '0'..'9','A'..'Z','_','b'..'z' ]; s: 65),
  2935. ( cc: [ 'a' ]; s: 151),
  2936. { 101: }
  2937. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'z' ]; s: 65),
  2938. ( cc: [ 'n' ]; s: 152),
  2939. { 102: }
  2940. ( cc: [ '0'..'9','A'..'Z','_','a'..'h','j'..'r','t'..'z' ]; s: 65),
  2941. ( cc: [ 'i' ]; s: 153),
  2942. ( cc: [ 's' ]; s: 154),
  2943. { 103: }
  2944. ( cc: [ '0'..'9','A'..'Z','_','a'..'q','s'..'z' ]; s: 65),
  2945. ( cc: [ 'r' ]; s: 155),
  2946. { 104: }
  2947. ( cc: [ '0'..'9','A'..'Z','_','a'..'n','p'..'z' ]; s: 65),
  2948. ( cc: [ 'o' ]; s: 156),
  2949. { 105: }
  2950. ( cc: [ '0'..'9','A'..'Z','_','a'..'f','h'..'z' ]; s: 65),
  2951. ( cc: [ 'g' ]; s: 157),
  2952. { 106: }
  2953. ( cc: [ '0'..'9','A'..'Z','_','a'..'o','q'..'z' ]; s: 65),
  2954. ( cc: [ 'p' ]; s: 158),
  2955. { 107: }
  2956. ( cc: [ '0'..'9','A'..'Z','_','a'..'s','u'..'z' ]; s: 65),
  2957. ( cc: [ 't' ]; s: 159),
  2958. { 108: }
  2959. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'z' ]; s: 65),
  2960. ( cc: [ 'n' ]; s: 160),
  2961. { 109: }
  2962. ( cc: [ '0'..'9','A'..'Z','_','a'..'h','j'..'z' ]; s: 65),
  2963. ( cc: [ 'i' ]; s: 161),
  2964. { 110: }
  2965. ( cc: [ '0'..'9','A'..'Z','_','a'..'n','p'..'z' ]; s: 65),
  2966. ( cc: [ 'o' ]; s: 162),
  2967. { 111: }
  2968. ( cc: [ '0'..'9','A'..'Z','_','a'..'q','s'..'z' ]; s: 65),
  2969. ( cc: [ 'r' ]; s: 163),
  2970. { 112: }
  2971. ( cc: [ '0'..'9','A'..'Q','S'..'Z','_','a'..'z' ]; s: 65),
  2972. ( cc: [ 'R' ]; s: 164),
  2973. { 113: }
  2974. ( cc: [ '0'..'9','B'..'Z','_','a'..'z' ]; s: 65),
  2975. ( cc: [ 'A' ]; s: 165),
  2976. { 114: }
  2977. ( cc: [ '0'..'9','A'..'Z','_','b'..'z' ]; s: 65),
  2978. ( cc: [ 'a' ]; s: 166),
  2979. { 115: }
  2980. ( cc: [ '0'..'9','A'..'F','H'..'Z','_','a'..'z' ]; s: 65),
  2981. ( cc: [ 'G' ]; s: 167),
  2982. { 116: }
  2983. ( cc: [ '0'..'9','A'..'Z','_','a'..'f','h'..'z' ]; s: 65),
  2984. ( cc: [ 'g' ]; s: 168),
  2985. { 117: }
  2986. ( cc: [ '0'..'9','A'..'Z','_','a'..'h','j'..'z' ]; s: 65),
  2987. ( cc: [ 'i' ]; s: 169),
  2988. { 118: }
  2989. { 119: }
  2990. { 120: }
  2991. { 121: }
  2992. { 122: }
  2993. ( cc: [ '0'..'9' ]; s: 122),
  2994. ( cc: [ 'E','e' ]; s: 70),
  2995. { 123: }
  2996. ( cc: [ '0'..'9' ]; s: 124),
  2997. { 124: }
  2998. ( cc: [ '0'..'9' ]; s: 124),
  2999. { 125: }
  3000. ( cc: [ 'L','l' ]; s: 126),
  3001. { 126: }
  3002. ( cc: [ 'L','l' ]; s: 170),
  3003. { 127: }
  3004. ( cc: [ 'd' ]; s: 171),
  3005. { 128: }
  3006. ( cc: [ 'c' ]; s: 172),
  3007. { 129: }
  3008. ( cc: [ 'f' ]; s: 173),
  3009. ( cc: [ 'n' ]; s: 128),
  3010. { 130: }
  3011. ( cc: [ 'i' ]; s: 175),
  3012. ( cc: [ 's' ]; s: 174),
  3013. { 131: }
  3014. ( cc: [ 'd' ]; s: 176),
  3015. { 132: }
  3016. ( cc: [ 'r' ]; s: 177),
  3017. { 133: }
  3018. ( cc: [ 'd' ]; s: 178),
  3019. { 134: }
  3020. ( cc: [ ' ' ]; s: 179),
  3021. ( cc: [ '0'..'9' ]; s: 134),
  3022. { 135: }
  3023. ( cc: [ 'a' ]; s: 180),
  3024. { 136: }
  3025. ( cc: [ 'f' ]; s: 181),
  3026. { 137: }
  3027. { 138: }
  3028. ( cc: [ '0'..'9','A'..'Z','_','a'..'d','f'..'z' ]; s: 65),
  3029. ( cc: [ 'e' ]; s: 182),
  3030. { 139: }
  3031. ( cc: [ '0'..'9','A'..'Z','_','a'..'l','n'..'z' ]; s: 65),
  3032. ( cc: [ 'm' ]; s: 183),
  3033. { 140: }
  3034. ( cc: [ '0'..'9','A','B','D'..'Z','_','a'..'z' ]; s: 65),
  3035. ( cc: [ 'C' ]; s: 184),
  3036. { 141: }
  3037. ( cc: [ '0'..'9','A'..'Z','a'..'z' ]; s: 65),
  3038. ( cc: [ '_' ]; s: 185),
  3039. { 142: }
  3040. ( cc: [ '0'..'9','A','B','D'..'Z','_','a'..'z' ]; s: 65),
  3041. ( cc: [ 'C' ]; s: 186),
  3042. { 143: }
  3043. ( cc: [ '0'..'9','A'..'K','M'..'Z','_','a'..'z' ]; s: 65),
  3044. ( cc: [ 'L' ]; s: 187),
  3045. { 144: }
  3046. ( cc: [ '0'..'9','A'..'R','T'..'Z','_','a'..'z' ]; s: 65),
  3047. ( cc: [ 'S' ]; s: 188),
  3048. { 145: }
  3049. ( cc: [ '0'..'9','A','B','D'..'Z','_','a'..'z' ]; s: 65),
  3050. ( cc: [ 'C' ]; s: 189),
  3051. { 146: }
  3052. ( cc: [ '0'..'9','A'..'J','L'..'Z','_','a'..'z' ]; s: 65),
  3053. ( cc: [ 'K' ]; s: 190),
  3054. { 147: }
  3055. ( cc: [ '0'..'9','B'..'F','H'..'Z','_','a'..'z' ]; s: 65),
  3056. ( cc: [ 'A' ]; s: 191),
  3057. ( cc: [ 'G' ]; s: 192),
  3058. { 148: }
  3059. ( cc: [ '0'..'9','A'..'D','F'..'Z','_','a'..'z' ]; s: 65),
  3060. ( cc: [ 'E' ]; s: 193),
  3061. { 149: }
  3062. ( cc: [ '0'..'9','A'..'Z','_','a'..'c','e'..'z' ]; s: 65),
  3063. ( cc: [ 'd' ]; s: 194),
  3064. { 150: }
  3065. ( cc: [ '0'..'9','A'..'C','E'..'Z','_','a'..'z' ]; s: 65),
  3066. ( cc: [ 'D' ]; s: 195),
  3067. { 151: }
  3068. ( cc: [ '0'..'9','A'..'Z','_','a'..'q','s'..'z' ]; s: 65),
  3069. ( cc: [ 'r' ]; s: 196),
  3070. { 152: }
  3071. ( cc: [ '0'..'9','A'..'Z','_','a'..'r','t'..'z' ]; s: 65),
  3072. ( cc: [ 's' ]; s: 197),
  3073. { 153: }
  3074. ( cc: [ '0'..'9','A'..'Z','_','a'..'n','p'..'z' ]; s: 65),
  3075. ( cc: [ 'o' ]; s: 198),
  3076. { 154: }
  3077. ( cc: [ '0'..'9','A'..'Z','_','a'..'h','j'..'z' ]; s: 65),
  3078. ( cc: [ 'i' ]; s: 199),
  3079. { 155: }
  3080. ( cc: [ '0'..'9','A'..'Z','_','a'..'t','v'..'z' ]; s: 65),
  3081. ( cc: [ 'u' ]; s: 200),
  3082. { 156: }
  3083. ( cc: [ '0'..'9','A'..'Z','_','a'..'q','s'..'z' ]; s: 65),
  3084. ( cc: [ 'r' ]; s: 201),
  3085. { 157: }
  3086. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'z' ]; s: 65),
  3087. ( cc: [ 'n' ]; s: 202),
  3088. { 158: }
  3089. ( cc: [ '0'..'9','A'..'Z','_','a'..'d','f'..'z' ]; s: 65),
  3090. ( cc: [ 'e' ]; s: 203),
  3091. { 159: }
  3092. ( cc: [ '0','2','4','5','7','9','A'..'Z','_','a'..'z' ]; s: 65),
  3093. ( cc: [ '1' ]; s: 205),
  3094. ( cc: [ '3' ]; s: 206),
  3095. ( cc: [ '6' ]; s: 207),
  3096. ( cc: [ '8' ]; s: 204),
  3097. { 160: }
  3098. ( cc: [ '0'..'9','A'..'Z','_','a'..'f','h'..'z' ]; s: 65),
  3099. ( cc: [ 'g' ]; s: 208),
  3100. { 161: }
  3101. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'z' ]; s: 65),
  3102. ( cc: [ 'n' ]; s: 209),
  3103. { 162: }
  3104. ( cc: [ '0'..'9','A'..'Z','_','b'..'z' ]; s: 65),
  3105. ( cc: [ 'a' ]; s: 210),
  3106. { 163: }
  3107. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3108. { 164: }
  3109. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3110. { 165: }
  3111. ( cc: [ '0'..'9','A'..'Q','S'..'Z','_','a'..'z' ]; s: 65),
  3112. ( cc: [ 'R' ]; s: 211),
  3113. { 166: }
  3114. ( cc: [ '0'..'9','A'..'Z','_','a'..'q','s'..'z' ]; s: 65),
  3115. ( cc: [ 'r' ]; s: 212),
  3116. { 167: }
  3117. ( cc: [ '0'..'9','A'..'D','F'..'Z','_','a'..'z' ]; s: 65),
  3118. ( cc: [ 'E' ]; s: 213),
  3119. { 168: }
  3120. ( cc: [ '0'..'9','A'..'Z','_','a'..'d','f'..'z' ]; s: 65),
  3121. ( cc: [ 'e' ]; s: 214),
  3122. { 169: }
  3123. ( cc: [ '0'..'9','A'..'Z','_','a'..'k','m'..'z' ]; s: 65),
  3124. ( cc: [ 'l' ]; s: 215),
  3125. { 170: }
  3126. { 171: }
  3127. ( cc: [ 'e' ]; s: 216),
  3128. { 172: }
  3129. ( cc: [ 'l' ]; s: 217),
  3130. { 173: }
  3131. { 174: }
  3132. ( cc: [ 'e' ]; s: 218),
  3133. { 175: }
  3134. ( cc: [ 'f' ]; s: 219),
  3135. { 176: }
  3136. ( cc: [ 'i' ]; s: 220),
  3137. { 177: }
  3138. ( cc: [ 'o' ]; s: 221),
  3139. { 178: }
  3140. ( cc: [ 'e' ]; s: 222),
  3141. { 179: }
  3142. { 180: }
  3143. ( cc: [ 'g' ]; s: 223),
  3144. { 181: }
  3145. ( cc: [ 'i' ]; s: 224),
  3146. { 182: }
  3147. ( cc: [ '0'..'9','A'..'Z','_','a'..'q','s'..'z' ]; s: 65),
  3148. ( cc: [ 'r' ]; s: 225),
  3149. { 183: }
  3150. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3151. { 184: }
  3152. ( cc: [ '0'..'9','B'..'Z','_','a'..'z' ]; s: 65),
  3153. ( cc: [ 'A' ]; s: 226),
  3154. { 185: }
  3155. ( cc: [ '0'..'9','A'..'S','U'..'Z','_','a'..'z' ]; s: 65),
  3156. ( cc: [ 'T' ]; s: 227),
  3157. { 186: }
  3158. ( cc: [ '0'..'9','A'..'K','M'..'Z','_','a'..'z' ]; s: 65),
  3159. ( cc: [ 'L' ]; s: 228),
  3160. { 187: }
  3161. ( cc: [ '0'..'9','A','C'..'Z','_','a'..'z' ]; s: 65),
  3162. ( cc: [ 'B' ]; s: 229),
  3163. { 188: }
  3164. ( cc: [ '0'..'9','A'..'S','U'..'Z','_','a'..'z' ]; s: 65),
  3165. ( cc: [ 'T' ]; s: 230),
  3166. { 189: }
  3167. ( cc: [ '0'..'9','B'..'Z','_','a'..'z' ]; s: 65),
  3168. ( cc: [ 'A' ]; s: 231),
  3169. { 190: }
  3170. ( cc: [ '0'..'9','A'..'D','F'..'Z','_','a'..'z' ]; s: 65),
  3171. ( cc: [ 'E' ]; s: 232),
  3172. { 191: }
  3173. ( cc: [ '0'..'9','A'..'O','Q'..'Z','_','a'..'z' ]; s: 65),
  3174. ( cc: [ 'P' ]; s: 233),
  3175. { 192: }
  3176. ( cc: [ '0'..'9','A'..'C','E'..'Z','_','a'..'z' ]; s: 65),
  3177. ( cc: [ 'D' ]; s: 234),
  3178. { 193: }
  3179. ( cc: [ '0'..'9','A'..'M','O'..'Z','_','a'..'z' ]; s: 65),
  3180. ( cc: [ 'N' ]; s: 235),
  3181. { 194: }
  3182. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3183. { 195: }
  3184. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3185. { 196: }
  3186. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3187. { 197: }
  3188. ( cc: [ '0'..'9','A'..'Z','_','a'..'s','u'..'z' ]; s: 65),
  3189. ( cc: [ 't' ]; s: 236),
  3190. { 198: }
  3191. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'z' ]; s: 65),
  3192. ( cc: [ 'n' ]; s: 237),
  3193. { 199: }
  3194. ( cc: [ '0'..'9','A'..'Z','_','a'..'f','h'..'z' ]; s: 65),
  3195. ( cc: [ 'g' ]; s: 238),
  3196. { 200: }
  3197. ( cc: [ '0'..'9','A'..'Z','_','a','b','d'..'z' ]; s: 65),
  3198. ( cc: [ 'c' ]; s: 239),
  3199. { 201: }
  3200. ( cc: [ '0'..'9','A'..'Z','_','a'..'s','u'..'z' ]; s: 65),
  3201. ( cc: [ 't' ]; s: 240),
  3202. { 202: }
  3203. ( cc: [ '0'..'9','A'..'Z','_','a'..'d','f'..'z' ]; s: 65),
  3204. ( cc: [ 'e' ]; s: 241),
  3205. { 203: }
  3206. ( cc: [ '0'..'9','A'..'Z','_','a'..'c','e'..'z' ]; s: 65),
  3207. ( cc: [ 'd' ]; s: 242),
  3208. { 204: }
  3209. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3210. { 205: }
  3211. ( cc: [ '0'..'5','7'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3212. ( cc: [ '6' ]; s: 243),
  3213. { 206: }
  3214. ( cc: [ '0','1','3'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3215. ( cc: [ '2' ]; s: 244),
  3216. { 207: }
  3217. ( cc: [ '0'..'3','5'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3218. ( cc: [ '4' ]; s: 245),
  3219. { 208: }
  3220. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3221. { 209: }
  3222. ( cc: [ '0'..'9','A'..'Z','_','a'..'s','u'..'z' ]; s: 65),
  3223. ( cc: [ 't' ]; s: 246),
  3224. { 210: }
  3225. ( cc: [ '0'..'9','A'..'Z','_','a'..'s','u'..'z' ]; s: 65),
  3226. ( cc: [ 't' ]; s: 247),
  3227. { 211: }
  3228. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3229. { 212: }
  3230. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3231. { 213: }
  3232. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3233. { 214: }
  3234. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3235. { 215: }
  3236. ( cc: [ '0'..'9','A'..'Z','_','a'..'d','f'..'z' ]; s: 65),
  3237. ( cc: [ 'e' ]; s: 248),
  3238. { 216: }
  3239. ( cc: [ 'f' ]; s: 249),
  3240. { 217: }
  3241. ( cc: [ 'u' ]; s: 250),
  3242. { 218: }
  3243. { 219: }
  3244. { 220: }
  3245. ( cc: [ 'f' ]; s: 251),
  3246. { 221: }
  3247. ( cc: [ 'r' ]; s: 252),
  3248. { 222: }
  3249. ( cc: [ 'f' ]; s: 253),
  3250. { 223: }
  3251. ( cc: [ 'm' ]; s: 254),
  3252. { 224: }
  3253. ( cc: [ 'n' ]; s: 255),
  3254. { 225: }
  3255. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'z' ]; s: 65),
  3256. ( cc: [ 'n' ]; s: 256),
  3257. { 226: }
  3258. ( cc: [ '0'..'9','A'..'K','M'..'Z','_','a'..'z' ]; s: 65),
  3259. ( cc: [ 'L' ]; s: 257),
  3260. { 227: }
  3261. ( cc: [ '0'..'9','A'..'Q','S'..'Z','_','a'..'z' ]; s: 65),
  3262. ( cc: [ 'R' ]; s: 258),
  3263. { 228: }
  3264. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3265. { 229: }
  3266. ( cc: [ '0'..'9','B'..'Z','_','a'..'z' ]; s: 65),
  3267. ( cc: [ 'A' ]; s: 259),
  3268. { 230: }
  3269. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3270. { 231: }
  3271. ( cc: [ '0'..'9','A'..'K','M'..'Z','_','a'..'z' ]; s: 65),
  3272. ( cc: [ 'L' ]; s: 260),
  3273. { 232: }
  3274. ( cc: [ '0'..'9','A'..'C','E'..'Z','_','a'..'z' ]; s: 65),
  3275. ( cc: [ 'D' ]; s: 261),
  3276. { 233: }
  3277. ( cc: [ '0'..'9','A'..'H','J'..'Z','_','a'..'z' ]; s: 65),
  3278. ( cc: [ 'I' ]; s: 262),
  3279. { 234: }
  3280. ( cc: [ '0'..'9','A'..'H','J'..'Z','_','a'..'z' ]; s: 65),
  3281. ( cc: [ 'I' ]; s: 263),
  3282. { 235: }
  3283. ( cc: [ '0'..'9','A'..'S','U'..'Z','_','a'..'z' ]; s: 65),
  3284. ( cc: [ 'T' ]; s: 264),
  3285. { 236: }
  3286. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3287. { 237: }
  3288. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3289. { 238: }
  3290. ( cc: [ '0'..'9','A'..'Z','_','a'..'m','o'..'z' ]; s: 65),
  3291. ( cc: [ 'n' ]; s: 265),
  3292. { 239: }
  3293. ( cc: [ '0'..'9','A'..'Z','_','a'..'s','u'..'z' ]; s: 65),
  3294. ( cc: [ 't' ]; s: 266),
  3295. { 240: }
  3296. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3297. { 241: }
  3298. ( cc: [ '0'..'9','A'..'Z','_','a'..'c','e'..'z' ]; s: 65),
  3299. ( cc: [ 'd' ]; s: 267),
  3300. { 242: }
  3301. ( cc: [ '0'..'9','A'..'Z','_','a'..'d','f'..'z' ]; s: 65),
  3302. ( cc: [ 'e' ]; s: 268),
  3303. { 243: }
  3304. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3305. { 244: }
  3306. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3307. { 245: }
  3308. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3309. { 246: }
  3310. ( cc: [ '0','2','4','5','7','9','A'..'Z','_','a'..'z' ]; s: 65),
  3311. ( cc: [ '1' ]; s: 270),
  3312. ( cc: [ '3' ]; s: 271),
  3313. ( cc: [ '6' ]; s: 272),
  3314. ( cc: [ '8' ]; s: 269),
  3315. { 247: }
  3316. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3317. { 248: }
  3318. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3319. { 249: }
  3320. ( cc: [ #9,' ' ]; s: 273),
  3321. ( cc: [ '_' ]; s: 274),
  3322. ( cc: [ 'c' ]; s: 275),
  3323. { 250: }
  3324. ( cc: [ 'd' ]; s: 276),
  3325. { 251: }
  3326. { 252: }
  3327. { 253: }
  3328. { 254: }
  3329. ( cc: [ 'a' ]; s: 277),
  3330. { 255: }
  3331. ( cc: [ 'e' ]; s: 278),
  3332. { 256: }
  3333. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3334. { 257: }
  3335. ( cc: [ '0'..'9','A'..'K','M'..'Z','_','a'..'z' ]; s: 65),
  3336. ( cc: [ 'L' ]; s: 279),
  3337. { 258: }
  3338. ( cc: [ '0'..'9','B'..'Z','_','a'..'z' ]; s: 65),
  3339. ( cc: [ 'A' ]; s: 280),
  3340. { 259: }
  3341. ( cc: [ '0'..'9','A','B','D'..'Z','_','a'..'z' ]; s: 65),
  3342. ( cc: [ 'C' ]; s: 281),
  3343. { 260: }
  3344. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3345. { 261: }
  3346. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3347. { 262: }
  3348. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3349. { 263: }
  3350. ( cc: [ '0'..'9','B'..'Z','_','a'..'z' ]; s: 65),
  3351. ( cc: [ 'A' ]; s: 282),
  3352. { 264: }
  3353. ( cc: [ '0'..'9','A'..'Q','S'..'Z','_','a'..'z' ]; s: 65),
  3354. ( cc: [ 'R' ]; s: 283),
  3355. { 265: }
  3356. ( cc: [ '0'..'9','A'..'Z','_','a'..'d','f'..'z' ]; s: 65),
  3357. ( cc: [ 'e' ]; s: 284),
  3358. { 266: }
  3359. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3360. { 267: }
  3361. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3362. { 268: }
  3363. ( cc: [ '0'..'9','A'..'Z','_','a'..'e','g'..'z' ]; s: 65),
  3364. ( cc: [ 'f' ]; s: 285),
  3365. { 269: }
  3366. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3367. { 270: }
  3368. ( cc: [ '0'..'5','7'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3369. ( cc: [ '6' ]; s: 286),
  3370. { 271: }
  3371. ( cc: [ '0','1','3'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3372. ( cc: [ '2' ]; s: 287),
  3373. { 272: }
  3374. ( cc: [ '0'..'3','5'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3375. ( cc: [ '4' ]; s: 288),
  3376. { 273: }
  3377. ( cc: [ #9,' ' ]; s: 289),
  3378. ( cc: [ '_' ]; s: 274),
  3379. ( cc: [ 'c' ]; s: 275),
  3380. { 274: }
  3381. ( cc: [ '_' ]; s: 290),
  3382. { 275: }
  3383. ( cc: [ 'p' ]; s: 291),
  3384. { 276: }
  3385. ( cc: [ 'e' ]; s: 292),
  3386. { 277: }
  3387. { 278: }
  3388. { 279: }
  3389. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3390. { 280: }
  3391. ( cc: [ '0'..'9','A'..'O','Q'..'Z','_','a'..'z' ]; s: 65),
  3392. ( cc: [ 'P' ]; s: 293),
  3393. { 281: }
  3394. ( cc: [ '0'..'9','A'..'J','L'..'Z','_','a'..'z' ]; s: 65),
  3395. ( cc: [ 'K' ]; s: 294),
  3396. { 282: }
  3397. ( cc: [ '0'..'9','A'..'O','Q'..'Z','_','a'..'z' ]; s: 65),
  3398. ( cc: [ 'P' ]; s: 295),
  3399. { 283: }
  3400. ( cc: [ '0'..'9','A'..'X','Z','_','a'..'z' ]; s: 65),
  3401. ( cc: [ 'Y' ]; s: 296),
  3402. { 284: }
  3403. ( cc: [ '0'..'9','A'..'Z','_','a'..'c','e'..'z' ]; s: 65),
  3404. ( cc: [ 'd' ]; s: 297),
  3405. { 285: }
  3406. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3407. { 286: }
  3408. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3409. { 287: }
  3410. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3411. { 288: }
  3412. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3413. { 289: }
  3414. ( cc: [ #9,' ' ]; s: 289),
  3415. ( cc: [ '_' ]; s: 274),
  3416. ( cc: [ 'c' ]; s: 275),
  3417. { 290: }
  3418. ( cc: [ 'c' ]; s: 298),
  3419. { 291: }
  3420. ( cc: [ 'l' ]; s: 299),
  3421. { 292: }
  3422. { 293: }
  3423. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3424. { 294: }
  3425. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3426. { 295: }
  3427. ( cc: [ '0'..'9','A'..'H','J'..'Z','_','a'..'z' ]; s: 65),
  3428. ( cc: [ 'I' ]; s: 300),
  3429. { 296: }
  3430. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3431. { 297: }
  3432. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3433. { 298: }
  3434. ( cc: [ 'p' ]; s: 301),
  3435. { 299: }
  3436. ( cc: [ 'u' ]; s: 302),
  3437. { 300: }
  3438. ( cc: [ '0'..'9','A'..'Z','_','a'..'z' ]; s: 65),
  3439. { 301: }
  3440. ( cc: [ 'l' ]; s: 303),
  3441. { 302: }
  3442. ( cc: [ 's' ]; s: 304),
  3443. { 303: }
  3444. ( cc: [ 'u' ]; s: 305),
  3445. { 304: }
  3446. ( cc: [ 'p' ]; s: 306),
  3447. { 305: }
  3448. ( cc: [ 's' ]; s: 307),
  3449. { 306: }
  3450. ( cc: [ 'l' ]; s: 308),
  3451. { 307: }
  3452. ( cc: [ 'p' ]; s: 309),
  3453. { 308: }
  3454. ( cc: [ 'u' ]; s: 310),
  3455. { 309: }
  3456. ( cc: [ 'l' ]; s: 311),
  3457. { 310: }
  3458. ( cc: [ 's' ]; s: 312),
  3459. { 311: }
  3460. ( cc: [ 'u' ]; s: 313),
  3461. { 312: }
  3462. ( cc: [ #9,' ' ]; s: 312),
  3463. ( cc: [ #10 ]; s: 314),
  3464. { 313: }
  3465. ( cc: [ 's' ]; s: 315),
  3466. { 314: }
  3467. ( cc: [ 'e' ]; s: 316),
  3468. ( cc: [ '}' ]; s: 317),
  3469. { 315: }
  3470. ( cc: [ #9,' ' ]; s: 315),
  3471. ( cc: [ #10 ]; s: 318),
  3472. { 316: }
  3473. ( cc: [ 'x' ]; s: 319),
  3474. { 317: }
  3475. ( cc: [ #10 ]; s: 320),
  3476. { 318: }
  3477. ( cc: [ 'e' ]; s: 321),
  3478. ( cc: [ '}' ]; s: 322),
  3479. { 319: }
  3480. ( cc: [ 't' ]; s: 323),
  3481. { 320: }
  3482. ( cc: [ '#' ]; s: 324),
  3483. { 321: }
  3484. ( cc: [ 'x' ]; s: 325),
  3485. { 322: }
  3486. ( cc: [ #10 ]; s: 326),
  3487. { 323: }
  3488. ( cc: [ 'e' ]; s: 327),
  3489. { 324: }
  3490. ( cc: [ 'e' ]; s: 328),
  3491. { 325: }
  3492. ( cc: [ 't' ]; s: 329),
  3493. { 326: }
  3494. ( cc: [ '#' ]; s: 330),
  3495. { 327: }
  3496. ( cc: [ 'r' ]; s: 331),
  3497. { 328: }
  3498. ( cc: [ 'n' ]; s: 332),
  3499. { 329: }
  3500. ( cc: [ 'e' ]; s: 333),
  3501. { 330: }
  3502. ( cc: [ 'e' ]; s: 334),
  3503. { 331: }
  3504. ( cc: [ 'n' ]; s: 335),
  3505. { 332: }
  3506. ( cc: [ 'd' ]; s: 336),
  3507. { 333: }
  3508. ( cc: [ 'r' ]; s: 337),
  3509. { 334: }
  3510. ( cc: [ 'n' ]; s: 338),
  3511. { 335: }
  3512. ( cc: [ ' ' ]; s: 339),
  3513. { 336: }
  3514. ( cc: [ 'i' ]; s: 340),
  3515. { 337: }
  3516. ( cc: [ 'n' ]; s: 341),
  3517. { 338: }
  3518. ( cc: [ 'd' ]; s: 342),
  3519. { 339: }
  3520. ( cc: [ '"' ]; s: 343),
  3521. { 340: }
  3522. ( cc: [ 'f' ]; s: 344),
  3523. { 341: }
  3524. ( cc: [ ' ' ]; s: 345),
  3525. { 342: }
  3526. ( cc: [ 'i' ]; s: 346),
  3527. { 343: }
  3528. ( cc: [ 'C' ]; s: 347),
  3529. { 344: }
  3530. { 345: }
  3531. ( cc: [ '"' ]; s: 348),
  3532. { 346: }
  3533. ( cc: [ 'f' ]; s: 349),
  3534. { 347: }
  3535. ( cc: [ '"' ]; s: 350),
  3536. { 348: }
  3537. ( cc: [ 'C' ]; s: 351),
  3538. { 349: }
  3539. { 350: }
  3540. ( cc: [ ' ' ]; s: 352),
  3541. { 351: }
  3542. ( cc: [ '"' ]; s: 353),
  3543. { 352: }
  3544. ( cc: [ '{' ]; s: 354),
  3545. { 353: }
  3546. ( cc: [ ' ' ]; s: 355),
  3547. { 354: }
  3548. ( cc: [ #10 ]; s: 356),
  3549. { 355: }
  3550. ( cc: [ '{' ]; s: 357),
  3551. { 356: }
  3552. ( cc: [ '#' ]; s: 358),
  3553. { 357: }
  3554. ( cc: [ #10 ]; s: 359),
  3555. { 358: }
  3556. ( cc: [ 'e' ]; s: 360),
  3557. { 359: }
  3558. ( cc: [ '#' ]; s: 361),
  3559. { 360: }
  3560. ( cc: [ 'n' ]; s: 362),
  3561. { 361: }
  3562. ( cc: [ 'e' ]; s: 363),
  3563. { 362: }
  3564. ( cc: [ 'd' ]; s: 364),
  3565. { 363: }
  3566. ( cc: [ 'n' ]; s: 365),
  3567. { 364: }
  3568. ( cc: [ 'i' ]; s: 366),
  3569. { 365: }
  3570. ( cc: [ 'd' ]; s: 367),
  3571. { 366: }
  3572. ( cc: [ 'f' ]; s: 368),
  3573. { 367: }
  3574. ( cc: [ 'i' ]; s: 369),
  3575. { 368: }
  3576. { 369: }
  3577. ( cc: [ 'f' ]; s: 370)
  3578. { 370: }
  3579. );
  3580. yykl : array [0..yynstates-1] of Integer = (
  3581. { 0: } 1,
  3582. { 1: } 1,
  3583. { 2: } 1,
  3584. { 3: } 3,
  3585. { 4: } 4,
  3586. { 5: } 5,
  3587. { 6: } 7,
  3588. { 7: } 10,
  3589. { 8: } 13,
  3590. { 9: } 15,
  3591. { 10: } 17,
  3592. { 11: } 19,
  3593. { 12: } 21,
  3594. { 13: } 23,
  3595. { 14: } 24,
  3596. { 15: } 26,
  3597. { 16: } 28,
  3598. { 17: } 30,
  3599. { 18: } 32,
  3600. { 19: } 34,
  3601. { 20: } 36,
  3602. { 21: } 38,
  3603. { 22: } 40,
  3604. { 23: } 42,
  3605. { 24: } 44,
  3606. { 25: } 46,
  3607. { 26: } 48,
  3608. { 27: } 50,
  3609. { 28: } 52,
  3610. { 29: } 54,
  3611. { 30: } 56,
  3612. { 31: } 58,
  3613. { 32: } 60,
  3614. { 33: } 62,
  3615. { 34: } 64,
  3616. { 35: } 66,
  3617. { 36: } 68,
  3618. { 37: } 70,
  3619. { 38: } 72,
  3620. { 39: } 74,
  3621. { 40: } 76,
  3622. { 41: } 78,
  3623. { 42: } 80,
  3624. { 43: } 82,
  3625. { 44: } 84,
  3626. { 45: } 86,
  3627. { 46: } 88,
  3628. { 47: } 90,
  3629. { 48: } 92,
  3630. { 49: } 94,
  3631. { 50: } 96,
  3632. { 51: } 98,
  3633. { 52: } 100,
  3634. { 53: } 102,
  3635. { 54: } 104,
  3636. { 55: } 105,
  3637. { 56: } 107,
  3638. { 57: } 108,
  3639. { 58: } 109,
  3640. { 59: } 110,
  3641. { 60: } 110,
  3642. { 61: } 111,
  3643. { 62: } 111,
  3644. { 63: } 112,
  3645. { 64: } 112,
  3646. { 65: } 112,
  3647. { 66: } 113,
  3648. { 67: } 115,
  3649. { 68: } 116,
  3650. { 69: } 117,
  3651. { 70: } 117,
  3652. { 71: } 117,
  3653. { 72: } 118,
  3654. { 73: } 119,
  3655. { 74: } 120,
  3656. { 75: } 121,
  3657. { 76: } 122,
  3658. { 77: } 123,
  3659. { 78: } 124,
  3660. { 79: } 125,
  3661. { 80: } 126,
  3662. { 81: } 126,
  3663. { 82: } 126,
  3664. { 83: } 126,
  3665. { 84: } 126,
  3666. { 85: } 126,
  3667. { 86: } 126,
  3668. { 87: } 126,
  3669. { 88: } 126,
  3670. { 89: } 127,
  3671. { 90: } 128,
  3672. { 91: } 129,
  3673. { 92: } 130,
  3674. { 93: } 131,
  3675. { 94: } 132,
  3676. { 95: } 133,
  3677. { 96: } 134,
  3678. { 97: } 135,
  3679. { 98: } 136,
  3680. { 99: } 137,
  3681. { 100: } 138,
  3682. { 101: } 139,
  3683. { 102: } 140,
  3684. { 103: } 141,
  3685. { 104: } 142,
  3686. { 105: } 143,
  3687. { 106: } 144,
  3688. { 107: } 145,
  3689. { 108: } 146,
  3690. { 109: } 147,
  3691. { 110: } 148,
  3692. { 111: } 149,
  3693. { 112: } 150,
  3694. { 113: } 151,
  3695. { 114: } 152,
  3696. { 115: } 153,
  3697. { 116: } 154,
  3698. { 117: } 155,
  3699. { 118: } 156,
  3700. { 119: } 156,
  3701. { 120: } 157,
  3702. { 121: } 158,
  3703. { 122: } 159,
  3704. { 123: } 160,
  3705. { 124: } 160,
  3706. { 125: } 161,
  3707. { 126: } 162,
  3708. { 127: } 163,
  3709. { 128: } 164,
  3710. { 129: } 164,
  3711. { 130: } 164,
  3712. { 131: } 164,
  3713. { 132: } 164,
  3714. { 133: } 164,
  3715. { 134: } 164,
  3716. { 135: } 164,
  3717. { 136: } 164,
  3718. { 137: } 164,
  3719. { 138: } 165,
  3720. { 139: } 166,
  3721. { 140: } 167,
  3722. { 141: } 168,
  3723. { 142: } 169,
  3724. { 143: } 170,
  3725. { 144: } 171,
  3726. { 145: } 172,
  3727. { 146: } 173,
  3728. { 147: } 174,
  3729. { 148: } 175,
  3730. { 149: } 176,
  3731. { 150: } 177,
  3732. { 151: } 178,
  3733. { 152: } 179,
  3734. { 153: } 180,
  3735. { 154: } 181,
  3736. { 155: } 182,
  3737. { 156: } 183,
  3738. { 157: } 184,
  3739. { 158: } 185,
  3740. { 159: } 186,
  3741. { 160: } 188,
  3742. { 161: } 189,
  3743. { 162: } 190,
  3744. { 163: } 191,
  3745. { 164: } 193,
  3746. { 165: } 195,
  3747. { 166: } 196,
  3748. { 167: } 197,
  3749. { 168: } 198,
  3750. { 169: } 199,
  3751. { 170: } 200,
  3752. { 171: } 201,
  3753. { 172: } 201,
  3754. { 173: } 201,
  3755. { 174: } 202,
  3756. { 175: } 202,
  3757. { 176: } 202,
  3758. { 177: } 202,
  3759. { 178: } 202,
  3760. { 179: } 202,
  3761. { 180: } 203,
  3762. { 181: } 203,
  3763. { 182: } 203,
  3764. { 183: } 204,
  3765. { 184: } 206,
  3766. { 185: } 207,
  3767. { 186: } 208,
  3768. { 187: } 209,
  3769. { 188: } 210,
  3770. { 189: } 211,
  3771. { 190: } 212,
  3772. { 191: } 213,
  3773. { 192: } 214,
  3774. { 193: } 215,
  3775. { 194: } 216,
  3776. { 195: } 218,
  3777. { 196: } 220,
  3778. { 197: } 222,
  3779. { 198: } 223,
  3780. { 199: } 224,
  3781. { 200: } 225,
  3782. { 201: } 226,
  3783. { 202: } 227,
  3784. { 203: } 228,
  3785. { 204: } 229,
  3786. { 205: } 231,
  3787. { 206: } 232,
  3788. { 207: } 233,
  3789. { 208: } 234,
  3790. { 209: } 236,
  3791. { 210: } 237,
  3792. { 211: } 238,
  3793. { 212: } 240,
  3794. { 213: } 242,
  3795. { 214: } 244,
  3796. { 215: } 246,
  3797. { 216: } 247,
  3798. { 217: } 247,
  3799. { 218: } 247,
  3800. { 219: } 248,
  3801. { 220: } 249,
  3802. { 221: } 249,
  3803. { 222: } 249,
  3804. { 223: } 249,
  3805. { 224: } 249,
  3806. { 225: } 249,
  3807. { 226: } 250,
  3808. { 227: } 251,
  3809. { 228: } 252,
  3810. { 229: } 254,
  3811. { 230: } 255,
  3812. { 231: } 257,
  3813. { 232: } 258,
  3814. { 233: } 259,
  3815. { 234: } 260,
  3816. { 235: } 261,
  3817. { 236: } 262,
  3818. { 237: } 264,
  3819. { 238: } 266,
  3820. { 239: } 267,
  3821. { 240: } 268,
  3822. { 241: } 270,
  3823. { 242: } 271,
  3824. { 243: } 272,
  3825. { 244: } 274,
  3826. { 245: } 276,
  3827. { 246: } 278,
  3828. { 247: } 279,
  3829. { 248: } 281,
  3830. { 249: } 283,
  3831. { 250: } 283,
  3832. { 251: } 283,
  3833. { 252: } 284,
  3834. { 253: } 285,
  3835. { 254: } 286,
  3836. { 255: } 286,
  3837. { 256: } 286,
  3838. { 257: } 288,
  3839. { 258: } 289,
  3840. { 259: } 290,
  3841. { 260: } 291,
  3842. { 261: } 293,
  3843. { 262: } 295,
  3844. { 263: } 297,
  3845. { 264: } 298,
  3846. { 265: } 299,
  3847. { 266: } 300,
  3848. { 267: } 302,
  3849. { 268: } 304,
  3850. { 269: } 305,
  3851. { 270: } 307,
  3852. { 271: } 308,
  3853. { 272: } 309,
  3854. { 273: } 310,
  3855. { 274: } 311,
  3856. { 275: } 311,
  3857. { 276: } 311,
  3858. { 277: } 311,
  3859. { 278: } 312,
  3860. { 279: } 313,
  3861. { 280: } 315,
  3862. { 281: } 316,
  3863. { 282: } 317,
  3864. { 283: } 318,
  3865. { 284: } 319,
  3866. { 285: } 320,
  3867. { 286: } 322,
  3868. { 287: } 324,
  3869. { 288: } 326,
  3870. { 289: } 328,
  3871. { 290: } 328,
  3872. { 291: } 328,
  3873. { 292: } 328,
  3874. { 293: } 329,
  3875. { 294: } 331,
  3876. { 295: } 333,
  3877. { 296: } 334,
  3878. { 297: } 336,
  3879. { 298: } 338,
  3880. { 299: } 338,
  3881. { 300: } 338,
  3882. { 301: } 340,
  3883. { 302: } 340,
  3884. { 303: } 340,
  3885. { 304: } 340,
  3886. { 305: } 340,
  3887. { 306: } 340,
  3888. { 307: } 340,
  3889. { 308: } 340,
  3890. { 309: } 340,
  3891. { 310: } 340,
  3892. { 311: } 340,
  3893. { 312: } 340,
  3894. { 313: } 341,
  3895. { 314: } 341,
  3896. { 315: } 341,
  3897. { 316: } 342,
  3898. { 317: } 342,
  3899. { 318: } 342,
  3900. { 319: } 342,
  3901. { 320: } 342,
  3902. { 321: } 342,
  3903. { 322: } 342,
  3904. { 323: } 342,
  3905. { 324: } 342,
  3906. { 325: } 342,
  3907. { 326: } 342,
  3908. { 327: } 342,
  3909. { 328: } 342,
  3910. { 329: } 342,
  3911. { 330: } 342,
  3912. { 331: } 342,
  3913. { 332: } 342,
  3914. { 333: } 342,
  3915. { 334: } 342,
  3916. { 335: } 342,
  3917. { 336: } 342,
  3918. { 337: } 342,
  3919. { 338: } 342,
  3920. { 339: } 342,
  3921. { 340: } 342,
  3922. { 341: } 342,
  3923. { 342: } 342,
  3924. { 343: } 342,
  3925. { 344: } 342,
  3926. { 345: } 343,
  3927. { 346: } 343,
  3928. { 347: } 343,
  3929. { 348: } 343,
  3930. { 349: } 343,
  3931. { 350: } 344,
  3932. { 351: } 344,
  3933. { 352: } 344,
  3934. { 353: } 344,
  3935. { 354: } 344,
  3936. { 355: } 344,
  3937. { 356: } 344,
  3938. { 357: } 344,
  3939. { 358: } 344,
  3940. { 359: } 344,
  3941. { 360: } 344,
  3942. { 361: } 344,
  3943. { 362: } 344,
  3944. { 363: } 344,
  3945. { 364: } 344,
  3946. { 365: } 344,
  3947. { 366: } 344,
  3948. { 367: } 344,
  3949. { 368: } 344,
  3950. { 369: } 345,
  3951. { 370: } 345
  3952. );
  3953. yykh : array [0..yynstates-1] of Integer = (
  3954. { 0: } 0,
  3955. { 1: } 0,
  3956. { 2: } 2,
  3957. { 3: } 3,
  3958. { 4: } 4,
  3959. { 5: } 6,
  3960. { 6: } 9,
  3961. { 7: } 12,
  3962. { 8: } 14,
  3963. { 9: } 16,
  3964. { 10: } 18,
  3965. { 11: } 20,
  3966. { 12: } 22,
  3967. { 13: } 23,
  3968. { 14: } 25,
  3969. { 15: } 27,
  3970. { 16: } 29,
  3971. { 17: } 31,
  3972. { 18: } 33,
  3973. { 19: } 35,
  3974. { 20: } 37,
  3975. { 21: } 39,
  3976. { 22: } 41,
  3977. { 23: } 43,
  3978. { 24: } 45,
  3979. { 25: } 47,
  3980. { 26: } 49,
  3981. { 27: } 51,
  3982. { 28: } 53,
  3983. { 29: } 55,
  3984. { 30: } 57,
  3985. { 31: } 59,
  3986. { 32: } 61,
  3987. { 33: } 63,
  3988. { 34: } 65,
  3989. { 35: } 67,
  3990. { 36: } 69,
  3991. { 37: } 71,
  3992. { 38: } 73,
  3993. { 39: } 75,
  3994. { 40: } 77,
  3995. { 41: } 79,
  3996. { 42: } 81,
  3997. { 43: } 83,
  3998. { 44: } 85,
  3999. { 45: } 87,
  4000. { 46: } 89,
  4001. { 47: } 91,
  4002. { 48: } 93,
  4003. { 49: } 95,
  4004. { 50: } 97,
  4005. { 51: } 99,
  4006. { 52: } 101,
  4007. { 53: } 103,
  4008. { 54: } 104,
  4009. { 55: } 106,
  4010. { 56: } 107,
  4011. { 57: } 108,
  4012. { 58: } 109,
  4013. { 59: } 109,
  4014. { 60: } 110,
  4015. { 61: } 110,
  4016. { 62: } 111,
  4017. { 63: } 111,
  4018. { 64: } 111,
  4019. { 65: } 112,
  4020. { 66: } 114,
  4021. { 67: } 115,
  4022. { 68: } 116,
  4023. { 69: } 116,
  4024. { 70: } 116,
  4025. { 71: } 117,
  4026. { 72: } 118,
  4027. { 73: } 119,
  4028. { 74: } 120,
  4029. { 75: } 121,
  4030. { 76: } 122,
  4031. { 77: } 123,
  4032. { 78: } 124,
  4033. { 79: } 125,
  4034. { 80: } 125,
  4035. { 81: } 125,
  4036. { 82: } 125,
  4037. { 83: } 125,
  4038. { 84: } 125,
  4039. { 85: } 125,
  4040. { 86: } 125,
  4041. { 87: } 125,
  4042. { 88: } 126,
  4043. { 89: } 127,
  4044. { 90: } 128,
  4045. { 91: } 129,
  4046. { 92: } 130,
  4047. { 93: } 131,
  4048. { 94: } 132,
  4049. { 95: } 133,
  4050. { 96: } 134,
  4051. { 97: } 135,
  4052. { 98: } 136,
  4053. { 99: } 137,
  4054. { 100: } 138,
  4055. { 101: } 139,
  4056. { 102: } 140,
  4057. { 103: } 141,
  4058. { 104: } 142,
  4059. { 105: } 143,
  4060. { 106: } 144,
  4061. { 107: } 145,
  4062. { 108: } 146,
  4063. { 109: } 147,
  4064. { 110: } 148,
  4065. { 111: } 149,
  4066. { 112: } 150,
  4067. { 113: } 151,
  4068. { 114: } 152,
  4069. { 115: } 153,
  4070. { 116: } 154,
  4071. { 117: } 155,
  4072. { 118: } 155,
  4073. { 119: } 156,
  4074. { 120: } 157,
  4075. { 121: } 158,
  4076. { 122: } 159,
  4077. { 123: } 159,
  4078. { 124: } 160,
  4079. { 125: } 161,
  4080. { 126: } 162,
  4081. { 127: } 163,
  4082. { 128: } 163,
  4083. { 129: } 163,
  4084. { 130: } 163,
  4085. { 131: } 163,
  4086. { 132: } 163,
  4087. { 133: } 163,
  4088. { 134: } 163,
  4089. { 135: } 163,
  4090. { 136: } 163,
  4091. { 137: } 164,
  4092. { 138: } 165,
  4093. { 139: } 166,
  4094. { 140: } 167,
  4095. { 141: } 168,
  4096. { 142: } 169,
  4097. { 143: } 170,
  4098. { 144: } 171,
  4099. { 145: } 172,
  4100. { 146: } 173,
  4101. { 147: } 174,
  4102. { 148: } 175,
  4103. { 149: } 176,
  4104. { 150: } 177,
  4105. { 151: } 178,
  4106. { 152: } 179,
  4107. { 153: } 180,
  4108. { 154: } 181,
  4109. { 155: } 182,
  4110. { 156: } 183,
  4111. { 157: } 184,
  4112. { 158: } 185,
  4113. { 159: } 187,
  4114. { 160: } 188,
  4115. { 161: } 189,
  4116. { 162: } 190,
  4117. { 163: } 192,
  4118. { 164: } 194,
  4119. { 165: } 195,
  4120. { 166: } 196,
  4121. { 167: } 197,
  4122. { 168: } 198,
  4123. { 169: } 199,
  4124. { 170: } 200,
  4125. { 171: } 200,
  4126. { 172: } 200,
  4127. { 173: } 201,
  4128. { 174: } 201,
  4129. { 175: } 201,
  4130. { 176: } 201,
  4131. { 177: } 201,
  4132. { 178: } 201,
  4133. { 179: } 202,
  4134. { 180: } 202,
  4135. { 181: } 202,
  4136. { 182: } 203,
  4137. { 183: } 205,
  4138. { 184: } 206,
  4139. { 185: } 207,
  4140. { 186: } 208,
  4141. { 187: } 209,
  4142. { 188: } 210,
  4143. { 189: } 211,
  4144. { 190: } 212,
  4145. { 191: } 213,
  4146. { 192: } 214,
  4147. { 193: } 215,
  4148. { 194: } 217,
  4149. { 195: } 219,
  4150. { 196: } 221,
  4151. { 197: } 222,
  4152. { 198: } 223,
  4153. { 199: } 224,
  4154. { 200: } 225,
  4155. { 201: } 226,
  4156. { 202: } 227,
  4157. { 203: } 228,
  4158. { 204: } 230,
  4159. { 205: } 231,
  4160. { 206: } 232,
  4161. { 207: } 233,
  4162. { 208: } 235,
  4163. { 209: } 236,
  4164. { 210: } 237,
  4165. { 211: } 239,
  4166. { 212: } 241,
  4167. { 213: } 243,
  4168. { 214: } 245,
  4169. { 215: } 246,
  4170. { 216: } 246,
  4171. { 217: } 246,
  4172. { 218: } 247,
  4173. { 219: } 248,
  4174. { 220: } 248,
  4175. { 221: } 248,
  4176. { 222: } 248,
  4177. { 223: } 248,
  4178. { 224: } 248,
  4179. { 225: } 249,
  4180. { 226: } 250,
  4181. { 227: } 251,
  4182. { 228: } 253,
  4183. { 229: } 254,
  4184. { 230: } 256,
  4185. { 231: } 257,
  4186. { 232: } 258,
  4187. { 233: } 259,
  4188. { 234: } 260,
  4189. { 235: } 261,
  4190. { 236: } 263,
  4191. { 237: } 265,
  4192. { 238: } 266,
  4193. { 239: } 267,
  4194. { 240: } 269,
  4195. { 241: } 270,
  4196. { 242: } 271,
  4197. { 243: } 273,
  4198. { 244: } 275,
  4199. { 245: } 277,
  4200. { 246: } 278,
  4201. { 247: } 280,
  4202. { 248: } 282,
  4203. { 249: } 282,
  4204. { 250: } 282,
  4205. { 251: } 283,
  4206. { 252: } 284,
  4207. { 253: } 285,
  4208. { 254: } 285,
  4209. { 255: } 285,
  4210. { 256: } 287,
  4211. { 257: } 288,
  4212. { 258: } 289,
  4213. { 259: } 290,
  4214. { 260: } 292,
  4215. { 261: } 294,
  4216. { 262: } 296,
  4217. { 263: } 297,
  4218. { 264: } 298,
  4219. { 265: } 299,
  4220. { 266: } 301,
  4221. { 267: } 303,
  4222. { 268: } 304,
  4223. { 269: } 306,
  4224. { 270: } 307,
  4225. { 271: } 308,
  4226. { 272: } 309,
  4227. { 273: } 310,
  4228. { 274: } 310,
  4229. { 275: } 310,
  4230. { 276: } 310,
  4231. { 277: } 311,
  4232. { 278: } 312,
  4233. { 279: } 314,
  4234. { 280: } 315,
  4235. { 281: } 316,
  4236. { 282: } 317,
  4237. { 283: } 318,
  4238. { 284: } 319,
  4239. { 285: } 321,
  4240. { 286: } 323,
  4241. { 287: } 325,
  4242. { 288: } 327,
  4243. { 289: } 327,
  4244. { 290: } 327,
  4245. { 291: } 327,
  4246. { 292: } 328,
  4247. { 293: } 330,
  4248. { 294: } 332,
  4249. { 295: } 333,
  4250. { 296: } 335,
  4251. { 297: } 337,
  4252. { 298: } 337,
  4253. { 299: } 337,
  4254. { 300: } 339,
  4255. { 301: } 339,
  4256. { 302: } 339,
  4257. { 303: } 339,
  4258. { 304: } 339,
  4259. { 305: } 339,
  4260. { 306: } 339,
  4261. { 307: } 339,
  4262. { 308: } 339,
  4263. { 309: } 339,
  4264. { 310: } 339,
  4265. { 311: } 339,
  4266. { 312: } 340,
  4267. { 313: } 340,
  4268. { 314: } 340,
  4269. { 315: } 341,
  4270. { 316: } 341,
  4271. { 317: } 341,
  4272. { 318: } 341,
  4273. { 319: } 341,
  4274. { 320: } 341,
  4275. { 321: } 341,
  4276. { 322: } 341,
  4277. { 323: } 341,
  4278. { 324: } 341,
  4279. { 325: } 341,
  4280. { 326: } 341,
  4281. { 327: } 341,
  4282. { 328: } 341,
  4283. { 329: } 341,
  4284. { 330: } 341,
  4285. { 331: } 341,
  4286. { 332: } 341,
  4287. { 333: } 341,
  4288. { 334: } 341,
  4289. { 335: } 341,
  4290. { 336: } 341,
  4291. { 337: } 341,
  4292. { 338: } 341,
  4293. { 339: } 341,
  4294. { 340: } 341,
  4295. { 341: } 341,
  4296. { 342: } 341,
  4297. { 343: } 341,
  4298. { 344: } 342,
  4299. { 345: } 342,
  4300. { 346: } 342,
  4301. { 347: } 342,
  4302. { 348: } 342,
  4303. { 349: } 343,
  4304. { 350: } 343,
  4305. { 351: } 343,
  4306. { 352: } 343,
  4307. { 353: } 343,
  4308. { 354: } 343,
  4309. { 355: } 343,
  4310. { 356: } 343,
  4311. { 357: } 343,
  4312. { 358: } 343,
  4313. { 359: } 343,
  4314. { 360: } 343,
  4315. { 361: } 343,
  4316. { 362: } 343,
  4317. { 363: } 343,
  4318. { 364: } 343,
  4319. { 365: } 343,
  4320. { 366: } 343,
  4321. { 367: } 343,
  4322. { 368: } 344,
  4323. { 369: } 344,
  4324. { 370: } 345
  4325. );
  4326. yyml : array [0..yynstates-1] of Integer = (
  4327. { 0: } 1,
  4328. { 1: } 1,
  4329. { 2: } 1,
  4330. { 3: } 3,
  4331. { 4: } 4,
  4332. { 5: } 5,
  4333. { 6: } 7,
  4334. { 7: } 10,
  4335. { 8: } 13,
  4336. { 9: } 15,
  4337. { 10: } 17,
  4338. { 11: } 19,
  4339. { 12: } 21,
  4340. { 13: } 23,
  4341. { 14: } 24,
  4342. { 15: } 26,
  4343. { 16: } 28,
  4344. { 17: } 30,
  4345. { 18: } 32,
  4346. { 19: } 34,
  4347. { 20: } 36,
  4348. { 21: } 38,
  4349. { 22: } 40,
  4350. { 23: } 42,
  4351. { 24: } 44,
  4352. { 25: } 46,
  4353. { 26: } 48,
  4354. { 27: } 50,
  4355. { 28: } 52,
  4356. { 29: } 54,
  4357. { 30: } 56,
  4358. { 31: } 58,
  4359. { 32: } 60,
  4360. { 33: } 62,
  4361. { 34: } 64,
  4362. { 35: } 66,
  4363. { 36: } 68,
  4364. { 37: } 70,
  4365. { 38: } 72,
  4366. { 39: } 74,
  4367. { 40: } 76,
  4368. { 41: } 78,
  4369. { 42: } 80,
  4370. { 43: } 82,
  4371. { 44: } 84,
  4372. { 45: } 86,
  4373. { 46: } 88,
  4374. { 47: } 90,
  4375. { 48: } 92,
  4376. { 49: } 94,
  4377. { 50: } 96,
  4378. { 51: } 98,
  4379. { 52: } 100,
  4380. { 53: } 102,
  4381. { 54: } 104,
  4382. { 55: } 105,
  4383. { 56: } 106,
  4384. { 57: } 107,
  4385. { 58: } 108,
  4386. { 59: } 109,
  4387. { 60: } 109,
  4388. { 61: } 110,
  4389. { 62: } 110,
  4390. { 63: } 111,
  4391. { 64: } 111,
  4392. { 65: } 111,
  4393. { 66: } 112,
  4394. { 67: } 114,
  4395. { 68: } 115,
  4396. { 69: } 116,
  4397. { 70: } 116,
  4398. { 71: } 116,
  4399. { 72: } 117,
  4400. { 73: } 118,
  4401. { 74: } 119,
  4402. { 75: } 120,
  4403. { 76: } 121,
  4404. { 77: } 122,
  4405. { 78: } 123,
  4406. { 79: } 124,
  4407. { 80: } 125,
  4408. { 81: } 125,
  4409. { 82: } 125,
  4410. { 83: } 125,
  4411. { 84: } 125,
  4412. { 85: } 125,
  4413. { 86: } 125,
  4414. { 87: } 125,
  4415. { 88: } 125,
  4416. { 89: } 126,
  4417. { 90: } 127,
  4418. { 91: } 128,
  4419. { 92: } 129,
  4420. { 93: } 130,
  4421. { 94: } 131,
  4422. { 95: } 132,
  4423. { 96: } 133,
  4424. { 97: } 134,
  4425. { 98: } 135,
  4426. { 99: } 136,
  4427. { 100: } 137,
  4428. { 101: } 138,
  4429. { 102: } 139,
  4430. { 103: } 140,
  4431. { 104: } 141,
  4432. { 105: } 142,
  4433. { 106: } 143,
  4434. { 107: } 144,
  4435. { 108: } 145,
  4436. { 109: } 146,
  4437. { 110: } 147,
  4438. { 111: } 148,
  4439. { 112: } 149,
  4440. { 113: } 150,
  4441. { 114: } 151,
  4442. { 115: } 152,
  4443. { 116: } 153,
  4444. { 117: } 154,
  4445. { 118: } 155,
  4446. { 119: } 156,
  4447. { 120: } 157,
  4448. { 121: } 158,
  4449. { 122: } 159,
  4450. { 123: } 160,
  4451. { 124: } 160,
  4452. { 125: } 161,
  4453. { 126: } 162,
  4454. { 127: } 163,
  4455. { 128: } 164,
  4456. { 129: } 164,
  4457. { 130: } 164,
  4458. { 131: } 164,
  4459. { 132: } 164,
  4460. { 133: } 164,
  4461. { 134: } 164,
  4462. { 135: } 164,
  4463. { 136: } 164,
  4464. { 137: } 164,
  4465. { 138: } 165,
  4466. { 139: } 166,
  4467. { 140: } 167,
  4468. { 141: } 168,
  4469. { 142: } 169,
  4470. { 143: } 170,
  4471. { 144: } 171,
  4472. { 145: } 172,
  4473. { 146: } 173,
  4474. { 147: } 174,
  4475. { 148: } 175,
  4476. { 149: } 176,
  4477. { 150: } 177,
  4478. { 151: } 178,
  4479. { 152: } 179,
  4480. { 153: } 180,
  4481. { 154: } 181,
  4482. { 155: } 182,
  4483. { 156: } 183,
  4484. { 157: } 184,
  4485. { 158: } 185,
  4486. { 159: } 186,
  4487. { 160: } 188,
  4488. { 161: } 189,
  4489. { 162: } 190,
  4490. { 163: } 191,
  4491. { 164: } 193,
  4492. { 165: } 195,
  4493. { 166: } 196,
  4494. { 167: } 197,
  4495. { 168: } 198,
  4496. { 169: } 199,
  4497. { 170: } 200,
  4498. { 171: } 201,
  4499. { 172: } 201,
  4500. { 173: } 201,
  4501. { 174: } 202,
  4502. { 175: } 202,
  4503. { 176: } 202,
  4504. { 177: } 202,
  4505. { 178: } 202,
  4506. { 179: } 202,
  4507. { 180: } 203,
  4508. { 181: } 203,
  4509. { 182: } 203,
  4510. { 183: } 204,
  4511. { 184: } 206,
  4512. { 185: } 207,
  4513. { 186: } 208,
  4514. { 187: } 209,
  4515. { 188: } 210,
  4516. { 189: } 211,
  4517. { 190: } 212,
  4518. { 191: } 213,
  4519. { 192: } 214,
  4520. { 193: } 215,
  4521. { 194: } 216,
  4522. { 195: } 218,
  4523. { 196: } 220,
  4524. { 197: } 222,
  4525. { 198: } 223,
  4526. { 199: } 224,
  4527. { 200: } 225,
  4528. { 201: } 226,
  4529. { 202: } 227,
  4530. { 203: } 228,
  4531. { 204: } 229,
  4532. { 205: } 231,
  4533. { 206: } 232,
  4534. { 207: } 233,
  4535. { 208: } 234,
  4536. { 209: } 236,
  4537. { 210: } 237,
  4538. { 211: } 238,
  4539. { 212: } 240,
  4540. { 213: } 242,
  4541. { 214: } 244,
  4542. { 215: } 246,
  4543. { 216: } 247,
  4544. { 217: } 247,
  4545. { 218: } 247,
  4546. { 219: } 248,
  4547. { 220: } 249,
  4548. { 221: } 249,
  4549. { 222: } 249,
  4550. { 223: } 249,
  4551. { 224: } 249,
  4552. { 225: } 249,
  4553. { 226: } 250,
  4554. { 227: } 251,
  4555. { 228: } 252,
  4556. { 229: } 254,
  4557. { 230: } 255,
  4558. { 231: } 257,
  4559. { 232: } 258,
  4560. { 233: } 259,
  4561. { 234: } 260,
  4562. { 235: } 261,
  4563. { 236: } 262,
  4564. { 237: } 264,
  4565. { 238: } 266,
  4566. { 239: } 267,
  4567. { 240: } 268,
  4568. { 241: } 270,
  4569. { 242: } 271,
  4570. { 243: } 272,
  4571. { 244: } 274,
  4572. { 245: } 276,
  4573. { 246: } 278,
  4574. { 247: } 279,
  4575. { 248: } 281,
  4576. { 249: } 283,
  4577. { 250: } 283,
  4578. { 251: } 283,
  4579. { 252: } 284,
  4580. { 253: } 285,
  4581. { 254: } 286,
  4582. { 255: } 286,
  4583. { 256: } 286,
  4584. { 257: } 288,
  4585. { 258: } 289,
  4586. { 259: } 290,
  4587. { 260: } 291,
  4588. { 261: } 293,
  4589. { 262: } 295,
  4590. { 263: } 297,
  4591. { 264: } 298,
  4592. { 265: } 299,
  4593. { 266: } 300,
  4594. { 267: } 302,
  4595. { 268: } 304,
  4596. { 269: } 305,
  4597. { 270: } 307,
  4598. { 271: } 308,
  4599. { 272: } 309,
  4600. { 273: } 310,
  4601. { 274: } 311,
  4602. { 275: } 311,
  4603. { 276: } 311,
  4604. { 277: } 311,
  4605. { 278: } 312,
  4606. { 279: } 313,
  4607. { 280: } 315,
  4608. { 281: } 316,
  4609. { 282: } 317,
  4610. { 283: } 318,
  4611. { 284: } 319,
  4612. { 285: } 320,
  4613. { 286: } 322,
  4614. { 287: } 324,
  4615. { 288: } 326,
  4616. { 289: } 328,
  4617. { 290: } 328,
  4618. { 291: } 328,
  4619. { 292: } 328,
  4620. { 293: } 329,
  4621. { 294: } 331,
  4622. { 295: } 333,
  4623. { 296: } 334,
  4624. { 297: } 336,
  4625. { 298: } 338,
  4626. { 299: } 338,
  4627. { 300: } 338,
  4628. { 301: } 340,
  4629. { 302: } 340,
  4630. { 303: } 340,
  4631. { 304: } 340,
  4632. { 305: } 340,
  4633. { 306: } 340,
  4634. { 307: } 340,
  4635. { 308: } 340,
  4636. { 309: } 340,
  4637. { 310: } 340,
  4638. { 311: } 340,
  4639. { 312: } 340,
  4640. { 313: } 341,
  4641. { 314: } 341,
  4642. { 315: } 341,
  4643. { 316: } 342,
  4644. { 317: } 342,
  4645. { 318: } 342,
  4646. { 319: } 342,
  4647. { 320: } 342,
  4648. { 321: } 342,
  4649. { 322: } 342,
  4650. { 323: } 342,
  4651. { 324: } 342,
  4652. { 325: } 342,
  4653. { 326: } 342,
  4654. { 327: } 342,
  4655. { 328: } 342,
  4656. { 329: } 342,
  4657. { 330: } 342,
  4658. { 331: } 342,
  4659. { 332: } 342,
  4660. { 333: } 342,
  4661. { 334: } 342,
  4662. { 335: } 342,
  4663. { 336: } 342,
  4664. { 337: } 342,
  4665. { 338: } 342,
  4666. { 339: } 342,
  4667. { 340: } 342,
  4668. { 341: } 342,
  4669. { 342: } 342,
  4670. { 343: } 342,
  4671. { 344: } 342,
  4672. { 345: } 343,
  4673. { 346: } 343,
  4674. { 347: } 343,
  4675. { 348: } 343,
  4676. { 349: } 343,
  4677. { 350: } 344,
  4678. { 351: } 344,
  4679. { 352: } 344,
  4680. { 353: } 344,
  4681. { 354: } 344,
  4682. { 355: } 344,
  4683. { 356: } 344,
  4684. { 357: } 344,
  4685. { 358: } 344,
  4686. { 359: } 344,
  4687. { 360: } 344,
  4688. { 361: } 344,
  4689. { 362: } 344,
  4690. { 363: } 344,
  4691. { 364: } 344,
  4692. { 365: } 344,
  4693. { 366: } 344,
  4694. { 367: } 344,
  4695. { 368: } 344,
  4696. { 369: } 345,
  4697. { 370: } 345
  4698. );
  4699. yymh : array [0..yynstates-1] of Integer = (
  4700. { 0: } 0,
  4701. { 1: } 0,
  4702. { 2: } 2,
  4703. { 3: } 3,
  4704. { 4: } 4,
  4705. { 5: } 6,
  4706. { 6: } 9,
  4707. { 7: } 12,
  4708. { 8: } 14,
  4709. { 9: } 16,
  4710. { 10: } 18,
  4711. { 11: } 20,
  4712. { 12: } 22,
  4713. { 13: } 23,
  4714. { 14: } 25,
  4715. { 15: } 27,
  4716. { 16: } 29,
  4717. { 17: } 31,
  4718. { 18: } 33,
  4719. { 19: } 35,
  4720. { 20: } 37,
  4721. { 21: } 39,
  4722. { 22: } 41,
  4723. { 23: } 43,
  4724. { 24: } 45,
  4725. { 25: } 47,
  4726. { 26: } 49,
  4727. { 27: } 51,
  4728. { 28: } 53,
  4729. { 29: } 55,
  4730. { 30: } 57,
  4731. { 31: } 59,
  4732. { 32: } 61,
  4733. { 33: } 63,
  4734. { 34: } 65,
  4735. { 35: } 67,
  4736. { 36: } 69,
  4737. { 37: } 71,
  4738. { 38: } 73,
  4739. { 39: } 75,
  4740. { 40: } 77,
  4741. { 41: } 79,
  4742. { 42: } 81,
  4743. { 43: } 83,
  4744. { 44: } 85,
  4745. { 45: } 87,
  4746. { 46: } 89,
  4747. { 47: } 91,
  4748. { 48: } 93,
  4749. { 49: } 95,
  4750. { 50: } 97,
  4751. { 51: } 99,
  4752. { 52: } 101,
  4753. { 53: } 103,
  4754. { 54: } 104,
  4755. { 55: } 105,
  4756. { 56: } 106,
  4757. { 57: } 107,
  4758. { 58: } 108,
  4759. { 59: } 108,
  4760. { 60: } 109,
  4761. { 61: } 109,
  4762. { 62: } 110,
  4763. { 63: } 110,
  4764. { 64: } 110,
  4765. { 65: } 111,
  4766. { 66: } 113,
  4767. { 67: } 114,
  4768. { 68: } 115,
  4769. { 69: } 115,
  4770. { 70: } 115,
  4771. { 71: } 116,
  4772. { 72: } 117,
  4773. { 73: } 118,
  4774. { 74: } 119,
  4775. { 75: } 120,
  4776. { 76: } 121,
  4777. { 77: } 122,
  4778. { 78: } 123,
  4779. { 79: } 124,
  4780. { 80: } 124,
  4781. { 81: } 124,
  4782. { 82: } 124,
  4783. { 83: } 124,
  4784. { 84: } 124,
  4785. { 85: } 124,
  4786. { 86: } 124,
  4787. { 87: } 124,
  4788. { 88: } 125,
  4789. { 89: } 126,
  4790. { 90: } 127,
  4791. { 91: } 128,
  4792. { 92: } 129,
  4793. { 93: } 130,
  4794. { 94: } 131,
  4795. { 95: } 132,
  4796. { 96: } 133,
  4797. { 97: } 134,
  4798. { 98: } 135,
  4799. { 99: } 136,
  4800. { 100: } 137,
  4801. { 101: } 138,
  4802. { 102: } 139,
  4803. { 103: } 140,
  4804. { 104: } 141,
  4805. { 105: } 142,
  4806. { 106: } 143,
  4807. { 107: } 144,
  4808. { 108: } 145,
  4809. { 109: } 146,
  4810. { 110: } 147,
  4811. { 111: } 148,
  4812. { 112: } 149,
  4813. { 113: } 150,
  4814. { 114: } 151,
  4815. { 115: } 152,
  4816. { 116: } 153,
  4817. { 117: } 154,
  4818. { 118: } 155,
  4819. { 119: } 156,
  4820. { 120: } 157,
  4821. { 121: } 158,
  4822. { 122: } 159,
  4823. { 123: } 159,
  4824. { 124: } 160,
  4825. { 125: } 161,
  4826. { 126: } 162,
  4827. { 127: } 163,
  4828. { 128: } 163,
  4829. { 129: } 163,
  4830. { 130: } 163,
  4831. { 131: } 163,
  4832. { 132: } 163,
  4833. { 133: } 163,
  4834. { 134: } 163,
  4835. { 135: } 163,
  4836. { 136: } 163,
  4837. { 137: } 164,
  4838. { 138: } 165,
  4839. { 139: } 166,
  4840. { 140: } 167,
  4841. { 141: } 168,
  4842. { 142: } 169,
  4843. { 143: } 170,
  4844. { 144: } 171,
  4845. { 145: } 172,
  4846. { 146: } 173,
  4847. { 147: } 174,
  4848. { 148: } 175,
  4849. { 149: } 176,
  4850. { 150: } 177,
  4851. { 151: } 178,
  4852. { 152: } 179,
  4853. { 153: } 180,
  4854. { 154: } 181,
  4855. { 155: } 182,
  4856. { 156: } 183,
  4857. { 157: } 184,
  4858. { 158: } 185,
  4859. { 159: } 187,
  4860. { 160: } 188,
  4861. { 161: } 189,
  4862. { 162: } 190,
  4863. { 163: } 192,
  4864. { 164: } 194,
  4865. { 165: } 195,
  4866. { 166: } 196,
  4867. { 167: } 197,
  4868. { 168: } 198,
  4869. { 169: } 199,
  4870. { 170: } 200,
  4871. { 171: } 200,
  4872. { 172: } 200,
  4873. { 173: } 201,
  4874. { 174: } 201,
  4875. { 175: } 201,
  4876. { 176: } 201,
  4877. { 177: } 201,
  4878. { 178: } 201,
  4879. { 179: } 202,
  4880. { 180: } 202,
  4881. { 181: } 202,
  4882. { 182: } 203,
  4883. { 183: } 205,
  4884. { 184: } 206,
  4885. { 185: } 207,
  4886. { 186: } 208,
  4887. { 187: } 209,
  4888. { 188: } 210,
  4889. { 189: } 211,
  4890. { 190: } 212,
  4891. { 191: } 213,
  4892. { 192: } 214,
  4893. { 193: } 215,
  4894. { 194: } 217,
  4895. { 195: } 219,
  4896. { 196: } 221,
  4897. { 197: } 222,
  4898. { 198: } 223,
  4899. { 199: } 224,
  4900. { 200: } 225,
  4901. { 201: } 226,
  4902. { 202: } 227,
  4903. { 203: } 228,
  4904. { 204: } 230,
  4905. { 205: } 231,
  4906. { 206: } 232,
  4907. { 207: } 233,
  4908. { 208: } 235,
  4909. { 209: } 236,
  4910. { 210: } 237,
  4911. { 211: } 239,
  4912. { 212: } 241,
  4913. { 213: } 243,
  4914. { 214: } 245,
  4915. { 215: } 246,
  4916. { 216: } 246,
  4917. { 217: } 246,
  4918. { 218: } 247,
  4919. { 219: } 248,
  4920. { 220: } 248,
  4921. { 221: } 248,
  4922. { 222: } 248,
  4923. { 223: } 248,
  4924. { 224: } 248,
  4925. { 225: } 249,
  4926. { 226: } 250,
  4927. { 227: } 251,
  4928. { 228: } 253,
  4929. { 229: } 254,
  4930. { 230: } 256,
  4931. { 231: } 257,
  4932. { 232: } 258,
  4933. { 233: } 259,
  4934. { 234: } 260,
  4935. { 235: } 261,
  4936. { 236: } 263,
  4937. { 237: } 265,
  4938. { 238: } 266,
  4939. { 239: } 267,
  4940. { 240: } 269,
  4941. { 241: } 270,
  4942. { 242: } 271,
  4943. { 243: } 273,
  4944. { 244: } 275,
  4945. { 245: } 277,
  4946. { 246: } 278,
  4947. { 247: } 280,
  4948. { 248: } 282,
  4949. { 249: } 282,
  4950. { 250: } 282,
  4951. { 251: } 283,
  4952. { 252: } 284,
  4953. { 253: } 285,
  4954. { 254: } 285,
  4955. { 255: } 285,
  4956. { 256: } 287,
  4957. { 257: } 288,
  4958. { 258: } 289,
  4959. { 259: } 290,
  4960. { 260: } 292,
  4961. { 261: } 294,
  4962. { 262: } 296,
  4963. { 263: } 297,
  4964. { 264: } 298,
  4965. { 265: } 299,
  4966. { 266: } 301,
  4967. { 267: } 303,
  4968. { 268: } 304,
  4969. { 269: } 306,
  4970. { 270: } 307,
  4971. { 271: } 308,
  4972. { 272: } 309,
  4973. { 273: } 310,
  4974. { 274: } 310,
  4975. { 275: } 310,
  4976. { 276: } 310,
  4977. { 277: } 311,
  4978. { 278: } 312,
  4979. { 279: } 314,
  4980. { 280: } 315,
  4981. { 281: } 316,
  4982. { 282: } 317,
  4983. { 283: } 318,
  4984. { 284: } 319,
  4985. { 285: } 321,
  4986. { 286: } 323,
  4987. { 287: } 325,
  4988. { 288: } 327,
  4989. { 289: } 327,
  4990. { 290: } 327,
  4991. { 291: } 327,
  4992. { 292: } 328,
  4993. { 293: } 330,
  4994. { 294: } 332,
  4995. { 295: } 333,
  4996. { 296: } 335,
  4997. { 297: } 337,
  4998. { 298: } 337,
  4999. { 299: } 337,
  5000. { 300: } 339,
  5001. { 301: } 339,
  5002. { 302: } 339,
  5003. { 303: } 339,
  5004. { 304: } 339,
  5005. { 305: } 339,
  5006. { 306: } 339,
  5007. { 307: } 339,
  5008. { 308: } 339,
  5009. { 309: } 339,
  5010. { 310: } 339,
  5011. { 311: } 339,
  5012. { 312: } 340,
  5013. { 313: } 340,
  5014. { 314: } 340,
  5015. { 315: } 341,
  5016. { 316: } 341,
  5017. { 317: } 341,
  5018. { 318: } 341,
  5019. { 319: } 341,
  5020. { 320: } 341,
  5021. { 321: } 341,
  5022. { 322: } 341,
  5023. { 323: } 341,
  5024. { 324: } 341,
  5025. { 325: } 341,
  5026. { 326: } 341,
  5027. { 327: } 341,
  5028. { 328: } 341,
  5029. { 329: } 341,
  5030. { 330: } 341,
  5031. { 331: } 341,
  5032. { 332: } 341,
  5033. { 333: } 341,
  5034. { 334: } 341,
  5035. { 335: } 341,
  5036. { 336: } 341,
  5037. { 337: } 341,
  5038. { 338: } 341,
  5039. { 339: } 341,
  5040. { 340: } 341,
  5041. { 341: } 341,
  5042. { 342: } 341,
  5043. { 343: } 341,
  5044. { 344: } 342,
  5045. { 345: } 342,
  5046. { 346: } 342,
  5047. { 347: } 342,
  5048. { 348: } 342,
  5049. { 349: } 343,
  5050. { 350: } 343,
  5051. { 351: } 343,
  5052. { 352: } 343,
  5053. { 353: } 343,
  5054. { 354: } 343,
  5055. { 355: } 343,
  5056. { 356: } 343,
  5057. { 357: } 343,
  5058. { 358: } 343,
  5059. { 359: } 343,
  5060. { 360: } 343,
  5061. { 361: } 343,
  5062. { 362: } 343,
  5063. { 363: } 343,
  5064. { 364: } 343,
  5065. { 365: } 343,
  5066. { 366: } 343,
  5067. { 367: } 343,
  5068. { 368: } 344,
  5069. { 369: } 344,
  5070. { 370: } 345
  5071. );
  5072. yytl : array [0..yynstates-1] of Integer = (
  5073. { 0: } 1,
  5074. { 1: } 56,
  5075. { 2: } 111,
  5076. { 3: } 113,
  5077. { 4: } 115,
  5078. { 5: } 117,
  5079. { 6: } 120,
  5080. { 7: } 125,
  5081. { 8: } 131,
  5082. { 9: } 132,
  5083. { 10: } 133,
  5084. { 11: } 134,
  5085. { 12: } 136,
  5086. { 13: } 138,
  5087. { 14: } 146,
  5088. { 15: } 146,
  5089. { 16: } 146,
  5090. { 17: } 146,
  5091. { 18: } 146,
  5092. { 19: } 146,
  5093. { 20: } 146,
  5094. { 21: } 146,
  5095. { 22: } 146,
  5096. { 23: } 146,
  5097. { 24: } 146,
  5098. { 25: } 146,
  5099. { 26: } 146,
  5100. { 27: } 147,
  5101. { 28: } 150,
  5102. { 29: } 153,
  5103. { 30: } 157,
  5104. { 31: } 159,
  5105. { 32: } 161,
  5106. { 33: } 163,
  5107. { 34: } 165,
  5108. { 35: } 167,
  5109. { 36: } 170,
  5110. { 37: } 172,
  5111. { 38: } 176,
  5112. { 39: } 176,
  5113. { 40: } 176,
  5114. { 41: } 178,
  5115. { 42: } 180,
  5116. { 43: } 182,
  5117. { 44: } 184,
  5118. { 45: } 187,
  5119. { 46: } 189,
  5120. { 47: } 191,
  5121. { 48: } 193,
  5122. { 49: } 195,
  5123. { 50: } 197,
  5124. { 51: } 199,
  5125. { 52: } 200,
  5126. { 53: } 200,
  5127. { 54: } 200,
  5128. { 55: } 200,
  5129. { 56: } 201,
  5130. { 57: } 201,
  5131. { 58: } 201,
  5132. { 59: } 201,
  5133. { 60: } 203,
  5134. { 61: } 203,
  5135. { 62: } 205,
  5136. { 63: } 205,
  5137. { 64: } 207,
  5138. { 65: } 209,
  5139. { 66: } 210,
  5140. { 67: } 215,
  5141. { 68: } 216,
  5142. { 69: } 217,
  5143. { 70: } 218,
  5144. { 71: } 220,
  5145. { 72: } 223,
  5146. { 73: } 223,
  5147. { 74: } 223,
  5148. { 75: } 223,
  5149. { 76: } 223,
  5150. { 77: } 223,
  5151. { 78: } 223,
  5152. { 79: } 223,
  5153. { 80: } 223,
  5154. { 81: } 225,
  5155. { 82: } 231,
  5156. { 83: } 234,
  5157. { 84: } 235,
  5158. { 85: } 242,
  5159. { 86: } 243,
  5160. { 87: } 244,
  5161. { 88: } 245,
  5162. { 89: } 247,
  5163. { 90: } 249,
  5164. { 91: } 251,
  5165. { 92: } 253,
  5166. { 93: } 255,
  5167. { 94: } 257,
  5168. { 95: } 259,
  5169. { 96: } 262,
  5170. { 97: } 264,
  5171. { 98: } 266,
  5172. { 99: } 268,
  5173. { 100: } 270,
  5174. { 101: } 272,
  5175. { 102: } 274,
  5176. { 103: } 277,
  5177. { 104: } 279,
  5178. { 105: } 281,
  5179. { 106: } 283,
  5180. { 107: } 285,
  5181. { 108: } 287,
  5182. { 109: } 289,
  5183. { 110: } 291,
  5184. { 111: } 293,
  5185. { 112: } 295,
  5186. { 113: } 297,
  5187. { 114: } 299,
  5188. { 115: } 301,
  5189. { 116: } 303,
  5190. { 117: } 305,
  5191. { 118: } 307,
  5192. { 119: } 307,
  5193. { 120: } 307,
  5194. { 121: } 307,
  5195. { 122: } 307,
  5196. { 123: } 309,
  5197. { 124: } 310,
  5198. { 125: } 311,
  5199. { 126: } 312,
  5200. { 127: } 313,
  5201. { 128: } 314,
  5202. { 129: } 315,
  5203. { 130: } 317,
  5204. { 131: } 319,
  5205. { 132: } 320,
  5206. { 133: } 321,
  5207. { 134: } 322,
  5208. { 135: } 324,
  5209. { 136: } 325,
  5210. { 137: } 326,
  5211. { 138: } 326,
  5212. { 139: } 328,
  5213. { 140: } 330,
  5214. { 141: } 332,
  5215. { 142: } 334,
  5216. { 143: } 336,
  5217. { 144: } 338,
  5218. { 145: } 340,
  5219. { 146: } 342,
  5220. { 147: } 344,
  5221. { 148: } 347,
  5222. { 149: } 349,
  5223. { 150: } 351,
  5224. { 151: } 353,
  5225. { 152: } 355,
  5226. { 153: } 357,
  5227. { 154: } 359,
  5228. { 155: } 361,
  5229. { 156: } 363,
  5230. { 157: } 365,
  5231. { 158: } 367,
  5232. { 159: } 369,
  5233. { 160: } 374,
  5234. { 161: } 376,
  5235. { 162: } 378,
  5236. { 163: } 380,
  5237. { 164: } 381,
  5238. { 165: } 382,
  5239. { 166: } 384,
  5240. { 167: } 386,
  5241. { 168: } 388,
  5242. { 169: } 390,
  5243. { 170: } 392,
  5244. { 171: } 392,
  5245. { 172: } 393,
  5246. { 173: } 394,
  5247. { 174: } 394,
  5248. { 175: } 395,
  5249. { 176: } 396,
  5250. { 177: } 397,
  5251. { 178: } 398,
  5252. { 179: } 399,
  5253. { 180: } 399,
  5254. { 181: } 400,
  5255. { 182: } 401,
  5256. { 183: } 403,
  5257. { 184: } 404,
  5258. { 185: } 406,
  5259. { 186: } 408,
  5260. { 187: } 410,
  5261. { 188: } 412,
  5262. { 189: } 414,
  5263. { 190: } 416,
  5264. { 191: } 418,
  5265. { 192: } 420,
  5266. { 193: } 422,
  5267. { 194: } 424,
  5268. { 195: } 425,
  5269. { 196: } 426,
  5270. { 197: } 427,
  5271. { 198: } 429,
  5272. { 199: } 431,
  5273. { 200: } 433,
  5274. { 201: } 435,
  5275. { 202: } 437,
  5276. { 203: } 439,
  5277. { 204: } 441,
  5278. { 205: } 442,
  5279. { 206: } 444,
  5280. { 207: } 446,
  5281. { 208: } 448,
  5282. { 209: } 449,
  5283. { 210: } 451,
  5284. { 211: } 453,
  5285. { 212: } 454,
  5286. { 213: } 455,
  5287. { 214: } 456,
  5288. { 215: } 457,
  5289. { 216: } 459,
  5290. { 217: } 460,
  5291. { 218: } 461,
  5292. { 219: } 461,
  5293. { 220: } 461,
  5294. { 221: } 462,
  5295. { 222: } 463,
  5296. { 223: } 464,
  5297. { 224: } 465,
  5298. { 225: } 466,
  5299. { 226: } 468,
  5300. { 227: } 470,
  5301. { 228: } 472,
  5302. { 229: } 473,
  5303. { 230: } 475,
  5304. { 231: } 476,
  5305. { 232: } 478,
  5306. { 233: } 480,
  5307. { 234: } 482,
  5308. { 235: } 484,
  5309. { 236: } 486,
  5310. { 237: } 487,
  5311. { 238: } 488,
  5312. { 239: } 490,
  5313. { 240: } 492,
  5314. { 241: } 493,
  5315. { 242: } 495,
  5316. { 243: } 497,
  5317. { 244: } 498,
  5318. { 245: } 499,
  5319. { 246: } 500,
  5320. { 247: } 505,
  5321. { 248: } 506,
  5322. { 249: } 507,
  5323. { 250: } 510,
  5324. { 251: } 511,
  5325. { 252: } 511,
  5326. { 253: } 511,
  5327. { 254: } 511,
  5328. { 255: } 512,
  5329. { 256: } 513,
  5330. { 257: } 514,
  5331. { 258: } 516,
  5332. { 259: } 518,
  5333. { 260: } 520,
  5334. { 261: } 521,
  5335. { 262: } 522,
  5336. { 263: } 523,
  5337. { 264: } 525,
  5338. { 265: } 527,
  5339. { 266: } 529,
  5340. { 267: } 530,
  5341. { 268: } 531,
  5342. { 269: } 533,
  5343. { 270: } 534,
  5344. { 271: } 536,
  5345. { 272: } 538,
  5346. { 273: } 540,
  5347. { 274: } 543,
  5348. { 275: } 544,
  5349. { 276: } 545,
  5350. { 277: } 546,
  5351. { 278: } 546,
  5352. { 279: } 546,
  5353. { 280: } 547,
  5354. { 281: } 549,
  5355. { 282: } 551,
  5356. { 283: } 553,
  5357. { 284: } 555,
  5358. { 285: } 557,
  5359. { 286: } 558,
  5360. { 287: } 559,
  5361. { 288: } 560,
  5362. { 289: } 561,
  5363. { 290: } 564,
  5364. { 291: } 565,
  5365. { 292: } 566,
  5366. { 293: } 566,
  5367. { 294: } 567,
  5368. { 295: } 568,
  5369. { 296: } 570,
  5370. { 297: } 571,
  5371. { 298: } 572,
  5372. { 299: } 573,
  5373. { 300: } 574,
  5374. { 301: } 575,
  5375. { 302: } 576,
  5376. { 303: } 577,
  5377. { 304: } 578,
  5378. { 305: } 579,
  5379. { 306: } 580,
  5380. { 307: } 581,
  5381. { 308: } 582,
  5382. { 309: } 583,
  5383. { 310: } 584,
  5384. { 311: } 585,
  5385. { 312: } 586,
  5386. { 313: } 588,
  5387. { 314: } 589,
  5388. { 315: } 591,
  5389. { 316: } 593,
  5390. { 317: } 594,
  5391. { 318: } 595,
  5392. { 319: } 597,
  5393. { 320: } 598,
  5394. { 321: } 599,
  5395. { 322: } 600,
  5396. { 323: } 601,
  5397. { 324: } 602,
  5398. { 325: } 603,
  5399. { 326: } 604,
  5400. { 327: } 605,
  5401. { 328: } 606,
  5402. { 329: } 607,
  5403. { 330: } 608,
  5404. { 331: } 609,
  5405. { 332: } 610,
  5406. { 333: } 611,
  5407. { 334: } 612,
  5408. { 335: } 613,
  5409. { 336: } 614,
  5410. { 337: } 615,
  5411. { 338: } 616,
  5412. { 339: } 617,
  5413. { 340: } 618,
  5414. { 341: } 619,
  5415. { 342: } 620,
  5416. { 343: } 621,
  5417. { 344: } 622,
  5418. { 345: } 622,
  5419. { 346: } 623,
  5420. { 347: } 624,
  5421. { 348: } 625,
  5422. { 349: } 626,
  5423. { 350: } 626,
  5424. { 351: } 627,
  5425. { 352: } 628,
  5426. { 353: } 629,
  5427. { 354: } 630,
  5428. { 355: } 631,
  5429. { 356: } 632,
  5430. { 357: } 633,
  5431. { 358: } 634,
  5432. { 359: } 635,
  5433. { 360: } 636,
  5434. { 361: } 637,
  5435. { 362: } 638,
  5436. { 363: } 639,
  5437. { 364: } 640,
  5438. { 365: } 641,
  5439. { 366: } 642,
  5440. { 367: } 643,
  5441. { 368: } 644,
  5442. { 369: } 644,
  5443. { 370: } 645
  5444. );
  5445. yyth : array [0..yynstates-1] of Integer = (
  5446. { 0: } 55,
  5447. { 1: } 110,
  5448. { 2: } 112,
  5449. { 3: } 114,
  5450. { 4: } 116,
  5451. { 5: } 119,
  5452. { 6: } 124,
  5453. { 7: } 130,
  5454. { 8: } 131,
  5455. { 9: } 132,
  5456. { 10: } 133,
  5457. { 11: } 135,
  5458. { 12: } 137,
  5459. { 13: } 145,
  5460. { 14: } 145,
  5461. { 15: } 145,
  5462. { 16: } 145,
  5463. { 17: } 145,
  5464. { 18: } 145,
  5465. { 19: } 145,
  5466. { 20: } 145,
  5467. { 21: } 145,
  5468. { 22: } 145,
  5469. { 23: } 145,
  5470. { 24: } 145,
  5471. { 25: } 145,
  5472. { 26: } 146,
  5473. { 27: } 149,
  5474. { 28: } 152,
  5475. { 29: } 156,
  5476. { 30: } 158,
  5477. { 31: } 160,
  5478. { 32: } 162,
  5479. { 33: } 164,
  5480. { 34: } 166,
  5481. { 35: } 169,
  5482. { 36: } 171,
  5483. { 37: } 175,
  5484. { 38: } 175,
  5485. { 39: } 175,
  5486. { 40: } 177,
  5487. { 41: } 179,
  5488. { 42: } 181,
  5489. { 43: } 183,
  5490. { 44: } 186,
  5491. { 45: } 188,
  5492. { 46: } 190,
  5493. { 47: } 192,
  5494. { 48: } 194,
  5495. { 49: } 196,
  5496. { 50: } 198,
  5497. { 51: } 199,
  5498. { 52: } 199,
  5499. { 53: } 199,
  5500. { 54: } 199,
  5501. { 55: } 200,
  5502. { 56: } 200,
  5503. { 57: } 200,
  5504. { 58: } 200,
  5505. { 59: } 202,
  5506. { 60: } 202,
  5507. { 61: } 204,
  5508. { 62: } 204,
  5509. { 63: } 206,
  5510. { 64: } 208,
  5511. { 65: } 209,
  5512. { 66: } 214,
  5513. { 67: } 215,
  5514. { 68: } 216,
  5515. { 69: } 217,
  5516. { 70: } 219,
  5517. { 71: } 222,
  5518. { 72: } 222,
  5519. { 73: } 222,
  5520. { 74: } 222,
  5521. { 75: } 222,
  5522. { 76: } 222,
  5523. { 77: } 222,
  5524. { 78: } 222,
  5525. { 79: } 222,
  5526. { 80: } 224,
  5527. { 81: } 230,
  5528. { 82: } 233,
  5529. { 83: } 234,
  5530. { 84: } 241,
  5531. { 85: } 242,
  5532. { 86: } 243,
  5533. { 87: } 244,
  5534. { 88: } 246,
  5535. { 89: } 248,
  5536. { 90: } 250,
  5537. { 91: } 252,
  5538. { 92: } 254,
  5539. { 93: } 256,
  5540. { 94: } 258,
  5541. { 95: } 261,
  5542. { 96: } 263,
  5543. { 97: } 265,
  5544. { 98: } 267,
  5545. { 99: } 269,
  5546. { 100: } 271,
  5547. { 101: } 273,
  5548. { 102: } 276,
  5549. { 103: } 278,
  5550. { 104: } 280,
  5551. { 105: } 282,
  5552. { 106: } 284,
  5553. { 107: } 286,
  5554. { 108: } 288,
  5555. { 109: } 290,
  5556. { 110: } 292,
  5557. { 111: } 294,
  5558. { 112: } 296,
  5559. { 113: } 298,
  5560. { 114: } 300,
  5561. { 115: } 302,
  5562. { 116: } 304,
  5563. { 117: } 306,
  5564. { 118: } 306,
  5565. { 119: } 306,
  5566. { 120: } 306,
  5567. { 121: } 306,
  5568. { 122: } 308,
  5569. { 123: } 309,
  5570. { 124: } 310,
  5571. { 125: } 311,
  5572. { 126: } 312,
  5573. { 127: } 313,
  5574. { 128: } 314,
  5575. { 129: } 316,
  5576. { 130: } 318,
  5577. { 131: } 319,
  5578. { 132: } 320,
  5579. { 133: } 321,
  5580. { 134: } 323,
  5581. { 135: } 324,
  5582. { 136: } 325,
  5583. { 137: } 325,
  5584. { 138: } 327,
  5585. { 139: } 329,
  5586. { 140: } 331,
  5587. { 141: } 333,
  5588. { 142: } 335,
  5589. { 143: } 337,
  5590. { 144: } 339,
  5591. { 145: } 341,
  5592. { 146: } 343,
  5593. { 147: } 346,
  5594. { 148: } 348,
  5595. { 149: } 350,
  5596. { 150: } 352,
  5597. { 151: } 354,
  5598. { 152: } 356,
  5599. { 153: } 358,
  5600. { 154: } 360,
  5601. { 155: } 362,
  5602. { 156: } 364,
  5603. { 157: } 366,
  5604. { 158: } 368,
  5605. { 159: } 373,
  5606. { 160: } 375,
  5607. { 161: } 377,
  5608. { 162: } 379,
  5609. { 163: } 380,
  5610. { 164: } 381,
  5611. { 165: } 383,
  5612. { 166: } 385,
  5613. { 167: } 387,
  5614. { 168: } 389,
  5615. { 169: } 391,
  5616. { 170: } 391,
  5617. { 171: } 392,
  5618. { 172: } 393,
  5619. { 173: } 393,
  5620. { 174: } 394,
  5621. { 175: } 395,
  5622. { 176: } 396,
  5623. { 177: } 397,
  5624. { 178: } 398,
  5625. { 179: } 398,
  5626. { 180: } 399,
  5627. { 181: } 400,
  5628. { 182: } 402,
  5629. { 183: } 403,
  5630. { 184: } 405,
  5631. { 185: } 407,
  5632. { 186: } 409,
  5633. { 187: } 411,
  5634. { 188: } 413,
  5635. { 189: } 415,
  5636. { 190: } 417,
  5637. { 191: } 419,
  5638. { 192: } 421,
  5639. { 193: } 423,
  5640. { 194: } 424,
  5641. { 195: } 425,
  5642. { 196: } 426,
  5643. { 197: } 428,
  5644. { 198: } 430,
  5645. { 199: } 432,
  5646. { 200: } 434,
  5647. { 201: } 436,
  5648. { 202: } 438,
  5649. { 203: } 440,
  5650. { 204: } 441,
  5651. { 205: } 443,
  5652. { 206: } 445,
  5653. { 207: } 447,
  5654. { 208: } 448,
  5655. { 209: } 450,
  5656. { 210: } 452,
  5657. { 211: } 453,
  5658. { 212: } 454,
  5659. { 213: } 455,
  5660. { 214: } 456,
  5661. { 215: } 458,
  5662. { 216: } 459,
  5663. { 217: } 460,
  5664. { 218: } 460,
  5665. { 219: } 460,
  5666. { 220: } 461,
  5667. { 221: } 462,
  5668. { 222: } 463,
  5669. { 223: } 464,
  5670. { 224: } 465,
  5671. { 225: } 467,
  5672. { 226: } 469,
  5673. { 227: } 471,
  5674. { 228: } 472,
  5675. { 229: } 474,
  5676. { 230: } 475,
  5677. { 231: } 477,
  5678. { 232: } 479,
  5679. { 233: } 481,
  5680. { 234: } 483,
  5681. { 235: } 485,
  5682. { 236: } 486,
  5683. { 237: } 487,
  5684. { 238: } 489,
  5685. { 239: } 491,
  5686. { 240: } 492,
  5687. { 241: } 494,
  5688. { 242: } 496,
  5689. { 243: } 497,
  5690. { 244: } 498,
  5691. { 245: } 499,
  5692. { 246: } 504,
  5693. { 247: } 505,
  5694. { 248: } 506,
  5695. { 249: } 509,
  5696. { 250: } 510,
  5697. { 251: } 510,
  5698. { 252: } 510,
  5699. { 253: } 510,
  5700. { 254: } 511,
  5701. { 255: } 512,
  5702. { 256: } 513,
  5703. { 257: } 515,
  5704. { 258: } 517,
  5705. { 259: } 519,
  5706. { 260: } 520,
  5707. { 261: } 521,
  5708. { 262: } 522,
  5709. { 263: } 524,
  5710. { 264: } 526,
  5711. { 265: } 528,
  5712. { 266: } 529,
  5713. { 267: } 530,
  5714. { 268: } 532,
  5715. { 269: } 533,
  5716. { 270: } 535,
  5717. { 271: } 537,
  5718. { 272: } 539,
  5719. { 273: } 542,
  5720. { 274: } 543,
  5721. { 275: } 544,
  5722. { 276: } 545,
  5723. { 277: } 545,
  5724. { 278: } 545,
  5725. { 279: } 546,
  5726. { 280: } 548,
  5727. { 281: } 550,
  5728. { 282: } 552,
  5729. { 283: } 554,
  5730. { 284: } 556,
  5731. { 285: } 557,
  5732. { 286: } 558,
  5733. { 287: } 559,
  5734. { 288: } 560,
  5735. { 289: } 563,
  5736. { 290: } 564,
  5737. { 291: } 565,
  5738. { 292: } 565,
  5739. { 293: } 566,
  5740. { 294: } 567,
  5741. { 295: } 569,
  5742. { 296: } 570,
  5743. { 297: } 571,
  5744. { 298: } 572,
  5745. { 299: } 573,
  5746. { 300: } 574,
  5747. { 301: } 575,
  5748. { 302: } 576,
  5749. { 303: } 577,
  5750. { 304: } 578,
  5751. { 305: } 579,
  5752. { 306: } 580,
  5753. { 307: } 581,
  5754. { 308: } 582,
  5755. { 309: } 583,
  5756. { 310: } 584,
  5757. { 311: } 585,
  5758. { 312: } 587,
  5759. { 313: } 588,
  5760. { 314: } 590,
  5761. { 315: } 592,
  5762. { 316: } 593,
  5763. { 317: } 594,
  5764. { 318: } 596,
  5765. { 319: } 597,
  5766. { 320: } 598,
  5767. { 321: } 599,
  5768. { 322: } 600,
  5769. { 323: } 601,
  5770. { 324: } 602,
  5771. { 325: } 603,
  5772. { 326: } 604,
  5773. { 327: } 605,
  5774. { 328: } 606,
  5775. { 329: } 607,
  5776. { 330: } 608,
  5777. { 331: } 609,
  5778. { 332: } 610,
  5779. { 333: } 611,
  5780. { 334: } 612,
  5781. { 335: } 613,
  5782. { 336: } 614,
  5783. { 337: } 615,
  5784. { 338: } 616,
  5785. { 339: } 617,
  5786. { 340: } 618,
  5787. { 341: } 619,
  5788. { 342: } 620,
  5789. { 343: } 621,
  5790. { 344: } 621,
  5791. { 345: } 622,
  5792. { 346: } 623,
  5793. { 347: } 624,
  5794. { 348: } 625,
  5795. { 349: } 625,
  5796. { 350: } 626,
  5797. { 351: } 627,
  5798. { 352: } 628,
  5799. { 353: } 629,
  5800. { 354: } 630,
  5801. { 355: } 631,
  5802. { 356: } 632,
  5803. { 357: } 633,
  5804. { 358: } 634,
  5805. { 359: } 635,
  5806. { 360: } 636,
  5807. { 361: } 637,
  5808. { 362: } 638,
  5809. { 363: } 639,
  5810. { 364: } 640,
  5811. { 365: } 641,
  5812. { 366: } 642,
  5813. { 367: } 643,
  5814. { 368: } 643,
  5815. { 369: } 644,
  5816. { 370: } 644
  5817. );
  5818. var yyn : Integer;
  5819. label start, scan, action;
  5820. begin
  5821. start:
  5822. (* initialize: *)
  5823. yynew;
  5824. scan:
  5825. (* mark positions and matches: *)
  5826. for yyn := yykl[yystate] to yykh[yystate] do yymark(yyk[yyn]);
  5827. for yyn := yymh[yystate] downto yyml[yystate] do yymatch(yym[yyn]);
  5828. if yytl[yystate]>yyth[yystate] then goto action; (* dead state *)
  5829. (* get next character: *)
  5830. yyscan;
  5831. (* determine action: *)
  5832. yyn := yytl[yystate];
  5833. while (yyn<=yyth[yystate]) and not (yyactchar in yyt[yyn].cc) do inc(yyn);
  5834. if yyn>yyth[yystate] then goto action;
  5835. (* no transition on yyactchar in this state *)
  5836. (* switch to new state: *)
  5837. yystate := yyt[yyn].s;
  5838. goto scan;
  5839. action:
  5840. (* execute action: *)
  5841. if yyfind(yyrule) then
  5842. begin
  5843. yyaction(yyrule);
  5844. if yyreject then goto action;
  5845. end
  5846. else if not yydefault and yywrap() then
  5847. begin
  5848. yyclear;
  5849. return(0);
  5850. end;
  5851. if not yydone then goto start;
  5852. yylex := yyretval;
  5853. end(*yylex*);
  5854. function act_token : string;
  5855. begin
  5856. act_token:=yytext;
  5857. end;
  5858. end.