vcg.flex.c 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965
  1. #line 2 "vcg.flex.c"
  2. #line 4 "vcg.flex.c"
  3. #define YY_INT_ALIGNED short int
  4. /* A lexical scanner generated by flex */
  5. /* %not-for-header */
  6. /* %if-c-only */
  7. /* %if-not-reentrant */
  8. #define yy_create_buffer vcg_create_buffer
  9. #define yy_delete_buffer vcg_delete_buffer
  10. #define yy_scan_buffer vcg_scan_buffer
  11. #define yy_scan_string vcg_scan_string
  12. #define yy_scan_bytes vcg_scan_bytes
  13. #define yy_init_buffer vcg_init_buffer
  14. #define yy_flush_buffer vcg_flush_buffer
  15. #define yy_load_buffer_state vcg_load_buffer_state
  16. #define yy_switch_to_buffer vcg_switch_to_buffer
  17. #define yypush_buffer_state vcgpush_buffer_state
  18. #define yypop_buffer_state vcgpop_buffer_state
  19. #define yyensure_buffer_stack vcgensure_buffer_stack
  20. #define yy_flex_debug vcg_flex_debug
  21. #define yyin vcgin
  22. #define yyleng vcgleng
  23. #define yylex vcglex
  24. #define yylineno vcglineno
  25. #define yyout vcgout
  26. #define yyrestart vcgrestart
  27. #define yytext vcgtext
  28. #define yywrap vcgwrap
  29. #define yyalloc vcgalloc
  30. #define yyrealloc vcgrealloc
  31. #define yyfree vcgfree
  32. /* %endif */
  33. /* %endif */
  34. /* %ok-for-header */
  35. #define FLEX_SCANNER
  36. #define YY_FLEX_MAJOR_VERSION 2
  37. #define YY_FLEX_MINOR_VERSION 6
  38. #define YY_FLEX_SUBMINOR_VERSION 4
  39. #if YY_FLEX_SUBMINOR_VERSION > 0
  40. #define FLEX_BETA
  41. #endif
  42. /* %if-c++-only */
  43. /* %endif */
  44. /* %if-c-only */
  45. #ifdef yy_create_buffer
  46. #define vcg_create_buffer_ALREADY_DEFINED
  47. #else
  48. #define yy_create_buffer vcg_create_buffer
  49. #endif
  50. #ifdef yy_delete_buffer
  51. #define vcg_delete_buffer_ALREADY_DEFINED
  52. #else
  53. #define yy_delete_buffer vcg_delete_buffer
  54. #endif
  55. #ifdef yy_scan_buffer
  56. #define vcg_scan_buffer_ALREADY_DEFINED
  57. #else
  58. #define yy_scan_buffer vcg_scan_buffer
  59. #endif
  60. #ifdef yy_scan_string
  61. #define vcg_scan_string_ALREADY_DEFINED
  62. #else
  63. #define yy_scan_string vcg_scan_string
  64. #endif
  65. #ifdef yy_scan_bytes
  66. #define vcg_scan_bytes_ALREADY_DEFINED
  67. #else
  68. #define yy_scan_bytes vcg_scan_bytes
  69. #endif
  70. #ifdef yy_init_buffer
  71. #define vcg_init_buffer_ALREADY_DEFINED
  72. #else
  73. #define yy_init_buffer vcg_init_buffer
  74. #endif
  75. #ifdef yy_flush_buffer
  76. #define vcg_flush_buffer_ALREADY_DEFINED
  77. #else
  78. #define yy_flush_buffer vcg_flush_buffer
  79. #endif
  80. #ifdef yy_load_buffer_state
  81. #define vcg_load_buffer_state_ALREADY_DEFINED
  82. #else
  83. #define yy_load_buffer_state vcg_load_buffer_state
  84. #endif
  85. #ifdef yy_switch_to_buffer
  86. #define vcg_switch_to_buffer_ALREADY_DEFINED
  87. #else
  88. #define yy_switch_to_buffer vcg_switch_to_buffer
  89. #endif
  90. #ifdef yypush_buffer_state
  91. #define vcgpush_buffer_state_ALREADY_DEFINED
  92. #else
  93. #define yypush_buffer_state vcgpush_buffer_state
  94. #endif
  95. #ifdef yypop_buffer_state
  96. #define vcgpop_buffer_state_ALREADY_DEFINED
  97. #else
  98. #define yypop_buffer_state vcgpop_buffer_state
  99. #endif
  100. #ifdef yyensure_buffer_stack
  101. #define vcgensure_buffer_stack_ALREADY_DEFINED
  102. #else
  103. #define yyensure_buffer_stack vcgensure_buffer_stack
  104. #endif
  105. #ifdef yylex
  106. #define vcglex_ALREADY_DEFINED
  107. #else
  108. #define yylex vcglex
  109. #endif
  110. #ifdef yyrestart
  111. #define vcgrestart_ALREADY_DEFINED
  112. #else
  113. #define yyrestart vcgrestart
  114. #endif
  115. #ifdef yylex_init
  116. #define vcglex_init_ALREADY_DEFINED
  117. #else
  118. #define yylex_init vcglex_init
  119. #endif
  120. #ifdef yylex_init_extra
  121. #define vcglex_init_extra_ALREADY_DEFINED
  122. #else
  123. #define yylex_init_extra vcglex_init_extra
  124. #endif
  125. #ifdef yylex_destroy
  126. #define vcglex_destroy_ALREADY_DEFINED
  127. #else
  128. #define yylex_destroy vcglex_destroy
  129. #endif
  130. #ifdef yyget_debug
  131. #define vcgget_debug_ALREADY_DEFINED
  132. #else
  133. #define yyget_debug vcgget_debug
  134. #endif
  135. #ifdef yyset_debug
  136. #define vcgset_debug_ALREADY_DEFINED
  137. #else
  138. #define yyset_debug vcgset_debug
  139. #endif
  140. #ifdef yyget_extra
  141. #define vcgget_extra_ALREADY_DEFINED
  142. #else
  143. #define yyget_extra vcgget_extra
  144. #endif
  145. #ifdef yyset_extra
  146. #define vcgset_extra_ALREADY_DEFINED
  147. #else
  148. #define yyset_extra vcgset_extra
  149. #endif
  150. #ifdef yyget_in
  151. #define vcgget_in_ALREADY_DEFINED
  152. #else
  153. #define yyget_in vcgget_in
  154. #endif
  155. #ifdef yyset_in
  156. #define vcgset_in_ALREADY_DEFINED
  157. #else
  158. #define yyset_in vcgset_in
  159. #endif
  160. #ifdef yyget_out
  161. #define vcgget_out_ALREADY_DEFINED
  162. #else
  163. #define yyget_out vcgget_out
  164. #endif
  165. #ifdef yyset_out
  166. #define vcgset_out_ALREADY_DEFINED
  167. #else
  168. #define yyset_out vcgset_out
  169. #endif
  170. #ifdef yyget_leng
  171. #define vcgget_leng_ALREADY_DEFINED
  172. #else
  173. #define yyget_leng vcgget_leng
  174. #endif
  175. #ifdef yyget_text
  176. #define vcgget_text_ALREADY_DEFINED
  177. #else
  178. #define yyget_text vcgget_text
  179. #endif
  180. #ifdef yyget_lineno
  181. #define vcgget_lineno_ALREADY_DEFINED
  182. #else
  183. #define yyget_lineno vcgget_lineno
  184. #endif
  185. #ifdef yyset_lineno
  186. #define vcgset_lineno_ALREADY_DEFINED
  187. #else
  188. #define yyset_lineno vcgset_lineno
  189. #endif
  190. #ifdef yywrap
  191. #define vcgwrap_ALREADY_DEFINED
  192. #else
  193. #define yywrap vcgwrap
  194. #endif
  195. /* %endif */
  196. #ifdef yyalloc
  197. #define vcgalloc_ALREADY_DEFINED
  198. #else
  199. #define yyalloc vcgalloc
  200. #endif
  201. #ifdef yyrealloc
  202. #define vcgrealloc_ALREADY_DEFINED
  203. #else
  204. #define yyrealloc vcgrealloc
  205. #endif
  206. #ifdef yyfree
  207. #define vcgfree_ALREADY_DEFINED
  208. #else
  209. #define yyfree vcgfree
  210. #endif
  211. /* %if-c-only */
  212. #ifdef yytext
  213. #define vcgtext_ALREADY_DEFINED
  214. #else
  215. #define yytext vcgtext
  216. #endif
  217. #ifdef yyleng
  218. #define vcgleng_ALREADY_DEFINED
  219. #else
  220. #define yyleng vcgleng
  221. #endif
  222. #ifdef yyin
  223. #define vcgin_ALREADY_DEFINED
  224. #else
  225. #define yyin vcgin
  226. #endif
  227. #ifdef yyout
  228. #define vcgout_ALREADY_DEFINED
  229. #else
  230. #define yyout vcgout
  231. #endif
  232. #ifdef yy_flex_debug
  233. #define vcg_flex_debug_ALREADY_DEFINED
  234. #else
  235. #define yy_flex_debug vcg_flex_debug
  236. #endif
  237. #ifdef yylineno
  238. #define vcglineno_ALREADY_DEFINED
  239. #else
  240. #define yylineno vcglineno
  241. #endif
  242. /* %endif */
  243. /* First, we deal with platform-specific or compiler-specific issues. */
  244. /* begin standard C headers. */
  245. /* %if-c-only */
  246. #include <stdio.h>
  247. #include <string.h>
  248. #include <errno.h>
  249. #include <stdlib.h>
  250. /* %endif */
  251. /* %if-tables-serialization */
  252. /* %endif */
  253. /* end standard C headers. */
  254. /* begin standard C++ headers. */
  255. /* %if-c++-only */
  256. /* %endif */
  257. /* %if-c-or-c++ */
  258. /* flex integer type definitions */
  259. #ifndef YYFLEX_INTTYPES_DEFINED
  260. #define YYFLEX_INTTYPES_DEFINED
  261. /* Prefer C99 integer types if available. */
  262. #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
  263. /* Include <inttypes.h> and not <stdint.h> because Solaris 2.6 has the former
  264. * and not the latter.
  265. */
  266. #include <inttypes.h>
  267. #define YYFLEX_USE_STDINT
  268. #else
  269. #if defined(_MSC_VER) && _MSC_VER >= 1600
  270. /* Visual C++ 2010 does not define __STDC_VERSION__ and has <stdint.h> but not
  271. * <inttypes.h>.
  272. */
  273. #include <stdint.h>
  274. #define YYFLEX_USE_STDINT
  275. #endif
  276. #endif
  277. #ifdef YYFLEX_USE_STDINT
  278. typedef int8_t flex_int8_t;
  279. typedef uint8_t flex_uint8_t;
  280. typedef int16_t flex_int16_t;
  281. typedef uint16_t flex_uint16_t;
  282. typedef int32_t flex_int32_t;
  283. typedef uint32_t flex_uint32_t;
  284. #else
  285. typedef unsigned char flex_uint8_t;
  286. typedef short int flex_int16_t;
  287. typedef unsigned short int flex_uint16_t;
  288. #ifdef __STDC__
  289. typedef signed char flex_int8_t;
  290. /* ISO C only requires at least 16 bits for int. */
  291. #include <limits.h>
  292. #if UINT_MAX >= 4294967295
  293. #define YYFLEX_INT32_DEFINED
  294. typedef int flex_int32_t;
  295. typedef unsigned int flex_uint32_t;
  296. #endif
  297. #else
  298. typedef char flex_int8_t;
  299. #endif
  300. #ifndef YYFLEX_INT32_DEFINED
  301. typedef long int flex_int32_t;
  302. typedef unsigned long int flex_uint32_t;
  303. #endif
  304. #endif
  305. #endif /* YYFLEX_INTTYPES_DEFINED */
  306. /* %endif */
  307. /* TODO: this is always defined, so inline it */
  308. #define yyconst const
  309. #if defined(__GNUC__) && __GNUC__ >= 3
  310. #define yynoreturn __attribute__((__noreturn__))
  311. #else
  312. #define yynoreturn
  313. #endif
  314. /* %not-for-header */
  315. /* Returned upon end-of-file. */
  316. #define YY_NULL 0
  317. /* %ok-for-header */
  318. /* %not-for-header */
  319. /* Promotes a possibly negative, possibly signed char to an
  320. * integer in range [0..255] for use as an array index.
  321. */
  322. #define YY_SC_TO_UI(c) ((YY_CHAR) (c))
  323. /* %ok-for-header */
  324. /* %if-reentrant */
  325. /* %endif */
  326. /* %if-not-reentrant */
  327. /* %endif */
  328. /* Enter a start condition. This macro really ought to take a parameter,
  329. * but we do it the disgusting crufty way forced on us by the ()-less
  330. * definition of BEGIN.
  331. */
  332. #define BEGIN (yy_start) = 1 + 2 *
  333. /* Translate the current start state into a value that can be later handed
  334. * to BEGIN to return to the state. The YYSTATE alias is for lex
  335. * compatibility.
  336. */
  337. #define YY_START (((yy_start) - 1) / 2)
  338. #define YYSTATE YY_START
  339. /* Action number for EOF rule of a given start state. */
  340. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  341. /* Special action meaning "start processing a new file". */
  342. #define YY_NEW_FILE yyrestart( yyin )
  343. #define YY_END_OF_BUFFER_CHAR 0
  344. /* Size of default input buffer. */
  345. #ifndef YY_BUF_SIZE
  346. #ifdef __ia64__
  347. /* On IA-64, the buffer size is 16k, not 8k.
  348. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
  349. * Ditto for the __ia64__ case accordingly.
  350. */
  351. #define YY_BUF_SIZE 32768
  352. #else
  353. #define YY_BUF_SIZE 16384
  354. #endif /* __ia64__ */
  355. #endif
  356. /* The state buf must be large enough to hold one state per character in the main buffer.
  357. */
  358. #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
  359. #ifndef YY_TYPEDEF_YY_BUFFER_STATE
  360. #define YY_TYPEDEF_YY_BUFFER_STATE
  361. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  362. #endif
  363. #ifndef YY_TYPEDEF_YY_SIZE_T
  364. #define YY_TYPEDEF_YY_SIZE_T
  365. typedef size_t yy_size_t;
  366. #endif
  367. /* %if-not-reentrant */
  368. extern int yyleng;
  369. /* %endif */
  370. /* %if-c-only */
  371. /* %if-not-reentrant */
  372. extern FILE *yyin, *yyout;
  373. /* %endif */
  374. /* %endif */
  375. #define EOB_ACT_CONTINUE_SCAN 0
  376. #define EOB_ACT_END_OF_FILE 1
  377. #define EOB_ACT_LAST_MATCH 2
  378. /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires
  379. * access to the local variable yy_act. Since yyless() is a macro, it would break
  380. * existing scanners that call yyless() from OUTSIDE yylex.
  381. * One obvious solution it to make yy_act a global. I tried that, and saw
  382. * a 5% performance hit in a non-yylineno scanner, because yy_act is
  383. * normally declared as a register variable-- so it is not worth it.
  384. */
  385. #define YY_LESS_LINENO(n) \
  386. do { \
  387. int yyl;\
  388. for ( yyl = n; yyl < yyleng; ++yyl )\
  389. if ( yytext[yyl] == '\n' )\
  390. --yylineno;\
  391. }while(0)
  392. #define YY_LINENO_REWIND_TO(dst) \
  393. do {\
  394. const char *p;\
  395. for ( p = yy_cp-1; p >= (dst); --p)\
  396. if ( *p == '\n' )\
  397. --yylineno;\
  398. }while(0)
  399. /* Return all but the first "n" matched characters back to the input stream. */
  400. #define yyless(n) \
  401. do \
  402. { \
  403. /* Undo effects of setting up yytext. */ \
  404. int yyless_macro_arg = (n); \
  405. YY_LESS_LINENO(yyless_macro_arg);\
  406. *yy_cp = (yy_hold_char); \
  407. YY_RESTORE_YY_MORE_OFFSET \
  408. (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
  409. YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  410. } \
  411. while ( 0 )
  412. #define unput(c) yyunput( c, (yytext_ptr) )
  413. #ifndef YY_STRUCT_YY_BUFFER_STATE
  414. #define YY_STRUCT_YY_BUFFER_STATE
  415. struct yy_buffer_state {
  416. /* %if-c-only */
  417. FILE *yy_input_file;
  418. /* %endif */
  419. /* %if-c++-only */
  420. /* %endif */
  421. char *yy_ch_buf; /* input buffer */
  422. char *yy_buf_pos; /* current position in input buffer */
  423. /* Size of input buffer in bytes, not including room for EOB
  424. * characters.
  425. */
  426. int yy_buf_size;
  427. /* Number of characters read into yy_ch_buf, not including EOB
  428. * characters.
  429. */
  430. int yy_n_chars;
  431. /* Whether we "own" the buffer - i.e., we know we created it,
  432. * and can realloc() it to grow it, and should free() it to
  433. * delete it.
  434. */
  435. int yy_is_our_buffer;
  436. /* Whether this is an "interactive" input source; if so, and
  437. * if we're using stdio for input, then we want to use getc()
  438. * instead of fread(), to make sure we stop fetching input after
  439. * each newline.
  440. */
  441. int yy_is_interactive;
  442. /* Whether we're considered to be at the beginning of a line.
  443. * If so, '^' rules will be active on the next match, otherwise
  444. * not.
  445. */
  446. int yy_at_bol;
  447. int yy_bs_lineno;
  448. /**< The line count. */
  449. int yy_bs_column;
  450. /**< The column count. */
  451. /* Whether to try to fill the input buffer when we reach the
  452. * end of it.
  453. */
  454. int yy_fill_buffer;
  455. int yy_buffer_status;
  456. #define YY_BUFFER_NEW 0
  457. #define YY_BUFFER_NORMAL 1
  458. /* When an EOF's been seen but there's still some text to process
  459. * then we mark the buffer as YY_EOF_PENDING, to indicate that we
  460. * shouldn't try reading from the input source any more. We might
  461. * still have a bunch of tokens to match, though, because of
  462. * possible backing-up.
  463. *
  464. * When we actually see the EOF, we change the status to "new"
  465. * (via yyrestart()), so that the user can continue scanning by
  466. * just pointing yyin at a new input file.
  467. */
  468. #define YY_BUFFER_EOF_PENDING 2
  469. };
  470. #endif /* !YY_STRUCT_YY_BUFFER_STATE */
  471. /* %if-c-only Standard (non-C++) definition */
  472. /* %not-for-header */
  473. /* %if-not-reentrant */
  474. /* Stack of input buffers. */
  475. static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
  476. static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
  477. static YY_BUFFER_STATE *yy_buffer_stack = NULL; /**< Stack as an array. */
  478. /* %endif */
  479. /* %ok-for-header */
  480. /* %endif */
  481. /* We provide macros for accessing buffer states in case in the
  482. * future we want to put the buffer states in a more general
  483. * "scanner state".
  484. *
  485. * Returns the top of the stack, or NULL.
  486. */
  487. #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
  488. ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
  489. : NULL)
  490. /* Same as previous macro, but useful when we know that the buffer stack is not
  491. * NULL or when we need an lvalue. For internal use only.
  492. */
  493. #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
  494. /* %if-c-only Standard (non-C++) definition */
  495. /* %if-not-reentrant */
  496. /* %not-for-header */
  497. /* yy_hold_char holds the character lost when yytext is formed. */
  498. static char yy_hold_char;
  499. static int yy_n_chars; /* number of characters read into yy_ch_buf */
  500. int yyleng;
  501. /* Points to current character in buffer. */
  502. static char *yy_c_buf_p = NULL;
  503. static int yy_init = 0; /* whether we need to initialize */
  504. static int yy_start = 0; /* start state number */
  505. /* Flag which is used to allow yywrap()'s to do buffer switches
  506. * instead of setting up a fresh yyin. A bit of a hack ...
  507. */
  508. static int yy_did_buffer_switch_on_eof;
  509. /* %ok-for-header */
  510. /* %endif */
  511. void yyrestart(FILE * input_file);
  512. void yy_switch_to_buffer(YY_BUFFER_STATE new_buffer);
  513. YY_BUFFER_STATE yy_create_buffer(FILE * file, int size);
  514. void yy_delete_buffer(YY_BUFFER_STATE b);
  515. void yy_flush_buffer(YY_BUFFER_STATE b);
  516. void yypush_buffer_state(YY_BUFFER_STATE new_buffer);
  517. void yypop_buffer_state(void);
  518. static void yyensure_buffer_stack(void);
  519. static void yy_load_buffer_state(void);
  520. static void yy_init_buffer(YY_BUFFER_STATE b, FILE * file);
  521. #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER )
  522. YY_BUFFER_STATE yy_scan_buffer(char *base, yy_size_t size);
  523. YY_BUFFER_STATE yy_scan_string(const char *yy_str);
  524. YY_BUFFER_STATE yy_scan_bytes(const char *bytes, int len);
  525. /* %endif */
  526. void *yyalloc(yy_size_t);
  527. void *yyrealloc(void *, yy_size_t);
  528. void yyfree(void *);
  529. #define yy_new_buffer yy_create_buffer
  530. #define yy_set_interactive(is_interactive) \
  531. { \
  532. if ( ! YY_CURRENT_BUFFER ){ \
  533. yyensure_buffer_stack (); \
  534. YY_CURRENT_BUFFER_LVALUE = \
  535. yy_create_buffer( yyin, YY_BUF_SIZE ); \
  536. } \
  537. YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
  538. }
  539. #define yy_set_bol(at_bol) \
  540. { \
  541. if ( ! YY_CURRENT_BUFFER ){\
  542. yyensure_buffer_stack (); \
  543. YY_CURRENT_BUFFER_LVALUE = \
  544. yy_create_buffer( yyin, YY_BUF_SIZE ); \
  545. } \
  546. YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
  547. }
  548. #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
  549. /* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */
  550. /* Begin user sect3 */
  551. #define vcgwrap() (/*CONSTCOND*/1)
  552. #define YY_SKIP_YYWRAP
  553. #define FLEX_DEBUG
  554. typedef flex_uint8_t YY_CHAR;
  555. FILE *yyin = NULL, *yyout = NULL;
  556. typedef int yy_state_type;
  557. extern int yylineno;
  558. int yylineno = 1;
  559. extern char *yytext;
  560. #ifdef yytext_ptr
  561. #undef yytext_ptr
  562. #endif
  563. #define yytext_ptr yytext
  564. /* %% [1.5] DFA */
  565. static const flex_int16_t yy_nxt[][256] = {
  566. {
  567. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  568. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  569. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  570. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  571. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  572. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  573. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  574. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  575. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  576. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  577. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  578. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  579. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  580. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  581. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  582. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  583. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  584. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  585. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  586. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  587. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  588. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  589. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  590. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  591. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  592. 0, 0, 0, 0, 0, 0 },
  593. {
  594. 3, 4, 4, 4, 4, 4, 4, 4, 4, 5,
  595. 6, 4, 7, 8, 4, 4, 4, 4, 4, 4,
  596. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  597. 4, 4, 7, 4, 9, 4, 4, 4, 4, 4,
  598. 4, 4, 10, 4, 4, 4, 4, 11, 4, 4,
  599. 4, 4, 4, 4, 4, 4, 4, 4, 12, 4,
  600. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  601. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  602. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  603. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  604. 4, 13, 4, 14, 4, 4, 4, 4, 15, 4,
  605. 16, 4, 4, 4, 4, 17, 18, 4, 4, 4,
  606. 4, 4, 4, 19, 4, 20, 4, 4, 4, 4,
  607. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  608. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  609. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  610. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  611. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  612. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  613. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  614. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  615. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  616. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  617. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  618. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  619. 4, 4, 4, 4, 4, 4 },
  620. {
  621. 3, 4, 4, 4, 4, 4, 4, 4, 4, 5,
  622. 6, 4, 7, 8, 4, 4, 4, 4, 4, 4,
  623. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  624. 4, 4, 7, 4, 9, 4, 4, 4, 4, 4,
  625. 4, 4, 10, 4, 4, 4, 4, 11, 4, 4,
  626. 4, 4, 4, 4, 4, 4, 4, 4, 12, 4,
  627. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  628. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  629. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  630. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  631. 4, 13, 4, 14, 4, 4, 4, 4, 15, 4,
  632. 16, 4, 4, 4, 4, 17, 18, 4, 4, 4,
  633. 4, 4, 4, 19, 4, 20, 4, 4, 4, 4,
  634. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  635. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  636. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  637. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  638. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  639. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  640. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  641. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  642. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  643. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  644. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  645. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  646. 4, 4, 4, 4, 4, 4 },
  647. {
  648. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  649. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  650. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  651. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  652. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  653. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  654. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  655. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  656. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  657. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  658. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  659. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  660. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  661. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  662. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  663. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  664. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  665. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  666. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  667. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  668. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  669. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  670. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  671. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  672. -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
  673. -3, -3, -3, -3, -3, -3 },
  674. {
  675. 3, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  676. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  677. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  678. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  679. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  680. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  681. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  682. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  683. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  684. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  685. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  686. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  687. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  688. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  689. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  690. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  691. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  692. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  693. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  694. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  695. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  696. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  697. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  698. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  699. -4, -4, -4, -4, -4, -4, -4, -4, -4, -4,
  700. -4, -4, -4, -4, -4, -4 },
  701. {
  702. 3, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  703. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  704. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  705. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  706. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  707. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  708. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  709. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  710. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  711. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  712. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  713. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  714. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  715. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  716. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  717. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  718. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  719. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  720. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  721. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  722. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  723. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  724. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  725. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  726. -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
  727. -5, -5, -5, -5, -5, -5 },
  728. {
  729. 3, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  730. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  731. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  732. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  733. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  734. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  735. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  736. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  737. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  738. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  739. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  740. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  741. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  742. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  743. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  744. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  745. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  746. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  747. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  748. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  749. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  750. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  751. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  752. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  753. -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  754. -6, -6, -6, -6, -6, -6 },
  755. {
  756. 3, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  757. -7, -7, 21, -7, -7, -7, -7, -7, -7, -7,
  758. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  759. -7, -7, 21, -7, -7, -7, -7, -7, -7, -7,
  760. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  761. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  762. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  763. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  764. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  765. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  766. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  767. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  768. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  769. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  770. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  771. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  772. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  773. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  774. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  775. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  776. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  777. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  778. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  779. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  780. -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
  781. -7, -7, -7, -7, -7, -7 },
  782. {
  783. 3, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  784. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  785. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  786. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  787. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  788. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  789. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  790. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  791. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  792. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  793. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  794. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  795. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  796. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  797. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  798. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  799. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  800. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  801. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  802. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  803. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  804. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  805. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  806. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  807. -8, -8, -8, -8, -8, -8, -8, -8, -8, -8,
  808. -8, -8, -8, -8, -8, -8 },
  809. {
  810. 3, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  811. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  812. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  813. 22, 22, 22, 22, 23, 22, 22, 22, 22, 22,
  814. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  815. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  816. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  817. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  818. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  819. 22, 22, 24, 22, 22, 22, 22, 22, 22, 22,
  820. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  821. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  822. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  823. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  824. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  825. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  826. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  827. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  828. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  829. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  830. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  831. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  832. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  833. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  834. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  835. 22, 22, 22, 22, 22, 22 },
  836. {
  837. 3, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  838. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  839. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  840. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  841. -10, -10, -10, -10, -10, -10, -10, 25, -10, -10,
  842. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  843. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  844. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  845. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  846. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  847. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  848. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  849. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  850. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  851. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  852. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  853. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  854. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  855. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  856. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  857. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  858. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  859. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  860. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  861. -10, -10, -10, -10, -10, -10, -10, -10, -10, -10,
  862. -10, -10, -10, -10, -10, -10 },
  863. {
  864. 3, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  865. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  866. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  867. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  868. -11, -11, 26, -11, -11, -11, -11, 27, -11, -11,
  869. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  870. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  871. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  872. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  873. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  874. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  875. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  876. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  877. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  878. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  879. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  880. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  881. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  882. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  883. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  884. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  885. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  886. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  887. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  888. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  889. -11, -11, -11, -11, -11, -11 },
  890. {
  891. 3, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  892. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  893. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  894. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  895. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  896. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  897. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  898. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  899. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  900. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  901. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  902. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  903. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  904. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  905. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  906. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  907. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  908. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  909. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  910. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  911. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  912. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  913. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  914. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  915. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  916. -12, -12, -12, -12, -12, -12 },
  917. {
  918. 3, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  919. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  920. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  921. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  922. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  923. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  924. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  925. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  926. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  927. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  928. 28, -13, -13, -13, -13, -13, -13, -13, 29, -13,
  929. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  930. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  931. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  932. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  933. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  934. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  935. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  936. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  937. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  938. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  939. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  940. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  941. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  942. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  943. -13, -13, -13, -13, -13, -13 },
  944. {
  945. 3, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  946. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  947. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  948. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  949. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  950. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  951. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  952. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  953. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  954. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  955. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  956. -14, -14, -14, -14, 30, -14, -14, -14, -14, -14,
  957. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  958. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  959. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  960. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  961. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  962. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  963. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  964. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  965. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  966. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  967. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  968. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  969. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  970. -14, -14, -14, -14, -14, -14 },
  971. {
  972. 3, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  973. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  974. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  975. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  976. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  977. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  978. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  979. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  980. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  981. -15, -15, -15, -15, -15, -15, -15, 31, -15, -15,
  982. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  983. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  984. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  985. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  986. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  987. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  988. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  989. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  990. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  991. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  992. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  993. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  994. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  995. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  996. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  997. -15, -15, -15, -15, -15, -15 },
  998. {
  999. 3, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1000. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1001. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1002. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1003. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1004. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1005. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1006. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1007. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1008. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1009. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1010. -16, 32, -16, -16, -16, -16, -16, -16, -16, -16,
  1011. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1012. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1013. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1014. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1015. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1016. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1017. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1018. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1019. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1020. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1021. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1022. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1023. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  1024. -16, -16, -16, -16, -16, -16 },
  1025. {
  1026. 3, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1027. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1028. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1029. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1030. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1031. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1032. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1033. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1034. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1035. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1036. -17, -17, -17, -17, 33, -17, -17, -17, -17, -17,
  1037. -17, 34, -17, -17, -17, -17, -17, -17, -17, -17,
  1038. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1039. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1040. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1041. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1042. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1043. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1044. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1045. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1046. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1047. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1048. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1049. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1050. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  1051. -17, -17, -17, -17, -17, -17 },
  1052. {
  1053. 3, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1054. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1055. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1056. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1057. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1058. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1059. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1060. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1061. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1062. -18, -18, -18, -18, -18, -18, -18, 35, -18, -18,
  1063. -18, -18, -18, -18, -18, 36, -18, -18, -18, -18,
  1064. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1065. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1066. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1067. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1068. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1069. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1070. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1071. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1072. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1073. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1074. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1075. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1076. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1077. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  1078. -18, -18, -18, -18, -18, -18 },
  1079. {
  1080. 3, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1081. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1082. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1083. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1084. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1085. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1086. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1087. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1088. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1089. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1090. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1091. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1092. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1093. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1094. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1095. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1096. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1097. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1098. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1099. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1100. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1101. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1102. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1103. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1104. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  1105. -19, -19, -19, -19, -19, -19 },
  1106. {
  1107. 3, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1108. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1109. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1110. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1111. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1112. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1113. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1114. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1115. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1116. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1117. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1118. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1119. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1120. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1121. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1122. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1123. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1124. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1125. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1126. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1127. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1128. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1129. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1130. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1131. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  1132. -20, -20, -20, -20, -20, -20 },
  1133. {
  1134. 3, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1135. -21, -21, 21, -21, -21, -21, -21, -21, -21, -21,
  1136. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1137. -21, -21, 21, -21, -21, -21, -21, -21, -21, -21,
  1138. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1139. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1140. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1141. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1142. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1143. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1144. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1145. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1146. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1147. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1148. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1149. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1150. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1151. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1152. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1153. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1154. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1155. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1156. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1157. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1158. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  1159. -21, -21, -21, -21, -21, -21 },
  1160. {
  1161. 3, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1162. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1163. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1164. 22, 22, 22, 22, 23, 22, 22, 22, 22, 22,
  1165. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1166. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1167. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1168. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1169. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1170. 22, 22, 24, 22, 22, 22, 22, 22, 22, 22,
  1171. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1172. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1173. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1174. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1175. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1176. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1177. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1178. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1179. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1180. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1181. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1182. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1183. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1184. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1185. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1186. 22, 22, 22, 22, 22, 22 },
  1187. {
  1188. 3, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1189. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1190. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1191. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1192. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1193. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1194. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1195. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1196. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1197. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1198. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1199. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1200. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1201. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1202. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1203. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1204. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1205. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1206. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1207. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1208. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1209. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1210. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1211. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1212. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  1213. -23, -23, -23, -23, -23, -23 },
  1214. {
  1215. 3, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1216. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1217. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1218. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1219. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1220. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1221. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1222. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1223. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1224. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1225. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1226. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1227. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1228. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1229. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1230. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1231. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1232. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1233. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1234. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1235. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1236. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1237. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1238. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1239. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
  1240. 22, 22, 22, 22, 22, 22 },
  1241. {
  1242. 3, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1243. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1244. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1245. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1246. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1247. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1248. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1249. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1250. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1251. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1252. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1253. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1254. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1255. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1256. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1257. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1258. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1259. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1260. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1261. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1262. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1263. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1264. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1265. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1266. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  1267. -25, -25, -25, -25, -25, -25 },
  1268. {
  1269. 3, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1270. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1271. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1272. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1273. 37, 37, 38, 37, 37, 37, 37, 37, 37, 37,
  1274. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1275. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1276. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1277. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1278. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1279. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1280. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1281. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1282. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1283. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1284. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1285. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1286. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1287. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1288. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1289. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1290. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1291. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1292. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1293. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1294. 37, 37, 37, 37, 37, 37 },
  1295. {
  1296. 3, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1297. -27, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1298. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1299. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1300. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1301. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1302. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1303. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1304. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1305. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1306. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1307. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1308. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1309. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1310. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1311. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1312. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1313. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1314. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1315. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1316. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1317. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1318. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1319. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1320. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1321. 39, 39, 39, 39, 39, 39 },
  1322. {
  1323. 3, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1324. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1325. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1326. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1327. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1328. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1329. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1330. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1331. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1332. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1333. -28, -28, -28, 40, -28, -28, -28, -28, -28, -28,
  1334. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1335. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1336. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1337. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1338. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1339. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1340. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1341. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1342. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1343. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1344. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1345. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1346. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1347. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  1348. -28, -28, -28, -28, -28, -28 },
  1349. {
  1350. 3, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1351. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1352. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1353. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1354. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1355. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1356. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1357. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1358. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1359. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1360. -29, -29, -29, -29, -29, -29, -29, -29, 41, -29,
  1361. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1362. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1363. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1364. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1365. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1366. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1367. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1368. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1369. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1370. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1371. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1372. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1373. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1374. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  1375. -29, -29, -29, -29, -29, -29 },
  1376. {
  1377. 3, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1378. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1379. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1380. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1381. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1382. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1383. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1384. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1385. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1386. -30, -30, -30, -30, -30, -30, -30, 42, -30, -30,
  1387. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1388. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1389. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1390. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1391. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1392. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1393. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1394. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1395. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1396. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1397. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1398. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1399. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1400. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1401. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1402. -30, -30, -30, -30, -30, -30 },
  1403. {
  1404. 3, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1405. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1406. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1407. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1408. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1409. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1410. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1411. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1412. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1413. -31, -31, -31, -31, -31, -31, -31, -31, 43, -31,
  1414. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1415. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1416. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1417. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1418. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1419. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1420. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1421. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1422. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1423. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1424. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1425. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1426. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1427. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1428. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1429. -31, -31, -31, -31, -31, -31 },
  1430. {
  1431. 3, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1432. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1433. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1434. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1435. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1436. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1437. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1438. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1439. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1440. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1441. 44, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1442. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1443. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1444. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1445. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1446. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1447. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1448. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1449. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1450. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1451. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1452. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1453. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1454. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1455. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1456. -32, -32, -32, -32, -32, -32 },
  1457. {
  1458. 3, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1459. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1460. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1461. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1462. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1463. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1464. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1465. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1466. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1467. -33, -33, -33, -33, -33, -33, -33, 45, -33, -33,
  1468. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1469. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1470. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1471. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1472. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1473. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1474. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1475. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1476. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1477. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1478. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1479. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1480. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1481. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1482. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1483. -33, -33, -33, -33, -33, -33 },
  1484. {
  1485. 3, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1486. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1487. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1488. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1489. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1490. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1491. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1492. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1493. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1494. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1495. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1496. -34, -34, -34, -34, -34, -34, -34, 46, -34, -34,
  1497. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1498. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1499. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1500. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1501. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1502. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1503. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1504. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1505. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1506. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1507. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1508. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1509. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1510. -34, -34, -34, -34, -34, -34 },
  1511. {
  1512. 3, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1513. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1514. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1515. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1516. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1517. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1518. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1519. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1520. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1521. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1522. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1523. -35, -35, -35, -35, 47, -35, -35, -35, -35, -35,
  1524. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1525. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1526. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1527. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1528. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1529. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1530. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1531. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1532. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1533. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1534. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1535. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1536. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1537. -35, -35, -35, -35, -35, -35 },
  1538. {
  1539. 3, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1540. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1541. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1542. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1543. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1544. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1545. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1546. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1547. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1548. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1549. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1550. -36, -36, -36, -36, -36, -36, 48, -36, -36, -36,
  1551. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1552. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1553. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1554. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1555. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1556. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1557. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1558. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1559. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1560. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1561. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1562. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1563. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1564. -36, -36, -36, -36, -36, -36 },
  1565. {
  1566. 3, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1567. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1568. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1569. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1570. 37, 37, 38, 37, 37, 37, 37, 37, 37, 37,
  1571. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1572. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1573. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1574. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1575. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1576. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1577. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1578. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1579. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1580. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1581. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1582. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1583. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1584. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1585. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1586. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1587. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1588. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1589. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1590. 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
  1591. 37, 37, 37, 37, 37, 37 },
  1592. {
  1593. 3, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1594. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1595. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1596. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1597. 49, 49, 38, 49, 49, 49, 49, 50, 49, 49,
  1598. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1599. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1600. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1601. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1602. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1603. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1604. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1605. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1606. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1607. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1608. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1609. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1610. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1611. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1612. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1613. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1614. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1615. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1616. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1617. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  1618. 49, 49, 49, 49, 49, 49 },
  1619. {
  1620. 3, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1621. -39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1622. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1623. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1624. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1625. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1626. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1627. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1628. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1629. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1630. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1631. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1632. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1633. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1634. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1635. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1636. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1637. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1638. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1639. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1640. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1641. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1642. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1643. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1644. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  1645. 39, 39, 39, 39, 39, 39 },
  1646. {
  1647. 3, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1648. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1649. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1650. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1651. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1652. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1653. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1654. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1655. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1656. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1657. -40, 51, -40, -40, -40, -40, -40, -40, -40, -40,
  1658. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1659. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1660. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1661. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1662. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1663. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1664. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1665. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1666. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1667. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1668. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1669. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1670. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1671. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1672. -40, -40, -40, -40, -40, -40 },
  1673. {
  1674. 3, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1675. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1676. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1677. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1678. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1679. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1680. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1681. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1682. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1683. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1684. -41, -41, -41, -41, -41, 52, -41, -41, -41, -41,
  1685. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1686. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1687. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1688. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1689. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1690. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1691. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1692. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1693. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1694. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1695. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1696. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1697. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1698. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1699. -41, -41, -41, -41, -41, -41 },
  1700. {
  1701. 3, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1702. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1703. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1704. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1705. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1706. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1707. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1708. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1709. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1710. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1711. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1712. -42, -42, 53, -42, -42, -42, -42, -42, -42, -42,
  1713. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1714. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1715. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1716. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1717. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1718. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1719. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1720. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1721. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1722. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1723. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1724. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1725. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1726. -42, -42, -42, -42, -42, -42 },
  1727. {
  1728. 3, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1729. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1730. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1731. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1732. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1733. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1734. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1735. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1736. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1737. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1738. -43, 54, -43, -43, -43, -43, -43, -43, -43, -43,
  1739. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1740. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1741. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1742. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1743. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1744. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1745. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1746. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1747. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1748. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1749. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1750. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1751. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1752. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1753. -43, -43, -43, -43, -43, -43 },
  1754. {
  1755. 3, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1756. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1757. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1758. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1759. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1760. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1761. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1762. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1763. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1764. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1765. -44, 55, -44, -44, -44, -44, -44, -44, -44, -44,
  1766. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1767. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1768. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1769. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1770. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1771. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1772. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1773. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1774. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1775. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1776. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1777. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1778. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1779. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1780. -44, -44, -44, -44, -44, -44 },
  1781. {
  1782. 3, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1783. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1784. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1785. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1786. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1787. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1788. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1789. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1790. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1791. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1792. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1793. -45, -45, 56, -45, -45, -45, -45, -45, -45, -45,
  1794. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1795. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1796. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1797. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1798. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1799. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1800. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1801. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1802. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1803. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1804. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1805. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1806. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1807. -45, -45, -45, -45, -45, -45 },
  1808. {
  1809. 3, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1810. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1811. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1812. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1813. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1814. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1815. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1816. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1817. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1818. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1819. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1820. -46, -46, -46, -46, 57, -46, -46, -46, -46, -46,
  1821. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1822. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1823. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1824. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1825. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1826. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1827. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1828. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1829. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1830. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1831. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1832. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1833. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1834. -46, -46, -46, -46, -46, -46 },
  1835. {
  1836. 3, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1837. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1838. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1839. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1840. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1841. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1842. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1843. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1844. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1845. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1846. -47, -47, -47, 58, -47, -47, -47, -47, -47, -47,
  1847. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1848. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1849. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1850. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1851. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1852. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1853. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1854. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1855. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1856. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1857. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1858. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1859. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1860. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1861. -47, -47, -47, -47, -47, -47 },
  1862. {
  1863. 3, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1864. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1865. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1866. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1867. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1868. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1869. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1870. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1871. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1872. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1873. -48, -48, -48, -48, -48, -48, -48, -48, 59, -48,
  1874. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1875. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1876. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1877. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1878. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1879. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1880. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1881. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1882. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1883. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1884. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1885. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1886. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1887. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1888. -48, -48, -48, -48, -48, -48 },
  1889. {
  1890. 3, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1891. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1892. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1893. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1894. 60, 60, 61, 60, 60, 60, 60, 60, 60, 60,
  1895. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1896. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1897. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1898. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1899. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1900. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1901. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1902. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1903. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1904. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1905. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1906. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1907. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1908. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1909. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1910. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1911. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1912. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1913. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1914. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  1915. 60, 60, 60, 60, 60, 60 },
  1916. {
  1917. 3, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1918. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1919. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1920. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1921. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1922. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1923. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1924. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1925. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1926. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1927. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1928. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1929. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1930. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1931. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1932. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1933. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1934. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1935. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1936. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1937. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1938. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1939. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1940. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1941. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1942. -50, -50, -50, -50, -50, -50 },
  1943. {
  1944. 3, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1945. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1946. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1947. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1948. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1949. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1950. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1951. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1952. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1953. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1954. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1955. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1956. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1957. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1958. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1959. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1960. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1961. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1962. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1963. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1964. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1965. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1966. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1967. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1968. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1969. -51, -51, -51, -51, -51, -51 },
  1970. {
  1971. 3, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1972. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1973. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1974. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1975. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1976. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1977. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1978. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1979. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1980. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1981. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1982. -52, -52, 62, -52, -52, -52, -52, -52, -52, -52,
  1983. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1984. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1985. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1986. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1987. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1988. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1989. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1990. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1991. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1992. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1993. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1994. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1995. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1996. -52, -52, -52, -52, -52, -52 },
  1997. {
  1998. 3, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1999. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2000. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2001. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2002. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2003. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2004. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2005. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2006. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2007. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2008. -53, -53, -53, -53, 63, -53, -53, -53, -53, -53,
  2009. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2010. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2011. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2012. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2013. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2014. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2015. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2016. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2017. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2018. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2019. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2020. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2021. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2022. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  2023. -53, -53, -53, -53, -53, -53 },
  2024. {
  2025. 3, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2026. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2027. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2028. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2029. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2030. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2031. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2032. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2033. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2034. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2035. -54, -54, -54, -54, -54, -54, -54, -54, 64, -54,
  2036. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2037. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2038. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2039. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2040. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2041. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2042. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2043. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2044. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2045. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2046. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2047. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2048. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2049. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  2050. -54, -54, -54, -54, -54, -54 },
  2051. {
  2052. 3, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2053. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2054. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2055. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2056. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2057. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2058. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2059. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2060. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2061. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2062. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2063. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2064. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2065. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2066. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2067. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2068. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2069. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2070. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2071. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2072. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2073. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2074. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2075. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2076. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  2077. -55, -55, -55, -55, -55, -55 },
  2078. {
  2079. 3, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2080. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2081. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2082. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2083. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2084. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2085. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2086. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2087. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2088. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2089. -56, 65, -56, -56, -56, -56, -56, -56, -56, -56,
  2090. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2091. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2092. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2093. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2094. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2095. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2096. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2097. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2098. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2099. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2100. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2101. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2102. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2103. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  2104. -56, -56, -56, -56, -56, -56 },
  2105. {
  2106. 3, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2107. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2108. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2109. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2110. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2111. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2112. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2113. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2114. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2115. -57, -57, -57, -57, -57, -57, -57, -57, -57, 66,
  2116. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2117. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2118. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2119. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2120. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2121. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2122. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2123. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2124. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2125. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2126. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2127. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2128. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2129. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2130. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  2131. -57, -57, -57, -57, -57, -57 },
  2132. {
  2133. 3, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2134. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2135. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2136. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2137. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2138. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2139. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2140. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2141. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2142. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2143. -58, 67, -58, -58, -58, -58, -58, -58, -58, -58,
  2144. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2145. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2146. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2147. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2148. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2149. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2150. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2151. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2152. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2153. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2154. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2155. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2156. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2157. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  2158. -58, -58, -58, -58, -58, -58 },
  2159. {
  2160. 3, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2161. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2162. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2163. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2164. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2165. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2166. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2167. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2168. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2169. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2170. -59, 68, -59, -59, -59, -59, -59, -59, -59, -59,
  2171. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2172. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2173. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2174. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2175. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2176. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2177. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2178. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2179. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2180. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2181. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2182. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2183. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2184. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  2185. -59, -59, -59, -59, -59, -59 },
  2186. {
  2187. 3, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2188. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2189. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2190. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2191. 60, 60, 61, 60, 60, 60, 60, 60, 60, 60,
  2192. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2193. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2194. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2195. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2196. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2197. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2198. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2199. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2200. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2201. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2202. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2203. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2204. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2205. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2206. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2207. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2208. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2209. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2210. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2211. 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
  2212. 60, 60, 60, 60, 60, 60 },
  2213. {
  2214. 3, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2215. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2216. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2217. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2218. 49, 49, 61, 49, 49, 49, 49, 50, 49, 49,
  2219. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2220. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2221. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2222. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2223. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2224. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2225. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2226. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2227. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2228. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2229. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2230. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2231. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2232. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2233. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2234. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2235. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2236. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2237. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2238. 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  2239. 49, 49, 49, 49, 49, 49 },
  2240. {
  2241. 3, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2242. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2243. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2244. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2245. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2246. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2247. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2248. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2249. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2250. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2251. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2252. -62, -62, -62, -62, -62, 69, -62, -62, -62, -62,
  2253. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2254. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2255. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2256. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2257. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2258. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2259. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2260. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2261. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2262. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2263. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2264. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2265. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  2266. -62, -62, -62, -62, -62, -62 },
  2267. {
  2268. 3, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2269. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2270. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2271. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2272. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2273. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2274. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2275. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2276. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2277. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2278. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2279. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2280. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2281. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2282. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2283. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2284. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2285. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2286. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2287. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2288. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2289. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2290. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2291. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2292. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  2293. -63, -63, -63, -63, -63, -63 },
  2294. {
  2295. 3, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2296. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2297. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2298. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2299. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2300. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2301. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2302. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2303. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2304. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2305. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2306. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2307. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2308. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2309. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2310. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2311. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2312. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2313. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2314. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2315. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2316. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2317. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2318. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2319. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  2320. -64, -64, -64, -64, -64, -64 },
  2321. {
  2322. 3, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2323. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2324. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2325. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2326. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2327. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2328. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2329. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2330. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2331. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2332. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2333. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2334. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2335. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2336. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2337. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2338. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2339. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2340. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2341. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2342. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2343. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2344. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2345. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2346. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  2347. -65, -65, -65, -65, -65, -65 },
  2348. {
  2349. 3, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2350. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2351. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2352. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2353. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2354. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2355. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2356. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2357. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2358. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2359. -66, 70, -66, -66, -66, -66, -66, -66, -66, -66,
  2360. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2361. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2362. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2363. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2364. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2365. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2366. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2367. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2368. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2369. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2370. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2371. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2372. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2373. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  2374. -66, -66, -66, -66, -66, -66 },
  2375. {
  2376. 3, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2377. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2378. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2379. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2380. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2381. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2382. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2383. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2384. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2385. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2386. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2387. -67, -67, -67, -67, -67, -67, 71, -67, -67, -67,
  2388. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2389. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2390. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2391. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2392. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2393. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2394. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2395. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2396. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2397. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2398. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2399. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2400. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  2401. -67, -67, -67, -67, -67, -67 },
  2402. {
  2403. 3, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2404. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2405. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2406. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2407. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2408. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2409. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2410. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2411. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2412. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2413. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2414. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2415. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2416. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2417. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2418. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2419. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2420. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2421. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2422. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2423. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2424. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2425. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2426. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2427. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  2428. -68, -68, -68, -68, -68, -68 },
  2429. {
  2430. 3, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2431. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2432. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2433. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2434. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2435. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2436. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2437. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2438. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2439. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2440. -69, 72, -69, -69, -69, -69, -69, -69, -69, -69,
  2441. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2442. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2443. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2444. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2445. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2446. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2447. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2448. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2449. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2450. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2451. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2452. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2453. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2454. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2455. -69, -69, -69, -69, -69, -69 },
  2456. {
  2457. 3, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2458. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2459. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2460. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2461. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2462. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2463. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2464. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2465. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2466. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2467. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2468. 73, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2469. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2470. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2471. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2472. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2473. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2474. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2475. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2476. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2477. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2478. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2479. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2480. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2481. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2482. -70, -70, -70, -70, -70, -70 },
  2483. {
  2484. 3, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2485. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2486. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2487. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2488. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2489. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2490. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2491. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2492. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2493. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2494. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2495. 74, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2496. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2497. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2498. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2499. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2500. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2501. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2502. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2503. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2504. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2505. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2506. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2507. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2508. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2509. -71, -71, -71, -71, -71, -71 },
  2510. {
  2511. 3, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2512. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2513. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2514. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2515. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2516. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2517. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2518. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2519. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2520. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2521. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2522. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2523. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2524. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2525. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2526. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2527. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2528. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2529. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2530. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2531. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2532. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2533. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2534. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2535. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2536. -72, -72, -72, -72, -72, -72 },
  2537. {
  2538. 3, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2539. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2540. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2541. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2542. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2543. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2544. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2545. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2546. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2547. -73, -73, -73, -73, -73, -73, -73, 75, -73, -73,
  2548. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2549. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2550. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2551. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2552. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2553. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2554. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2555. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2556. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2557. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2558. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2559. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2560. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2561. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2562. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2563. -73, -73, -73, -73, -73, -73 },
  2564. {
  2565. 3, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2566. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2567. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2568. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2569. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2570. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2571. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2572. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2573. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2574. -74, -74, -74, -74, -74, -74, -74, 76, -74, -74,
  2575. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2576. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2577. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2578. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2579. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2580. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2581. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2582. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2583. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2584. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2585. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2586. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2587. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2588. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2589. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2590. -74, -74, -74, -74, -74, -74 },
  2591. {
  2592. 3, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2593. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2594. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2595. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2596. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2597. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2598. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2599. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2600. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2601. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2602. -75, -75, -75, -75, -75, -75, -75, -75, -75, 77,
  2603. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2604. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2605. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2606. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2607. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2608. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2609. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2610. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2611. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2612. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2613. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2614. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2615. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2616. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2617. -75, -75, -75, -75, -75, -75 },
  2618. {
  2619. 3, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2620. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2621. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2622. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2623. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2624. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2625. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2626. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2627. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2628. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2629. -76, -76, -76, -76, -76, -76, -76, -76, -76, 78,
  2630. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2631. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2632. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2633. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2634. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2635. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2636. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2637. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2638. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2639. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2640. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2641. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2642. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2643. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2644. -76, -76, -76, -76, -76, -76 },
  2645. {
  2646. 3, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2647. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2648. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2649. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2650. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2651. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2652. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2653. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2654. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2655. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2656. -77, 79, -77, -77, -77, -77, -77, -77, -77, -77,
  2657. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2658. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2659. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2660. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2661. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2662. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2663. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2664. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2665. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2666. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2667. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2668. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2669. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2670. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2671. -77, -77, -77, -77, -77, -77 },
  2672. {
  2673. 3, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2674. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2675. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2676. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2677. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2678. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2679. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2680. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2681. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2682. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2683. -78, 80, -78, -78, -78, -78, -78, -78, -78, -78,
  2684. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2685. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2686. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2687. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2688. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2689. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2690. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2691. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2692. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2693. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2694. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2695. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2696. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2697. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2698. -78, -78, -78, -78, -78, -78 },
  2699. {
  2700. 3, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2701. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2702. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2703. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2704. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2705. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2706. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2707. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2708. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2709. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2710. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2711. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2712. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2713. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2714. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2715. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2716. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2717. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2718. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2719. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2720. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2721. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2722. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2723. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2724. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2725. -79, -79, -79, -79, -79, -79 },
  2726. {
  2727. 3, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2728. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2729. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2730. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2731. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2732. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2733. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2734. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2735. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2736. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2737. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2738. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2739. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2740. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2741. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2742. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2743. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2744. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2745. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2746. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2747. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2748. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2749. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2750. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2751. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2752. -80, -80, -80, -80, -80, -80 },
  2753. };
  2754. /* %if-c-only Standard (non-C++) definition */
  2755. static yy_state_type yy_get_previous_state(void);
  2756. static yy_state_type yy_try_NUL_trans(yy_state_type current_state);
  2757. static int yy_get_next_buffer(void);
  2758. static void yynoreturn yy_fatal_error(const char *msg);
  2759. /* %endif */
  2760. /* Done after the current pattern has been matched and before the
  2761. * corresponding action - sets up yytext.
  2762. */
  2763. #define YY_DO_BEFORE_ACTION \
  2764. (yytext_ptr) = yy_bp; \
  2765. /* %% [2.0] code to fiddle yytext and yyleng for yymore() goes here \ */\
  2766. yyleng = (int) (yy_cp - yy_bp); \
  2767. (yy_hold_char) = *yy_cp; \
  2768. *yy_cp = '\0'; \
  2769. /* %% [3.0] code to copy yytext_ptr to yytext[] goes here, if %array \ */\
  2770. (yy_c_buf_p) = yy_cp;
  2771. /* %% [4.0] data tables for the DFA and the user's section 1 definitions go here */
  2772. #define YY_NUM_RULES 23
  2773. #define YY_END_OF_BUFFER 24
  2774. /* This struct is not used in this scanner,
  2775. but its presence is necessary. */
  2776. struct yy_trans_info {
  2777. flex_int32_t yy_verify;
  2778. flex_int32_t yy_nxt;
  2779. };
  2780. static const flex_int16_t yy_accept[81] = { 0,
  2781. 0, 0, 24, 22, 6, 7, 5, 8, 22, 22,
  2782. 22, 9, 22, 22, 22, 22, 22, 22, 10, 11,
  2783. 5, 0, 21, 0, 3, 2, 4, 0, 0, 0,
  2784. 0, 0, 0, 0, 0, 0, 0, 0, 4, 0,
  2785. 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
  2786. 13, 0, 0, 0, 16, 0, 0, 0, 0, 0,
  2787. 0, 0, 12, 15, 17, 0, 0, 20, 0, 0,
  2788. 0, 14, 0, 0, 0, 0, 0, 0, 18, 19
  2789. };
  2790. /* Table of booleans, true if rule could match eol. */
  2791. static const flex_int32_t yy_rule_can_match_eol[24] = { 0,
  2792. 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2793. 0, 1, 0, 0,
  2794. };
  2795. static yy_state_type yy_last_accepting_state;
  2796. static char *yy_last_accepting_cpos;
  2797. static const yy_state_type yy_NUL_trans[81] = { 0,
  2798. 4, 4, 0, 0, 0, 0, 0, 0, 22, 0,
  2799. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2800. 0, 22, 0, 22, 0, 37, 39, 0, 0, 0,
  2801. 0, 0, 0, 0, 0, 0, 37, 49, 39, 0,
  2802. 0, 0, 0, 0, 0, 0, 0, 0, 60, 0,
  2803. 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,
  2804. 49, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2805. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  2806. };
  2807. extern int yy_flex_debug;
  2808. int yy_flex_debug = 1;
  2809. static const flex_int16_t yy_rule_linenum[23] = { 0,
  2810. 132, 133, 134, 135, 137, 138, 139, 140, 142, 143,
  2811. 144, 146, 147, 148, 149, 150, 151, 152, 153, 154,
  2812. 156, 212
  2813. };
  2814. /* The intent behind this definition is that it'll catch
  2815. * any uses of REJECT which flex missed.
  2816. */
  2817. #define REJECT reject_used_but_not_detected
  2818. #define yymore() yymore_used_but_not_detected
  2819. #define YY_MORE_ADJ 0
  2820. #define YY_RESTORE_YY_MORE_OFFSET
  2821. char *yytext;
  2822. #line 1 "vcg.l"
  2823. /* gcc-10 -fanalyzer
  2824. vcg.flex.c:4433:1: warning: leak of ‘<unknown>’ [CWE-401] [-Wanalyzer-malloc-leak]
  2825. vcg.flex.c:5003:9: warning: leak of ‘<unknown>’ [CWE-401] [-Wanalyzer-malloc-leak]
  2826. vcg.flex.c:5003:9: warning: leak of ‘<unknown>’ [CWE-401] [-Wanalyzer-malloc-leak]
  2827. */
  2828. /*
  2829. * Copyright 2021
  2830. *
  2831. * This program is free software: you can redistribute it and/or modify
  2832. * it under the terms of the GNU General Public License as published by
  2833. * the Free Software Foundation, either version 3 of the License, or
  2834. * (at your option) any later version.
  2835. *
  2836. * This program is distributed in the hope that it will be useful,
  2837. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  2838. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  2839. * GNU General Public License for more details.
  2840. *
  2841. * You should have received a copy of the GNU General Public License
  2842. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  2843. *
  2844. * These are the four essential freedoms with GNU GPL software:
  2845. * 1: freedom to run the program, for any purpose
  2846. * 2: freedom to study how the program works, and change it to make it do what you wish
  2847. * 3: freedom to redistribute copies to help your Free Software friends
  2848. * 4: freedom to distribute copies of your modified versions to your Free Software friends
  2849. * , ,
  2850. * / \
  2851. * ((__-^^-,-^^-__))
  2852. * `-_---' `---_-'
  2853. * `--|o` 'o|--'
  2854. * \ ` /
  2855. * ): :(
  2856. * :o_o:
  2857. * "-"
  2858. *
  2859. * SPDX-License-Identifier: GPL-3.0+
  2860. * License-Filename: LICENSE
  2861. */
  2862. /* lex the vcg data generated with gcc -fcallgraph-info option which is a subset of vcg language */
  2863. #line 45 "vcg.l"
  2864. #include "config.h"
  2865. #include <stdio.h>
  2866. #include <stdlib.h>
  2867. #include <zlib.h>
  2868. #include "splay-tree.h"
  2869. #include "vcg.yy.h"
  2870. #include "vcg.tab.h"
  2871. #include "vcgus.h"
  2872. #include "dpmem.h"
  2873. /* use GNU GCC compiler builtin strlen */
  2874. #undef YY_NEED_STRLEN
  2875. /* increase read buffer */
  2876. #undef YY_READ_BUF_SIZE
  2877. /* #define YY_READ_BUF_SIZE (16*1024) */
  2878. /* fread() with 128kb at once is fastest on Linux */
  2879. #define YY_READ_BUF_SIZE (128*1024)
  2880. /* Size of default input buffer. Do not tune. */
  2881. #undef YY_BUF_SIZE
  2882. #define YY_BUF_SIZE 16384
  2883. /* at malloc error there will be a memory leak but it does also
  2884. * #define YY_FATAL_ERROR(msg) exit(0)
  2885. */
  2886. /* char *p is used in flex coe */
  2887. static char *ppointer = NULL;
  2888. static char *qpointer = NULL;
  2889. static char *tmpp = NULL;
  2890. char *vcglaststring = NULL;
  2891. static gzFile vcgzin = (gzFile) 0;
  2892. /* gzfread cannot be used because of older zlib in the dll */
  2893. #undef YY_INPUT
  2894. #define YY_INPUT(buf,result,max_size) do { \
  2895. if ( (result = gzread(vcgzin, (char*)buf, (sizeof(char) * max_size) )) == 0) { \
  2896. int estatus = 0; \
  2897. const char *es = gzerror (vcgzin, &estatus); \
  2898. if (estatus == Z_BUF_ERROR) { \
  2899. YY_FATAL_ERROR( "gzread() in vcg.l flex scanner failed"); \
  2900. } else { \
  2901. if (estatus) { \
  2902. printf ("%s(): zlib error status %d %s in vcg.l\n",__func__,(int)estatus,es); \
  2903. } \
  2904. } \
  2905. } } while (0);
  2906. /* own yyalloc
  2907. * void *yyalloc (size_t n) { return(calloc(1,n)); }
  2908. * void yyfree (void *ptr) { if (ptr) { free (ptr); } return; }
  2909. * void *yyrealloc (void *ptr, size_t n) { return (realloc(ptr,n)); }
  2910. */
  2911. #line 3422 "vcg.flex.c"
  2912. #line 108 "vcg.l"
  2913. /* use own yyalloc
  2914. * %option noyyalloc
  2915. * %option noyyrealloc
  2916. * %option noyyfree
  2917. */
  2918. #define YY_NO_INPUT 1
  2919. #line 3430 "vcg.flex.c"
  2920. #define INITIAL 0
  2921. #ifndef YY_NO_UNISTD_H
  2922. /* Special case for "unistd.h", since it is non-ANSI. We include it way
  2923. * down here because we want the user's section 1 to have been scanned first.
  2924. * The user has a chance to override it with an option.
  2925. */
  2926. /* %if-c-only */
  2927. #include <unistd.h>
  2928. /* %endif */
  2929. /* %if-c++-only */
  2930. /* %endif */
  2931. #endif
  2932. #ifndef YY_EXTRA_TYPE
  2933. #define YY_EXTRA_TYPE void *
  2934. #endif
  2935. /* %if-c-only Reentrant structure and macros (non-C++). */
  2936. /* %if-reentrant */
  2937. /* %if-c-only */
  2938. static int yy_init_globals(void);
  2939. /* %endif */
  2940. /* %if-reentrant */
  2941. /* %endif */
  2942. /* %endif End reentrant structures and macros. */
  2943. /* Accessor methods to globals.
  2944. These are made visible to non-reentrant scanners for convenience. */
  2945. int yylex_destroy(void);
  2946. int yyget_debug(void);
  2947. void yyset_debug(int debug_flag);
  2948. YY_EXTRA_TYPE yyget_extra(void);
  2949. void yyset_extra(YY_EXTRA_TYPE user_defined);
  2950. FILE *yyget_in(void);
  2951. void yyset_in(FILE * _in_str);
  2952. FILE *yyget_out(void);
  2953. void yyset_out(FILE * _out_str);
  2954. int yyget_leng(void);
  2955. char *yyget_text(void);
  2956. int yyget_lineno(void);
  2957. void yyset_lineno(int _line_number);
  2958. /* %if-bison-bridge */
  2959. /* %endif */
  2960. /* Macros after this point can all be overridden by user definitions in
  2961. * section 1.
  2962. */
  2963. #ifndef YY_SKIP_YYWRAP
  2964. #ifdef __cplusplus
  2965. extern "C" int yywrap(void);
  2966. #else
  2967. extern int yywrap(void);
  2968. #endif
  2969. #endif
  2970. /* %not-for-header */
  2971. #ifndef YY_NO_UNPUT
  2972. #endif
  2973. /* %ok-for-header */
  2974. /* %endif */
  2975. #ifndef yytext_ptr
  2976. static void yy_flex_strncpy(char *, const char *, int);
  2977. #endif
  2978. #ifdef YY_NEED_STRLEN
  2979. static int yy_flex_strlen(const char *);
  2980. #endif
  2981. #ifndef YY_NO_INPUT
  2982. /* %if-c-only Standard (non-C++) definition */
  2983. /* %not-for-header */
  2984. #ifdef __cplusplus
  2985. static int yyinput(void);
  2986. #else
  2987. static int input(void);
  2988. #endif
  2989. /* %ok-for-header */
  2990. /* %endif */
  2991. #endif
  2992. /* %if-c-only */
  2993. /* %endif */
  2994. /* Amount of stuff to slurp up with each read. */
  2995. #ifndef YY_READ_BUF_SIZE
  2996. #ifdef __ia64__
  2997. /* On IA-64, the buffer size is 16k, not 8k */
  2998. #define YY_READ_BUF_SIZE 16384
  2999. #else
  3000. #define YY_READ_BUF_SIZE 8192
  3001. #endif /* __ia64__ */
  3002. #endif
  3003. /* Copy whatever the last rule matched to the standard output. */
  3004. #ifndef ECHO
  3005. /* %if-c-only Standard (non-C++) definition */
  3006. /* This used to be an fputs(), but since the string might contain NUL's,
  3007. * we now use fwrite().
  3008. */
  3009. #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0)
  3010. /* %endif */
  3011. /* %if-c++-only C++ definition */
  3012. /* %endif */
  3013. #endif
  3014. /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
  3015. * is returned in "result".
  3016. */
  3017. #ifndef YY_INPUT
  3018. #define YY_INPUT(buf,result,max_size) \
  3019. /* %% [5.0] fread()/read() definition of YY_INPUT goes here unless we're doing C++ \ */\
  3020. if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
  3021. { \
  3022. int c = '*'; \
  3023. int n; \
  3024. for ( n = 0; n < max_size && \
  3025. (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
  3026. buf[n] = (char) c; \
  3027. if ( c == '\n' ) \
  3028. buf[n++] = (char) c; \
  3029. if ( c == EOF && ferror( yyin ) ) \
  3030. YY_FATAL_ERROR( "input in flex scanner failed" ); \
  3031. result = n; \
  3032. } \
  3033. else \
  3034. { \
  3035. errno=0; \
  3036. while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
  3037. { \
  3038. if( errno != EINTR) \
  3039. { \
  3040. YY_FATAL_ERROR( "input in flex scanner failed" ); \
  3041. break; \
  3042. } \
  3043. errno=0; \
  3044. clearerr(yyin); \
  3045. } \
  3046. }\
  3047. \
  3048. /* %if-c++-only C++ definition \ */\
  3049. /* %endif */
  3050. #endif
  3051. /* No semi-colon after return; correct usage is to write "yyterminate();" -
  3052. * we don't want an extra ';' after the "return" because that will cause
  3053. * some compilers to complain about unreachable statements.
  3054. */
  3055. #ifndef yyterminate
  3056. #define yyterminate() return YY_NULL
  3057. #endif
  3058. /* Number of entries by which start-condition stack grows. */
  3059. #ifndef YY_START_STACK_INCR
  3060. #define YY_START_STACK_INCR 25
  3061. #endif
  3062. /* Report a fatal error. */
  3063. #ifndef YY_FATAL_ERROR
  3064. /* %if-c-only */
  3065. #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
  3066. /* %endif */
  3067. /* %if-c++-only */
  3068. /* %endif */
  3069. #endif
  3070. /* %if-tables-serialization structures and prototypes */
  3071. /* %not-for-header */
  3072. /* %ok-for-header */
  3073. /* %not-for-header */
  3074. /* %tables-yydmap generated elements */
  3075. /* %endif */
  3076. /* end tables serialization structures and prototypes */
  3077. /* %ok-for-header */
  3078. /* Default declaration of generated scanner - a define so the user can
  3079. * easily add parameters.
  3080. */
  3081. #ifndef YY_DECL
  3082. #define YY_DECL_IS_OURS 1
  3083. /* %if-c-only Standard (non-C++) definition */
  3084. extern int yylex(void);
  3085. #define YY_DECL int yylex (void)
  3086. /* %endif */
  3087. /* %if-c++-only C++ definition */
  3088. /* %endif */
  3089. #endif /* !YY_DECL */
  3090. /* Code executed at the beginning of each rule, after yytext and yyleng
  3091. * have been set up.
  3092. */
  3093. #ifndef YY_USER_ACTION
  3094. #define YY_USER_ACTION
  3095. #endif
  3096. /* Code executed at the end of each rule. */
  3097. #ifndef YY_BREAK
  3098. #define YY_BREAK /*LINTED*/break;
  3099. #endif
  3100. /* %% [6.0] YY_RULE_SETUP definition goes here */
  3101. #define YY_RULE_SETUP \
  3102. YY_USER_ACTION
  3103. /* %not-for-header */
  3104. /** The main scanner function which does all the work.
  3105. */
  3106. YY_DECL {
  3107. yy_state_type yy_current_state;
  3108. char *yy_cp, *yy_bp;
  3109. int yy_act;
  3110. if (!(yy_init)) {
  3111. (yy_init) = 1;
  3112. #ifdef YY_USER_INIT
  3113. YY_USER_INIT;
  3114. #endif
  3115. if (!(yy_start))
  3116. (yy_start) = 1; /* first start state */
  3117. if (!yyin)
  3118. /* %if-c-only */
  3119. yyin = stdin;
  3120. /* %endif */
  3121. /* %if-c++-only */
  3122. /* %endif */
  3123. if (!yyout)
  3124. /* %if-c-only */
  3125. yyout = stdout;
  3126. /* %endif */
  3127. /* %if-c++-only */
  3128. /* %endif */
  3129. if (!YY_CURRENT_BUFFER) {
  3130. yyensure_buffer_stack();
  3131. YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE);
  3132. }
  3133. yy_load_buffer_state();
  3134. }
  3135. {
  3136. /* %% [7.0] user's declarations go here */
  3137. #line 130 "vcg.l"
  3138. #line 3711 "vcg.flex.c"
  3139. while ( /*CONSTCOND*/ 1) { /* loops until end-of-file is reached */
  3140. /* %% [8.0] yymore()-related code goes here */
  3141. yy_cp = (yy_c_buf_p);
  3142. /* Support of yytext. */
  3143. *yy_cp = (yy_hold_char);
  3144. /* yy_bp points to the position in yy_ch_buf of the start of
  3145. * the current run.
  3146. */
  3147. yy_bp = yy_cp;
  3148. /* %% [9.0] code to set up and find next match goes here - scan-build says array subscript is undefined at the generated code yy_nxt[yy_current_state][ YY_SC_TO_UI(*yy_cp) ]) */
  3149. yy_current_state = (yy_start);
  3150. yy_match:
  3151. while ((yy_current_state = yy_nxt[yy_current_state][YY_SC_TO_UI(*yy_cp)]) > 0) {
  3152. if (yy_accept[yy_current_state]) {
  3153. (yy_last_accepting_state) = yy_current_state;
  3154. (yy_last_accepting_cpos) = yy_cp;
  3155. }
  3156. ++yy_cp;
  3157. }
  3158. yy_current_state = -yy_current_state;
  3159. yy_find_action:
  3160. /* %% [10.0] code to find the action number goes here */
  3161. yy_act = yy_accept[yy_current_state];
  3162. YY_DO_BEFORE_ACTION;
  3163. /* %% [11.0] code for yylineno update goes here */
  3164. if (yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act]) {
  3165. int yyl;
  3166. for (yyl = 0; yyl < yyleng; ++yyl)
  3167. if (yytext[yyl] == '\n')
  3168. yylineno++;
  3169. ;
  3170. }
  3171. do_action: /* This label is used only to access EOF actions. */
  3172. /* %% [12.0] debug code goes here */
  3173. if (yy_flex_debug) {
  3174. if (yy_act == 0)
  3175. fprintf(stderr, "--scanner backing up\n");
  3176. else if (yy_act < 23)
  3177. fprintf(stderr, "--accepting rule at line %ld (\"%s\")\n", (long)yy_rule_linenum[yy_act], yytext);
  3178. else if (yy_act == 23)
  3179. fprintf(stderr, "--accepting default rule (\"%s\")\n", yytext);
  3180. else if (yy_act == 24)
  3181. fprintf(stderr, "--(end of buffer or a NUL)\n");
  3182. else
  3183. fprintf(stderr, "--EOF (start condition %d)\n", YY_START);
  3184. }
  3185. switch (yy_act) { /* beginning of action switch */
  3186. /* %% [13.0] actions go here */
  3187. case 0: /* must back up */
  3188. /* undo the effects of YY_DO_BEFORE_ACTION */
  3189. *yy_cp = (yy_hold_char);
  3190. yy_cp = (yy_last_accepting_cpos) + 1;
  3191. yy_current_state = (yy_last_accepting_state);
  3192. goto yy_find_action;
  3193. case 1:
  3194. /* rule 1 can match eol */
  3195. YY_RULE_SETUP
  3196. #line 132 "vcg.l"
  3197. { /* c-comment style *//* lexer does update yylineno */
  3198. }
  3199. YY_BREAK case 2:YY_RULE_SETUP
  3200. #line 133 "vcg.l"
  3201. { /* start of c comment but no end of c comment */
  3202. }
  3203. YY_BREAK case 3:YY_RULE_SETUP
  3204. #line 134 "vcg.l"
  3205. { /* end of c comment but no start of c comment */
  3206. }
  3207. YY_BREAK case 4:YY_RULE_SETUP
  3208. #line 135 "vcg.l"
  3209. { /* c++ comment style *//* lexer does update yylineno */
  3210. }
  3211. YY_BREAK case 5:YY_RULE_SETUP
  3212. #line 137 "vcg.l"
  3213. { /* skip form feed chars and spaces */
  3214. }
  3215. YY_BREAK case 6:YY_RULE_SETUP
  3216. #line 138 "vcg.l"
  3217. { /* skip tabs */
  3218. }
  3219. YY_BREAK case 7:
  3220. /* rule 7 can match eol */
  3221. YY_RULE_SETUP
  3222. #line 139 "vcg.l"
  3223. { /* skip new line *//* lexer does update yylineno */
  3224. }
  3225. YY_BREAK case 8:YY_RULE_SETUP
  3226. #line 140 "vcg.l"
  3227. { /* skip carriage return */
  3228. }
  3229. YY_BREAK case 9:YY_RULE_SETUP
  3230. #line 142 "vcg.l"
  3231. {
  3232. return (VCG_COLON);
  3233. }
  3234. YY_BREAK case 10:YY_RULE_SETUP
  3235. #line 143 "vcg.l"
  3236. {
  3237. return (VCG_BO);
  3238. }
  3239. YY_BREAK case 11:YY_RULE_SETUP
  3240. #line 144 "vcg.l"
  3241. {
  3242. return (VCG_BC);
  3243. }
  3244. YY_BREAK case 12:YY_RULE_SETUP
  3245. #line 146 "vcg.l"
  3246. {
  3247. return (VCG_GRAPH);
  3248. }
  3249. YY_BREAK case 13:YY_RULE_SETUP
  3250. #line 147 "vcg.l"
  3251. {
  3252. return (VCG_EDGE);
  3253. }
  3254. YY_BREAK case 14:YY_RULE_SETUP
  3255. #line 148 "vcg.l"
  3256. {
  3257. return (VCG_ELLIPSE);
  3258. }
  3259. YY_BREAK case 15:YY_RULE_SETUP
  3260. #line 149 "vcg.l"
  3261. {
  3262. return (VCG_LABEL);
  3263. }
  3264. YY_BREAK case 16:YY_RULE_SETUP
  3265. #line 150 "vcg.l"
  3266. {
  3267. return (VCG_NODE);
  3268. }
  3269. YY_BREAK case 17:YY_RULE_SETUP
  3270. #line 151 "vcg.l"
  3271. {
  3272. return (VCG_SHAPE);
  3273. }
  3274. YY_BREAK case 18:YY_RULE_SETUP
  3275. #line 152 "vcg.l"
  3276. {
  3277. return (VCG_SOURCENAME);
  3278. }
  3279. YY_BREAK case 19:YY_RULE_SETUP
  3280. #line 153 "vcg.l"
  3281. {
  3282. return (VCG_TARGETNAME);
  3283. }
  3284. YY_BREAK case 20:YY_RULE_SETUP
  3285. #line 154 "vcg.l"
  3286. {
  3287. return (VCG_TITLE);
  3288. }
  3289. YY_BREAK case 21:
  3290. /* rule 21 can match eol */
  3291. YY_RULE_SETUP
  3292. #line 156 "vcg.l"
  3293. {
  3294. if (yyleng == 2) {
  3295. /* string is "" */
  3296. vcglaststring = vcg_uniqstr("");
  3297. return (VCG_STRING);
  3298. }
  3299. /* copy and filter the text, and clear last " */ yytext[yyleng - 1] = 0;
  3300. /* one byte to much but that is later on corrected */
  3301. tmpp = (char *)dp_calloc(1, (yyleng + 1));
  3302. ppointer = yytext;
  3303. ppointer++; /* skip first " */
  3304. qpointer = tmpp;
  3305. while (*ppointer) {
  3306. if ((*ppointer) == '\\') {
  3307. if ((*(ppointer + 1)) == 0) {
  3308. *qpointer = '\\';
  3309. qpointer++;
  3310. ppointer++; /* "\" as last char */
  3311. } else if ((*(ppointer + 1)) == '\n') {
  3312. ppointer = ppointer + 2; /* skip "\\n" sequence */
  3313. } else if ((*(ppointer + 1)) == 'n') {
  3314. *qpointer = '\n'; /* */
  3315. qpointer++;
  3316. ppointer = ppointer + 2;
  3317. } else if ((*(ppointer + 1)) == '"') {
  3318. *qpointer = '"'; /* */
  3319. qpointer++;
  3320. ppointer = ppointer + 2;
  3321. } else if ((*(ppointer + 1)) == '\\') {
  3322. *qpointer = '\\';
  3323. qpointer++;
  3324. ppointer = ppointer + 2;
  3325. } else {
  3326. *qpointer = *ppointer; /* copy other esc sequences */
  3327. ppointer++;
  3328. qpointer++;
  3329. }
  3330. } else {
  3331. *qpointer = *ppointer; /* copy regular chars */
  3332. ppointer++;
  3333. qpointer++;
  3334. }
  3335. }
  3336. /* do a strdup() */
  3337. ppointer = vcg_uniqstr(tmpp);
  3338. vcglaststring = ppointer;
  3339. tmpp = dp_free(tmpp);
  3340. ppointer = NULL;
  3341. qpointer = NULL;
  3342. if (ppointer) {
  3343. }
  3344. if (qpointer) {
  3345. }
  3346. return (VCG_STRING);
  3347. }
  3348. YY_BREAK case 22:YY_RULE_SETUP
  3349. #line 212 "vcg.l"
  3350. {
  3351. return ((int)yytext[0]);
  3352. } YY_BREAK case 23:YY_RULE_SETUP
  3353. #line 214 "vcg.l"
  3354. ECHO;
  3355. YY_BREAK
  3356. #line 3961 "vcg.flex.c"
  3357. case YY_STATE_EOF(INITIAL):
  3358. yyterminate();
  3359. case YY_END_OF_BUFFER:
  3360. {
  3361. /* Amount of text matched not including the EOB char. */
  3362. int yy_amount_of_matched_text = (int)(yy_cp - (yytext_ptr)) - 1;
  3363. /* Undo the effects of YY_DO_BEFORE_ACTION. */
  3364. *yy_cp = (yy_hold_char);
  3365. YY_RESTORE_YY_MORE_OFFSET if (YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW) {
  3366. /* We're scanning a new file or input source. It's
  3367. * possible that this happened because the user
  3368. * just pointed yyin at a new source and called
  3369. * yylex(). If so, then we have to assure
  3370. * consistency between YY_CURRENT_BUFFER and our
  3371. * globals. Here is the right place to do so, because
  3372. * this is the first action (other than possibly a
  3373. * back-up) that will match for the new input source.
  3374. */
  3375. (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
  3376. /* %if-c-only */
  3377. YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
  3378. /* %endif */
  3379. /* %if-c++-only */
  3380. /* %endif */
  3381. YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
  3382. }
  3383. /* Note that here we test for yy_c_buf_p "<=" to the position
  3384. * of the first EOB in the buffer, since yy_c_buf_p will
  3385. * already have been incremented past the NUL character
  3386. * (since all states make transitions on EOB to the
  3387. * end-of-buffer state). Contrast this with the test
  3388. * in input().
  3389. */
  3390. if ((yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]) { /* This was really a NUL. */
  3391. yy_state_type yy_next_state;
  3392. (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
  3393. yy_current_state = yy_get_previous_state();
  3394. /* Okay, we're now positioned to make the NUL
  3395. * transition. We couldn't have
  3396. * yy_get_previous_state() go ahead and do it
  3397. * for us because it doesn't know how to deal
  3398. * with the possibility of jamming (and we don't
  3399. * want to build jamming into it because then it
  3400. * will run more slowly).
  3401. */
  3402. yy_next_state = yy_try_NUL_trans(yy_current_state);
  3403. yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  3404. if (yy_next_state) {
  3405. /* Consume the NUL. */
  3406. yy_cp = ++(yy_c_buf_p);
  3407. yy_current_state = yy_next_state;
  3408. goto yy_match;
  3409. }
  3410. else {
  3411. /* %% [14.0] code to do back-up for compressed tables and set up yy_cp goes here */
  3412. yy_cp = (yy_c_buf_p);
  3413. goto yy_find_action;
  3414. }
  3415. }
  3416. else
  3417. switch (yy_get_next_buffer()) {
  3418. case EOB_ACT_END_OF_FILE:
  3419. {
  3420. (yy_did_buffer_switch_on_eof) = 0;
  3421. if (yywrap()) {
  3422. /* Note: because we've taken care in
  3423. * yy_get_next_buffer() to have set up
  3424. * yytext, we can now set up
  3425. * yy_c_buf_p so that if some total
  3426. * hoser (like flex itself) wants to
  3427. * call the scanner after we return the
  3428. * YY_NULL, it'll still work - another
  3429. * YY_NULL will get returned.
  3430. */
  3431. (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
  3432. yy_act = YY_STATE_EOF(YY_START);
  3433. goto do_action;
  3434. }
  3435. else {
  3436. if (!(yy_did_buffer_switch_on_eof))
  3437. YY_NEW_FILE;
  3438. }
  3439. break;
  3440. }
  3441. case EOB_ACT_CONTINUE_SCAN:
  3442. (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
  3443. yy_current_state = yy_get_previous_state();
  3444. yy_cp = (yy_c_buf_p);
  3445. yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  3446. goto yy_match;
  3447. case EOB_ACT_LAST_MATCH:
  3448. (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
  3449. yy_current_state = yy_get_previous_state();
  3450. yy_cp = (yy_c_buf_p);
  3451. yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  3452. goto yy_find_action;
  3453. }
  3454. break;
  3455. }
  3456. default:
  3457. YY_FATAL_ERROR("fatal flex scanner internal error--no action found");
  3458. break;
  3459. } /* end of action switch */
  3460. } /* end of scanning one token */
  3461. } /* end of user's declarations */
  3462. } /* end of yylex */
  3463. /* %ok-for-header */
  3464. /* %if-c++-only */
  3465. /* %not-for-header */
  3466. /* %ok-for-header */
  3467. /* %endif */
  3468. /* yy_get_next_buffer - try to read in a new buffer
  3469. *
  3470. * Returns a code representing an action:
  3471. * EOB_ACT_LAST_MATCH -
  3472. * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  3473. * EOB_ACT_END_OF_FILE - end of file
  3474. */
  3475. /* %if-c-only */
  3476. static int yy_get_next_buffer(void)
  3477. /* %endif */
  3478. /* %if-c++-only */
  3479. /* %endif */
  3480. {
  3481. char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
  3482. char *source = (yytext_ptr);
  3483. int number_to_move, i;
  3484. int ret_val;
  3485. if ((yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1])
  3486. YY_FATAL_ERROR("fatal flex scanner internal error--end of buffer missed");
  3487. if (YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0) { /* Don't try to fill the buffer, so this is an EOF. */
  3488. if ((yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1) {
  3489. /* We matched a single character, the EOB, so
  3490. * treat this as a final EOF.
  3491. */
  3492. return EOB_ACT_END_OF_FILE;
  3493. }
  3494. else {
  3495. /* We matched some text prior to the EOB, first
  3496. * process it.
  3497. */
  3498. return EOB_ACT_LAST_MATCH;
  3499. }
  3500. }
  3501. /* Try to read more data. */
  3502. /* First move last chars to start of buffer. */
  3503. number_to_move = (int)((yy_c_buf_p) - (yytext_ptr) - 1);
  3504. for (i = 0; i < number_to_move; ++i)
  3505. *(dest++) = *(source++);
  3506. if (YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING)
  3507. /* don't do the read, it's not guaranteed to return an EOF,
  3508. * just force an EOF
  3509. */
  3510. YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
  3511. else {
  3512. int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
  3513. while (num_to_read <= 0) { /* Not enough room in the buffer - grow it. */
  3514. /* just a shorter name for the current buffer */
  3515. YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
  3516. int yy_c_buf_p_offset = (int)((yy_c_buf_p) - b->yy_ch_buf);
  3517. if (b->yy_is_our_buffer) {
  3518. int new_size = b->yy_buf_size * 2;
  3519. if (new_size <= 0)
  3520. b->yy_buf_size += b->yy_buf_size / 8;
  3521. else
  3522. b->yy_buf_size *= 2;
  3523. b->yy_ch_buf = (char *)
  3524. /* Include room in for 2 EOB chars. */
  3525. yyrealloc((void *)b->yy_ch_buf, (yy_size_t) (b->yy_buf_size + 2));
  3526. } else
  3527. /* Can't grow it, we don't own it. */
  3528. b->yy_ch_buf = NULL;
  3529. if (!b->yy_ch_buf)
  3530. YY_FATAL_ERROR("fatal error - scanner input buffer overflow");
  3531. (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
  3532. num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
  3533. }
  3534. if (num_to_read > YY_READ_BUF_SIZE)
  3535. num_to_read = YY_READ_BUF_SIZE;
  3536. /* Read in more data. */
  3537. YY_INPUT((&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read);
  3538. YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  3539. }
  3540. if ((yy_n_chars) == 0) {
  3541. if (number_to_move == YY_MORE_ADJ) {
  3542. ret_val = EOB_ACT_END_OF_FILE;
  3543. yyrestart(yyin);
  3544. }
  3545. else {
  3546. ret_val = EOB_ACT_LAST_MATCH;
  3547. YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING;
  3548. }
  3549. }
  3550. else
  3551. ret_val = EOB_ACT_CONTINUE_SCAN;
  3552. if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
  3553. /* Extend the array by 50%, plus the number we really need. */
  3554. int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
  3555. YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *)yyrealloc((void *)YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size);
  3556. if (!YY_CURRENT_BUFFER_LVALUE->yy_ch_buf)
  3557. YY_FATAL_ERROR("out of dynamic memory in yy_get_next_buffer()");
  3558. /* "- 2" to take care of EOB's */
  3559. YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int)(new_size - 2);
  3560. }
  3561. (yy_n_chars) += number_to_move;
  3562. YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
  3563. YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
  3564. (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
  3565. return ret_val;
  3566. }
  3567. /* yy_get_previous_state - get the state just before the EOB char was reached */
  3568. /* %if-c-only */
  3569. /* %not-for-header */
  3570. static yy_state_type yy_get_previous_state(void)
  3571. /* %endif */
  3572. /* %if-c++-only */
  3573. /* %endif */
  3574. {
  3575. yy_state_type yy_current_state;
  3576. char *yy_cp;
  3577. /* %% [15.0] code to get the start state into yy_current_state goes here */
  3578. yy_current_state = (yy_start);
  3579. for (yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp) {
  3580. /* %% [16.0] code to find the next state goes here */
  3581. if (*yy_cp) {
  3582. yy_current_state = yy_nxt[yy_current_state][YY_SC_TO_UI(*yy_cp)];
  3583. } else
  3584. yy_current_state = yy_NUL_trans[yy_current_state];
  3585. if (yy_accept[yy_current_state]) {
  3586. (yy_last_accepting_state) = yy_current_state;
  3587. (yy_last_accepting_cpos) = yy_cp;
  3588. }
  3589. }
  3590. return yy_current_state;
  3591. }
  3592. /* yy_try_NUL_trans - try to make a transition on the NUL character
  3593. *
  3594. * synopsis
  3595. * next_state = yy_try_NUL_trans( current_state );
  3596. */
  3597. /* %if-c-only */
  3598. static yy_state_type yy_try_NUL_trans(yy_state_type yy_current_state)
  3599. /* %endif */
  3600. /* %if-c++-only */
  3601. /* %endif */
  3602. {
  3603. int yy_is_jam;
  3604. /* %% [17.0] code to find the next state, and perhaps do backing up, goes here */
  3605. char *yy_cp = (yy_c_buf_p);
  3606. yy_current_state = yy_NUL_trans[yy_current_state];
  3607. yy_is_jam = (yy_current_state == 0);
  3608. if (!yy_is_jam) {
  3609. if (yy_accept[yy_current_state]) {
  3610. (yy_last_accepting_state) = yy_current_state;
  3611. (yy_last_accepting_cpos) = yy_cp;
  3612. }
  3613. }
  3614. return yy_is_jam ? 0 : yy_current_state;
  3615. }
  3616. #ifndef YY_NO_UNPUT
  3617. /* %if-c-only */
  3618. /* %endif */
  3619. #endif
  3620. /* %if-c-only */
  3621. #ifndef YY_NO_INPUT
  3622. #ifdef __cplusplus
  3623. static int yyinput(void)
  3624. #else
  3625. static int input(void)
  3626. #endif
  3627. /* %endif */
  3628. /* %if-c++-only */
  3629. /* %endif */
  3630. {
  3631. int c;
  3632. *(yy_c_buf_p) = (yy_hold_char);
  3633. if (*(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR) {
  3634. /* yy_c_buf_p now points to the character we want to return.
  3635. * If this occurs *before* the EOB characters, then it's a
  3636. * valid NUL; if not, then we've hit the end of the buffer.
  3637. */
  3638. if ((yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)])
  3639. /* This was really a NUL. */
  3640. *(yy_c_buf_p) = '\0';
  3641. else { /* need more input */
  3642. int offset = (int)((yy_c_buf_p) - (yytext_ptr));
  3643. ++(yy_c_buf_p);
  3644. switch (yy_get_next_buffer()) {
  3645. case EOB_ACT_LAST_MATCH:
  3646. /* This happens because yy_g_n_b()
  3647. * sees that we've accumulated a
  3648. * token and flags that we need to
  3649. * try matching the token before
  3650. * proceeding. But for input(),
  3651. * there's no matching to consider.
  3652. * So convert the EOB_ACT_LAST_MATCH
  3653. * to EOB_ACT_END_OF_FILE.
  3654. */
  3655. /* Reset buffer status. */
  3656. yyrestart(yyin);
  3657. /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE:
  3658. {
  3659. if (yywrap())
  3660. return 0;
  3661. if (!(yy_did_buffer_switch_on_eof))
  3662. YY_NEW_FILE;
  3663. #ifdef __cplusplus
  3664. return yyinput();
  3665. #else
  3666. return input();
  3667. #endif
  3668. }
  3669. case EOB_ACT_CONTINUE_SCAN:
  3670. (yy_c_buf_p) = (yytext_ptr) + offset;
  3671. break;
  3672. }
  3673. }
  3674. }
  3675. c = *(unsigned char *)(yy_c_buf_p); /* cast for 8-bit char's */
  3676. *(yy_c_buf_p) = '\0'; /* preserve yytext */
  3677. (yy_hold_char) = *++(yy_c_buf_p);
  3678. /* %% [19.0] update BOL and yylineno */
  3679. if (c == '\n')
  3680. yylineno++;
  3681. ;
  3682. return c;
  3683. }
  3684. /* %if-c-only */
  3685. #endif /* ifndef YY_NO_INPUT */
  3686. /* %endif */
  3687. /** Immediately switch to a different input stream.
  3688. * @param input_file A readable stream.
  3689. *
  3690. * @note This function does not reset the start condition to @c INITIAL .
  3691. */
  3692. /* %if-c-only */
  3693. void yyrestart(FILE * input_file)
  3694. /* %endif */
  3695. /* %if-c++-only */
  3696. /* %endif */
  3697. {
  3698. if (!YY_CURRENT_BUFFER) {
  3699. yyensure_buffer_stack();
  3700. YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE);
  3701. }
  3702. yy_init_buffer(YY_CURRENT_BUFFER, input_file);
  3703. yy_load_buffer_state();
  3704. }
  3705. /* %if-c++-only */
  3706. /* %endif */
  3707. /** Switch to a different input buffer.
  3708. * @param new_buffer The new input buffer.
  3709. *
  3710. */
  3711. /* %if-c-only */
  3712. void yy_switch_to_buffer(YY_BUFFER_STATE new_buffer)
  3713. /* %endif */
  3714. /* %if-c++-only */
  3715. /* %endif */
  3716. {
  3717. /* TODO. We should be able to replace this entire function body
  3718. * with
  3719. * yypop_buffer_state();
  3720. * yypush_buffer_state(new_buffer);
  3721. */
  3722. yyensure_buffer_stack();
  3723. if (YY_CURRENT_BUFFER == new_buffer)
  3724. return;
  3725. if (YY_CURRENT_BUFFER) {
  3726. /* Flush out information for old buffer. */
  3727. *(yy_c_buf_p) = (yy_hold_char);
  3728. YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
  3729. YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  3730. }
  3731. YY_CURRENT_BUFFER_LVALUE = new_buffer;
  3732. yy_load_buffer_state();
  3733. /* We don't actually know whether we did this switch during
  3734. * EOF (yywrap()) processing, but the only time this flag
  3735. * is looked at is after yywrap() is called, so it's safe
  3736. * to go ahead and always set it.
  3737. */
  3738. (yy_did_buffer_switch_on_eof) = 1;
  3739. }
  3740. /* %if-c-only */
  3741. static void yy_load_buffer_state(void)
  3742. /* %endif */
  3743. /* %if-c++-only */
  3744. /* %endif */
  3745. {
  3746. (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
  3747. (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
  3748. /* %if-c-only */
  3749. yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
  3750. /* %endif */
  3751. /* %if-c++-only */
  3752. /* %endif */
  3753. (yy_hold_char) = *(yy_c_buf_p);
  3754. }
  3755. /** Allocate and initialize an input buffer state.
  3756. * @param file A readable stream.
  3757. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
  3758. *
  3759. * @return the allocated buffer state.
  3760. */
  3761. /* %if-c-only */
  3762. YY_BUFFER_STATE yy_create_buffer(FILE * file, int size)
  3763. /* %endif */
  3764. /* %if-c++-only */
  3765. /* %endif */
  3766. {
  3767. YY_BUFFER_STATE b;
  3768. b = (YY_BUFFER_STATE) yyalloc(sizeof(struct yy_buffer_state));
  3769. if (!b)
  3770. YY_FATAL_ERROR("out of dynamic memory in yy_create_buffer()");
  3771. b->yy_buf_size = size;
  3772. /* yy_ch_buf has to be 2 characters longer than the size given because
  3773. * we need to put in 2 end-of-buffer characters.
  3774. */
  3775. b->yy_ch_buf = (char *)yyalloc((yy_size_t) (b->yy_buf_size + 2));
  3776. if (!b->yy_ch_buf) {
  3777. yyfree(b);
  3778. YY_FATAL_ERROR("out of dynamic memory in yy_create_buffer()");
  3779. }
  3780. b->yy_is_our_buffer = 1;
  3781. yy_init_buffer(b, file);
  3782. return b;
  3783. }
  3784. /* %if-c++-only */
  3785. /* %endif */
  3786. /** Destroy the buffer.
  3787. * @param b a buffer created with yy_create_buffer()
  3788. *
  3789. */
  3790. /* %if-c-only */
  3791. void yy_delete_buffer(YY_BUFFER_STATE b)
  3792. /* %endif */
  3793. /* %if-c++-only */
  3794. /* %endif */
  3795. {
  3796. if (!b)
  3797. return;
  3798. if (b == YY_CURRENT_BUFFER) /* Not sure if we should pop here. */
  3799. YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
  3800. if (b->yy_is_our_buffer)
  3801. yyfree((void *)b->yy_ch_buf);
  3802. yyfree((void *)b);
  3803. }
  3804. /* Initializes or reinitializes a buffer.
  3805. * This function is sometimes called more than once on the same buffer,
  3806. * such as during a yyrestart() or at EOF.
  3807. */
  3808. /* %if-c-only */
  3809. static void yy_init_buffer(YY_BUFFER_STATE b, FILE * file)
  3810. /* %endif */
  3811. /* %if-c++-only */
  3812. /* %endif */
  3813. {
  3814. int oerrno = errno;
  3815. if (b == NULL) {
  3816. /* shouldnothappen */
  3817. return;
  3818. }
  3819. yy_flush_buffer(b);
  3820. /* %if-c-only */
  3821. b->yy_input_file = file;
  3822. /* %endif */
  3823. /* %if-c++-only */
  3824. /* %endif */
  3825. b->yy_fill_buffer = 1;
  3826. /* If b is the current buffer, then yy_init_buffer was _probably_
  3827. * called from yyrestart() or through yy_get_next_buffer.
  3828. * In that case, we don't want to reset the lineno or column.
  3829. */
  3830. if (b != YY_CURRENT_BUFFER) {
  3831. b->yy_bs_lineno = 1;
  3832. b->yy_bs_column = 0;
  3833. }
  3834. /* %if-c-only */
  3835. b->yy_is_interactive = 0;
  3836. /* %endif */
  3837. /* %if-c++-only */
  3838. /* %endif */
  3839. errno = oerrno;
  3840. }
  3841. /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
  3842. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
  3843. *
  3844. */
  3845. /* %if-c-only */
  3846. void yy_flush_buffer(YY_BUFFER_STATE b)
  3847. /* %endif */
  3848. /* %if-c++-only */
  3849. /* %endif */
  3850. {
  3851. if (!b)
  3852. return;
  3853. b->yy_n_chars = 0;
  3854. /* We always need two end-of-buffer characters. The first causes
  3855. * a transition to the end-of-buffer state. The second causes
  3856. * a jam in that state.
  3857. */
  3858. b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
  3859. b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
  3860. b->yy_buf_pos = &b->yy_ch_buf[0];
  3861. b->yy_at_bol = 1;
  3862. b->yy_buffer_status = YY_BUFFER_NEW;
  3863. if (b == YY_CURRENT_BUFFER)
  3864. yy_load_buffer_state();
  3865. }
  3866. /* %if-c-or-c++ */
  3867. /** Pushes the new state onto the stack. The new state becomes
  3868. * the current state. This function will allocate the stack
  3869. * if necessary.
  3870. * @param new_buffer The new state.
  3871. *
  3872. */
  3873. /* %if-c-only */
  3874. void yypush_buffer_state(YY_BUFFER_STATE new_buffer)
  3875. /* %endif */
  3876. /* %if-c++-only */
  3877. /* %endif */
  3878. {
  3879. if (new_buffer == NULL)
  3880. return;
  3881. yyensure_buffer_stack();
  3882. /* This block is copied from yy_switch_to_buffer. */
  3883. if (YY_CURRENT_BUFFER) {
  3884. /* Flush out information for old buffer. */
  3885. *(yy_c_buf_p) = (yy_hold_char);
  3886. YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
  3887. YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  3888. }
  3889. /* Only push if top exists. Otherwise, replace top. */
  3890. if (YY_CURRENT_BUFFER)
  3891. (yy_buffer_stack_top)++;
  3892. YY_CURRENT_BUFFER_LVALUE = new_buffer;
  3893. /* copied from yy_switch_to_buffer. */
  3894. yy_load_buffer_state();
  3895. (yy_did_buffer_switch_on_eof) = 1;
  3896. }
  3897. /* %endif */
  3898. /* %if-c-or-c++ */
  3899. /** Removes and deletes the top of the stack, if present.
  3900. * The next element becomes the new top.
  3901. *
  3902. */
  3903. /* %if-c-only */
  3904. void yypop_buffer_state(void)
  3905. /* %endif */
  3906. /* %if-c++-only */
  3907. /* %endif */
  3908. {
  3909. if (!YY_CURRENT_BUFFER)
  3910. return;
  3911. yy_delete_buffer(YY_CURRENT_BUFFER);
  3912. YY_CURRENT_BUFFER_LVALUE = NULL;
  3913. if ((yy_buffer_stack_top) > 0)
  3914. --(yy_buffer_stack_top);
  3915. if (YY_CURRENT_BUFFER) {
  3916. yy_load_buffer_state();
  3917. (yy_did_buffer_switch_on_eof) = 1;
  3918. }
  3919. }
  3920. /* %endif */
  3921. /* %if-c-or-c++ */
  3922. /* Allocates the stack if it does not exist.
  3923. * Guarantees space for at least one push.
  3924. */
  3925. /* %if-c-only */
  3926. static void yyensure_buffer_stack(void)
  3927. /* %endif */
  3928. /* %if-c++-only */
  3929. /* %endif */
  3930. {
  3931. yy_size_t num_to_alloc;
  3932. if (!(yy_buffer_stack)) {
  3933. /* First allocation is just for 2 elements, since we don't know if this
  3934. * scanner will even need a stack. We use 2 instead of 1 to avoid an
  3935. * immediate realloc on the next call.
  3936. */
  3937. num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
  3938. (yy_buffer_stack) = (struct yy_buffer_state **)yyalloc(num_to_alloc * sizeof(struct yy_buffer_state *)
  3939. );
  3940. if (!(yy_buffer_stack))
  3941. YY_FATAL_ERROR("out of dynamic memory in yyensure_buffer_stack()");
  3942. memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state *));
  3943. (yy_buffer_stack_max) = num_to_alloc;
  3944. (yy_buffer_stack_top) = 0;
  3945. return;
  3946. }
  3947. if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1) {
  3948. /* Increase the buffer to prepare for a possible push. */
  3949. yy_size_t grow_size = 8 /* arbitrary grow size */ ;
  3950. num_to_alloc = (yy_buffer_stack_max) + grow_size;
  3951. (yy_buffer_stack) = (struct yy_buffer_state **)yyrealloc((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state *)
  3952. );
  3953. if (!(yy_buffer_stack))
  3954. YY_FATAL_ERROR("out of dynamic memory in yyensure_buffer_stack()");
  3955. /* zero only the new slots. */
  3956. memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state *));
  3957. (yy_buffer_stack_max) = num_to_alloc;
  3958. }
  3959. }
  3960. /* %endif */
  3961. /* %if-c-only */
  3962. /** Setup the input buffer state to scan directly from a user-specified character buffer.
  3963. * @param base the character buffer
  3964. * @param size the size in bytes of the character buffer
  3965. *
  3966. * @return the newly allocated buffer state object.
  3967. */
  3968. YY_BUFFER_STATE yy_scan_buffer(char *base, yy_size_t size)
  3969. {
  3970. YY_BUFFER_STATE b;
  3971. if (size < 2 || base[size - 2] != YY_END_OF_BUFFER_CHAR || base[size - 1] != YY_END_OF_BUFFER_CHAR)
  3972. /* They forgot to leave room for the EOB's. */
  3973. return NULL;
  3974. b = (YY_BUFFER_STATE) yyalloc(sizeof(struct yy_buffer_state));
  3975. if (!b) {
  3976. YY_FATAL_ERROR("out of dynamic memory in yy_scan_buffer()");
  3977. }
  3978. b->yy_buf_size = (int)(size - 2); /* "- 2" to take care of EOB's */
  3979. b->yy_buf_pos = b->yy_ch_buf = base;
  3980. b->yy_is_our_buffer = 0;
  3981. b->yy_input_file = NULL;
  3982. b->yy_n_chars = b->yy_buf_size;
  3983. b->yy_is_interactive = 0;
  3984. b->yy_at_bol = 1;
  3985. b->yy_fill_buffer = 0;
  3986. b->yy_buffer_status = YY_BUFFER_NEW;
  3987. yy_switch_to_buffer(b);
  3988. return b;
  3989. }
  3990. /* %endif */
  3991. /* %if-c-only */
  3992. /** Setup the input buffer state to scan a string. The next call to yylex() will
  3993. * scan from a @e copy of @a str.
  3994. * @param yystr a NUL-terminated string to scan
  3995. *
  3996. * @return the newly allocated buffer state object.
  3997. * @note If you want to scan bytes that may contain NUL values, then use
  3998. * yy_scan_bytes() instead.
  3999. */
  4000. YY_BUFFER_STATE yy_scan_string(const char *yystr)
  4001. {
  4002. return yy_scan_bytes(yystr, (int)strlen(yystr));
  4003. }
  4004. /* %endif */
  4005. /* %if-c-only */
  4006. /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
  4007. * scan from a @e copy of @a bytes.
  4008. * @param yybytes the byte buffer to scan
  4009. * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
  4010. *
  4011. * @return the newly allocated buffer state object.
  4012. */
  4013. YY_BUFFER_STATE yy_scan_bytes(const char *yybytes, int _yybytes_len)
  4014. {
  4015. YY_BUFFER_STATE b;
  4016. char *buf;
  4017. yy_size_t n;
  4018. int i;
  4019. /* Get memory for full buffer, including space for trailing EOB's. */
  4020. n = (yy_size_t) (_yybytes_len + 2);
  4021. buf = (char *)yyalloc(n);
  4022. if (!buf)
  4023. YY_FATAL_ERROR("out of dynamic memory in yy_scan_bytes()");
  4024. for (i = 0; i < _yybytes_len; ++i)
  4025. buf[i] = yybytes[i];
  4026. buf[_yybytes_len] = buf[_yybytes_len + 1] = YY_END_OF_BUFFER_CHAR;
  4027. b = yy_scan_buffer(buf, n);
  4028. if (!b) {
  4029. yyfree(buf);
  4030. YY_FATAL_ERROR("bad buffer in yy_scan_bytes()");
  4031. }
  4032. /* It's okay to grow etc. this buffer, and we should throw it
  4033. * away when we're done.
  4034. */
  4035. b->yy_is_our_buffer = 1;
  4036. return b;
  4037. }
  4038. /* %endif */
  4039. #ifndef YY_EXIT_FAILURE
  4040. #define YY_EXIT_FAILURE 2
  4041. #endif
  4042. /* %if-c-only */
  4043. static void yynoreturn yy_fatal_error(const char *msg)
  4044. {
  4045. fprintf(stderr, "%s\n", msg);
  4046. exit(YY_EXIT_FAILURE);
  4047. }
  4048. /* %endif */
  4049. /* %if-c++-only */
  4050. /* %endif */
  4051. /* Redefine yyless() so it works in section 3 code. */
  4052. #undef yyless
  4053. #define yyless(n) \
  4054. do \
  4055. { \
  4056. /* Undo effects of setting up yytext. */ \
  4057. int yyless_macro_arg = (n); \
  4058. YY_LESS_LINENO(yyless_macro_arg);\
  4059. yytext[yyleng] = (yy_hold_char); \
  4060. (yy_c_buf_p) = yytext + yyless_macro_arg; \
  4061. (yy_hold_char) = *(yy_c_buf_p); \
  4062. *(yy_c_buf_p) = '\0'; \
  4063. yyleng = yyless_macro_arg; \
  4064. } \
  4065. while ( 0 )
  4066. /* Accessor methods (get/set functions) to struct members. */
  4067. /* %if-c-only */
  4068. /* %if-reentrant */
  4069. /* %endif */
  4070. /** Get the current line number.
  4071. *
  4072. */
  4073. int yyget_lineno(void)
  4074. {
  4075. return yylineno;
  4076. }
  4077. /** Get the input stream.
  4078. *
  4079. */
  4080. FILE *yyget_in(void)
  4081. {
  4082. return yyin;
  4083. }
  4084. /** Get the output stream.
  4085. *
  4086. */
  4087. FILE *yyget_out(void)
  4088. {
  4089. return yyout;
  4090. }
  4091. /** Get the length of the current token.
  4092. *
  4093. */
  4094. int yyget_leng(void)
  4095. {
  4096. return yyleng;
  4097. }
  4098. /** Get the current token.
  4099. *
  4100. */
  4101. char *yyget_text(void)
  4102. {
  4103. return yytext;
  4104. }
  4105. /* %if-reentrant */
  4106. /* %endif */
  4107. /** Set the current line number.
  4108. * @param _line_number line number
  4109. *
  4110. */
  4111. void yyset_lineno(int _line_number)
  4112. {
  4113. yylineno = _line_number;
  4114. }
  4115. /** Set the input stream. This does not discard the current
  4116. * input buffer.
  4117. * @param _in_str A readable stream.
  4118. *
  4119. * @see yy_switch_to_buffer
  4120. */
  4121. void yyset_in(FILE * _in_str)
  4122. {
  4123. yyin = _in_str;
  4124. }
  4125. void yyset_out(FILE * _out_str)
  4126. {
  4127. yyout = _out_str;
  4128. }
  4129. int yyget_debug(void)
  4130. {
  4131. return yy_flex_debug;
  4132. }
  4133. void yyset_debug(int _bdebug)
  4134. {
  4135. yy_flex_debug = _bdebug;
  4136. }
  4137. /* %endif */
  4138. /* %if-reentrant */
  4139. /* %if-bison-bridge */
  4140. /* %endif */
  4141. /* %endif if-c-only */
  4142. /* %if-c-only */
  4143. static int yy_init_globals(void)
  4144. {
  4145. /* Initialization is the same as for the non-reentrant scanner.
  4146. * This function is called from yylex_destroy(), so don't allocate here.
  4147. */
  4148. /* We do not touch yylineno unless the option is enabled. */
  4149. yylineno = 1;
  4150. (yy_buffer_stack) = NULL;
  4151. (yy_buffer_stack_top) = 0;
  4152. (yy_buffer_stack_max) = 0;
  4153. (yy_c_buf_p) = NULL;
  4154. (yy_init) = 0;
  4155. (yy_start) = 0;
  4156. /* Defined in main.c */
  4157. #ifdef YY_STDINIT
  4158. yyin = stdin;
  4159. yyout = stdout;
  4160. #else
  4161. yyin = NULL;
  4162. yyout = NULL;
  4163. #endif
  4164. /* For future reference: Set errno on error, since we are called by
  4165. * yylex_init()
  4166. */
  4167. return 0;
  4168. }
  4169. /* %endif */
  4170. /* %if-c-only SNIP! this currently causes conflicts with the c++ scanner */
  4171. /* yylex_destroy is for both reentrant and non-reentrant scanners. */
  4172. int yylex_destroy(void)
  4173. {
  4174. /* Pop the buffer stack, destroying each element. */
  4175. while (YY_CURRENT_BUFFER) {
  4176. yy_delete_buffer(YY_CURRENT_BUFFER);
  4177. YY_CURRENT_BUFFER_LVALUE = NULL;
  4178. yypop_buffer_state();
  4179. }
  4180. /* Destroy the stack itself. */
  4181. yyfree((yy_buffer_stack));
  4182. (yy_buffer_stack) = NULL;
  4183. /* Reset the globals. This is important in a non-reentrant scanner so the next time
  4184. * yylex() is called, initialization will occur. */
  4185. yy_init_globals();
  4186. /* %if-reentrant */
  4187. /* %endif */
  4188. return 0;
  4189. }
  4190. /* %endif */
  4191. /*
  4192. * Internal utility routines.
  4193. */
  4194. #ifndef yytext_ptr
  4195. static void yy_flex_strncpy(char *s1, const char *s2, int n)
  4196. {
  4197. int i;
  4198. for (i = 0; i < n; ++i)
  4199. s1[i] = s2[i];
  4200. }
  4201. #endif
  4202. #ifdef YY_NEED_STRLEN
  4203. static int yy_flex_strlen(const char *s)
  4204. {
  4205. int n;
  4206. for (n = 0; s[n]; ++n) ;
  4207. return n;
  4208. }
  4209. #endif
  4210. void *yyalloc(yy_size_t size)
  4211. {
  4212. void *ret = NULL;
  4213. ret = calloc(1, size);
  4214. if (ret == NULL) {
  4215. /* option here to do exit (1); */
  4216. }
  4217. return (ret);
  4218. }
  4219. void *yyrealloc(void *ptr, yy_size_t size)
  4220. {
  4221. void *ret = NULL;
  4222. /* The cast to (char *) in the following accommodates both
  4223. * implementations that use char* generic pointers, and those
  4224. * that use void* generic pointers. It works with the latter
  4225. * because both ANSI C and C++ allow castless assignment from
  4226. * any pointer type to void*, and deal with argument conversions
  4227. * as though doing an assignment.
  4228. */
  4229. ret = realloc(ptr, size);
  4230. if (size) {
  4231. if (ret == NULL) {
  4232. /* option here to do exit (1); */
  4233. }
  4234. }
  4235. return (ret);
  4236. }
  4237. void yyfree(void *ptr)
  4238. {
  4239. if (ptr) {
  4240. free((char *)ptr);
  4241. } /* see yyrealloc() for (char *) cast */
  4242. }
  4243. /* %if-tables-serialization definitions */
  4244. /* %define-yytables The name for this specific scanner's tables. */
  4245. #define YYTABLES_NAME "yytables"
  4246. /* %endif */
  4247. /* %ok-for-header */
  4248. #line 214 "vcg.l"
  4249. /* */
  4250. void vcg_lex_init(gzFile f, int debugflag)
  4251. {
  4252. vcglineno = 1;
  4253. yyin = (FILE *) 0;
  4254. vcgzin = (gzFile) f;
  4255. /* activate debug in lexer */
  4256. yy_flex_debug = debugflag;
  4257. /* activate debug in vcg parser */
  4258. vcgdebug = debugflag;
  4259. return;
  4260. }
  4261. /* */
  4262. void vcg_lex_clear(void)
  4263. {
  4264. vcglineno = 1;
  4265. yylex_destroy();
  4266. yy_flex_debug = 0;
  4267. vcgzin = (gzFile) 0;
  4268. yyin = (FILE *) 0;
  4269. return;
  4270. }
  4271. void vcg_yydebug(int debugflag)
  4272. {
  4273. /* activate debug in lexer */
  4274. vcg_flex_debug = debugflag;
  4275. /* activate debug in vcg parser */
  4276. vcgdebug = debugflag;
  4277. return;
  4278. }
  4279. /* end. */