/******************************************************************
 * File: vs20_scanner.cpp
 *
 * This file was automatically generated by CppCC Version 0.0.5
 * DO NOT EDIT MANUALLY
 ******************************************************************/



#include "vs20_scanner.hpp"

const int vs20::vs20_scanner::START = 0;
const int vs20::vs20_scanner::LONG_COMMENT = 1;

void vs20::vs20_scanner::_brefill () throw (ScanException)
{
  if (!*inputStream) {
    ScanException __ex(ePos, "Input error.");
    if (!onIOError(__ex))
      throw __ex;
  }
  for (struct t_laCell *p = _laBegin; p != _laEnd; p = p->next)
    p->token->_cacheImg();
  if (_start != _ch) {
    if (_start <= _buffer + _pbsz) {
      int nbsz = _pbsz;
      do { nbsz *= 2; } while (nbsz <= _bsz + _pbsz);
      _bsz = nbsz;
      char *newBuf = new char[_bsz + _pbsz + 1];
      memcpy(newBuf + _pbsz, _start, _ch - _start);
      _ch += newBuf - _buffer;
      _start = newBuf + _pbsz;
      delete[] _buffer;
      _buffer = newBuf;
    } else {
      memmove(_buffer + _pbsz, _start, _ch - _start);
      _ch = _buffer + _pbsz + (_ch - _start);
      _start = _buffer + _pbsz;
    }
  } else {
    _start = _ch = _buffer + _pbsz;
  }
  inputStream->read(_ch, _bsz - (_ch - (_buffer + _pbsz)));
  _eob = _ch + inputStream->gcount();
  *_eob++  = '\0';
  _eof = inputStream->eof();
  _lta = false;
}

void vs20::vs20_scanner::_binit () throw (ScanException)
{
  if (_buffer == NULL) _buffer = new char[_bsz + _pbsz + 1];
  _start = _ch = _eob = _buffer + _pbsz;
  *_eob++  = '\0';
  _eof = inputStream == NULL;
}
void vs20::vs20_scanner::unGetChars (const char *c, int n)
{
  if (_start < _buffer + n) { //grow the buffer
    int npbsz = _pbsz, delta = 0;
    for (struct t_laCell *p = _laBegin; p != _laEnd; p = p->next)
      p->token->_cacheImg();
    if (la0 == _laEnd) la0->token->_cacheImg();
    do { npbsz *= 2; delta = npbsz - _pbsz; } while (delta < n);
    char *newBuf = new char[_bsz + npbsz + 1];
    memcpy(newBuf + delta, _start, _eob - _start + 1);
    _ch += newBuf + delta - _start;
    _eob += newBuf + delta - _start;
    _start = newBuf + delta;
    _pbsz = npbsz;
    delete[] _buffer;
    _buffer = newBuf;
  }
  memmove(_start - n, _start, n);
  _ch -= n;
  _start -= n;
  memcpy(_ch, c, n);
}

void vs20::vs20_scanner::_scan (vs20_token *token) throw (ScanException)
{
  register unsigned char c;
  
  for(;;)
  {
    switch (getState())
    {
    case START:
      __START_0_:
        c = *_ch++;
         /*0*/ if ((c == '\t' /*9*/) || (('\v' /*11*/ <= c) && (c <= '\f' /*12*/)) || (c == ' ' /*32*/))
          goto __START_1_;
        else  /*0*/ if ((c == '\n' /*10*/))
          goto __START_2_;
        else  /*0*/ if ((c == '\r' /*13*/))
          goto __START_3_;
        else  /*0*/ if ((c == '+' /*43*/))
          goto __START_4_;
        else  /*0*/ if ((c == ',' /*44*/))
          goto __START_5_;
        else  /*0*/ if ((c == '-' /*45*/))
          goto __START_6_;
        else  /*0*/ if ((c == '.' /*46*/))
          goto __START_7_;
        else  /*0*/ if ((c == '/' /*47*/))
          goto __START_8_;
        else  /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_9_;
        else  /*0*/ if ((c == ';' /*59*/))
          goto __START_10_;
        else  /*0*/ if ((c == 'E' /*69*/))
          goto __START_11_;
        else  /*0*/ if ((c == 'F' /*70*/))
          goto __START_12_;
        else  /*0*/ if ((c == 'T' /*84*/))
          goto __START_13_;
        else  /*0*/ if ((c == '_' /*95*/))
          goto __START_14_;
        else  /*0*/ if ((c == 'a' /*97*/))
          goto __START_15_;
        else  /*0*/ if ((c == 'b' /*98*/))
          goto __START_16_;
        else  /*0*/ if ((c == 'c' /*99*/))
          goto __START_17_;
        else  /*0*/ if ((c == 'd' /*100*/))
          goto __START_18_;
        else  /*0*/ if ((c == 'e' /*101*/))
          goto __START_19_;
        else  /*0*/ if ((c == 'f' /*102*/))
          goto __START_20_;
        else  /*0*/ if ((c == 'g' /*103*/) || (c == 'y' /*121*/))
          goto __START_21_;
        else  /*0*/ if ((c == 'i' /*105*/))
          goto __START_22_;
        else  /*0*/ if ((c == 'l' /*108*/))
          goto __START_23_;
        else  /*0*/ if ((c == 'm' /*109*/))
          goto __START_24_;
        else  /*0*/ if ((c == 'n' /*110*/))
          goto __START_25_;
        else  /*0*/ if ((c == 'o' /*111*/))
          goto __START_26_;
        else  /*0*/ if ((c == 'p' /*112*/))
          goto __START_27_;
        else  /*0*/ if ((c == 'r' /*114*/))
          goto __START_28_;
        else  /*0*/ if ((c == 's' /*115*/))
          goto __START_29_;
        else  /*0*/ if ((c == 'v' /*118*/))
          goto __START_30_;
        else  /*0*/ if ((c == 'w' /*119*/))
          goto __START_31_;
        else  /*0*/ if ((c == 'x' /*120*/))
          goto __START_32_;
        else  /*0*/ if ((c == 'z' /*122*/))
          goto __START_33_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_0_;
        }
        goto __scan_error_;
      __START_1_:
        goto __accept_token_BLANK_;
      __START_2_:
        c = *_ch++;
         /*0*/ if ((c == '\r' /*13*/))
          goto __START_34_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_EOL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_2_;
        }
        goto __accept_token_EOL_;
      __START_3_:
        c = *_ch++;
         /*0*/ if ((c == '\n' /*10*/))
          goto __START_34_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_EOL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_3_;
        }
        goto __accept_token_EOL_;
      __START_4_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_9_;
        else  /*0*/ if ((c == '.' /*46*/))
          goto __START_35_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_4_;
        }
        goto __scan_error_;
      __START_5_:
        goto __accept_token_COMMA_;
      __START_6_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_9_;
        else  /*0*/ if ((c == '.' /*46*/))
          goto __START_35_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_MINUS_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_6_;
        }
        goto __accept_token_MINUS_;
      __START_7_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_36_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DOT_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_7_;
        }
        goto __accept_token_DOT_;
      __START_8_:
        c = *_ch++;
         /*0*/ if ((c == '*' /*42*/))
          goto __START_37_;
        else  /*0*/ if ((c == '/' /*47*/))
          goto __START_38_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_8_;
        }
        goto __scan_error_;
      __START_9_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_9_;
        else  /*0*/ if ((c == '.' /*46*/))
          goto __START_35_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_INTEGER_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_9_;
        }
        goto __accept_token_INTEGER_;
      __START_10_:
        c = *_ch++;
         /*0*/ if (((c == '\0') && (_ch != _eob)) || (('\1' /*1*/ <= c) && (c <= '\t' /*9*/)) || (('\v' /*11*/ <= c) && (c <= '\f' /*12*/)) || ('\16' /*14*/ <= c))
          goto __START_10_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_COMMENT2_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_10_;
        }
        goto __accept_token_COMMENT2_;
      __START_11_:
        c = *_ch++;
         /*0*/ if ((c == '+' /*43*/) || (c == '-' /*45*/))
          goto __START_39_;
        else  /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_40_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_11_;
        }
        goto __scan_error_;
      __START_12_:
        c = *_ch++;
         /*0*/ if ((c == 'a' /*97*/))
          goto __START_41_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_12_;
        }
        goto __scan_error_;
      __START_13_:
        c = *_ch++;
         /*0*/ if ((c == 'r' /*114*/))
          goto __START_42_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_13_;
        }
        goto __scan_error_;
      __START_14_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_43_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_14_;
        }
        goto __scan_error_;
      __START_15_:
        c = *_ch++;
         /*0*/ if ((c == '0' /*48*/))
          goto __START_44_;
        else  /*0*/ if ((c == 'L' /*76*/))
          goto __START_45_;
        else  /*0*/ if ((c == 'b' /*98*/))
          goto __START_46_;
        else  /*0*/ if ((c == 'd' /*100*/))
          goto __START_47_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_W_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_15_;
        }
        goto __accept_token_W_;
      __START_16_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_48_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_Z_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_16_;
        }
        goto __accept_token_Z_;
      __START_17_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_49_;
        else  /*0*/ if ((c == 'a' /*97*/))
          goto __START_50_;
        else  /*0*/ if ((c == 'r' /*114*/))
          goto __START_51_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_17_;
        }
        goto __scan_error_;
      __START_18_:
        c = *_ch++;
         /*0*/ if ((c == 'c' /*99*/))
          goto __START_52_;
        else  /*0*/ if ((c == 'e' /*101*/))
          goto __START_53_;
        else  /*0*/ if ((c == 'p' /*112*/))
          goto __START_54_;
        else  /*0*/ if ((c == 's' /*115*/))
          goto __START_55_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_18_;
        }
        goto __scan_error_;
      __START_19_:
        c = *_ch++;
         /*0*/ if ((c == '+' /*43*/) || (c == '-' /*45*/))
          goto __START_39_;
        else  /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_40_;
        else  /*0*/ if ((c == 'l' /*108*/))
          goto __START_56_;
        else  /*0*/ if ((c == 'n' /*110*/))
          goto __START_57_;
        else  /*0*/ if ((c == 'x' /*120*/))
          goto __START_58_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_19_;
        }
        goto __scan_error_;
      __START_20_:
        c = *_ch++;
         /*0*/ if ((c == 'r' /*114*/))
          goto __START_59_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_20_;
        }
        goto __scan_error_;
      __START_21_:
        goto __accept_token_Y_;
      __START_22_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_60_;
        else  /*0*/ if ((c == 'f' /*102*/))
          goto __START_61_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_22_;
        }
        goto __scan_error_;
      __START_23_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_62_;
        else  /*0*/ if ((c == 'a' /*97*/))
          goto __START_63_;
        else  /*0*/ if ((c == 'i' /*105*/))
          goto __START_64_;
        else  /*0*/ if ((c == 'o' /*111*/))
          goto __START_65_;
        else  /*0*/ if ((c == 'r' /*114*/))
          goto __START_66_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_23_;
        }
        goto __scan_error_;
      __START_24_:
        c = *_ch++;
         /*0*/ if ((c == '3' /*51*/))
          goto __START_67_;
        else  /*0*/ if ((c == '4' /*52*/))
          goto __START_68_;
        else  /*0*/ if ((c == 'a' /*97*/))
          goto __START_69_;
        else  /*0*/ if ((c == 'i' /*105*/))
          goto __START_70_;
        else  /*0*/ if ((c == 'o' /*111*/))
          goto __START_71_;
        else  /*0*/ if ((c == 'u' /*117*/))
          goto __START_72_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_24_;
        }
        goto __scan_error_;
      __START_25_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_73_;
        else  /*0*/ if ((c == 'r' /*114*/))
          goto __START_74_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_25_;
        }
        goto __scan_error_;
      __START_26_:
        c = *_ch++;
         /*0*/ if ((c == 'D' /*68*/))
          goto __START_75_;
        else  /*0*/ if ((c == 'F' /*70*/))
          goto __START_76_;
        else  /*0*/ if ((c == 'P' /*80*/))
          goto __START_77_;
        else  /*0*/ if ((c == 'T' /*84*/))
          goto __START_78_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_26_;
        }
        goto __scan_error_;
      __START_27_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_79_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_27_;
        }
        goto __scan_error_;
      __START_28_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_80_;
        else  /*0*/ if ((c == 'c' /*99*/))
          goto __START_81_;
        else  /*0*/ if ((c == 'e' /*101*/))
          goto __START_82_;
        else  /*0*/ if ((c == 's' /*115*/))
          goto __START_83_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_X_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_28_;
        }
        goto __accept_token_X_;
      __START_29_:
        c = *_ch++;
         /*0*/ if ((c == 'g' /*103*/))
          goto __START_84_;
        else  /*0*/ if ((c == 'i' /*105*/))
          goto __START_85_;
        else  /*0*/ if ((c == 'l' /*108*/))
          goto __START_86_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_29_;
        }
        goto __scan_error_;
      __START_30_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_87_;
        else  /*0*/ if ((c == 's' /*115*/))
          goto __START_88_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_30_;
        }
        goto __scan_error_;
      __START_31_:
        goto __accept_token_W_;
      __START_32_:
        goto __accept_token_X_;
      __START_33_:
        goto __accept_token_Z_;
      __START_34_:
        goto __accept_token_EOL_;
      __START_35_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_89_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_35_;
        }
        goto __scan_error_;
      __START_36_:
        c = *_ch++;
         /*0*/ if ((c == 'E' /*69*/) || (c == 'e' /*101*/))
          goto __START_11_;
        else  /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_36_;
        else  /*0*/ if ((c == 'f' /*102*/))
          goto __START_90_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_REAL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_36_;
        }
        goto __accept_token_REAL_;
      __START_37_:
        goto __accept_token_LONG_COMMENT1_;
      __START_38_:
        c = *_ch++;
         /*0*/ if (((c == '\0') && (_ch != _eob)) || (('\1' /*1*/ <= c) && (c <= '\t' /*9*/)) || (('\v' /*11*/ <= c) && (c <= '\f' /*12*/)) || ('\16' /*14*/ <= c))
          goto __START_38_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_COMMENT1_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_38_;
        }
        goto __accept_token_COMMENT1_;
      __START_39_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_40_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_39_;
        }
        goto __scan_error_;
      __START_40_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_40_;
        else  /*0*/ if ((c == 'f' /*102*/))
          goto __START_90_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_REAL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_40_;
        }
        goto __accept_token_REAL_;
      __START_41_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_91_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_41_;
        }
        goto __scan_error_;
      __START_42_:
        c = *_ch++;
         /*0*/ if ((c == 'u' /*117*/))
          goto __START_92_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_42_;
        }
        goto __scan_error_;
      __START_43_:
        c = *_ch++;
         /*0*/ if ((c == 'a' /*97*/))
          goto __START_93_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_43_;
        }
        goto __scan_error_;
      __START_44_:
        goto __accept_token_A0_;
      __START_45_:
        goto __accept_token_AL_;
      __START_46_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_94_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_46_;
        }
        goto __scan_error_;
      __START_47_:
        c = *_ch++;
         /*0*/ if ((c == 'd' /*100*/))
          goto __START_95_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_47_;
        }
        goto __scan_error_;
      __START_48_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_48_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_B_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_48_;
        }
        goto __accept_token_B_;
      __START_49_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_49_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_C_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_49_;
        }
        goto __accept_token_C_;
      __START_50_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_96_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_50_;
        }
        goto __scan_error_;
      __START_51_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_97_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_51_;
        }
        goto __scan_error_;
      __START_52_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_98_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_52_;
        }
        goto __scan_error_;
      __START_53_:
        c = *_ch++;
         /*0*/ if ((c == 'f' /*102*/))
          goto __START_99_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_53_;
        }
        goto __scan_error_;
      __START_54_:
        c = *_ch++;
         /*0*/ if ((c == '3' /*51*/))
          goto __START_100_;
        else  /*0*/ if ((c == '4' /*52*/))
          goto __START_101_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_54_;
        }
        goto __scan_error_;
      __START_55_:
        c = *_ch++;
         /*0*/ if ((c == 't' /*116*/))
          goto __START_102_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_55_;
        }
        goto __scan_error_;
      __START_56_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_103_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_56_;
        }
        goto __scan_error_;
      __START_57_:
        c = *_ch++;
         /*0*/ if ((c == 'd' /*100*/))
          goto __START_104_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_57_;
        }
        goto __scan_error_;
      __START_58_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_105_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_58_;
        }
        goto __scan_error_;
      __START_59_:
        c = *_ch++;
         /*0*/ if ((c == 'c' /*99*/))
          goto __START_106_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_59_;
        }
        goto __scan_error_;
      __START_60_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_60_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_I_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_60_;
        }
        goto __accept_token_I_;
      __START_61_:
        goto __accept_token_IF_;
      __START_62_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_62_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_L_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_62_;
        }
        goto __accept_token_L_;
      __START_63_:
        c = *_ch++;
         /*0*/ if ((c == 'b' /*98*/))
          goto __START_107_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_63_;
        }
        goto __scan_error_;
      __START_64_:
        c = *_ch++;
         /*0*/ if ((c == 't' /*116*/))
          goto __START_108_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_64_;
        }
        goto __scan_error_;
      __START_65_:
        c = *_ch++;
         /*0*/ if ((c == 'g' /*103*/))
          goto __START_109_;
        else  /*0*/ if ((c == 'o' /*111*/))
          goto __START_110_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_65_;
        }
        goto __scan_error_;
      __START_66_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_111_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_66_;
        }
        goto __scan_error_;
      __START_67_:
        c = *_ch++;
         /*0*/ if ((c == 'x' /*120*/))
          goto __START_112_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_67_;
        }
        goto __scan_error_;
      __START_68_:
        c = *_ch++;
         /*0*/ if ((c == 'x' /*120*/))
          goto __START_113_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_68_;
        }
        goto __scan_error_;
      __START_69_:
        c = *_ch++;
         /*0*/ if ((c == 'd' /*100*/))
          goto __START_114_;
        else  /*0*/ if ((c == 'x' /*120*/))
          goto __START_115_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_69_;
        }
        goto __scan_error_;
      __START_70_:
        c = *_ch++;
         /*0*/ if ((c == 'n' /*110*/))
          goto __START_116_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_70_;
        }
        goto __scan_error_;
      __START_71_:
        c = *_ch++;
         /*0*/ if ((c == 'v' /*118*/))
          goto __START_117_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_71_;
        }
        goto __scan_error_;
      __START_72_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_118_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_72_;
        }
        goto __scan_error_;
      __START_73_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_119_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_73_;
        }
        goto __scan_error_;
      __START_74_:
        c = *_ch++;
         /*0*/ if ((c == 'm' /*109*/))
          goto __START_120_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_74_;
        }
        goto __scan_error_;
      __START_75_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_121_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_75_;
        }
        goto __scan_error_;
      __START_76_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_122_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_76_;
        }
        goto __scan_error_;
      __START_77_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_123_;
        else  /*0*/ if ((c == 't' /*116*/))
          goto __START_124_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_77_;
        }
        goto __scan_error_;
      __START_78_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_125_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_78_;
        }
        goto __scan_error_;
      __START_79_:
        c = *_ch++;
         /*0*/ if ((c == 'w' /*119*/))
          goto __START_126_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_79_;
        }
        goto __scan_error_;
      __START_80_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_80_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_R_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_80_;
        }
        goto __accept_token_R_;
      __START_81_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_127_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_81_;
        }
        goto __scan_error_;
      __START_82_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_128_;
        else  /*0*/ if ((c == 't' /*116*/))
          goto __START_129_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_82_;
        }
        goto __scan_error_;
      __START_83_:
        c = *_ch++;
         /*0*/ if ((c == 'q' /*113*/))
          goto __START_130_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_83_;
        }
        goto __scan_error_;
      __START_84_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_131_;
        else  /*0*/ if ((c == 'n' /*110*/))
          goto __START_132_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_84_;
        }
        goto __scan_error_;
      __START_85_:
        c = *_ch++;
         /*0*/ if ((c == 'n' /*110*/))
          goto __START_133_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_85_;
        }
        goto __scan_error_;
      __START_86_:
        c = *_ch++;
         /*0*/ if ((c == 't' /*116*/))
          goto __START_134_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_86_;
        }
        goto __scan_error_;
      __START_87_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_87_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_V_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_87_;
        }
        goto __accept_token_V_;
      __START_88_:
        c = *_ch++;
         /*0*/ if ((c == '_' /*95*/))
          goto __START_135_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_88_;
        }
        goto __scan_error_;
      __START_89_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_89_;
        else  /*0*/ if ((c == 'f' /*102*/))
          goto __START_90_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_REAL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_89_;
        }
        goto __accept_token_REAL_;
      __START_90_:
        goto __accept_token_REAL_;
      __START_91_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_136_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_91_;
        }
        goto __scan_error_;
      __START_92_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_137_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_92_;
        }
        goto __scan_error_;
      __START_93_:
        c = *_ch++;
         /*0*/ if ((c == 't' /*116*/))
          goto __START_138_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_93_;
        }
        goto __scan_error_;
      __START_94_:
        goto __accept_token_ABS_;
      __START_95_:
        goto __accept_token_ADD_;
      __START_96_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_139_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_96_;
        }
        goto __scan_error_;
      __START_97_:
        goto __accept_token_CRS_;
      __START_98_:
        c = *_ch++;
         /*0*/ if ((c == '_' /*95*/))
          goto __START_140_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_98_;
        }
        goto __scan_error_;
      __START_99_:
        c = *_ch++;
         /*0*/ if ((c == 'b' /*98*/))
          goto __START_141_;
        else  /*0*/ if ((c == 'i' /*105*/))
          goto __START_142_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DEF_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_99_;
        }
        goto __accept_token_DEF_;
      __START_100_:
        goto __accept_token_DP3_;
      __START_101_:
        goto __accept_token_DP4_;
      __START_102_:
        goto __accept_token_DST_;
      __START_103_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_143_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_103_;
        }
        goto __scan_error_;
      __START_104_:
        c = *_ch++;
         /*0*/ if ((c == 'i' /*105*/))
          goto __START_144_;
        else  /*0*/ if ((c == 'l' /*108*/))
          goto __START_145_;
        else  /*0*/ if ((c == 'r' /*114*/))
          goto __START_146_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_104_;
        }
        goto __scan_error_;
      __START_105_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_147_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_EXP_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_105_;
        }
        goto __accept_token_EXP_;
      __START_106_:
        goto __accept_token_FRC_;
      __START_107_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_148_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_107_;
        }
        goto __scan_error_;
      __START_108_:
        goto __accept_token_LIT_;
      __START_109_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_149_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_LOG_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_109_;
        }
        goto __accept_token_LOG_;
      __START_110_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_150_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_110_;
        }
        goto __scan_error_;
      __START_111_:
        goto __accept_token_LRP_;
      __START_112_:
        c = *_ch++;
         /*0*/ if ((c == '2' /*50*/))
          goto __START_151_;
        else  /*0*/ if ((c == '3' /*51*/))
          goto __START_152_;
        else  /*0*/ if ((c == '4' /*52*/))
          goto __START_153_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_112_;
        }
        goto __scan_error_;
      __START_113_:
        c = *_ch++;
         /*0*/ if ((c == '3' /*51*/))
          goto __START_154_;
        else  /*0*/ if ((c == '4' /*52*/))
          goto __START_155_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_113_;
        }
        goto __scan_error_;
      __START_114_:
        goto __accept_token_MAD_;
      __START_115_:
        goto __accept_token_MAX_;
      __START_116_:
        goto __accept_token_MIN_;
      __START_117_:
        c = *_ch++;
         /*0*/ if ((c == 'a' /*97*/))
          goto __START_156_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_MOV_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_117_;
        }
        goto __accept_token_MOV_;
      __START_118_:
        goto __accept_token_MUL_;
      __START_119_:
        goto __accept_token_NOP_;
      __START_120_:
        goto __accept_token_NRM_;
      __START_121_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_121_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_O_D_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_121_;
        }
        goto __accept_token_O_D_;
      __START_122_:
        c = *_ch++;
         /*0*/ if ((c == 'g' /*103*/))
          goto __START_157_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_122_;
        }
        goto __scan_error_;
      __START_123_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_158_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_123_;
        }
        goto __scan_error_;
      __START_124_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_159_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_124_;
        }
        goto __scan_error_;
      __START_125_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_125_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_O_T_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_125_;
        }
        goto __accept_token_O_T_;
      __START_126_:
        goto __accept_token_POW_;
      __START_127_:
        goto __accept_token_RCP_;
      __START_128_:
        goto __accept_token_REP_;
      __START_129_:
        goto __accept_token_RET_;
      __START_130_:
        goto __accept_token_RSQ_;
      __START_131_:
        goto __accept_token_SGE_;
      __START_132_:
        goto __accept_token_SGN_;
      __START_133_:
        c = *_ch++;
         /*0*/ if ((c == 'c' /*99*/))
          goto __START_160_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_133_;
        }
        goto __scan_error_;
      __START_134_:
        goto __accept_token_SLT_;
      __START_135_:
        c = *_ch++;
         /*0*/ if ((c == '2' /*50*/))
          goto __START_161_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_135_;
        }
        goto __scan_error_;
      __START_136_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_162_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_136_;
        }
        goto __scan_error_;
      __START_137_:
        goto __accept_token_TRUE_;
      __START_138_:
        goto __accept_token__SAT_;
      __START_139_:
        c = *_ch++;
         /*0*/ if ((c == 'n' /*110*/))
          goto __START_163_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_CALL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_139_;
        }
        goto __accept_token_CALL_;
      __START_140_:
        c = *_ch++;
         /*0*/ if ((c == 'b' /*98*/))
          goto __START_164_;
        else  /*0*/ if ((c == 'c' /*99*/))
          goto __START_165_;
        else  /*0*/ if ((c == 'd' /*100*/))
          goto __START_166_;
        else  /*0*/ if ((c == 'f' /*102*/))
          goto __START_167_;
        else  /*0*/ if ((c == 'n' /*110*/))
          goto __START_168_;
        else  /*0*/ if ((c == 'p' /*112*/))
          goto __START_169_;
        else  /*0*/ if ((c == 's' /*115*/))
          goto __START_170_;
        else  /*0*/ if ((c == 't' /*116*/))
          goto __START_171_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_140_;
        }
        goto __scan_error_;
      __START_141_:
        goto __accept_token_DEFB_;
      __START_142_:
        goto __accept_token_DEFI_;
      __START_143_:
        goto __accept_token_ELSE_;
      __START_144_:
        c = *_ch++;
         /*0*/ if ((c == 'f' /*102*/))
          goto __START_172_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_144_;
        }
        goto __scan_error_;
      __START_145_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_173_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_145_;
        }
        goto __scan_error_;
      __START_146_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_174_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_146_;
        }
        goto __scan_error_;
      __START_147_:
        goto __accept_token_EXPP_;
      __START_148_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_175_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_148_;
        }
        goto __scan_error_;
      __START_149_:
        goto __accept_token_LOGP_;
      __START_150_:
        goto __accept_token_LOOP_;
      __START_151_:
        goto __accept_token_M3X2_;
      __START_152_:
        goto __accept_token_M3X3_;
      __START_153_:
        goto __accept_token_M3X4_;
      __START_154_:
        goto __accept_token_M4X3_;
      __START_155_:
        goto __accept_token_M4X4_;
      __START_156_:
        goto __accept_token_MOVA_;
      __START_157_:
        goto __accept_token_O_FOG_;
      __START_158_:
        goto __accept_token_O_POS_;
      __START_159_:
        goto __accept_token_O_PTS_;
      __START_160_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_176_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_160_;
        }
        goto __scan_error_;
      __START_161_:
        c = *_ch++;
         /*0*/ if ((c == '_' /*95*/))
          goto __START_177_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_161_;
        }
        goto __scan_error_;
      __START_162_:
        goto __accept_token_FALSE_;
      __START_163_:
        c = *_ch++;
         /*0*/ if ((c == 'z' /*122*/))
          goto __START_178_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_163_;
        }
        goto __scan_error_;
      __START_164_:
        c = *_ch++;
         /*0*/ if ((c == 'i' /*105*/))
          goto __START_179_;
        else  /*0*/ if ((c == 'l' /*108*/))
          goto __START_180_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_164_;
        }
        goto __scan_error_;
      __START_165_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_181_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_165_;
        }
        goto __scan_error_;
      __START_166_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_182_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_166_;
        }
        goto __scan_error_;
      __START_167_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_183_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_167_;
        }
        goto __scan_error_;
      __START_168_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_184_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_168_;
        }
        goto __scan_error_;
      __START_169_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_185_;
        else  /*0*/ if ((c == 's' /*115*/))
          goto __START_186_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_169_;
        }
        goto __scan_error_;
      __START_170_:
        c = *_ch++;
         /*0*/ if ((c == 'a' /*97*/))
          goto __START_187_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_170_;
        }
        goto __scan_error_;
      __START_171_:
        c = *_ch++;
         /*0*/ if ((c == 'a' /*97*/))
          goto __START_188_;
        else  /*0*/ if ((c == 'e' /*101*/))
          goto __START_189_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_171_;
        }
        goto __scan_error_;
      __START_172_:
        goto __accept_token_ENDIF_;
      __START_173_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_190_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_173_;
        }
        goto __scan_error_;
      __START_174_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_191_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_174_;
        }
        goto __scan_error_;
      __START_175_:
        goto __accept_token_LABEL_;
      __START_176_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_192_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_176_;
        }
        goto __scan_error_;
      __START_177_:
        c = *_ch++;
         /*0*/ if ((c == '0' /*48*/))
          goto __START_193_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_177_;
        }
        goto __scan_error_;
      __START_178_:
        goto __accept_token_CALLNZ_;
      __START_179_:
        c = *_ch++;
         /*0*/ if ((c == 'n' /*110*/))
          goto __START_194_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_179_;
        }
        goto __scan_error_;
      __START_180_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_195_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_180_;
        }
        goto __scan_error_;
      __START_181_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_196_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_181_;
        }
        goto __scan_error_;
      __START_182_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_197_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_182_;
        }
        goto __scan_error_;
      __START_183_:
        c = *_ch++;
         /*0*/ if ((c == 'g' /*103*/))
          goto __START_198_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_183_;
        }
        goto __scan_error_;
      __START_184_:
        c = *_ch++;
         /*0*/ if ((c == 'r' /*114*/))
          goto __START_199_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_184_;
        }
        goto __scan_error_;
      __START_185_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_200_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_185_;
        }
        goto __scan_error_;
      __START_186_:
        c = *_ch++;
         /*0*/ if ((c == 'i' /*105*/))
          goto __START_201_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_186_;
        }
        goto __scan_error_;
      __START_187_:
        c = *_ch++;
         /*0*/ if ((c == 'm' /*109*/))
          goto __START_202_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_187_;
        }
        goto __scan_error_;
      __START_188_:
        c = *_ch++;
         /*0*/ if ((c == 'n' /*110*/))
          goto __START_203_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_188_;
        }
        goto __scan_error_;
      __START_189_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_204_;
        else  /*0*/ if ((c == 'x' /*120*/))
          goto __START_205_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_189_;
        }
        goto __scan_error_;
      __START_190_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_206_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_190_;
        }
        goto __scan_error_;
      __START_191_:
        goto __accept_token_ENDREP_;
      __START_192_:
        goto __accept_token_SINCOS_;
      __START_193_:
        goto __accept_token_VS_2_0_;
      __START_194_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_207_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_194_;
        }
        goto __scan_error_;
      __START_195_:
        c = *_ch++;
         /*0*/ if ((c == 'n' /*110*/))
          goto __START_208_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_195_;
        }
        goto __scan_error_;
      __START_196_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_209_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_196_;
        }
        goto __scan_error_;
      __START_197_:
        c = *_ch++;
         /*0*/ if ((c == 't' /*116*/))
          goto __START_210_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_197_;
        }
        goto __scan_error_;
      __START_198_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_211_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_FOG_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_198_;
        }
        goto __accept_token_DCL_FOG_;
      __START_199_:
        c = *_ch++;
         /*0*/ if ((c == 'm' /*109*/))
          goto __START_212_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_199_;
        }
        goto __scan_error_;
      __START_200_:
        c = *_ch++;
         /*0*/ if ((c == 'i' /*105*/))
          goto __START_213_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_200_;
        }
        goto __scan_error_;
      __START_201_:
        c = *_ch++;
         /*0*/ if ((c == 'z' /*122*/))
          goto __START_214_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_201_;
        }
        goto __scan_error_;
      __START_202_:
        c = *_ch++;
         /*0*/ if ((c == 'p' /*112*/))
          goto __START_215_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_202_;
        }
        goto __scan_error_;
      __START_203_:
        c = *_ch++;
         /*0*/ if ((c == 'g' /*103*/))
          goto __START_216_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_203_;
        }
        goto __scan_error_;
      __START_204_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_217_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_204_;
        }
        goto __scan_error_;
      __START_205_:
        c = *_ch++;
         /*0*/ if ((c == 'c' /*99*/))
          goto __START_218_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_205_;
        }
        goto __scan_error_;
      __START_206_:
        goto __accept_token_ENDLOOP_;
      __START_207_:
        c = *_ch++;
         /*0*/ if ((c == 'r' /*114*/))
          goto __START_219_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_207_;
        }
        goto __scan_error_;
      __START_208_:
        c = *_ch++;
         /*0*/ if ((c == 'd' /*100*/))
          goto __START_220_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_208_;
        }
        goto __scan_error_;
      __START_209_:
        c = *_ch++;
         /*0*/ if ((c == 'r' /*114*/))
          goto __START_221_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_209_;
        }
        goto __scan_error_;
      __START_210_:
        c = *_ch++;
         /*0*/ if ((c == 'h' /*104*/))
          goto __START_222_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_210_;
        }
        goto __scan_error_;
      __START_211_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_211_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_FOG_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_211_;
        }
        goto __accept_token_DCL_FOG_;
      __START_212_:
        c = *_ch++;
         /*0*/ if ((c == 'a' /*97*/))
          goto __START_223_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_212_;
        }
        goto __scan_error_;
      __START_213_:
        c = *_ch++;
         /*0*/ if ((c == 't' /*116*/))
          goto __START_224_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_213_;
        }
        goto __scan_error_;
      __START_214_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_225_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_214_;
        }
        goto __scan_error_;
      __START_215_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_226_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_215_;
        }
        goto __scan_error_;
      __START_216_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_227_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_216_;
        }
        goto __scan_error_;
      __START_217_:
        c = *_ch++;
         /*0*/ if ((c == 'f' /*102*/))
          goto __START_228_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_217_;
        }
        goto __scan_error_;
      __START_218_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_229_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_218_;
        }
        goto __scan_error_;
      __START_219_:
        c = *_ch++;
         /*0*/ if ((c == 'm' /*109*/))
          goto __START_230_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_219_;
        }
        goto __scan_error_;
      __START_220_:
        c = *_ch++;
         /*0*/ if ((c == 'i' /*105*/))
          goto __START_231_;
        else  /*0*/ if ((c == 'w' /*119*/))
          goto __START_232_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_220_;
        }
        goto __scan_error_;
      __START_221_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_233_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_COLOR_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_221_;
        }
        goto __accept_token_DCL_COLOR_;
      __START_222_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_234_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_DEPTH_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_222_;
        }
        goto __accept_token_DCL_DEPTH_;
      __START_223_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_235_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_223_;
        }
        goto __scan_error_;
      __START_224_:
        c = *_ch++;
         /*0*/ if ((c == 'i' /*105*/))
          goto __START_236_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_224_;
        }
        goto __scan_error_;
      __START_225_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_237_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_PSIZE_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_225_;
        }
        goto __accept_token_DCL_PSIZE_;
      __START_226_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_238_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_226_;
        }
        goto __scan_error_;
      __START_227_:
        c = *_ch++;
         /*0*/ if ((c == 'n' /*110*/))
          goto __START_239_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_227_;
        }
        goto __scan_error_;
      __START_228_:
        c = *_ch++;
         /*0*/ if ((c == 'a' /*97*/))
          goto __START_240_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_228_;
        }
        goto __scan_error_;
      __START_229_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_241_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_229_;
        }
        goto __scan_error_;
      __START_230_:
        c = *_ch++;
         /*0*/ if ((c == 'a' /*97*/))
          goto __START_242_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_230_;
        }
        goto __scan_error_;
      __START_231_:
        c = *_ch++;
         /*0*/ if ((c == 'n' /*110*/))
          goto __START_243_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_231_;
        }
        goto __scan_error_;
      __START_232_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_244_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_232_;
        }
        goto __scan_error_;
      __START_233_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_233_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_COLOR_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_233_;
        }
        goto __accept_token_DCL_COLOR_;
      __START_234_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_234_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_DEPTH_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_234_;
        }
        goto __accept_token_DCL_DEPTH_;
      __START_235_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_245_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_NORMAL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_235_;
        }
        goto __accept_token_DCL_NORMAL_;
      __START_236_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_246_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_236_;
        }
        goto __scan_error_;
      __START_237_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_237_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_PSIZE_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_237_;
        }
        goto __accept_token_DCL_PSIZE_;
      __START_238_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_247_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_SAMPLE_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_238_;
        }
        goto __accept_token_DCL_SAMPLE_;
      __START_239_:
        c = *_ch++;
         /*0*/ if ((c == 't' /*116*/))
          goto __START_248_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_239_;
        }
        goto __scan_error_;
      __START_240_:
        c = *_ch++;
         /*0*/ if ((c == 'c' /*99*/))
          goto __START_249_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_240_;
        }
        goto __scan_error_;
      __START_241_:
        c = *_ch++;
         /*0*/ if ((c == 'r' /*114*/))
          goto __START_250_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_241_;
        }
        goto __scan_error_;
      __START_242_:
        c = *_ch++;
         /*0*/ if ((c == 'l' /*108*/))
          goto __START_251_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_242_;
        }
        goto __scan_error_;
      __START_243_:
        c = *_ch++;
         /*0*/ if ((c == 'd' /*100*/))
          goto __START_252_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_243_;
        }
        goto __scan_error_;
      __START_244_:
        c = *_ch++;
         /*0*/ if ((c == 'i' /*105*/))
          goto __START_253_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_244_;
        }
        goto __scan_error_;
      __START_245_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_245_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_NORMAL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_245_;
        }
        goto __accept_token_DCL_NORMAL_;
      __START_246_:
        c = *_ch++;
         /*0*/ if ((c == 'n' /*110*/))
          goto __START_254_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_246_;
        }
        goto __scan_error_;
      __START_247_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_247_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_SAMPLE_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_247_;
        }
        goto __accept_token_DCL_SAMPLE_;
      __START_248_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_255_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_TANGENT_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_248_;
        }
        goto __accept_token_DCL_TANGENT_;
      __START_249_:
        c = *_ch++;
         /*0*/ if ((c == 't' /*116*/))
          goto __START_256_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_249_;
        }
        goto __scan_error_;
      __START_250_:
        c = *_ch++;
         /*0*/ if ((c == 'd' /*100*/))
          goto __START_257_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_250_;
        }
        goto __scan_error_;
      __START_251_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_258_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_BINORMAL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_251_;
        }
        goto __accept_token_DCL_BINORMAL_;
      __START_252_:
        c = *_ch++;
         /*0*/ if ((c == 'i' /*105*/))
          goto __START_259_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_252_;
        }
        goto __scan_error_;
      __START_253_:
        c = *_ch++;
         /*0*/ if ((c == 'g' /*103*/))
          goto __START_260_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_253_;
        }
        goto __scan_error_;
      __START_254_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_261_;
        else  /*0*/ if ((c == 't' /*116*/))
          goto __START_262_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_POSITION_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_254_;
        }
        goto __accept_token_DCL_POSITION_;
      __START_255_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_255_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_TANGENT_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_255_;
        }
        goto __accept_token_DCL_TANGENT_;
      __START_256_:
        c = *_ch++;
         /*0*/ if ((c == 'o' /*111*/))
          goto __START_263_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_256_;
        }
        goto __scan_error_;
      __START_257_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_264_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_TEXCOORD_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_257_;
        }
        goto __accept_token_DCL_TEXCOORD_;
      __START_258_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_258_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_BINORMAL_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_258_;
        }
        goto __accept_token_DCL_BINORMAL_;
      __START_259_:
        c = *_ch++;
         /*0*/ if ((c == 'c' /*99*/))
          goto __START_265_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_259_;
        }
        goto __scan_error_;
      __START_260_:
        c = *_ch++;
         /*0*/ if ((c == 'h' /*104*/))
          goto __START_266_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_260_;
        }
        goto __scan_error_;
      __START_261_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_261_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_POSITION_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_261_;
        }
        goto __accept_token_DCL_POSITION_;
      __START_262_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_267_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_POSITIONT_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_262_;
        }
        goto __accept_token_DCL_POSITIONT_;
      __START_263_:
        c = *_ch++;
         /*0*/ if ((c == 'r' /*114*/))
          goto __START_268_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_263_;
        }
        goto __scan_error_;
      __START_264_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_264_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_TEXCOORD_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_264_;
        }
        goto __accept_token_DCL_TEXCOORD_;
      __START_265_:
        c = *_ch++;
         /*0*/ if ((c == 'e' /*101*/))
          goto __START_269_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_265_;
        }
        goto __scan_error_;
      __START_266_:
        c = *_ch++;
         /*0*/ if ((c == 't' /*116*/))
          goto __START_270_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_266_;
        }
        goto __scan_error_;
      __START_267_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_267_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_POSITIONT_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_267_;
        }
        goto __accept_token_DCL_POSITIONT_;
      __START_268_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_271_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_TESSFACTOR_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_268_;
        }
        goto __accept_token_DCL_TESSFACTOR_;
      __START_269_:
        c = *_ch++;
         /*0*/ if ((c == 's' /*115*/))
          goto __START_272_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_269_;
        }
        goto __scan_error_;
      __START_270_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_273_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_BLENDWEIGHT_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_270_;
        }
        goto __accept_token_DCL_BLENDWEIGHT_;
      __START_271_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_271_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_TESSFACTOR_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_271_;
        }
        goto __accept_token_DCL_TESSFACTOR_;
      __START_272_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_274_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_BLENDINDICES_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_272_;
        }
        goto __accept_token_DCL_BLENDINDICES_;
      __START_273_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_273_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_BLENDWEIGHT_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_273_;
        }
        goto __accept_token_DCL_BLENDWEIGHT_;
      __START_274_:
        c = *_ch++;
         /*0*/ if ((('0' /*48*/ <= c) && (c <= '9' /*57*/)))
          goto __START_274_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_DCL_BLENDINDICES_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __START_274_;
        }
        goto __accept_token_DCL_BLENDINDICES_;
    case LONG_COMMENT:
      __LONG_COMMENT_0_:
        c = *_ch++;
         /*0*/ if (((c == '\0') && (_ch != _eob)) || (('\1' /*1*/ <= c) && (c <= '\t' /*9*/)) || (('\v' /*11*/ <= c) && (c <= '\f' /*12*/)) || (('\16' /*14*/ <= c) && (c <= ')' /*41*/)) || ('+' /*43*/ <= c))
          goto __LONG_COMMENT_1_;
        else  /*0*/ if ((c == '\n' /*10*/))
          goto __LONG_COMMENT_2_;
        else  /*0*/ if ((c == '*' /*42*/))
          goto __LONG_COMMENT_3_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_LONG_COMMENT3_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __LONG_COMMENT_0_;
        }
        goto __accept_token_LONG_COMMENT3_;
      __LONG_COMMENT_1_:
        c = *_ch++;
         /*0*/ if (((c == '\0') && (_ch != _eob)) || (('\1' /*1*/ <= c) && (c <= '\t' /*9*/)) || (('\v' /*11*/ <= c) && (c <= '\f' /*12*/)) || (('\16' /*14*/ <= c) && (c <= ')' /*41*/)) || ('+' /*43*/ <= c))
          goto __LONG_COMMENT_1_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_LONG_COMMENT3_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __LONG_COMMENT_1_;
        }
        goto __accept_token_LONG_COMMENT3_;
      __LONG_COMMENT_2_:
        goto __accept_token_LONG_COMMENT2_;
      __LONG_COMMENT_3_:
        c = *_ch++;
         /*0*/ if (((c == '\0') && (_ch != _eob)) || (('\1' /*1*/ <= c) && (c <= '\t' /*9*/)) || (('\v' /*11*/ <= c) && (c <= ')' /*41*/)) || (('+' /*43*/ <= c) && (c <= '.' /*46*/)) || ('0' /*48*/ <= c))
          goto __LONG_COMMENT_4_;
        else  /*0*/ if ((c == '\n' /*10*/))
          goto __LONG_COMMENT_5_;
        else  /*0*/ if ((c == '*' /*42*/))
          goto __LONG_COMMENT_6_;
        else  /*0*/ if ((c == '/' /*47*/))
          goto __LONG_COMMENT_7_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta)goto __unexpected_eof_;
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __LONG_COMMENT_3_;
        }
        goto __scan_error_;
      __LONG_COMMENT_4_:
        goto __accept_token_LONG_COMMENT4_;
      __LONG_COMMENT_5_:
        goto __accept_token_LONG_COMMENT5_;
      __LONG_COMMENT_6_:
        c = *_ch++;
         /*0*/ if (((c == '\0') && (_ch != _eob)) || (('\1' /*1*/ <= c) && (c <= '\t' /*9*/)) || (('\v' /*11*/ <= c) && (c <= ')' /*41*/)) || (('+' /*43*/ <= c) && (c <= '.' /*46*/)) || ('0' /*48*/ <= c))
          goto __LONG_COMMENT_4_;
        else  /*0*/ if ((c == '\n' /*10*/))
          goto __LONG_COMMENT_5_;
        else  /*0*/ if ((c == '*' /*42*/))
          goto __LONG_COMMENT_6_;
        else  /*0*/ if ((c == '/' /*47*/))
          goto __LONG_COMMENT_7_;
        if ((_ch-- == _eob) && (c == '\0')) {
          if (_eof) {
            if ((_ch != _start) && !_lta){ _lta = true; goto __accept_token_LONG_COMMENT4_; }
            if (!wrap()) goto __eof_seen_;
          }
          if (_ch + 1 == _eob) _brefill();
          goto __LONG_COMMENT_6_;
        }
        goto __accept_token_LONG_COMMENT4_;
      __LONG_COMMENT_7_:
        goto __accept_token_LONG_COMMENT_;
    default:
      {
        ScanException __ex(ePos, "Illegal lexical state");
        if (!onScanError(__ex))
          throw __ex;
      }
    }
    
    __accept_token_BLANK_:
      _start = _ch;
      bPos = ePos;
      continue;
    __accept_token_COMMENT1_:
      _start = _ch;
      bPos = ePos;
      continue;
    __accept_token_COMMENT2_:
      _start = _ch;
      bPos = ePos;
      continue;
    __accept_token_LONG_COMMENT1_:
      token->_set(vs20_token::LONG_COMMENT1, bPos, ePos, _start, _ch - _start);
      _more = true;
      {pushState(LONG_COMMENT);

      }
      _more = false;
      continue;
    __accept_token_LONG_COMMENT2_:
      continue;
    __accept_token_LONG_COMMENT3_:
      continue;
    __accept_token_LONG_COMMENT4_:
      continue;
    __accept_token_LONG_COMMENT5_:
      continue;
    __accept_token_LONG_COMMENT_:
      token->_set(vs20_token::LONG_COMMENT, bPos, ePos, _start, _ch - _start);
      {popState();

      }
      _start = _ch;
      bPos = ePos;
      continue;
    __accept_token_EOL_:
      {
        token->_set(vs20_token::EOL, bPos, ePos, _start, _ch - _start);
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_X_:
      {
        token->id = vs20_token::X;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_Y_:
      {
        token->id = vs20_token::Y;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_Z_:
      {
        token->id = vs20_token::Z;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_W_:
      {
        token->id = vs20_token::W;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_COMMA_:
      {
        token->id = vs20_token::COMMA;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DOT_:
      {
        token->id = vs20_token::DOT;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_MINUS_:
      {
        token->id = vs20_token::MINUS;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_TRUE_:
      {
        token->id = vs20_token::TRUE;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {token->integer = 1;

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_FALSE_:
      {
        token->id = vs20_token::FALSE;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {token->integer = 0;

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_INTEGER_:
      {
        token->_set(vs20_token::INTEGER, bPos, ePos, _start, _ch - _start);
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_REAL_:
      {
        token->_set(vs20_token::REAL, bPos, ePos, _start, _ch - _start);
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_VS_2_0_:
      {
        token->id = vs20_token::VS_2_0;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_POSITION_:
      {
        token->id = vs20_token::DCL_POSITION;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 12);
			if(token->integer >= 2) throw swShader::Error("Syntax swShader::Error: dcl_position%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_BLENDWEIGHT_:
      {
        token->id = vs20_token::DCL_BLENDWEIGHT;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 15);
			if(token->integer >= 1) throw swShader::Error("Syntax swShader::Error: dcl_blendweight%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_BLENDINDICES_:
      {
        token->id = vs20_token::DCL_BLENDINDICES;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 16);
			if(token->integer >= 1) throw swShader::Error("Syntax swShader::Error: dcl_blendindices%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_NORMAL_:
      {
        token->id = vs20_token::DCL_NORMAL;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 10);
			if(token->integer >= 2) throw swShader::Error("Syntax swShader::Error: dcl_normal%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_PSIZE_:
      {
        token->id = vs20_token::DCL_PSIZE;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 9);
			if(token->integer >= 1) throw swShader::Error("Syntax swShader::Error: dcl_psize%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_TEXCOORD_:
      {
        token->id = vs20_token::DCL_TEXCOORD;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 12);
			if(token->integer >= 8) throw swShader::Error("Syntax swShader::Error: dcl_texcoord%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_TANGENT_:
      {
        token->id = vs20_token::DCL_TANGENT;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 11);
			if(token->integer >= 1) throw swShader::Error("Syntax swShader::Error: dcl_tangent%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_BINORMAL_:
      {
        token->id = vs20_token::DCL_BINORMAL;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 12);
			if(token->integer >= 1) throw swShader::Error("Syntax swShader::Error: dcl_binormal%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_TESSFACTOR_:
      {
        token->id = vs20_token::DCL_TESSFACTOR;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 14);
			if(token->integer >= 1) throw swShader::Error("Syntax swShader::Error: dcl_tessfactor%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_POSITIONT_:
      {
        token->id = vs20_token::DCL_POSITIONT;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 13);
			if(token->integer >= 1) throw swShader::Error("Syntax swShader::Error: dcl_positiont%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_COLOR_:
      {
        token->id = vs20_token::DCL_COLOR;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 9);
			if(token->integer >= 2) throw swShader::Error("Syntax swShader::Error: dcl_color%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_FOG_:
      {
        token->id = vs20_token::DCL_FOG;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 7);
			if(token->integer >= 1) throw swShader::Error("Syntax swShader::Error: dcl_fog%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_DEPTH_:
      {
        token->id = vs20_token::DCL_DEPTH;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 9);
			if(token->integer >= 16) throw swShader::Error("Syntax swShader::Error: dcl_depth%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DCL_SAMPLE_:
      {
        token->id = vs20_token::DCL_SAMPLE;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 10);
			if(token->integer >= 1) throw swShader::Error("Syntax swShader::Error: dcl_sample%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DEF_:
      {
        token->id = vs20_token::DEF;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DEFB_:
      {
        token->id = vs20_token::DEFB;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DEFI_:
      {
        token->id = vs20_token::DEFI;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_ABS_:
      {
        token->id = vs20_token::ABS;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_ADD_:
      {
        token->id = vs20_token::ADD;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_CALL_:
      {
        token->id = vs20_token::CALL;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_CALLNZ_:
      {
        token->id = vs20_token::CALLNZ;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_CRS_:
      {
        token->id = vs20_token::CRS;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DP3_:
      {
        token->id = vs20_token::DP3;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DP4_:
      {
        token->id = vs20_token::DP4;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_DST_:
      {
        token->id = vs20_token::DST;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_ELSE_:
      {
        token->id = vs20_token::ELSE;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_ENDIF_:
      {
        token->id = vs20_token::ENDIF;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_ENDLOOP_:
      {
        token->id = vs20_token::ENDLOOP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_ENDREP_:
      {
        token->id = vs20_token::ENDREP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_EXP_:
      {
        token->id = vs20_token::EXP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_EXPP_:
      {
        token->id = vs20_token::EXPP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_FRC_:
      {
        token->id = vs20_token::FRC;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_IF_:
      {
        token->id = vs20_token::IF;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_LABEL_:
      {
        token->id = vs20_token::LABEL;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_LIT_:
      {
        token->id = vs20_token::LIT;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_LOG_:
      {
        token->id = vs20_token::LOG;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_LOGP_:
      {
        token->id = vs20_token::LOGP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_LOOP_:
      {
        token->id = vs20_token::LOOP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_LRP_:
      {
        token->id = vs20_token::LRP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_M3X2_:
      {
        token->id = vs20_token::M3X2;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_M3X3_:
      {
        token->id = vs20_token::M3X3;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_M3X4_:
      {
        token->id = vs20_token::M3X4;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_M4X3_:
      {
        token->id = vs20_token::M4X3;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_M4X4_:
      {
        token->id = vs20_token::M4X4;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_MAD_:
      {
        token->id = vs20_token::MAD;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_MAX_:
      {
        token->id = vs20_token::MAX;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_MIN_:
      {
        token->id = vs20_token::MIN;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_MOV_:
      {
        token->id = vs20_token::MOV;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_MOVA_:
      {
        token->id = vs20_token::MOVA;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_MUL_:
      {
        token->id = vs20_token::MUL;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_NOP_:
      {
        token->id = vs20_token::NOP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_NRM_:
      {
        token->id = vs20_token::NRM;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_POW_:
      {
        token->id = vs20_token::POW;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_RCP_:
      {
        token->id = vs20_token::RCP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_REP_:
      {
        token->id = vs20_token::REP;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_RET_:
      {
        token->id = vs20_token::RET;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_RSQ_:
      {
        token->id = vs20_token::RSQ;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_SGE_:
      {
        token->id = vs20_token::SGE;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_SGN_:
      {
        token->id = vs20_token::SGN;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_SINCOS_:
      {
        token->id = vs20_token::SINCOS;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_SLT_:
      {
        token->id = vs20_token::SLT;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token__SAT_:
      {
        token->id = vs20_token::_SAT;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_V_:
      {
        token->id = vs20_token::V;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 1);
			if(token->integer >= 16) throw swShader::Error("Syntax swShader::Error: v%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_R_:
      {
        token->id = vs20_token::R;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 1);
			if(token->integer >= 12) throw swShader::Error("Syntax swShader::Error: r%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_C_:
      {
        token->id = vs20_token::C;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 1);
			if(token->integer >= 256) throw swShader::Error("Syntax swShader::Error: c%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_I_:
      {
        token->id = vs20_token::I;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 1);
			if(token->integer >= 16) throw swShader::Error("Syntax swShader::Error: i%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_B_:
      {
        token->id = vs20_token::B;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 1);
			if(token->integer >= 16) throw swShader::Error("Syntax swShader::Error: b%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_A0_:
      {
        token->id = vs20_token::A0;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_AL_:
      {
        token->id = vs20_token::AL;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_O_D_:
      {
        token->id = vs20_token::O_D;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 2);
			if(token->integer >= 2) throw swShader::Error("Syntax swShader::Error: oD%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_O_FOG_:
      {
        token->id = vs20_token::O_FOG;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_O_POS_:
      {
        token->id = vs20_token::O_POS;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_O_PTS_:
      {
        token->id = vs20_token::O_PTS;
        token->bPos = bPos;
        token->ePos = ePos;
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_O_T_:
      {
        token->id = vs20_token::O_T;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 2);
			if(token->integer >= 8) throw swShader::Error("Syntax swShader::Error: oT%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __accept_token_L_:
      {
        token->id = vs20_token::L;
        token->bPos = bPos;
        token->ePos = ePos;
        token->_set(_start, _ch - _start);
        {
			token->integer = atoi(token->image().c_str() + 2);
			if(token->integer >= 16) throw swShader::Error("Syntax swShader::Error: l%d index out of range", token->integer);
		

        }
        commonTokenAction (*token);
        bPos = ePos;
        _start = _ch;
        if (_reject) { _reject = false; continue; }
        else return;
      }
    __scan_error_:
      {
        string msg = string("Unexpected character \'") + (char) c + "\'.";
        ScanException __ex(ePos, msg);
        if (!onScanError(__ex))
          throw __ex;
      }
    __unexpected_eof_:
      {
        string msg("Unexpected EOF.");
        ScanException __ex(ePos, msg);
        if (!onScanError(__ex))
          throw __ex;
      }
      __eof_seen_:
        token->id = vs20_token::eof;
        token->bPos = bPos;
        token->ePos = ePos;
        return;
  }
}



/* End of file. */
